﻿:root {
    --layout-color: #b7472a;
    --layout-top-bar-background-color: #b7472a;
    --layout-top-bar-text-color: white;
    --layout-nav-bar-background-color: black;
    --layout-nav-bar-text-color: white;
    --layout-nav-bar-text-hover-color: white;
    --layout-nav-bar-text-active-color: black;
    --layout-nav-bar-dropdown-header-text-color: #8c7b47;
    --layout-nav-bar-dropdown-item-text-color: black;
    --layout-nav-bar-dropdown-background-color: rgba(0, 0, 0, 0.85);
    --layout-nav-bar-mobile-logo-text-color: black;
    --layout-nav-bar-btn-color: white;
    --layout-nav-bar-menu-btn-color: white;
    --background-color: white;
    --layout-footer-background-color: #3d3d3d;
    --layout-footer-social-text-color: black;
    --layout-footer-social-btn-background-color: white;
    --layout-footer-text-color: white;
    --layout-footer-btn-background-color: white;
    --layout-bottom-background-color: black;
    --layout-bottom-text-color: white;
    --layout-btn-background-color: #3d3d3d;
    --layout-bubble-btn-background-color: #ebebeb;
    --layout-bubble-btn-text-color: #3d3d3d;
    --layout-nav-pills-wise-background-color: #3d3d3d;
    --layout-nav-pills-wise-text-color: white;
    --layout-cart-add-btn-background-color: #d6b86e;
    --layout-cart-add-btn-text-color: black;
    --layout-cart-btn-background-color: #3d3d3d;
    --layout-cart-btn-text-color: white;
    --layout-cart-btn-text-hover-color: white;
    --layout-contact-us-dbox-background-color: #d6b86e;
    --layout-contact-us-dbox-text-color: white;
}

/*@font-face {
    font-family: "font1";
    src: url("../../CustomersPage/fonts/Amiri-Regular.ttf");
    unicode-range: U+41-5A, U+61-7A;
}

@font-face {
    font-family: "font2";
    src: url("../../CustomersPage/fonts/FreeSerif.ttf");
    unicode-range: U+00-7F;
}

@font-face {
    font-family: "font3";
    src: url("../../CustomersPage/fonts/NotoSerifHK-Regular.ttf");
    unicode-range: U+4E00-9FFF;
}*/

body {
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
    /*font-family: "Roboto", "Microsoft JhengHei","微軟正黑體","Heiti TC","黑體-繁","新細明體",serif;*/
    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    font-family: Amiri-Regular, PlayfairDisplay-Italic, NotoSerifHK-Regular, FreeSerif;
    background: var(--background-color);
    font-size: 16px;
    line-height: 1.8;
    color: black;
    font-weight: 400 !important;
}

    body.menu-show {
        overflow: hidden;
        position: fixed;
        height: 100%;
        width: 100%;
    }

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

img {
    aspect-ratio: auto;
}

.wrap-wise {
    position: fixed;
    top: 25px;
    z-index: 20;
    height: 55px;
    width: 100%;
    background: var(--layout-top-bar-background-color);
    color: var(--layout-top-bar-text-color);
}

.wrap-text-wise {   
    color: var(--layout-top-bar-text-color);
}

@media (max-width: 1199px) {
    .wrap-wise {
        position: fixed;
        display: none;
        z-index: 20;
        height: 80px;
        width: 100%;
        background: var(--layout-top-bar-background-color);
    }
}

@media (max-width: 375px) {
    .wrap-wise {
        position: fixed;
        display: none;
        z-index: 20;
        height: 110px;
        width: 100%;
        background: var(--layout-top-bar-background-color);
    }
}
    .wrap-wise .phone {
        z-index: 1;
        font-weight: 200;
    }

        .wrap-wise .phone span {
            color: rgba(255, 255, 255, 0.6);
        }

        .wrap-wise .phone a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
        }

@media (max-width: 767.98px) {
    .wrap-wise .reg {
        width: 50%;
        text-align: right;
    }
}

.wrap-wise .reg p {
    font-weight: 200;
}

    .wrap-wise .reg p a {
        color: rgba(255, 255, 255, 0.8);
        /*text-transform: uppercase;*/
        font-size: 13px;
    }

.my-accounts-wise {
    width: 300px;
    z-index: 25 !important;
    position: absolute;
    top: 10px !important;
    right: -5px;
    border: none;
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
}

.mobile-lang-wise {
    display: none;
}

@media (max-width: 1199px) {
    .mobile-lang-wise {
        display: inline-block;
    }
}

.dropdown-menu-li-wise {
    list-style-type: none;
}

@media (max-width: 767px) {
    .dropdown-menu-li-wise {
        list-style-type: circle;
        margin-left: 30px;
    }
}

.ftco-navbar-light-wise {
    background: var(--layout-nav-bar-background-color);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding-top: 0px;
    padding-bottom: 10px;
    z-index: 15 !important;
}

@media (max-width: 1199px) {
    .ftco-navbar-light-wise {
        background: var(--layout-nav-bar-background-color);
        position: fixed;
        top: 0px;
    }
}

@media (max-width: 991px) {
    .ftco-navbar-light-wise {
        background: var(--layout-nav-bar-background-color);
        position: fixed;
        top: 0px;
    }
}

@media (max-width: 375px) {
    .ftco-navbar-light-wise {
        background: var(--layout-nav-bar-background-color);
        position: fixed;
        top: 0px;
    }
}

.ftco-navbar-light-wise .navbar-brand {
    color: rgba(255, 255, 255, 0.8);
}

    .ftco-navbar-light-wise .navbar-brand span {
        color: rgba(255, 255, 255, 0.5);
    }

    .ftco-navbar-light-wise .navbar-brand:hover {
        color: #fff;
    }

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-brand {
        color: #fff;
    }
}

.ftco-navbar-light-wise .hero-wrap-logo .slider-text .navbar-brand {
    font-size: 30px;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
    /*font-style: italic;*/    
    margin-top: 5px;
    margin-left: 0px;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #fff;
}

    .ftco-navbar-light-wise .hero-wrap-logo .slider-text .navbar-brand span {
        color: var(--layout-nav-bar-mobile-logo-text-color);
        margin-top: 5px;
        margin-left: 0px;
        -webkit-text-fill-color: var(--layout-nav-bar-mobile-logo-text-color);
        -webkit-text-stroke-width: 0px;
    }

@media (max-width: 992px) {
    .ftco-navbar-light-wise .hero-wrap-logo .slider-text .navbar-brand {
        font-size: 30px;
    }
}

.ftco-navbar-light-wise .btn-cart {
    display: inline-block;
    position: relative;
}

    .ftco-navbar-light-wise .btn-cart span {
        font-size: 20px;
    }

    .ftco-navbar-light-wise .btn-cart div {
        position: absolute;
        top: 0;
        right: 0px;
        height: 18px;
        line-height: 1;
        border-radius: 50%;
        padding: 0 5px;
        background: rgba(255, 255, 255, 0.2);
    }

        .ftco-navbar-light-wise .btn-cart div small {
            color: rgba(255, 255, 255, 0.5);
        }

.ftco-navbar-light-wise .btn-group .dropdown-toggle::after {
    display: none;
}

.ftco-navbar-light-wise .btn-group .dropdown-menu {    
    border: none;
    background: var(--layout-nav-bar-dropdown-background-color);
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    padding: 0;
    margin-top: -10px;
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .btn-group .dropdown-menu {
        right: 0px !important;
    }
}

.ftco-navbar-light-wise .btn-group .dropdown-menu:after, .ftco-navbar-light-wise .btn-group .dropdown-menu:before {
    content: ' ';
    display: none;
    border-style: solid;
    border-width: 0 .5em .6em .5em;
    border-color: transparent;
    position: absolute;
    right: 12px;
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .btn-group .dropdown-menu:after, .ftco-navbar-light-wise .btn-group .dropdown-menu:before {
        right: 38px;
    }
}

@media (max-width: 767px) {
    .ftco-navbar-light-wise .btn-group .dropdown-menu:after, .ftco-navbar-light-wise .btn-group .dropdown-menu:before {
        right: 35px;
    }
}

@media (max-width: 992px) {
    .cart-bag-wise {
        top: 2px;
        right: -130px !important;
    }
}

@media (max-width: 767px) {
    .cart-bag-wise {
        top: 2px;
        right: -20px !important;
    }
}

@media (max-width: 300px) {
    .cart-bag-wise {
        top: 2px;
        right: -15px !important;
        width: 23px !important;
    }
}

@media (max-width: 992px) {
    .product-search-wise {
        top: 2px;
        right: -250px !important;
    }
}

@media (max-width: 767px) {
    .product-search-wise {
        top: 2px;
        right: -35px !important;
    }
}

@media (max-width: 300px) {
    .product-search-wise {
        top: 2px;
        right: -25px !important;
        width: 15px !important;
    }
}


.layout-color-wise {
    color: var(--layout-color);
}

.layout-nav-bar-btn-color-wise {
    color: var(--layout-nav-bar-btn-color);
}

.layout-nav-bar-dropdown-header-text-color-wise {
    color: var(--layout-nav-bar-dropdown-header-text-color);
}

.layout-nav-bar-dropdown-item-text-color-wise {
    color: var(--layout-nav-bar-dropdown-item-text-color);
}

.layout-nav-bar-menu-btn-color-wise {
    color: var(--layout-nav-bar-menu-btn-color);
}

.layout-background-color-wise {
    background: var(--layout-color) !important;
}

.layout-footer-background-color-wise {
    background: var(--layout-footer-background-color);
}

.layout-footer-social-text-color-wise {
    color: var(--layout-footer-social-text-color) !important;
}

.layout-footer-text-color-wise {
    color: var(--layout-footer-text-color) !important;
}

.layout-bottom-background-color-wise {
    background: var(--layout-bottom-background-color);
}

.layout-bottom-text-color-wise {
    color: var(--layout-bottom-text-color);
}

.layout-cart-add-btn-background-color {
    background-color: var(--layout-cart-add-btn-background-color);
}

.layout-cart-add-btn-text-color {
    color: var(--layout-cart-add-btn-text-color);
}

.product-search-wise > a {
    cursor: pointer;
}

@media (max-width: 992px) {
    .my-favourite-wise {
        top: 2px;
        right: -372px !important;
    }
}

@media (max-width: 767px) {
    .my-favourite-wise {
        top: 2px;
        right: -52px !important;
    }
}

@media (max-width: 300px) {
    .my-favourite-wise {
        top: 2px;
        right: -40px !important;
        width: 15px !important;
    }
}

.navbar-icon-wise {
    font-size: 18px !important;
}

@media (max-width: 992px) {
    .navbar-icon-wise {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .navbar-icon-wise {
        font-size: 14px !important;
    }
}

@media (max-width: 300px) {
    .navbar-icon-wise {
        font-size: 12px !important;
    }
}

.ftco-navbar-light-wise .btn-group .dropdown-menu:before {
    top: -.6em;
    border-bottom-color: rgba(0, 0, 0, 0.02);
}

.ftco-navbar-light-wise .btn-group .dropdown-menu:after {
    top: -.5em;
    border-bottom-color: #fff;
}

.ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item {
    font-size: 18px;
    color: var(--layout-nav-bar-dropdown-text-color);
    font-weight: 500;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: normal;
}

    .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item:last-child {
        border: none;
    }

    .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item .img {
        width: 60px;
        height: 60px;
        position: relative;
    }

    .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item .text {
        width: calc(100% - 60px);
    }

        .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item .text h4 {
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.8);
        }

        .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item .text .quantity {
            color: rgba(0, 0, 0, 0.4);
        }

    .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item.btn-link {
        color: var(--layout-nav-bar-dropdown-item-text-color);
        /*text-transform: uppercase;*/
        font-size: 16px;
        font-weight: 500;
    }

    .ftco-navbar-light-wise .btn-group .dropdown-menu .dropdown-item:hover {
        background: transparent;
    }

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav {
        padding-bottom: 10px;
    }
}

.ftco-navbar-light-wise .navbar-nav > .nav-item > .nav-link {
    font-size: 16px;
    /*padding-top: 1.5rem;
    padding-bottom: 1.5rem;*/
    padding-left: 0px;
    padding-right: 20px;
    color: var(--layout-nav-bar-text-color);
    font-weight: 500;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    opacity: 1 !important;
}

    .ftco-navbar-light-wise .navbar-nav > .nav-item > .nav-link:hover {
        color: var(--layout-nav-bar-text-hover-color);
    }

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav > .nav-item > .nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        color: var(--layout-nav-bar-text-color);
    }
}

.ftco-navbar-light-wise .navbar-nav > .nav-item .dropdown-menu {
    margin-top: -13px;
    border: none;
    color: var(--layout-nav-bar-text-color);
    background: var(--layout-nav-bar-dropdown-background-color);
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav > .nav-item .dropdown-menu {
        margin-top: 0px;
        min-width: 0px !important;
        width: 100% !important;
        border: none;
        background: var(--layout-nav-bar-dropdown-background-color);
        -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
        box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    }
}

.ftco-navbar-light-wise .navbar-nav > .nav-item.ftco-seperator {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav > .nav-item.ftco-seperator {
        padding-left: 0;
        margin-left: 0;
    }
}

.ftco-navbar-light-wise .navbar-nav > .nav-item.ftco-seperator:before {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav > .nav-item.ftco-seperator:before {
        display: none;
    }
}

.ftco-navbar-light-wise .navbar-nav > .nav-item.cta > a {
    color: var(--layout-nav-bar-text-color);
    border: 1px solid var(--layout-color);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 4px;
    background: var(--layout-color);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
}

    .ftco-navbar-light-wise .navbar-nav > .nav-item.cta > a span {
        display: inline-block;
        color: #fff;
    }

    .ftco-navbar-light-wise .navbar-nav > .nav-item.cta > a:hover {
        background: var(--layout-nav-bar-text-hover-color);
        border: 1px solid var(--layout-color);
    }

.ftco-navbar-light-wise .navbar-nav > .nav-item.cta.cta-colored a {
    border: 1px solid #01d28e;
    background: #01d28e !important;
}

.ftco-navbar-light-wise .navbar-nav > .nav-item.active > a {
    color: var(--layout-nav-bar-text-active-color);
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise .navbar-nav > .nav-item.active > a {
        color: var(--layout-nav-bar-text-active-color);
    }
}

.ftco-navbar-light-wise .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    /*text-transform: uppercase;*/
    font-size: 16px;
    letter-spacing: .1em;
}

    .ftco-navbar-light-wise .navbar-toggler:hover, .ftco-navbar-light-wise .navbar-toggler:focus {
        text-decoration: none;
        color: var(--layout-nav-bar-text-hover-color);
        outline: none !important;
    }

.ftco-navbar-light-wise.scrolled {
    position: fixed;
    right: 0;
    left: 0;
    top: 55px;
    margin-top: 0px;
    background: #fff !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding-top: 0px;
    padding-bottom: 10px;
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    transition: .3s all ease-out;
}

@media (max-width: 1199px) {
    .ftco-navbar-light-wise.scrolled {
        position: fixed;
        top: 0px;
    }
}

@media (max-width: 991px) {
    .ftco-navbar-light-wise.scrolled {
        position: fixed;
        top: 0px;
    }
}

@media (max-width: 375px) {
    .ftco-navbar-light-wise.scrolled {
        position: fixed;
        top: 0px;
    }
}

    .ftco-navbar-light-wise.scrolled .btn-cart div {
        position: absolute;
        top: 0;
        right: 0;
        height: 18px;
        line-height: 1;
        border-radius: 50%;
        padding: 0 5px;
        background: rgba(0, 0, 0, 0.1);
    }

        .ftco-navbar-light-wise.scrolled .btn-cart div small {
            color: var(--layout-color);
        }

/*@media (max-width: 992px) {
    .ftco-navbar-light-wise.scrolled .nav-item > .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-bottom: 0 !important;
    }
}*/

.ftco-navbar-light-wise.scrolled .nav-item.active > a {
    color: var(--layout-color) !important;
}

.ftco-navbar-light-wise.scrolled .nav-item.cta > a {
    color: #fff !important;
    background: var(--layout-color);
    border: none !important;
    padding-top: 0.5rem !important;
    padding-bottom: .5rem !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-top: 6px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

    .ftco-navbar-light-wise.scrolled .nav-item.cta > a span {
        display: inline-block;
        color: #fff !important;
    }

.ftco-navbar-light-wise.scrolled .nav-item.cta.cta-colored span {
    border-color: var(--layout-color);
}

@media (max-width: 992px) {
    .ftco-navbar-light-wise.scrolled .navbar-nav {
        background: #fff;
        border-radius: 0px;
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }
}

.ftco-navbar-light-wise.scrolled .navbar-toggler {
    border: none;
    color: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(0, 0, 0, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    /*text-transform: uppercase;*/
    font-size: 16px;
    letter-spacing: .1em;
}

.ftco-navbar-light-wise.scrolled .nav-link {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
    color: #000000 !important;
}

    .ftco-navbar-light-wise.scrolled .nav-link.active {
        color: var(--layout-color) !important;
    }

.ftco-navbar-light-wise.scrolled.awake {
    margin-top: 0px;
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    transition: .3s all ease-out;
}

.ftco-navbar-light-wise.scrolled.sleep {
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    transition: .3s all ease-out;
}

.ftco-navbar-light-wise.scrolled .navbar-brand {
    color: #000000;
}

    .ftco-navbar-light-wise.scrolled .navbar-brand span {
        color: var(--layout-color);
    }

.ftco-navbar-light-wise.scrolled .hero-wrap-logo .slider-text .navbar-brand {
    font-size: 30px;
    color: #000;
    line-height: 1.1;
    font-weight: 700;
    /*font-style: italic;*/
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #000;
}

    .ftco-navbar-light-wise.scrolled .hero-wrap-logo .slider-text .navbar-brand span {
        color: var(--layout-color);
        -webkit-text-fill-color: #000;
        -webkit-text-stroke-width: 0px;
    }

@media (max-width: 992px) {
    .ftco-navbar-light-wise.scrolled .hero-wrap-logo .slider-text .navbar-brand {
        font-size: 30px;
        color: #000;
        line-height: 1.1;
        font-weight: 400;
        /*font-style: italic;*/
        color: transparent;
        -webkit-text-fill-color: transparent;
        /* Will override color (regardless of order) */
        -webkit-text-stroke-width: .5px;
        -webkit-text-stroke-color: #000;
    }
}

@media (max-width: 1199px) {
    .h4-logo-wise {
        margin-top: 11px !important;
        font-size: 23px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 388px) {
    .h4-logo-wise {
        margin-top: 6px !important;
        font-size: 22px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 359px) {
    .h4-logo-wise {
        margin-top: 4px !important;
        font-size: 21px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
    }
}

.pl-2-wise {
    padding-left: 0.5rem !important
}

@media (max-width: 388px) {
    .pl-2-wise {
        padding-left: 0.18rem !important
    }
}

.hero-wrap-index-wise {    
    position: relative;
    z-index: 0;    
    /*height: 634px;*/
}

    .hero-wrap-index-wise img {
        width: 100%;
        /*height: 634px;*/
        opacity: 1;
        filter: brightness(57%);
        object-fit: cover;
    }

    .hero-wrap-index-wise .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: .4;
        background: #000000;
        height: 634px;
    }

    .hero-wrap-index-wise .slider-text {
        top: 320px;
        height: 300px;
        position: relative;
    }

        .hero-wrap-index-wise .slider-text h1 {
            font-size: 80px;
            color: #fff;
            line-height: 1.1;
            font-weight: 700;
            color: transparent;
            -webkit-text-fill-color: #fff;
            -webkit-text-stroke-width: .5px;
            -webkit-text-stroke-color: #fff;
        }

    .hero-wrap-index-wise .header_H1 {
        position: absolute;
        top: 45%;
        width: 100%;
        text-align: center;
        font-size: 80px;
        color: #fff;
        line-height: 1.1;
        font-weight: 700;
        -webkit-text-fill-color: #fff;
        -webkit-text-stroke-width: .5px;
        -webkit-text-stroke-color: #fff;
    }

@media (max-width: 992px) {
    .hero-wrap-index-wise {        
        position: relative;
        z-index: 0;
        /*height: 193px;*/
    }

        .hero-wrap-index-wise img {
            width: 100%;
            /*height: 193px;*/
        }

        .hero-wrap-index-wise .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            opacity: .4;
            background: #000000;
            height: 193px;
        }

        .hero-wrap-index-wise .slider-text {
            top: 135px;
            height: 300px;
            position: relative;
        }

        .hero-wrap-index-wise .header_H1 {            
            font-size: 40px;
        }
}

.hero-wrap-page-wise {
    position: relative;
    z-index: 0;
    /*height: 420px;*/
}

    .hero-wrap-page-wise img {
        width: 100%;
        /*height: 420px;*/
        opacity: 1;
        filter: brightness(57%);
        object-fit: cover;
    }

    .hero-wrap-page-wise .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: .4;
        background: #000000;
        height: 420px;
    }    

    .hero-wrap-page-wise .page_H1 {
        position: absolute;
        top: 45%;
        width: 100%;
        text-align: center;
        font-size: 80px;
        color: #fff;
        line-height: 1.1;
        font-weight: 700;
        -webkit-text-fill-color: #fff;
        -webkit-text-stroke-width: .5px;
        -webkit-text-stroke-color: #fff;
    }

@media (max-width: 767px) {
    .hero-wrap-page-wise {
        position: relative;
        z-index: 0;
        /*height: 208px;*/
    }

    .hero-wrap-page-wise img {
        width: 100%;
        /*height: 208px;*/
    }

    .hero-wrap-page-wise .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: .4;
        background: #000000;
        height: 208px;
    }    

    .hero-wrap-page-wise .page_H1 {
        font-size: 40px;
    }
}

.hero-wrap-wise {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 0;
    height: 420px;
    top: 0px;
}

@media (max-width: 1199.98px) {
    .hero-wrap-wise {
        background-position: center center !important;
    }
}

.hero-wrap-wise .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .4;
    background: #000000;
    height: 420px;
}

.hero-wrap-wise .slider-text {
    height: 300px;
    position: relative;
    top: 100px;
}

    .hero-wrap-wise .slider-text .text {
        padding: 30px 0;
        -webkit-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }

    .hero-wrap-wise .slider-text h1 {
        font-size: 80px;
        color: #fff;
        line-height: 1.1;
        font-weight: 700;
        /*font-style: italic;*/
        color: transparent;
        -webkit-text-fill-color: #fff;
        /* Will override color (regardless of order) */
        -webkit-text-stroke-width: .5px;
        -webkit-text-stroke-color: #fff;
    }

        .hero-wrap-wise .slider-text h1 span {
            color: var(--layout-color);
            -webkit-text-fill-color: var(--layout-color);
            -webkit-text-stroke-width: 0px;
        }

@media (max-width: 992px) {
    .hero-wrap-index-wise .slider-text h1 {
        font-size: 40px;
    }

        .hero-wrap-wise .slider-text {
            height: 300px;
            position: relative;
            top: 60px;
        }        
}

.hero-wrap-wise .slider-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero-wrap-wise.hero-wrap-2 {
    height: 500px !important;
    position: relative;
    margin-bottom: 50px;
}

    .hero-wrap-wise.hero-wrap-2 .overlay {
        width: 100%;
        height: 500px !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: .3;
    }

    .hero-wrap-wise.hero-wrap-2 .header-wise {
        padding-top: 150px;
        padding-bottom: 0px;
    }

    .hero-wrap-wise.hero-wrap-2 .index-header-wise {
        padding-top: 100px;
        padding-bottom: 0px;
    }

    .hero-wrap-wise.hero-wrap-2 .slider-text {
        height: 150px !important;
    }

        .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs {
            font-size: 14px;
            margin-bottom: 20px;
            z-index: 99;
            /*text-transform: uppercase;*/
            font-weight: 500;
        }

            .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs span {
                color: rgba(255, 255, 255, 0.7);
            }

                .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs span i {
                    color: rgba(255, 255, 255, 0.5);
                    font-size: 13px;
                }

                .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs span a {
                    color: rgba(255, 255, 255, 0.7);
                }

                    .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs span a:hover, .hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span a:focus {
                        color: var(--layout-color);
                    }

                        .hero-wrap-wise.hero-wrap-2 .slider-text .breadcrumbs span a:hover i, .hero-wrap.hero-wrap-2 .slider-text .breadcrumbs span a:focus i {
                            color: var(--layout-color);
                        }

        .hero-wrap-wise.hero-wrap-2 .slider-text .bread {
            position: relative;
            color: #fff !important;
            font-size: 60px;
            color: #fff;
            line-height: 1.1;
            font-weight: 400;
        }

@media (max-width: 767px) {
    .hero-wrap-wise.hero-wrap-2 {
        height: 280px !important;
        position: relative;
    }

        .hero-wrap-wise.hero-wrap-2 .overlay {
            width: 100%;
            height: 280px !important;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            opacity: .3;
        }

        .hero-wrap-wise.hero-wrap-2 .header-wise {
            padding-top: 20px;
            padding-bottom: 150px;
        }

        .hero-wrap-wise.hero-wrap-2 .index-header-wise {
            padding-top: 50px;
            padding-bottom: 0px;
        }

    .hero-wrap-wise .slider-text {
        height: 300px;
        position: relative;
        top: 120px;
    }

        .hero-wrap-wise .slider-text .text {
            padding: 30px 0;
            -webkit-transform: rotate(-4deg);
            -ms-transform: rotate(-4deg);
            transform: rotate(-4deg);
        }

        .hero-wrap-wise .slider-text h1 {
            font-size: 40px;
            color: #fff;
            line-height: 1.1;
            font-weight: 700;
            /*font-style: italic;*/
            color: transparent;
            -webkit-text-fill-color: #fff;
            /* Will override color (regardless of order) */
            -webkit-text-stroke-width: .5px;
            -webkit-text-stroke-color: #fff;
        }

            .hero-wrap-wise .slider-text h1 span {
                color: var(--layout-color);
                -webkit-text-fill-color: var(--layout-color);
                -webkit-text-stroke-width: 0px;
            }
}

.btn-aslink-wise {
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: none;
    font-size: 16px;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.ftco-navbar-light-wise.scrolled.btn-aslink-wise {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: none;
    font-size: 16px;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.navbar-size-wise {
    /*height: 100px !important;*/
    min-height: 50px !important;
    height: auto !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

    .navbar-size-wise .mobile-logo-wise {
        display: none;
    }

.mobile-scroll-wise {
    max-height: 100% !important;
    overflow: auto !important;
}

@media (max-width: 1199px) {
    .navbar-size-wise {
        height: auto !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

        .navbar-size-wise .mobile-logo-wise {
            display: inline-flex;
        }    
}

.btn-login-wise {
    font-size: 16px;
    font-weight: 500;
}

.row-wise {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row-phonecode-wise {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
}

.col-md-3-wise {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 992px) {
    .col-md-3-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 481px) {
    .col-md-3-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.col-md-3-wise-blog {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 1280px) {
    .col-md-3-wise-blog {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .col-md-3-wise-blog {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 481px) {
    .col-md-3-wise-blog {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.col-md-2-wise {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}

@media (max-width: 1600px) {
    .col-md-2-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 1280px) {
    .col-md-2-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 1070px) {
    .col-md-2-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 481px) {
    .col-md-2-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.col-md-4-wise {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 1280px) {
    .col-md-4-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 1070px) {
    .col-md-4-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-md-4-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 481px) {
    .col-md-4-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.col-md-6-wise {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 992px) {
    .col-md-6-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.ml-5-wise {
    margin-left: 3rem !important;
}

@media (max-width: 767px) {
    .ml-5-wise {
        margin-left: 0rem !important;
    }
}

.product-icon-wise {
    width: 100%;
}

@media (max-width: 767px) {
    .product-icon-wise {
        width: 90%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
}

.company-logo-container-a {
    height: 50px !important;
}

.company-logo-container {
    /*ADDED*/
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: 10px;
    overflow: hidden;
    border-radius: 50%;
}

.company-logo-img {
    display: inline;
    margin: 0 auto;
    height: 50px;
    width: 50px;
}

@media (max-width: 388px) {
    .company-logo-container-a {        
        height: 38px !important;        
    }
    .company-logo-container {
        /*ADDED*/
        width: 38px;
        height: 38px;
        position: relative;
        margin-top: 0px;
        margin-left: 10px;
        overflow: hidden;
        border-radius: 50%;
    }

    .company-logo-img {
        display: inline;
        margin: 0 auto;
        height: 38px;
        width: 38px;
    }
}

@media (max-width: 359px) {
    .company-logo-container-a {
        height: 33px !important;
    }

    .company-logo-container {
        /*ADDED*/
        width: 33px;
        height: 33px;
        position: relative;
        margin-top: 0px;
        margin-left: 10px;
        overflow: hidden;
        border-radius: 50%;
    }

    .company-logo-img {
        display: inline;
        margin: 0 auto;
        height: 33px;
        width: 33px;
    }
}

.paginationjs {
    line-height: 1.6;
    /*font-family: Marmelad, "Lucida Grande", Arial, "Hiragino Sans GB", Georgia, sans-serif;*/
    font-size: 14px;
    box-sizing: initial;
}

    .paginationjs:after {
        display: table;
        content: " ";
        clear: both;
    }

    .paginationjs .paginationjs-pages {
        width: auto;
        text-align: center;
        padding: 20px;
    }

        .paginationjs .paginationjs-pages ul {
            display: inline-block;
            margin: 0;
            padding: 0;
        }

    .paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input, .paginationjs .paginationjs-nav {
        display: inline-block;
        font-size: 14px;
    }

    .paginationjs .paginationjs-pages li {
        display: inline-block;
        border: 1px solid #aaa;
        border-right: none;
        list-style: none;
    }

        .paginationjs .paginationjs-pages li > a {
            min-width: 30px;
            height: 28px;
            line-height: 28px;
            display: block;
            background: #fff;
            font-size: 14px;
            color: #333;
            text-decoration: none;
            text-align: center;
        }

            .paginationjs .paginationjs-pages li > a:hover {
                background: #eee;
            }

        .paginationjs .paginationjs-pages li.active {
            border: none;
        }

            .paginationjs .paginationjs-pages li.active > a {
                height: 30px;
                line-height: 30px;
                background: #aaa;
                color: #fff;
            }

        .paginationjs .paginationjs-pages li.disabled > a {
            opacity: 0.3;
        }

            .paginationjs .paginationjs-pages li.disabled > a:hover {
                background: 0 0;
            }

        .paginationjs .paginationjs-pages li:first-child, .paginationjs .paginationjs-pages li:first-child > a {
            border-radius: 3px 0 0 3px;
        }

        .paginationjs .paginationjs-pages li:last-child {
            border-right: 1px solid #aaa;
            border-radius: 0 3px 3px 0;
        }

            .paginationjs .paginationjs-pages li:last-child > a {
                border-radius: 0 3px 3px 0;
            }

    .paginationjs .paginationjs-go-input > input[type=text] {
        width: 30px;
        height: 28px;
        background: #fff;
        border-radius: 3px;
        border: 1px solid #aaa;
        padding: 0;
        font-size: 14px;
        text-align: center;
        vertical-align: baseline;
        outline: 0;
        box-shadow: none;
        box-sizing: initial;
    }

    .paginationjs .paginationjs-go-button > input[type=button] {
        min-width: 40px;
        height: 30px;
        line-height: 28px;
        background: #fff;
        border-radius: 3px;
        border: 1px solid #aaa;
        text-align: center;
        padding: 0 8px;
        font-size: 14px;
        vertical-align: baseline;
        outline: 0;
        box-shadow: none;
        color: #333;
        cursor: pointer;
        vertical-align: middle\9;
    }

    .paginationjs.paginationjs-theme-blue .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-blue .paginationjs-pages li {
        border-color: #289de9;
    }

    .paginationjs .paginationjs-go-button > input[type=button]:hover {
        background-color: #f8f8f8;
    }

    .paginationjs .paginationjs-nav {
        height: 30px;
        line-height: 30px;
    }

    .paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input {
        margin-left: 5px\9;
    }

    .paginationjs.paginationjs-small {
        font-size: 12px;
    }

        .paginationjs.paginationjs-small .paginationjs-pages li > a {
            min-width: 26px;
            height: 24px;
            line-height: 24px;
            font-size: 12px;
        }

        .paginationjs.paginationjs-small .paginationjs-pages li.active > a {
            height: 26px;
            line-height: 26px;
        }

        .paginationjs.paginationjs-small .paginationjs-go-input {
            font-size: 12px;
        }

            .paginationjs.paginationjs-small .paginationjs-go-input > input[type=text] {
                width: 26px;
                height: 24px;
                font-size: 12px;
            }

        .paginationjs.paginationjs-small .paginationjs-go-button {
            font-size: 12px;
        }

            .paginationjs.paginationjs-small .paginationjs-go-button > input[type=button] {
                min-width: 30px;
                height: 26px;
                line-height: 24px;
                padding: 0 6px;
                font-size: 12px;
            }

        .paginationjs.paginationjs-small .paginationjs-nav {
            height: 26px;
            line-height: 26px;
            font-size: 12px;
        }

    .paginationjs.paginationjs-big {
        font-size: 16px;
    }

        .paginationjs.paginationjs-big .paginationjs-pages li > a {
            min-width: 36px;
            height: 34px;
            line-height: 34px;
            font-size: 16px;
        }

        .paginationjs.paginationjs-big .paginationjs-pages li.active > a {
            height: 36px;
            line-height: 36px;
        }

        .paginationjs.paginationjs-big .paginationjs-go-input {
            font-size: 16px;
        }

            .paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
                width: 36px;
                height: 34px;
                font-size: 16px;
            }

        .paginationjs.paginationjs-big .paginationjs-go-button {
            font-size: 16px;
        }

            .paginationjs.paginationjs-big .paginationjs-go-button > input[type=button] {
                min-width: 50px;
                height: 36px;
                line-height: 34px;
                padding: 0 12px;
                font-size: 16px;
            }

        .paginationjs.paginationjs-big .paginationjs-nav {
            height: 36px;
            line-height: 36px;
            font-size: 16px;
        }

    .paginationjs.paginationjs-theme-blue .paginationjs-pages li > a {
        color: #289de9;
    }

        .paginationjs.paginationjs-theme-blue .paginationjs-pages li > a:hover {
            background: #e9f4fc;
        }

    .paginationjs.paginationjs-theme-blue .paginationjs-pages li.active > a {
        background: #289de9;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled > a:hover {
        background: 0 0;
    }

    .paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button] {
        background: #289de9;
        border-color: #289de9;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-green .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-green .paginationjs-pages li {
        border-color: #449d44;
    }

    .paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button]:hover {
        background-color: #3ca5ea;
    }

    .paginationjs.paginationjs-theme-green .paginationjs-pages li > a {
        color: #449d44;
    }

        .paginationjs.paginationjs-theme-green .paginationjs-pages li > a:hover {
            background: #ebf4eb;
        }

    .paginationjs.paginationjs-theme-green .paginationjs-pages li.active > a {
        background: #449d44;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled > a:hover {
        background: 0 0;
    }

    .paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button] {
        background: #449d44;
        border-color: #449d44;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-yellow .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-yellow .paginationjs-pages li {
        border-color: #ec971f;
    }

    .paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button]:hover {
        background-color: #55a555;
    }

    .paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a {
        color: #ec971f;
    }

        .paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a:hover {
            background: #fdf5e9;
        }

    .paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active > a {
        background: #ec971f;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled > a:hover {
        background: 0 0;
    }

    .paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button] {
        background: #ec971f;
        border-color: #ec971f;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-red .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-red .paginationjs-pages li {
        border-color: #c9302c;
    }

    .paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button]:hover {
        background-color: #eea135;
    }

    .paginationjs.paginationjs-theme-red .paginationjs-pages li > a {
        color: #c9302c;
    }

        .paginationjs.paginationjs-theme-red .paginationjs-pages li > a:hover {
            background: #faeaea;
        }

    .paginationjs.paginationjs-theme-red .paginationjs-pages li.active > a {
        background: #c9302c;
        color: #fff;
    }

    .paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled > a:hover {
        background: 0 0;
    }

    .paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button] {
        background: #c9302c;
        border-color: #c9302c;
        color: #fff;
    }

        .paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button]:hover {
            background-color: #ce4541;
        }

    .paginationjs .paginationjs-pages li.paginationjs-next {
        border-right: 1px solid #aaa\9;
    }

    .paginationjs .paginationjs-go-input > input[type=text] {
        line-height: 28px\9;
        vertical-align: middle\9;
    }

    .paginationjs.paginationjs-big .paginationjs-pages li > a {
        line-height: 36px\9;
    }

    .paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
        height: 36px\9;
        line-height: 36px\9;
    }

.dialog {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.dialog-content {
    background-color: #fefefe;
    margin: 12% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 70%; /* Could be more or less, depending on screen size */
}

@media (max-width: 992px) {
    .dialog {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0px;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    /* Modal Content/Box */
    .dialog-content {
        background-color: #fefefe;
        margin: 12% auto; /* 15% from the top and centered */
        padding: 20px;
        border: 1px solid #888;
        width: 90%; /* Could be more or less, depending on screen size */
    }
}

@media (max-width: 767px) {
    .dialog {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0px;
        top: 0px;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    /* Modal Content/Box */
    .dialog-content {
        background-color: #fefefe;
        margin: 33% auto; /* 15% from the top and centered */
        padding: 10px;
        border: 1px solid #888;
        width: 95%; /* Could be more or less, depending on screen size */
    }
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.cartsbody .card {
    margin: auto;
    max-width: 1140px;
    width: 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent;    
}

@media(max-width:769px) {
    .cartsbody .card {
        margin: 1vh auto;
    }
}

.cartsbody .cart {
    background-color: #fff;
    padding: 2vh 3vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}

@media(max-width:769px) {
    .cartsbody .cart {
        padding: 2vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem;
    }
}

.cartsbody .summary {
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 2vh;
    color: rgb(65, 65, 65);
}

@media(max-width:769px) {
    .cartsbody .summary {
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem;
    }
}

.cartsbody .summary .col-2 {
    padding: 0;
}

.cartsbody .summary .col-10 {
    padding: 0;
}

.cartsbody .row {
    margin: 0;
}

.cartsbody .title b {
    font-size: 18px !important;
}

.cartsbody .main {
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}

.cartsbody .col-2, .col {
    padding: 0 1vh;
}

.cartsbody a {
    padding: 0 1vh;
}

.cartsbody .close {
    margin-left: auto;
    font-size: 0.7rem;
}

.cartsbody img {
    width: 3.5rem;
    height: 4.5rem;
}

@media(max-width:992px) {
    .cartsbody img {
        width: auto;
        height: auto;
    }
}

.cartsbody .back-to-shop {
    margin-top: 4.5rem;
}

.cartsbody .card .row .cart h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.cartsbody h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.cartsbody hr {
    padding: 0px;
    margin-top: 0.625rem;
}

.cartsbody form {
    padding: 2vh 0;
}

.cartsbody select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 0.5vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.cartsbody input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

    .cartsbody input:focus::-webkit-input-placeholder {
        color: transparent;
    }

.cartsbody .input-cart-group {
    border-radius: 0px !important;
}

.cartsbody .btn-cart-group {
    margin-top: 1px;
    margin-bottom: 1px;
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    outline: none;
    border-radius: 0px !important
}

.cartsbody .btn-cart {
    background-color: var(--layout-cart-btn-background-color);
    border-color: var(--layout-cart-btn-background-color);
    color: var(--layout-cart-btn-text-color);
    width: 100%;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0;
}

    .cartsbody .btn-cart:focus {
        box-shadow: none;
        outline: none;
        box-shadow: none;
        color: white;
        -webkit-box-shadow: none;
        -webkit-user-select: none;
        transition: none;
    }

    .cartsbody .btn-cart:hover {
        color: var(--layout-cart-btn-text-hover-color);
    }

.cartsbody a {
    color: black;
}

    .cartsbody a:hover {
        color: black;
        text-decoration: none;
    }

.cartsbody .box {
    height: 20px;
    width: 20px;
    border: 1px solid black;
}

.cartsbody .lightgrey {
    background-color: lightgray;
}

.cartsbody .white {
    background-color: #fff
}

.cartsbody-wise .card {
    margin: auto;
    max-width: 1140px;
    width: 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent;
}

@media(max-width:821px) {
    .cartsbody-wise .card {
        margin: 1vh auto;
    }
}

.cartsbody-wise .cart {
    background-color: #fff;
    padding: 2vh 3vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}

@media(max-width:821px) {
    .cartsbody-wise .cart {
        padding: 2vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem;
    }
}

.cartsbody-wise .summary {
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 2vh;
    color: rgb(65, 65, 65);
}

@media(max-width:821px) {
    .cartsbody-wise .summary {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }
}

.cartsbody-wise .summary .col-2 {
    padding: 0;
}

.cartsbody-wise .summary .col-10 {
    padding: 0;
}

.cartsbody-wise .row {
    margin: 0;
}

.cartsbody-wise .title b {
    font-size: 18px !important;
}

.cartsbody-wise .main {
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}

.cartsbody-wise .col-2, .col {
    padding: 0 1vh;
}

.cartsbody-wise a {
    padding: 0 1vh;
}

.cartsbody-wise .close {
    margin-left: auto;
    font-size: 0.7rem;
}

.cartsbody-wise img {
    width: 3.5rem;
    height: 4.5rem;
}

@media(max-width:992px) {
    .cartsbody-wise img {
        width: auto;
        height: auto;
    }
}

.cartsbody-wise .back-to-shop {
    margin-top: 4.5rem;
}

.cartsbody-wise .card .row .cart h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.cartsbody-wise h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.cartsbody-wise hr {
    padding: 0px;
    margin-top: 0.625rem;
}

.cartsbody-wise form {
    padding: 2vh 0;
}

.cartsbody-wise select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 0.5vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.cartsbody-wise input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

    .cartsbody-wise input:focus::-webkit-input-placeholder {
        color: transparent;
    }

.cartsbody-wise .input-cart-group {
    border-radius: 0px !important;
}

.cartsbody-wise .btn-cart-group {
    margin-top: 1px;
    margin-bottom: 1px;
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    outline: none;
    border-radius: 0px !important
}

.cartsbody-wise .btn-cart {
    background-color: var(--layout-cart-btn-background-color);
    border-color: var(--layout-cart-btn-background-color);
    color: var(--layout-cart-btn-text-color);
    width: 100%;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0;
}

    .cartsbody-wise .btn-cart:focus {
        box-shadow: none;
        outline: none;
        box-shadow: none;
        color: white;
        -webkit-box-shadow: none;
        -webkit-user-select: none;
        transition: none;
    }

    .cartsbody-wise .btn-cart:hover {
        color: var(--layout-cart-btn-text-hover-color);
    }

.cartsbody-wise a {
    color: black;
}

    .cartsbody-wise a:hover {
        color: black;
        text-decoration: none;
    }

.cartsbody-wise .box {
    height: 20px;
    width: 20px;
    border: 1px solid black;
}

.cartsbody-wise .lightgrey {
    background-color: lightgray;
}

.cartsbody-wise .white {
    background-color: #fff
}

.col-md-5-wise, .col-md-7-wise {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 822px) {
    .col-md-5-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-7-wise {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
}

.history-wise .card {
    margin: auto;
    max-width: 1140px;
    width: 100%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent;
}

@media(max-width:769px) {
    .history-wise .card {
        margin: 1vh auto;
    }
}

.history-wise .cart {
    background-color: #fff;
    padding: 2vh 3vh;
    border-radius: 1rem;
}

@media(max-width:769px) {
    .history-wise .cart {
        padding: 2vh;        
    }
}

.history-wise .row {
    margin: 0;
}

.history-wise .title b {
    font-size: 18px !important;
}

.history-wise .main {
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}

.history-wise .col-2, .col {
    padding: 0 1vh;
}

.history-wise a {
    padding: 0 1vh;
}

.history-wise .close {
    margin-left: auto;
    font-size: 0.7rem;
}

.history-wise img {
    width: 3.5rem;
    height: 4.5rem;
}

.history-wise .back-to-shop {
    margin-top: 4.5rem;
}

.history-wise .card .row .cart h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.history-wise h5 {
    margin-top: 0.5vh;
    font-size: 18px !important;
    font-weight: 400;
}

.history-wise hr {
    padding: 0px;
    margin-top: 0.625rem;
}

.history-wise form {
    padding: 2vh 0;
}

.history-wise select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 0.5vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.history-wise input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

    .history-wise input:focus::-webkit-input-placeholder {
        color: transparent;
    }

.history-wise .input-cart-group {
    border-radius: 0px !important;
}

.history-wise .btn-cart-group {
    margin-top: 1px;
    margin-bottom: 1px;
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    outline: none;
    border-radius: 0px !important
}

.history-wise .btn-cart {
    background-color: var(--layout-cart-btn-background-color);
    border-color: var(--layout-cart-btn-background-color);
    color: var(--layout-cart-btn-text-color);
    width: 100%;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0;
}

    .history-wise .btn-cart:focus {
        box-shadow: none;
        outline: none;
        box-shadow: none;
        color: white;
        -webkit-box-shadow: none;
        -webkit-user-select: none;
        transition: none;
    }

    .history-wise .btn-cart:hover {
        color: var(--layout-cart-btn-text-hover-color);
    }

.history-wise a {
    color: black;
}

    .history-wise a:hover {
        color: black;
        text-decoration: none;
    }

.history-wise .box {
    height: 20px;
    width: 20px;
    border: 1px solid black;
}

.history-wise .lightgrey {
    background-color: lightgray;
}

.history-wise .white {
    background-color: #fff
}

#btn-back-to-top {
    z-index: 10;
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: none;
    background-color: var(--layout-bubble-btn-background-color);
    color: var(--layout-bubble-btn-text-color);
}

#btn-back {
    z-index: 10;
    position: fixed;
    bottom: 140px;
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: none;
    background-color: var(--layout-bubble-btn-background-color);
    color: var(--layout-bubble-btn-text-color);
}

#btn-search {
    z-index: 10;
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: none;
    background-color: var(--layout-bubble-btn-background-color);
    color: var(--layout-bubble-btn-text-color);
}

@media (max-width: 767px) {
    #btn-search {
        z-index: 10;
        position: fixed;
        bottom: 80px;
        right: 20px;
        display: block;
        width: 50px;
        height: 50px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
        border: none;
    }
}

#btn-whatsapp {
    z-index: 10;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    border: none;
    background-color: var(--layout-bubble-btn-background-color);
    color: var(--layout-bubble-btn-text-color);
    /*background-color: transparent;
    color: #d6b86e;*/
    padding: 0;
    padding-top: 5px;
}

.toast {
    width: 230px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background-color: black;
    border-radius: 12px;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    border: 5px solid #029c91;
    opacity: 0;
    z-index: 15;
}

    .toast .icon {
        align-items: center;
        justify-content: center;
        font-size: 10px;
        margin-right: 1rem;
        color: white;
    }

    .toast .text {
        color: white;
    }

.show-toast {
    background-color: black;
    color: white;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}

.toast-active {
    display: flex;
    opacity: 1;
}

.toast-page-center-wise {
    top: 48%;
    left: 48%;
}

@media (max-width: 992px) {
    .toast-page-center-wise {
        top: 48%;
        left: 23%;
    }
}

.center-wise {
}

@media (max-width: 992px) {
    .center-wise {
        position: relative;
        margin-left: calc(100vw/10);
        margin-right: calc(100vw/10);
    }
}

@media (max-width: 767px) {
    .center-wise {
        position: relative;
        margin-left: calc(100vw/18);
        margin-right: calc(100vw/18);
    }
}

.center-toast-wise {
}

@media (max-width: 992px) {
    .center-toast-wise {
        position: relative;
        margin-left: calc(100vw/4);
        margin-right: calc(100vw/4);
    }
}

@media (max-width: 767px) {
    .center-toast-wise {
        position: relative;
        margin-left: calc(100vw/5);
        margin-right: calc(100vw/5);
    }
}

.slide-mt-wise {
    margin-top: 70px;
}

@media(max-width:992px) {
    .slide-mt-wise {
        margin-top: 0px;
    }
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.carousel-inner .carousel-item {
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}

.carousel .carousel-indicators li {
    background-color: darkslategray;
}

    .carousel .carousel-indicators li.active {
        background-color: black;
    }

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(1);
}

.faq {
    padding: 0px 0;
}

    .faq .faq-list {
        padding: 0;
        list-style: none;
    }

        .faq .faq-list li {
            background-color: #f2f2f2;
            margin-bottom: 10px;
            border-radius: 10px;
            padding: 10px 40px;
            font-size: 16px;
            font-weight: 400;
        }

        .faq .faq-list a {
            display: block;
            position: relative;
            font-size: 16px;
            font-weight: 600;
            color: #333333;
            text-decoration: none;
        }

        .faq .faq-list i {
            font-size: 16px;
            position: absolute;
            left: -25px;
            top: 6px;
            transition: 1s;
        }

        .faq .faq-list img {
            position: absolute;
            width: 20px;
            height: 20px;
            left: -25px;
            top: 4px;
            transition: 1s;
        }

.faq-title {
    text-align: center;
    font-size: 17px;
    border-bottom: 2px dashed #ffffff;
    margin-bottom: 30px;
    padding-bottom: 10px;
    color: #ffffff;
}

.faq .faq-list p {
    padding-top: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
}

.collapsed i.fas.fa-arrow-up {
    transform: rotate(180deg);
}

.collapsed img.arrow-up {
    transform: rotate(180deg);    
}

.checkbox-wise label {
    display: block;
    padding: 0;
    margin-right: 12px;
    cursor: pointer;
}

.checkbox-wise input[type=checkbox] {
    display: none;
}

    .checkbox-wise input[type=checkbox] + span {
        padding-left: 26px;
        /*background: url(../images/icons/cbx-off.svg) no-repeat;*/
        background: url(../images/icons/circle.svg) no-repeat;
        background-size: 15px 15px;
        user-select: none;
    }

    .checkbox-wise input[type=checkbox]:checked + span {
        /*background: url(../images/icons/cbx-on.svg) no-repeat;*/
        background: url(../images/icons/circletick.svg) no-repeat;
        background-size: 15px 15px;
    }

.checkbox-wise-address .black {    
    fill: white;
    stroke: black;
    stroke-width: 1px;
    stroke-linejoin: round;
}

.checkbox-wise-address path {
    fill: none;
    stroke-linejoin: round;
    stroke-dasharray: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.2s;
    transition-timing-function: linear;
}

.checkbox-wise-address .v1 {
    stroke: white;
    stroke-width: 2px;
}

.checkbox-wise-address .v2 {
    stroke: black;
    stroke-width: 1px;
}

.checkbox-wise-address svg {
    width: 1em;
    height: 1em;
    vertical-align: text-top;  
    margin-right: 2px;
}

.checkbox-wise-address input[type=checkbox] + svg > path {
    stroke-dashoffset: 12;
}

.checkbox-wise-address input[type=checkbox]:checked + svg > path {
    stroke-dashoffset: 0;
}

.checkbox-wise-address input[type=checkbox] {
    display: none;
}

.checkbox-wise-address label {
    font-size: 16px;
    position: relative;
    margin: auto;
    left: 0;
    right: 0;
    display: block;
    width: fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    float: right;
    margin-left: 5px;
}

.form-control-sm-wise {
    display: block;
    width: 100%;
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.f-dropdown {
    position: relative;
    z-index: 1;
}

    .f-dropdown select {
        display: none;
    }

    .f-dropdown > span {
        cursor: pointer;
        height: 50px;
        padding: 8px 12px;
        /*border-radius: 6px;*/
        display: flex;
        align-items: center;
        position: relative;
        color: #bbb;
        border: 1px solid #ccc;
        background: #fff;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

        .f-dropdown > span > span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 12px;
        }

        .f-dropdown > span img {
            width: 35px;
            height: 35px;
            margin-right: 10px;
        }

        .f-dropdown > span:before, .f-dropdown > span:after {
            content: "";
            display: block;
            position: absolute;
            /*width: 8px;
            height: 2px;*/
            /*border-radius: 1px;*/
            top: 48%;
            right: 12px;
            /*background: #000;
            transition: all 0.3s ease;*/
            border-bottom: 6px solid #000000;
            border-left: 5px solid rgba(0, 0, 0, 0);
            border-right: 5px solid rgba(0, 0, 0, 0);
            transform: rotate(180deg);
        }

        /*.f-dropdown > span:before {
            margin-right: 4px;
            transform: scale(0.96, 0.8) rotate(50deg);
        }

        .f-dropdown > span:after {
            transform: scale(0.96, 0.8) rotate(-50deg);
        }*/

    .f-dropdown ul {
        margin: 0;
        padding: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        max-height: calc(var(--max-scroll) * 46px);
        top: 40px;
        left: 0;
        z-index: 1;
        right: 0;
        background: #FFF;
        border: 1px solid #CCC;
        /*border-radius: 6px;*/
        overflow-x: hidden;
        overflow-y: auto;
        transform-origin: 0 0;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
        transform: translate(0, 5px);
    }

        .f-dropdown ul li {
            padding: 0;
            margin: 0;
        }

            .f-dropdown ul li a {
                cursor: pointer;
                display: block;
                padding: 8px 12px;
                color: #000;
                text-decoration: none;
                outline: none;
                position: relative;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
            }

                .f-dropdown ul li a img {
                    width: 40px;
                    height: 40px;
                    margin-right: 10px;
                }

                .f-dropdown ul li a:hover {
                    color: lightblue;
                }

            .f-dropdown ul li.active a {
                color: #FFF;
                background: #303F9F;
            }

                .f-dropdown ul li.active a:before, .f-dropdown ul li.active a:after {
                    --scale: 0.6;
                    content: "";
                    display: block;
                    width: 10px;
                    height: 2px;
                    position: absolute;
                    right: 12px;
                    top: 50%;
                    opacity: 0;
                    background: #FFF;
                    transition: all 0.2s ease;
                }

                /*.f-dropdown ul li.active a:before {
                    transform: rotate(45deg) scale(var(--scale));
                }

                .f-dropdown ul li.active a:after {
                    transform: rotate(-45deg) scale(var(--scale));
                }

                .f-dropdown ul li.active a:hover:before, .f-dropdown ul li.active a:hover:after {
                    --scale: 0.9;
                    opacity: 1;
                }*/

            .f-dropdown ul li:first-child a {
                /*border-radius: 6px 6px 0 0;*/
            }

            .f-dropdown ul li:last-child a {
                /*border-radius: 0 0 6px 6px;*/
            }

    .f-dropdown.disabled {
        opacity: 0.7;
    }

        .f-dropdown.disabled > span {
            cursor: not-allowed;
        }

    /*.f-dropdown.filled > span {
        color: #000;
    }*/

    .f-dropdown.open {
        z-index: 15;
    }

        .f-dropdown.open > span {
            border-color: #AAA;
        }

            /*.f-dropdown.open > span:before, .f-dropdown.open > span:after {
                background: #000;
            }

            .f-dropdown.open > span:before {
                transform: scale(0.96, 0.8) rotate(-50deg);
            }

            .f-dropdown.open > span:after {
                transform: scale(0.96, 0.8) rotate(50deg);
            }*/

        .f-dropdown.open ul {
            opacity: 1;
            visibility: visible;
            transform: translate(0, 12px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
        }
/* --------------------------- */
.f-group {
    margin: 0 auto;
    text-align: left;
}

    .f-group select {
        width: 100%;        
    }

.f-control {
    font-size: 14px;
    line-height: normal;
    color: #000;
    display: inline-block;
    background-color: #ffffff;
    border: #ccc 1px solid;
    /*border-radius: 6px;*/
    padding: 8px 12px;
    outline: none;
}

/*.blog-img-wise {
    width: 100% !important;
    height: 500px !important;
}

@media (max-width: 992px) {
    .blog-img-wise {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (max-width: 481px) {
    .blog-img-wise {
        width: 100% !important;
        height: 180px !important;
    }
}

.blog-img-wise:hover {
    transform: scale(1.2);
}*/

.blog-entry {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .blog-entry {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .blog-entry {
        margin-bottom: 30px;
    }
}

.blog-entry .img, .blog-entry .text {
    width: 50%;
}

@media (max-width: 991.98px) {
    .blog-entry .img, .blog-entry .text {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .blog-entry .img {
        height: 300px;
    }
}

.blog-entry .text {
    position: relative;
    margin: 0 auto;
    z-index: 0;
}

    .blog-entry .text .heading {
        font-size: 22px;
        margin-bottom: 0;
        font-weight: 500;
        font-style: italic;
    }

        .blog-entry .text .heading a {
            color: #000000;
        }

            .blog-entry .text .heading a:hover, .blog-entry .text .heading a:focus, .blog-entry .text .heading a:active {
                color: var(--layout-color);
            }

.blog-entry .meta p span {
    padding-right: 10px;
}

.blog-entry .btn-custom {
    color: var(--layout-color);
    font-style: italic;
    font-weight: 700;
}

    .blog-entry .btn-custom span {
        font-size: 12px;
    }

@media (max-width: 767px) {
    #sidebar {
        display: none;
    }

        #sidebar.active {
            display: block;
        }
}

/*input[type=number] {    
    position: relative;
    padding: 5px;
    padding-right: 25px;
}

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        opacity: 1;
    }

    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: inner-spin-button !important;
        width: 25px;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
    }*/


.quantity {
    position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.quantity input {
    width: 70px;
    height: 32px;
    line-height: 1.65;
    text-align: center;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    /*padding-left: 20px;*/
    padding-right: 10px;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    border-radius: 4px;
}

    .quantity input:focus {
        outline: 0;
    }

.quantity-nav {
    float: left;
    position: relative;
    height: 32px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .quantity-button:active {
        background: #EAEAEA;
    }

    .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        top: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-family: "FontAwesome";
        border-radius: 0 4px 0 0;
        line-height: 1.6
    }

    .quantity-button.quantity-down {
        position: absolute;
        bottom: 0;
        height: 50%;
        font-family: "FontAwesome";
        border-radius: 0 0 4px 0;
    }


.number-input {
    border: 1px solid #000;
    display: inline-flex;
}

    .number-input,
    .number-input * {
        box-sizing: border-box;
    }

        .number-input button {
            border: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0;
            position: relative;
        }

            .number-input button:after {
                display: inline-block;
                position: absolute;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                content: '\f077';
                transform: translate(-50%, -50%) rotate(180deg);
            }

            .number-input button.plus:after {
                transform: translate(-50%, -50%) rotate(0deg);
            }

        .number-input input[type=number] {
            border: solid #000;
            border-width: 0 1px;
            text-align: center;
        }

.productSingleObjectAlign-wise {
    text-align: left !important;
}

@media (max-width: 991px) {
    .productSingleObjectAlign-wise {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

.productSingleTextAlign-wise {
    text-align: left !important;
}

@media (max-width: 991px) {
    .productSingleTextAlign-wise {
        text-align: center !important;
        justify-content: center !important;        
    }
}

.productSingleTextNameAlign-wise {
    text-align: center !important;
}

@media (max-width: 991px) {
    .productSingleTextNameAlign-wise {
        text-align: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.nav-pills-wise {
    width: 100%;
    font-family: "NotoSerifHK-Regular";
    display: block;
}

    .nav-pills-wise p {
        margin-bottom: 0;
    }

    .nav-pills-wise .nav-link {
        padding: 4px 8px !important;
        border-radius: 0;
        margin-bottom: 0;
        color: #000000;
        font-size: 18px;
        font-weight: 700;
        position: relative;
        border: 1px solid transparent;
        background: rgba(0, 0, 0, 0.05);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
    }

@media (max-width: 375px) {
    .nav-pills-wise .nav-link {
        padding: 8px 16px !important;
        border-radius: 0;
        margin-bottom: 0;
        color: #000000;
        font-size: 18px;
        font-weight: 600;
        position: relative;
        border: 1px solid transparent;
        background: rgba(0, 0, 0, 0.05);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
    }
}

        .nav-pills-wise .nav-link:after {
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            width: 0;
            content: '';
            height: 0;
            margin: 0 auto;
            border-style: solid;
            border-width: 10px 10px 0 10px;
            border-color: var(--layout-nav-pills-wise-background-color) transparent transparent transparent;
            opacity: 0;
        }

        .nav-pills-wise .nav-link span {
            display: block;
            font-size: 14px;
        }

/*@media (max-width: 991.98px) {
    .nav-pills-wise .nav-link {
        width: 100%;
    }
}*/

.nav-pills-wise .nav-link:hover {
    background: var(--layout-nav-pills-wise-background-color);
    color: var(--layout-nav-pills-wise-text-color);
}

.nav-pills-wise .nav-link.active {
    color: var(--layout-nav-pills-wise-text-color);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: var(--layout-nav-pills-wise-background-color);
}

    .nav-pills-wise .nav-link.active:after {
        opacity: 1;
    }

/*@media (max-width: 767.98px) {
    .nav-pills-wise .nav-link.active:after {
        opacity: 0;
    }
}*/

/*@media (max-width: 767.98px) {
    .nav-pills-wise .nav-link {
        display: block;
        margin-bottom: 5px;
    }
}*/

.circle {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-align: center;
    background: #000
}

.display-info-banner-wise {
    margin-top: -50px;
    display: block;
}

@media (max-width: 821px) {
    .display-info-banner-wise {
        display: none;
    }
}

.display-info-cart-wise {
    display: block;
}

@media (max-width: 821px) {
    .display-info-cart-wise {
        display: none;
    }
}

.display-menu-advert-wise {
    display: block;
}

@media (max-width: 991px) {
    .display-menu-advert-wise {
        visibility: hidden;
    }
}

.display-menu-hr-wise {
    display: block;
}

@media (max-width: 767px) {
    .display-menu-hr-wise {
        display: none;
    }
}

.select2.narrow {   
    width: 100% !important;
}

.wrap.select2-selection--single {
    min-height: 25px !important;
    height: 100% !important;
}

.select2-container .wrap.select2-selection--single .select2-selection__rendered {
    word-wrap: break-word !important;
    text-overflow: inherit !important;
    white-space: normal !important;
}

.selectpicker-background-color {
    background-color: white !important;
    border-color: lightgray;
}

.selectpicker-warning-color {
    border: 1px solid red;
    border-color: red;
}

.summary-wise::after {
    font-size: 60px;
    display: inline-block;
    transition: 0.2s;        
}

details[open] i.fas.fa-sort-down {
    -webkit-transform: rotate(360deg) translateZ(0);
    -ms-transform: rotate(360deg) translateZ(0);
    transform: rotate(360deg) translateZ(0);
}

.footer-img-wise {
    width: 30%;
    height: 30%;
}

@media (max-width: 767px) {
    .footer-img-wise {
        width: 10%;
        height: 10%;
    }
}

.footer-img-align-wise {
    text-align: left !important;
}

@media (max-width: 991px) {
    .footer-img-align-wise {
        text-align: center !important;
        justify-content: center !important;
    }
}

.footer-payment-img-wise {
    width: 85%;
    height: 85%;
}

@media (max-width: 991px) {
    .footer-payment-img-wise {
        width: 100%;
        height: 100%;
    }
}

.require-field-wise {
    color: red;
    font-size: 15px;
    font-weight: bold;
}

.require-field-alert-wise {
    display: inline;
    color: black;
    font-size: 10px;
}

.text-danger {
    color: red !important;
}

.text-producthighlight-wise {
    overflow: hidden;
    min-height: 31px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-productname-wise {
    overflow: hidden;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn {
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 500;
}

    .btn:hover, .btn:active, .btn:focus {
        outline: none;
    }

    .btn.btn-primary {
        background: var(--layout-btn-background-color) !important;
        border: 1px solid var(--layout-btn-background-color) !important;
        color: #fff !important;
    }

        .btn.btn-primary:hover {
            border: 1px solid var(--layout-btn-background-color);
            background: transparent;
            color: var(--layout-btn-background-color);
        }

        .btn.btn-primary.btn-outline-primary {
            border: 1px solid var(--layout-btn-background-color);
            background: transparent;
            color: var(--layout-btn-background-color);
        }

            .btn.btn-primary.btn-outline-primary:hover {
                border: 1px solid transparent;
                background: var(--layout-btn-background-color);
                color: #fff;
            }

.btn-footer-wise {
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--layout-footer-btn-background-color);
}

a {
    color: var(--layout-color);
}

.ftco-footer {
    font-size: 16px;
    padding: 6em 0 0 0;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
}

    .ftco-footer .logo {
        text-transform: uppercase;
    }

        .ftco-footer .logo a {
            position: relative;
        }

            .ftco-footer .logo a span {
                color: rgba(255, 255, 255, 0.3);
            }

    .ftco-footer .ftco-footer-widget h2 {
        font-weight: normal;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
        font-size: 20px;
        font-weight: 400;
    }

    .ftco-footer .ftco-footer-widget ul li {
        margin-bottom: 10px;
    }

        .ftco-footer .ftco-footer-widget ul li a {
            color: rgba(255, 255, 255, 0.5);
        }

            .ftco-footer .ftco-footer-widget ul li a span {
                color: rgba(255, 255, 255, 0.5);
                font-size: 14px;
            }

    .ftco-footer .ftco-footer-widget .btn-primary {
        background: #fff !important;
        border: 2px solid #fff !important;
    }

        .ftco-footer .ftco-footer-widget .btn-primary:hover {
            background: #fff;
            border: 2px solid #fff !important;
        }

    .ftco-footer p {
        color: rgba(255, 255, 255, 0.9);
    }

    .ftco-footer a {
        color: #fff;
    }

        .ftco-footer a:hover {
            color: #b7472a;
        }

@media (max-width: 767px) {
    .ftco-footer .ftco-footer-widget h2 {
        font-weight: normal;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 400;
    }

    .ftco-footer .ftco-footer-widget ul li {
        margin-bottom: 5px;
    }
}

.ftco-footer-social-wise li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block;
}

    .ftco-footer-social-wise li a {
        height: 50px;
        width: 50px;
        display: block;
        float: left;
        background: var(--layout-footer-social-btn-background-color);
        border-radius: 50%;
        position: relative;
    }

        .ftco-footer-social-wise li a span {
            position: absolute;
            font-size: 18px;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

        .ftco-footer-social-wise li a:hover {
            color: var(--layout-footer-social-text-color);
        }

.input-search-wise input[type="text"] {
    width: 100%;
    border: 2px solid #aaa;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 1px 0px;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
}

    .input-search-wise input[type="text"]:focus {
        border-color: #d6b86e;
        box-shadow: 0 0 8px 0 #d6b86e;
    }

.input-search-wise .inputWithIcon input[type="text"] {
    padding-left: 40px;
}

.input-search-wise .inputWithIcon {
    position: relative;
}

    .input-search-wise .inputWithIcon i {
        position: absolute;
        left: 0;
        top: 8px;
        padding: 9px 8px;
        color: #aaa;
        transition: 0.3s;
    }

    .input-search-wise .inputWithIcon input[type="text"]:focus + i {
        color: #d6b86e;
    }

    .input-search-wise .inputWithIcon.inputIconBg i {
        background-color: #aaa;
        color: #fff;
        padding: 9px 4px;
        border-radius: 4px 0 0 4px;
    }

    .input-search-wise .inputWithIcon.inputIconBg input[type="text"]:focus + i {
        color: #fff;
        background-color: #d6b86e;
    }


.panel-title > a:before {
    float: right !important;
    font-family: icomoon;
    font-style: normal !important;
    content: "\e903";
    padding-right: 5px;
}

.panel-title > a.collapsed:before {
    float: right !important;
    content: "\e904";
    font-style: normal !important;
}

.panel-title > a:hover,
.panel-title > a:active,
.panel-title > a:focus {
    text-decoration: none;
    color: black;
}

select {
    width: calc(100% + 20px);
    font-size: 16px;
    border: 1px solid black;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../../CustomersPage/images/icons/invtri.png") calc(100% - 12px) /10px no-repeat #fff;
    background-color: #fff !important;
}

.details-cart-product-wise details > summary {
    list-style: none;
}

    .details-cart-product-wise details > summary::-webkit-details-marker {
        display: none;
    }

.cart-detail-summary-name-wise {
    width: 300px !important;
    line-height: 1rem;
}

@media (max-width: 1070px) {
    .cart-detail-summary-name-wise {
        width: 280px !important;
        line-height: 1rem;
    }
}

@media (max-width: 991px) {
    .cart-detail-summary-name-wise {
        width: 260px !important;
        line-height: 1rem;
    }
}

@media (max-width: 821px) {
    .cart-detail-summary-name-wise {
        width: 700px !important;
        line-height: 1rem;
    }
}

@media (max-width: 767px) {
    .cart-detail-summary-name-wise {
        width: 600px !important;
        line-height: 1rem;
    }
}

@media (max-width: 663px) {
    .cart-detail-summary-name-wise {
        width: 500px !important;
        line-height: 1rem;
    }
}

@media (max-width: 583px) {
    .cart-detail-summary-name-wise {
        width: 450px !important;
        line-height: 1rem;
    }
}

@media (max-width: 563px) {
    .cart-detail-summary-name-wise {
        width: 365px !important;
        line-height: 1rem;
    }
}

@media (max-width: 498px) {
    .cart-detail-summary-name-wise {
        width: 300px !important;
        line-height: 1rem;
    }
}

@media (max-width: 423px) {
    .cart-detail-summary-name-wise {
        width: 260px !important;
        line-height: 1rem;
    }
}

.dbox {
    width: 100%;
    padding: 50px;
}

@media (max-width: 767.98px) {
    .dbox {
        padding: 10px;
    }
}

.dbox p {
    margin-bottom: 0;
}

    .dbox p span {
        font-weight: 500;
        color: #000000;
    }

    .dbox p a {
        color: #b7472a;
    }

.dbox .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--layout-contact-us-dbox-background-color);
    margin: 0 auto;
}

    .dbox .icon span {
        font-size: 30px;
        color: var(--layout-contact-us-dbox-text-color);
    }

.dbox .text {
    width: 100%;
    text-align: left;
}

@media (max-width: 767.98px) {
    .dbox .text {
        width: 100%;
        text-align: center;
    }
}

.mobile-hide-wise {
    display: block;
}

@media (max-width: 992px) {
    .mobile-hide-wise {
        display: none;
    }
}

.mobile-show-wise {
    display: none;
}

@media (max-width: 992px) {
    .mobile-show-wise {
        display: block;
    }
}

.mobile-hide-wise-767 {
    display: block;
}

@media (max-width: 767px) {
    .mobile-hide-wise-767 {
        display: none;
    }
}

.mobile-show-wise-767 {
    display: none;
}

@media (max-width: 767px) {
    .mobile-show-wise-767 {
        display: block;
    }
}

.mobile-hide-map-wise {
    display: block;
}

@media (max-width: 1199px) {
    .mobile-hide-map-wise {
        display: none;
    }
}

.mobile-show-if-no-map-wise {
    display: none;
}

@media (max-width: 1199px) {
    .mobile-show-if-no-map-wise {
        display: block;
    }
}

.container-fluid-contact-us-wise {
    width: 100%;
    padding-right: 75px;
    padding-left: 75px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .container-fluid-contact-us-wise {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

.password-field {
    position: relative;
}
    .password-field .password {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }