﻿body {
    font-family: 'Montserrat-Regular', 'Prompt-Regular'
}

.badge {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    padding: 3px 10px 4px 10px;
    border-radius: 10px;
}

.accordion > .card > .card-header {
    cursor: pointer;
    background: #000000;
    color: #ffff;
    font-size: 0.8rem;
}

.card-header {
    padding: 1rem 1.25rem;
}

.full-width {
    width: 100%;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 15px;
    color: #000000;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: rgba(0,0,0,0.2) 0px 2px 8px 3px;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
    margin-left: -3px;
    content: "";
    border-width: 5px 5px 0;
    border-top-color: #ffffff;
}

.logo.resize {
    /* top: 80px; */
    bottom: 0px;
    opacity: 0;
    transform: scale(0.65) translate(-75%, -100%);
    transition: all 1s ease-in-out 1s;
}

.btn-green {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    margin-top: 15px;
    padding: 7px 50px 7px 50px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #64BC46;
    border: 1px solid #64BC46;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

.btn-brown {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    margin-top: 15px;
    padding: 7px 50px 7px 50px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #d2bdad;
    border: #7f5b40;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

.btn-white {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    margin-top: 15px;
    padding: 7px 50px 7px 50px;
    color: #000000;
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

.btn, .btn:hover {
    border-radius: 0px;
    padding: 0.3rem 2rem;
    border: none;
    color: #ffffff;
    font-size: 0.8rem;
    background: #000000;
}

.form-control {
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    color: #495057;
    background-color: #f6f5f3;
    border: none;
    border-radius: 0px;
}


.is-contrasted {
    background-color: #000;
    color: #fff;
}


#main-content {
    margin-top: 130px;
    min-height: 500px;
}

    #main-content.no-padding {
        margin-top: 0px;
    }


@media (max-width: 767px) {
    #main-content {
        margin-top: 130px;
    }

    .logo {
        width: 35%;
    }
}


@media (max-width: 430px) {
    #main-content {
        margin-top: 57px;
        min-height: 300px;
    }

        #main-content.no-padding {
            margin-top: 0px;
        }
}



/*****************************************
* Cookie
*****************************************/
.cookie {
    position: fixed;
    padding: 20px 0;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.6);
    color: #19110b;
    font-size: 0.8rem;
}

/*****************************************
* Sidebar Content 
*****************************************/
.sidebar-content {
    width: 30%;
    right: -30%;
    height: 100vh;
    position: fixed;
    z-index: 1041;
    top: 0px;
    transition: all 0.6s ease-in-out;
}

    .sidebar-content::before {
        background-color: rgba(29,29,29,.8);
    }


    .sidebar-content.show {
        right: 0px;
        background-color: rgba(255, 255, 255, 1);
        transition: all 0.6s ease-in-out;
    }

@media (max-width: 767px) {
    .sidebar-content {
        width: 100%;
        right: -100%;
        height: 100vh;
    }
}


.shopping-cart-wrapper {
    padding: 10%;
    position: relative;
    font-size: 0.8rem;
    height: 100%;
}

    .shopping-cart-wrapper .icon-close {
        position: absolute;
        top: 25px;
        right: 25px;
        cursor: pointer;
    }

    .shopping-cart-wrapper .title {
        color: #19110b;
        font-size: 1.5rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        line-height: 2.5rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .shopping-cart-wrapper .shopping-cart-lists {
        margin-bottom: 50px;
    }

        .shopping-cart-wrapper .shopping-cart-lists .empty-lists {
            text-align: center;
            font-size: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50vh;
        }

        .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid #eae8e4;
            position: relative;
        }

            .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .remove-item {
                position: absolute;
                top: -5px;
                right: -25px;
                padding: 3px 5px;
                cursor: pointer;
            }

            .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .shopping-cart-item-image {
                width: 15%;
            }

            .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .shopping-cart-item-name {
                width: 50%;
                padding: 0px 15px;
            }

                .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .shopping-cart-item-name .description {
                    font-size: 0.6rem;
                }

            .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .shopping-cart-item-qty {
                width: 15%;
            }

            .shopping-cart-wrapper .shopping-cart-lists .shopping-cart-item .shopping-cart-item-price {
                width: 20%;
            }



    .shopping-cart-wrapper .btn-wrapper {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }


    .shopping-cart-wrapper .btn-checkout, .shopping-cart-wrapper .btn-checkout:hover {
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 2px;
        padding: 13px 50px 10px 50px;
        color: #ffffff;
        font-size: 0.6rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #000000;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-bottom: 15px;
    }

    .shopping-cart-wrapper .btn-continue, .shopping-cart-wrapper .btn-continue:hover {
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 2px;
        padding: 13px 50px 10px 50px;
        color: #000000;
        font-size: 0.6rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 1px solid #000000;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-bottom: 15px;
    }

/*****************************************
* Modal Backdrop
*****************************************/
.modal-backdrop {
    background-color: transparent;
}

.modal-backdrop-transparent {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
}

.modal-backdrop-black {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 1040;
}

.modal-transition {
    transition: all 0.4s ease;
}


/*****************************************
* Navbar 
*****************************************/

.navbar {
    padding: 5rem 1rem 1rem 1rem;
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    transition: 0.5s ease all;
}


    .navbar.bg-transparent {
        /*background: none;*/
        background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.3));
    }


    /*  .navbar.bg-transparent::before {
            left: 0;
            top: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            content: "";
            z-index: -1;
            background-image: linear-gradient(to top, rgba(255,0,0,0), rgb(0, 0, 0,0.8));
        }*/


    .navbar .navbar-brand {
        transform: translateX(-50%);
        top: 20px;
        left: 50%;
        position: absolute;
        display: block;
        transition: 0.5s ease all;
    }

        .navbar .navbar-brand .navbar-logo {
            height: 45px;
        }


    .navbar.navbar-scroll {
        padding: 1.5rem 1rem 1.5rem 1rem;
        transition: 0.5s ease all;
        background: #000000;
    }

        .navbar.navbar-scroll.bg-transparent {
            background: #000000 !important;
        }

        .navbar.navbar-scroll .navbar-brand {
            display: none;
            transition: 0.5s ease all;
        }

        .navbar.navbar-scroll .navbar-nav .nav-link {
            color: #ffffff;
        }


.navbar-nav {
    margin: 0px auto;
}


.navbar-light .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}


    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover {
        color: #ffffff;
        font-size: 0.7rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        padding: 0.75rem 1rem;
    }


.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border: none;
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.toolbar-icon {
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .toolbar-icon .nav-toolbar-icon {
        position: relative;
    }

        .toolbar-icon .nav-toolbar-icon .nav-badge {
            color: #ffffff;
            background: #e62b2b;
            width: 18px;
            position: absolute;
            top: -3px;
            right: 0px;
            text-align: center;
            font-size: 0.6rem;
            border-radius: 50%;
            padding: 3px 2px 1px 2px;
        }

        .toolbar-icon .nav-toolbar-icon img {
            width: 16px;
            margin: 0.5rem 0.8rem;
        }

@media (max-width: 767px) {
    .navbar {
        padding: 1rem 1rem 1rem 1rem;
    }

    .toolbar-icon {
        position: fixed;
        top: 17px;
        right: 15px;
    }
}

@media (max-width: 430px) {

    .navbar {
        padding: 1rem 1rem 1rem 1rem;
    }

        /*.navbar.bg-transparent {
            background: #000000 !important;
        }*/

        .navbar .navbar-brand {
            top: 8px;
        }


        .navbar.navbar-scroll {
            padding: 1rem 1rem 1rem 1rem;
        }

            .navbar.navbar-scroll .navbar-brand {
                display: block;
            }

        .navbar .navbar-brand .navbar-logo {
            height: 40px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 3px;
    }


    .navbar-collapse {
        display: none;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }

    .toolbar-icon {
        display: flex;
    }
}

/*****************************************
* Banner 
*****************************************/
.banner-slide {
    overflow: hidden;
    height: auto;
}

.banner {
    z-index: 9;
}


.swiper-slide {
    position: relative;
}

.swiper-button-prev {
    left: 40px;
    color: #ffffff;
    background-image: url("../images/icons/left-chevron.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-prev::after {
        content: '';
    }

.swiper-button-next {
    right: 40px;
    color: #ffffff;
    background-image: url("../images/icons/right-chevron.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-next::after {
        content: '';
    }




.swiper-button-prev.dark-mode {
    top: 50%;
    left: 40px;
    color: #ffffff;
    background-image: url("../images/icons/left-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-prev.dark-mode::after {
        content: '';
    }


.swiper-button-next.dark-mode {
    top: 50%;
    right: 40px;
    color: #ffffff;
    background-image: url("../images/icons/right-chevron-black.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .swiper-button-next.dark-mode::after {
        content: '';
    }

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0px 10px !important;
}

.swiper-pagination-bullet-active {
    background: transparent;
    opacity: 1;
    border: 1px solid #ffffff;
    width: 15px;
    height: 15px;
}



.swiper-slide .swiper-text {
    position: absolute;
    top: 55%;
    width: 100%;
    text-align: center;
}

    .swiper-slide .swiper-text .title {
        text-align: center;
        color: #ffffff;
        font-size: 1.8rem;
        font-family: 'Montserrat-Light', 'Prompt-Light';
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .swiper-slide .swiper-text .headline {
        text-align: center;
        color: #ffffff;
        font-size: 4.5rem;
        font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        margin-bottom: 30px;
        text-transform: uppercase;
        line-height: 4.5rem;
    }

    .swiper-slide .swiper-text .btn-seemore {
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        letter-spacing: 2px;
        padding: 7px 0px 5px 0px;
        color: #000000;
        font-size: 0.6rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #ffffff;
        border: 1px solid #ffffff;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: inline-block;
        width: 150px;
        text-align: center;
        margin-right: 5px;
        text-decoration: none;
        text-transform: uppercase;
    }

    .swiper-slide .swiper-text .btn-seemore-outline {
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 2px;
        padding: 6px 25px 5px 25px;
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 3px solid #ffffff;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: inline-block;
        text-align: center;
        margin: 0px 10px;
        text-transform: uppercase;
        text-decoration: none;
    }

@media (max-width: 1240px) {

    .banner-slide {
        height: auto;
    }

    .swiper-wrapper {
        height: auto;
    }

    .banner-slide img {
        width: 100%;
        height: auto;
    }
}



@media (max-width: 430px) {
    .banner-slide {
        margin-top: 0px;
        height: auto;
    }

    .swiper-button-prev {
        left: 20px;
        width: 24px;
        height: 24px;
    }


    .swiper-button-next {
        right: 20px;
        width: 24px;
        height: 24px;
    }

    .swiper-pagination {
        bottom: 40px !important;
    }

    .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        margin: 0px 7px !important;
    }

    .swiper-pagination-bullet-active {
        background: transparent;
        border: 1px solid #ffffff;
        width: 10px;
        height: 10px;
    }

    .swiper-slide .swiper-text {
        top: 60%;
    }

        .swiper-slide .swiper-text .title {
            font-size: 0.8rem;
            margin-bottom: 5px;
        }

        .swiper-slide .swiper-text .headline {
            font-size: 1.8rem;
            line-height: 1.5rem;
            margin-bottom: 15px;
        }

        .swiper-slide .swiper-text .btn-seemore-outline {
            padding: 0px 15px 0px 15px;
            border: 1px solid #ffffff;
            font-size: 0.6rem;
        }
}


/*****************************************
* About
*****************************************/
#about {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 50px;
}

    #about .title {
        margin-bottom: 30px;
        font-size: 2.5rem;
    }

        #about .title span {
            color: #000000;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
        }

    #about .detail {
        color: #1d1d1d;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 30px;
        font-size: 1rem;
    }

@media (max-width: 430px) {
    #about {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 0px;
    }
}


/*****************************************
* Shop Content
*****************************************/
#shop-content {
}

    #shop-content .title {
        padding: 10px 20px 10px 20px;
        font-size: 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f7f7f7;
        ;
        margin-top: 30px;
        background: #f7f7f7;
    }

        #shop-content .title .arrow-direction {
            width: 50px;
            transform: rotate(270deg);
        }

            #shop-content .title .arrow-direction.expand {
                transform: rotate(0deg);
            }

    #shop-content .shoplists {
        padding: 20px;
        border: 1px solid #f7f7f7;
    }

        #shop-content .shoplists ul {
            list-style: none;
            padding-left: 0px;
        }

            #shop-content .shoplists ul li {
                font-size: 1.3rem;
                padding: 4px 0px;
                width: calc(100%/3 - 3px);
                display: inline-block;
            }

                #shop-content .shoplists ul li a {
                    text-decoration: none;
                    color: #000000;
                }


.shop-store {
    padding-bottom: 60px;
}

.store-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 40px 0px;
}

    .store-lists .store-item {
        width: calc(100%/4 - 20px);
        color: #1d1d1d;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        font-size: 0.8rem;
        padding: 15px 20px;
        background: #f7f7f7;
        margin: 10px 10px 10px 10px;
        text-align: center;
    }


@media (max-width: 430px) {

    #shop-content .shoplists ul li {
        width: 100%;
    }

    .shop-store {
        padding-bottom: 20px;
    }


    #shop-content .title {
        padding: 10px 20px 10px 20px;
        font-size: 1.8rem;
    }

        #shop-content .title .arrow-direction {
            width: 30px;
        }

    .store-lists {
        padding: 20px 0px;
    }

        .store-lists .store-item {
            width: 100%;
            font-size: 1rem;
            margin: 0px 0px 15px 0px;
        }
}


/*****************************************
* Home collection
*****************************************/
#home-collection {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0px;
}

    #home-collection .collection-info {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5%;
        background: url(/Upload/home/home-collection-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
    }

        #home-collection .collection-info .title {
            color: #ffffff;
            font-size: 2.5rem;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            line-height: 2.5rem;
            margin-bottom: 10px;
        }

        #home-collection .collection-info .detail {
            color: #ffffff;
            font-size: 2rem;
            line-height: 2.5rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            text-align: center;
            margin-bottom: 30px;
        }

        #home-collection .collection-info .btn-purchase {
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
            letter-spacing: 2px;
            margin-top: 15px;
            padding: 7px 50px 7px 50px;
            color: #000000;
            font-size: 0.8rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            text-decoration: none;
        }


    #home-collection .collection-image {
        width: 50%;
    }

        #home-collection .collection-image img {
            transition: 0.4s ease all;
        }

/*  #home-collection .collection-image:hover img {
            -webkit-filter: brightness(30%)
        }*/




@media (max-width: 767px) {
    #home-collection .collection-info .title {
        color: #ffffff;
        font-size: 0.8rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        line-height: 1.5rem;
        margin-bottom: 0px;
    }

    #home-collection .collection-info .detail {
        color: #ffffff;
        font-size: 1rem;
        line-height: 1.5rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        text-align: center;
        margin-bottom: 15px;
    }

    #home-collection .collection-info .btn-purchase {
        padding: 7px 50px 7px 50px;
        font-size: 0.6rem;
    }

    #home-collection .collection-image {
        width: 100%;
        order: 1;
    }

    #home-collection .collection-info {
        width: 100%;
        order: 2;
        height: 300px;
        background-size: 65% auto;
    }
}


@media (max-width: 430px) {
    #home-collection {
        margin: 0px;
    }
}


/*****************************************
* Social Banner
*****************************************/
#social-banner {
    padding: 0px 0px 0px 0px;
    background: #f9f9f9;
}


    #social-banner .title {
        color: #000000;
        font-size: 4rem;
        font-family: 'Montserrat-Light', 'Prompt-Regular';
        line-height: 2.5rem;
        margin-bottom: 10px;
        text-align: center;
    }

.social-banner-lists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px;
    padding: 40px 0px;
}

    .social-banner-lists .social-banner-item {
        width: calc(100%/6);
        padding: 30px;
        cursor: pointer;
    }

    .social-banner-lists .social-main-item {
        width: calc(100%/10);
        padding: 30px;
        cursor: pointer;
    }

@media (max-width: 430px) {
    #social-banner {
        padding: 20px 0px;
    }

        #social-banner .container {
            padding-left:20px;
            padding-right:20px;
        }

        #social-banner .title {
            font-size: 2.5rem;
        }

    .social-banner-lists {
        padding: 0px;
    }

        .social-banner-lists .social-banner-item {
            width: calc(100%/5);
            padding: 10px;
        }

        .social-banner-lists .social-main-item {
            width: calc(100%/5);
            padding: 10px;
        }
}


.social-text-lists {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 2%;
}

    .social-text-lists .social-text-container {
        width: calc(100%/3);
        margin-bottom: 20px;
    }

    .social-text-lists .social-text-lists-item {
        color: #000000;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        font-size: 1.5rem;
        font-family: 'Montserrat-Light', 'Prompt-Regular';
        padding: 10px 0px;
        cursor: pointer;
        text-decoration: none;
    }

        .social-text-lists .social-text-lists-item .social-text-lists-item-icon {
            width: 50px;
        }

        .social-text-lists .social-text-lists-item .social-text-lists-item-url {
            padding: 0px 15px;
        }

    .social-text-lists .social-text-lists-qrcode {
        text-align: center;
    }

        .social-text-lists .social-text-lists-qrcode img {
            width: 50%;
        }


.fb-body {
    order: 1;
}

.msg-body {
    order: 4;
}

.fb-home {
    order: 2;
}

.msg-home {
    order: 5;
}

.ig-bonsoir {
    order: 3;
}

.line-bonsoir {
    order: 6;
}


@media (max-width: 430px) {
    .social-text-lists {
        padding: 0px 2%;
    }

        .social-text-lists .social-text-container {
            width: calc(100%/2);
            margin-bottom: 20px;
        }


        .social-text-lists .social-text-lists-item {
            font-size: 1rem;
        }

            .social-text-lists .social-text-lists-item .social-text-lists-item-icon {
                width: 34px;
            }

            .social-text-lists .social-text-lists-item .social-text-lists-item-url {
                padding: 0px;
            }

    .fb-body {
        order: 1;
    }

    .msg-body {
        order: 2;
    }

    .fb-home {
        order: 3;
    }

    .msg-home {
        order: 4;
    }

    .ig-bonsoir {
        order: 5;
    }

    .line-bonsoir {
        order: 6;
    }
}


/*****************************************
* Home Video
*****************************************/
#home-video {
    background-color: #000;
    color: #fff;
}

.home-video-wrapper {
    position: relative;
}

    .home-video-wrapper .home-video-info {
        position: absolute;
        left: 5%;
        bottom: 5%;
        z-index: 2;
    }

        .home-video-wrapper .home-video-info .title {
            color: #ffffff;
            font-size: 3rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .home-video-wrapper .home-video-info .btn-seemore {
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            letter-spacing: 2px;
            padding: 10px 0px 7px 0px;
            color: #000000;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            width: 260px;
            text-align: center;
            margin-right: 5px;
            text-decoration: none;
        }


        .home-video-wrapper .home-video-info .btn-seemore-oitline {
            font-family: 'Montserrat-Light', 'Prompt-Light';
            letter-spacing: 2px;
            padding: 10px 0px 7px 0px;
            color: #ffffff;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: transparent;
            border: 1px solid #ffffff;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            width: 260px;
            text-align: center;
            margin-right: 5px;
        }


.sliding-hero__item {
    height: 681px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    transition: opacity .5s ease;
    z-index: 1;
}

    .sliding-hero__item video {
        position: absolute;
        object-fit: cover;
        width: 100%;
    }


.sliding-hero__picture {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform,opacity;
}


@media (max-width: 430px) {
    .sliding-hero__item {
        height: 500px;
    }

    .home-video-wrapper .home-video-info .title {
        font-size: 2rem;
    }

    .home-video-wrapper .home-video-info .btn-seemore {
        padding: 5px 0px 5px 0px;
    }
}



/*****************************************
* Banner Ads
*****************************************/
#banner-ads {
    margin: 25px 0px;
}

    #banner-ads .title {
        color: #000000;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 40px;
        font-size: 2.5rem;
    }

.banner-ads-lists {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

    .banner-ads-lists .banner-ads-item {
        width: calc(100% / 3);
        text-decoration: none;
        transform: scale(1);
        transition: 0.3s ease all;
        padding: 15px;
    }

        .banner-ads-lists .banner-ads-item:hover {
            transform: scale(1.05);
            transition: 0.3s ease all;
        }

        .banner-ads-lists .banner-ads-item a {
            text-decoration: none;
        }

        .banner-ads-lists .banner-ads-item img {
            opacity: 1;
        }

            .banner-ads-lists .banner-ads-item img:hover {
                opacity: 1;
                transition: 1s ease all;
            }


        .banner-ads-lists .banner-ads-item .banner-ads-title {
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            color: #000000;
            padding: 15px 15px 0px 15px;
        }


        .banner-ads-lists .banner-ads-item p {
            font-family: 'Montserrat-Light', 'Prompt-Light';
            color: #000000;
            height: 50px;
            padding: 3px 15px 0px 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }


@media(max-width: 767px) {

    #banner-ads .title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .banner-ads-lists .banner-ads-item {
        width: 100%;
    }

        .banner-ads-lists .banner-ads-item .banner-ads-title {
            font-size: 1rem;
        }

        .banner-ads-lists .banner-ads-item p {
            font-size: 1rem;
            height: 45px;
        }
}

@media (max-width: 430px) {
    #banner-ads {
        margin: 0px;
    }
}

/*****************************************
* Atmosphere Master
*****************************************/
#atmosphere {
    padding-top: 100px;
    padding-bottom: 100px;
}

    #atmosphere .title {
        margin-bottom: 50px;
        font-size: 2.5rem;
    }

        #atmosphere .title span {
            color: #ca6b82;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }

.galle-slide.swiper-container {
    width: 100%;
    overflow: hidden;
    height: 450px;
}

@media(max-width: 767px) {
    #gallery-master {
        padding-top: 30px;
        padding-bottom: 50px;
    }

        #gallery-master .title {
            margin-bottom: 20px;
        }
}



/*****************************************
* Footer 
*****************************************/
#b-footer {
    padding: 50px 0px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
    color: #ffffff;
    background-color: #000000;
}

    #b-footer .title {
        color: #ffffff;
        margin-bottom: 20px;
        font-size: 1.5rem;
        text-align: left;
        font-family: 'Montserrat-Light', 'Prompt-Light';
    }

.b-footer a {
    color: #ffffff;
    display: inline-block;
}


#footer {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    padding: 15px 0px;
    background: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: center;
}

    #footer a {
        cursor: pointer;
    }


.directory-lists {
    color: #d5d0ca;
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .directory-lists .dir-section {
        color: #d5d0ca;
        font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
    }

        .directory-lists .dir-section.left-section {
            width: 25%;
            text-align: left;
        }

        .directory-lists .dir-section.right-section {
            width: 50%;
            padding-left: 12%;
            border-left: 1px solid #405861;
            text-align: left;
        }

        .directory-lists .dir-section a {
            display: block;
            font-size: 0.8rem;
            padding: 0px 0px 3px 0px;
        }


.contact-information {
    font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
}


    .contact-information a {
        text-decoration: none;
    }


    .contact-information .address {
        text-align: left;
        font-size: 0.8rem;
    }

    .contact-information .phonenumber {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
    }

        .contact-information .phonenumber .label {
            font-size: 0.8rem;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }

        .contact-information .phonenumber .number {
            font-size: 1.2rem;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }


    .contact-information .email {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        margin-bottom: 5px;
    }

        .contact-information .email .label {
            font-size: 0.8rem;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }

        .contact-information .email .number {
            font-size: 0.8rem;
            margin-right: 5px;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }

.bottom-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .bottom-contact .social-network {
        text-align: left;
        padding: 10px 0px;
    }

        .bottom-contact .social-network .social-icon {
            margin: 0px 5px;
            width: 20px;
        }

    .bottom-contact .line-id {
        text-align: left;
        padding: 0px 15px;
        font-size: 1rem;
        border-left: 1px solid #405861;
        margin-left: 15px;
        color: #405861;
    }

        .bottom-contact .line-id a {
            color: #ffffff;
        }


@media(max-width: 767px) {

    #b-footer {
        padding: 20px 0px 10px 0px;
    }



        #b-footer .title {
            margin-bottom: 5px;
            font-size: 1rem;
        }

    .directory-lists {
        margin-top: 0px;
    }

        .directory-lists .dir-section.left-section {
            width: 35%;
        }

        .directory-lists .dir-section.right-section {
            width: 60%;
            padding-left: 10%;
        }

    .contact-information .address {
        font-size: 0.8rem;
    }

    .contact-information .phonenumber .number {
        font-size: 1rem;
    }

    .bottom-contact .social-network .social-icon {
        margin: 0px 3px;
        width: 18px;
    }


    .bottom-contact .line-id {
        font-size: 1rem;
    }

    #footer {
        padding: 15px 0px 15px 0px;
        font-size: 0.6rem;
    }
}

@media(max-width: 430px) {
    #footer a {
        font-size: 0.6rem;
    }
}


/*****************************************
* Promotion
*****************************************/
#promotion {
    padding: 100px 0px;
}


    #promotion .title {
        margin-bottom: 30px;
        font-size: 2.5rem;
    }

        #promotion .title span {
            color: #5BC500;
            font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
        }

.package-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


.package-item {
    width: 23%;
    border: 1px solid #f2fafd;
    background: #f2fafd;
    padding: 45px 45px;
    min-height: 500px;
    margin: 25px;
}

    .package-item.first-promotion {
        border: 1px solid #C5E4EF;
        background: #ffffff;
        padding: 30px 20px;
    }


    .package-item.third-promotion {
        background: #fffae9;
        border-color: #FFFFFF;
    }

    .package-item .header {
        font-size: 2rem;
        text-align: center;
        font-family: 'Montserrat-Light', 'Prompt-Light';
        color: #415962;
    }

    .package-item .priceperday {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        padding: 30px 0px;
    }

        .package-item .priceperday .dollar {
            color: #D1AB7D;
            font-size: 1.2rem;
        }

        .package-item .priceperday .price {
            color: #D1AB7D;
            font-size: 2.5rem;
            padding-left: 5px;
            padding-right: 5px;
        }

    .package-item .detail {
        font-size: 1rem;
        font-family: 'Montserrat-ExtraLight', 'Prompt-ExtraLight';
    }




/*****************************************
* Product
*****************************************/
#product {
    /*background: #340e30;*/
    /*padding-top: 50px;*/
    padding: 20px 0px;
}

    #product .title {
        color: #000000;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 40px;
        font-size: 2.5rem;
    }

.product-lists {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*align-items: center;*/
    padding: 0px 15px 30px 15px;
}

.product-item {
    width: calc(100% / 3);
    padding: 20px;
    color: #19110b;
    text-decoration: none;
    cursor: pointer;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;*/
}

    .product-item:hover {
        text-decoration: none;
        color: #19110b;
    }

    .product-item .image-wrapper {
        position: relative;
        /*background: #f8f8f8;*/
    }

        .product-item .image-wrapper img {
            cursor: pointer;
        }

            .product-item .image-wrapper img.img-top {
                display: none;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 9;
            }

        .product-item .image-wrapper:hover img.img-top {
            display: block;
            transition: 1s ease all;
        }


    .product-item .product-detail {
        padding: 15px 0px;
        line-height: 24px;
        min-height: 150px;
        padding: 15px 0px;
        line-height: 25px;
        min-height: 150px;
        font-size: 1.2rem;
        font-family: 'Montserrat-Light', 'Prompt-Light';
    }

        .product-item .product-detail .product-title {
            font-size: 1.5rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            letter-spacing: 1.5px;
        }

        .product-item .product-detail .product-desc {
            font-size: 1rem;
            font-family: 'Montserrat-Light', 'Prompt-Medium';
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 20px;
        }

        .product-item .product-detail .product-price {
            font-size: 0.8rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            letter-spacing: 0.8px;
        }


@media(max-width: 430px) {
    .product-item {
        width: 100%;
        padding: 10px;
    }

        .product-item .product-detail {
            font-size: 1rem;
            line-height: 22px;
        }

            .product-item .product-detail .product-title {
                font-size: 1.5rem;
                letter-spacing: 1.5px;
            }

            .product-item .product-detail .product-desc {
                font-size: 1rem;
                letter-spacing: 1px;
                color: #888;
                margin-bottom: 20px;
            }
}





/*****************************************
* Product Detail
*****************************************/
#product-detail {
    /*background: #340e30;*/
    /*padding-top: 50px;*/
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

    #product-detail .back-page {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #000000;
        padding: 5px 10px 3px 10px;
        cursor: pointer;
        color: #ffffff;
        font-size: 0.8rem;
    }

    #product-detail .product-image {
        width: 70%;
    }

        #product-detail .product-image .main-image {
            cursor: pointer;
            padding: 0px 10px;
            text-align: center;
        }

        #product-detail .product-image .photo-lists {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 5px;
        }

            #product-detail .product-image .photo-lists .photo-item {
                width: 50%;
                padding: 5px;
                cursor: pointer;
            }

    #product-detail .product-info {
        width: 30%;
        padding: 40px;
        color: #19110b;
    }

        #product-detail .product-info .product-code {
            font-size: 0.8rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
        }

        #product-detail .product-info .product-name {
            font-size: 2rem;
            font-family: 'Montserrat-Medium', 'Prompt-SemiBold';
            border-bottom: 1px solid #eae8e4;
            padding-bottom: 26px;
            line-height: 2.8rem;
            padding-top: 10px;
            text-transform: uppercase;
        }

        #product-detail .product-info .detail-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            padding: 18px 0px;
            border-bottom: 1px solid #eae8e4;
        }

            #product-detail .product-info .detail-item .label {
            }

            #product-detail .product-info .detail-item .value {
                text-transform: uppercase;
            }




        #product-detail .product-info .description {
            font-size: 0.8rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            padding: 20px 0px;
            border-bottom: 1px solid #eae8e4;
            line-height: 24px;
            letter-spacing: 1px;
        }

            #product-detail .product-info .description p {
                margin-bottom: 0.5rem;
                line-height: 18px;
                letter-spacing: 0px;
            }

                #product-detail .product-info .description p strong {
                    font-size: 1rem;
                    font-family: 'Montserrat-Light', 'Prompt-Light';
                    line-height: 24px;
                    letter-spacing: 1px;
                    text-decoration: underline;
                    text-transform: uppercase;
                }

            #product-detail .product-info .description h5 {
                font-family: 'Montserrat-Regular', 'Prompt-Regular';
                text-decoration: underline;
                text-transform: uppercase;
                font-size: 1rem;
            }

.stock-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Montserrat-Regular', 'Prompt-Regular';
}

    .stock-status .label {
        font-size: 0.8rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        display: flex;
        align-items: center;
    }

        .stock-status .label .dot {
            background: #5c7e08;
            width: 10px;
            height: 10px;
            border-radius: 10px;
            display: inline-block;
            margin: 0px 5px;
        }

    .stock-status .value {
        font-size: 1.3rem;
        font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
    }


.detail-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Montserrat-Regular', 'Prompt-Regular';
    padding: 30px 0px 10px 0px;
    border-bottom: 1px solid #eae8e4;
}

    .detail-price .label {
        font-size: 0.8rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        display: flex;
        align-items: center;
    }

        .detail-price .label .dot {
            background: #5c7e08;
            width: 10px;
            height: 10px;
            border-radius: 10px;
            display: inline-block;
            margin: 0px 5px;
        }

    .detail-price .value {
        font-size: 1.3rem;
        font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
    }


.size-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Montserrat-Regular', 'Prompt-Regular';
    padding: 15px 0px 0px 0px;
}


    .size-item .selection-list {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

        .size-item .selection-list .size-option {
            width: 24px;
            height: 24px;
            background: #ffffff;
            border: 1px solid #000000;
            border-radius: 50%;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.6rem;
            margin: 0px 3px;
            cursor: pointer;
        }

            .size-item .selection-list .size-option.selected {
                background: #000000;
                color: #ffffff;
            }

.size-guide {
    cursor: pointer;
    font-size: 0.6rem;
    font-family: 'Montserrat-Regular', 'Prompt-Regular';
    padding: 15px 0px;
    text-align: right;
    border-bottom: 1px solid #eae8e4;
}

.quantity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Montserrat-Regular', 'Prompt-Regular';
    padding: 15px 0px;
    border-bottom: 1px solid #eae8e4;
}


    .quantity-item .selection-list {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

        .quantity-item .selection-list .qty-option {
            width: 24px;
            height: 24px;
            background: #ffffff;
            border: 1px solid #000000;
            border-radius: 50%;
            color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            margin: 0px 3px;
            cursor: pointer;
        }

            .quantity-item .selection-list .qty-option.number-option {
                background: #f7f7f7;
                border-radius: 0px;
                border: 1px solid #eee;
                width: 36px;
                height: 34px;
            }






#product-detail .product-info .btn-addcart, #product-detail .product-info .btn-addcart:hover {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    letter-spacing: 2px;
    padding: 10px 50px 7px 50px;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #000000;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.detail-option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eae8e4;
}

    .detail-option .option-icon {
        width: 50px;
    }

    .detail-option .option-detail {
    }

        .detail-option .option-detail .option-detail-title {
            font-size: 0.8rem;
            text-transform: uppercase;
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        }

        .detail-option .option-detail .option-detail-text {
            font-size: 0.6rem;
        }


@media(max-width: 830px) {
    #product-detail .product-image {
        width: 60%;
    }

    #product-detail .product-image {
        width: 100%;
    }

    #product-detail .product-info {
        width: 100%;
        padding: 20px;
    }

    #product-detail .product-image .photo-lists .photo-item {
        width: 25%;
    }

    #product-detail .product-info {
        width: 40%;
    }
}

@media(max-width: 430px) {

    #product-detail .product-image {
        width: 100%;
    }

    #product-detail .product-info {
        width: 100%;
        padding: 20px;
    }

    #product-detail .product-image .photo-lists .photo-item {
        width: 50%;
    }
}





/*****************************************
* CART
*****************************************/
#cart {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


    #cart .title {
        margin-bottom: 60px;
        font-size: 2.5rem;
    }

        #cart .title span {
            color: #19110b;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
        }

    #cart .checkout-cart {
        width: 60%;
        padding: 2%;
        background: #f6f5f3;
    }

        #cart .checkout-cart .error-box {
            padding: 20px;
            border-bottom: 1px solid #eae8e4;
            background: #f76161;
            color: #ffffff;
            font-family: 'Montserrat-Light', 'Prompt-Light';
        }


    #cart .checkout-detail {
        width: 40%;
        padding: 2% 5%;
        color: #19110b;
    }


@media(max-width: 430px) {

    #cart .checkout-cart {
        width: 100%;
    }

    #cart .checkout-detail {
        width: 100%;
    }
}



.cart-summary {
}

    .cart-summary .checkout-name {
        font-size: 2rem;
        font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        border-bottom: 1px solid #eae8e4;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }

    .cart-summary .detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.8rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        padding: 5px 0px;
    }


        .cart-summary .detail-item.discount {
            color: #b30000;
            /*text-decoration: line-through;*/
        }


    .cart-summary .detail-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.3rem;
        font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        padding: 20px 0px 20px 0px;
        border-bottom: 1px solid #eae8e4;
    }


        .cart-summary .detail-price .value {
            font-size: 1.3rem;
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        }



    .cart-summary .btn-cart-chechout, .cart-summary .btn-cart-chechout:hover {
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 2px;
        padding: 13px 50px 10px 50px;
        color: #ffffff;
        font-size: 0.6rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #000000;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-bottom: 15px;
    }



.tbl-cart-lists {
    width: 100%;
    font-size: 0.8rem;
}

    .tbl-cart-lists th {
        font-size: 0.6rem;
        vertical-align: top;
        border-top: none;
        text-align: left;
        border-bottom: 1px solid #f8f8f8;
    }


    .tbl-cart-lists td {
        vertical-align: top;
        border-top: none;
        text-align: left;
        border-bottom: 1px solid #f8f8f8;
    }


    .tbl-cart-lists tr td:nth-child(1) {
        width: 10%;
        padding: 0.3rem 0rem;
    }

    .tbl-cart-lists tr td:nth-child(2) {
        width: 35%;
        padding: 1rem;
    }

    .tbl-cart-lists tr td:nth-child(3) {
        width: 15%;
        padding: 1rem;
        text-align: center;
    }

    .tbl-cart-lists tr td:nth-child(4) {
        width: 15%;
        padding: 1rem;
        text-align: center;
    }

    .tbl-cart-lists tr td:nth-child(5) {
        width: 15%;
        padding: 1.1rem 1rem;
        text-align: center;
    }

    .tbl-cart-lists .product-name {
        text-transform: uppercase;
        font-size: 0.8rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        margin-bottom: 5px;
    }

    .tbl-cart-lists .product-detail {
        font-size: 0.6rem;
    }

    .tbl-cart-lists .product-price {
        text-transform: uppercase;
        font-size: 0.8rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
    }

    .tbl-cart-lists .product-remove {
        text-transform: uppercase;
        font-size: 0.7rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        color: #b30000;
    }


/*****************************************
* Purchase Tab lists
*****************************************/
.payment-options {
}

    .payment-options .option-lists {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-transform: uppercase;
    }

        .payment-options .option-lists .option-lists-item {
            width: calc(100% / 2);
            background: #f6f5f3;
            padding: 25px 50px 25px 50px;
            font-size: 0.7rem;
            font-weight: bold;
            cursor: pointer;
        }

            .payment-options .option-lists .option-lists-item.active {
                background: #ffffff;
            }

    .payment-options .tab-panel {
        padding-top: 20px;
        background: #ffffff;
    }

.checkout-identify {
    background: #ffffff;
    /*margin-bottom: 10px;*/
}

    .checkout-identify .headline {
        font-size: 1.5rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        padding: 15px 30px;
        border-bottom: 1px solid #eae8e4;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .checkout-identify .headline .headline-no {
            background: #000000;
            color: #ffffff;
            border-radius: 30px;
            margin-right: 15px;
            font-size: 0.8rem;
            width: 30px;
            height: 30px;
            text-align: center;
            padding-top: 7px;
        }

    .checkout-identify .identify-panel {
        font-size: 0.8rem;
        font-family: 'Montserrat-Light', 'Prompt-Light';
        padding: 20px 30px 10px 30px;
    }

.payment-box {
    padding: 15px 20px 20px 20px;
}

    .payment-box .header {
        font-size: 0.8rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        margin-bottom: 15px;
        text-transform: uppercase;
    }

.bank-account {
    margin-bottom: 20px;
}

    .bank-account .account-no {
        font-size: 1.5rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        text-transform: uppercase;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .bank-account .account-no .btn-copy {
            padding: 5px;
            margin-left: 10px;
            cursor: pointer;
        }

    .bank-account .account-name {
        font-size: 1rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 15px;
        text-transform: uppercase;
    }


form .form-group label {
    font-size: 0.8rem;
    font-family: 'Montserrat-Light', 'Prompt-Light';
    margin-bottom: 0.3rem;
}

form .form-group input {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 3rem;
    font-size: 1rem;
    letter-spacing: .025rem;
    line-height: 2rem;
    font-weight: 300;
    color: #19110b;
    line-height: 3rem;
    font-weight: 500;
    width: 100%;
}

form .form-group textarea {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 1rem;
    letter-spacing: .025rem;
    line-height: 2rem;
    font-weight: 300;
    color: #19110b;
    font-weight: 500;
    width: 100%;
}

form .form-group select {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 3rem;
    font-size: 1rem;
    letter-spacing: .025rem;
    line-height: 2rem;
    font-weight: 300;
    color: #19110b;
    line-height: 3rem;
    font-weight: 500;
    width: 100%;
}

form .form-group input[type=file] {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0rem;
    box-sizing: border-box;
    height: auto;
    font-size: 1rem;
    letter-spacing: .025rem;
    font-weight: 300;
    color: #19110b;
    line-height: 2rem;
    font-weight: 500;
    width: 100%;
}

form .form-group.form-checkbox {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    form .form-group.form-checkbox input[type=checkbox] {
        box-sizing: border-box;
        padding: 0;
        height: 1rem;
        width: 50px;
    }



form button, form button:hover {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    letter-spacing: 2px;
    padding: 8px 50px 7px 50px;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #000000;
    border-radius: 0 !important;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 15px;
    border: none;
}


/*****************************************
* Store
*****************************************/
#store {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    #store .store-map {
        width: 60%;
    }

    #store .store-info {
        width: 40%;
        padding: 20px 40px;
        color: #19110b;
    }


        #store .store-info .title {
            font-size: 2.3rem;
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
            padding-bottom: 0px;
        }

        #store .store-info .description {
            font-size: 1rem;
            line-height: 22px;
            font-family: 'Montserrat-Regular', 'Prompt-Light';
            padding: 10px 0px 20px 0px;
            letter-spacing: 1px;
        }


        #store .store-info .btn-addcart, #store .store-info .btn-addcart:hover {
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
            letter-spacing: 2px;
            padding: 10px 50px 7px 50px;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #000000;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            margin-bottom: 15px;
        }


.store-branch {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 15px;
    /*border-bottom: 1px solid #eae8e4;*/
    background-color: #fbfbfb;
    margin-bottom: 7px;
    cursor: pointer;
    transform: scale(1);
    transition: 0.5s ease all;
}

    /*.store-branch:hover {
        transform: scale(1.05);
    }*/


    .store-branch .branch-icon {
        width: 50px;
    }

    .store-branch .branch-detail {
    }

        .store-branch .branch-detail .branch-detail-title {
            font-size: 0.6rem;
            text-transform: uppercase;
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        }

        .store-branch .branch-detail .branch-detail-text {
            font-size: 0.8rem;
        }

            .store-branch .branch-detail .branch-detail-text a {
                color: #19110b;
            }


.googlemap {
    position: relative;
    padding-bottom: 75%; /* 4:3 ratio*/
    height: 0;
    overflow: hidden;
}

    .googlemap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }




@media(max-width: 767px) {

    #store .store-map {
        width: 100%;
    }

    #store .store-info {
        width: 100%;
        padding: 20px;
    }
}


.fancybox-thumbs {
    background: #fff;
}

.fancybox-thumbs__list a:before {
    border: 2px solid #000000;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25,.46,.45,.94);
    z-index: 99991;
}

/*****************************************
* Collection
*****************************************/

#collection {
}

.collection-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}


    .collection-section .detain-info {
        position: absolute;
        bottom: 5%;
        left: 3%;
        width: 35%;
        background: rgba(0,0,0,0.1);
        padding: 20px;
        color: #ffffff;
    }

    .collection-section .collection-text {
        position: absolute;
        top: 65%;
        width: 100%;
        text-align: center;
    }

        .collection-section .collection-text .title {
            text-align: center;
            color: #ffffff;
            font-size: 3rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .collection-section .collection-text .btn-seemore {
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            letter-spacing: 2px;
            padding: 7px 0px 5px 0px;
            color: #000000;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            width: 150px;
            text-align: center;
            margin-right: 5px;
            text-decoration: none;
            text-transform: uppercase;
        }


        .collection-section .collection-text.light-mode .title {
            color: #000000;
        }

        .collection-section .collection-text.light-mode .btn-seemore {
            color: #ffffff;
            background-color: #000000;
            border: 1px solid #000000;
        }

        .collection-section .collection-text .headline {
            color: #19110b;
            font-size: 3rem;
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        }

        .collection-section .collection-text .message {
            color: #ffffff;
            font-size: 0.8rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            margin-bottom: 15px;
            letter-spacing: 1px;
            background: rgba(0,0,0,0.1);
            padding: 20px;
        }




    .collection-section .btn-seemore-outline {
        font-family: 'Montserrat-Light', 'Prompt-Light';
        letter-spacing: 2px;
        padding: 10px 0px 7px 0px;
        color: #ffffff;
        font-size: 0.6rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 1px solid #ffffff;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: inline-block;
        width: 260px;
        text-align: center;
        margin-right: 5px;
    }


@media(max-width: 767px) {

    .collection-section .collection-text {
        position: absolute;
        top: 50%;
        width: 100%;
        text-align: center;
    }

        .collection-section .collection-text .title {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .collection-section .collection-text .btn-seemore {
            padding: 0px 15px 0px 15px;
            width: auto;
        }
}


/*****************************************
* Order Success
*****************************************/
#order-success {
    padding: 50px 0px;
    text-align: center;
}

    #order-success .thankyou-message {
        font-size: 3rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 10px;
    }

    #order-success .success-message {
        font-size: 1.5rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    #order-success .success-orderno {
        font-size: 1rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        letter-spacing: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #order-success .success-orderno .orderno {
            background: #f6f6f6;
            padding: 10px 50px;
        }


#shipping-info {
    margin-bottom: 30px;
}

    #shipping-info .info-title {
        font-size: 2rem;
        font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
        border-bottom: 1px solid #eae8e4;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }

    #shipping-info .shippinginfo-item {
        display: flex;
        justify-content: flex-start;
        padding: 0px 0px 5px 0px;
    }

        #shipping-info .shippinginfo-item .label {
            width: 100px;
        }

        #shipping-info .shippinginfo-item .value {
        }




#main-backend {
    padding: 0px 0px 100px 0px;
}

    #main-backend .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
    }

        #main-backend .title-header .title {
            font-size: 1.4rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            margin-bottom: 10px;
        }

.table-backend {
    font-size: 1rem;
}

    .table-backend thead tr th {
        font-size: 0.6rem;
        padding: 0.25rem 0.75rem;
        background-color: #fbfbfb;
        color: #000000;
    }


    .table-backend tbody tr td {
        font-size: 0.8rem;
        padding: 0.50rem 0.75rem;
    }



        .table-backend tbody tr td a, .table-backend tbody tr td a:hover {
            color: #000000;
            text-transform: uppercase;
        }

            .table-backend tbody tr td a img.icon {
                width: 14px;
                margin: 0px 3px;
            }

                .table-backend tbody tr td a img.icon.remove {
                    width: 13px;
                }


#main-backend .btn-primary, #main-backend .btn-primary:hover {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    letter-spacing: 2px;
    padding: 5px 50px 3px 50px;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 24px;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 15px;
    max-width: 200px;
}

#main-backend .btn-secondary, #main-backend .btn-secondary:hover {
    font-family: 'Montserrat-Light', 'Prompt-Light';
    letter-spacing: 2px;
    padding: 5px 50px 3px 50px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 24px;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 15px;
    max-width: 200px;
}

.orders-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 25px 0px;
}

    .orders-tab .tab-option {
        color: #000000;
        width: 200px;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        border-bottom: 3px solid #ebebeb;
    }

        .orders-tab .tab-option a {
            color: #000000;
            text-decoration: none;
            font-size: 0.8rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            display: block;
        }


        .orders-tab .tab-option.active {
            width: 200px;
            padding: 15px;
            text-align: center;
            border-bottom: 3px solid #000000;
        }


/*****************************************
* Privilege collection
*****************************************/
#privilege-collection {
}

.privilege {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eae8e4;
    padding: 30px 0px 30px 0px;
}

    .privilege .privilege-info {
        width: 60%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding: 5%;
    }

        .privilege .privilege-info .title {
            color: #19110b;
            font-size: 2rem;
            line-height: 2.5rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            margin-bottom: 15px;
        }

        .privilege .privilege-info .detail {
            color: #19110b;
            font-size: 0.8rem;
            font-family: 'Montserrat-light', 'Prompt-light';
            line-height: 1.5rem;
            letter-spacing: 1.5px;
            padding: 10px 0px 20px 0px;
        }

        .privilege .privilege-info .btn-purchase {
            font-family: 'Montserrat-light', 'Prompt-light';
            letter-spacing: 2px;
            margin-top: 15px;
            padding: 10px 50px 7px 50px;
            color: #ffffff;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #000000;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            text-decoration: none;
            display: block;
            max-width: 185px;
        }


    .privilege .privilege-image {
        width: 40%;
    }


.privilege-lists {
    /*border:1px solid red;*/
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .privilege-lists .icon-item {
        width: calc(100% / 8 - 10px);
        margin: 5px;
        border: 1px solid #f7f7f7;
    }


@media (max-width: 425px) {
    .privilege .privilege-info .detail {
        color: #ffffff;
        font-size: 0.6rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        line-height: 1.5rem;
    }

    .privilege .privilege-info .title {
        color: #ffffff;
        font-size: 1rem;
        line-height: 1.5rem;
        font-family: 'Montserrat-Medium', 'Prompt-Medium';
        text-align: center;
    }

    .privilege .privilege-info .btn-purchase {
        padding: 0px 20px 0px 20px;
        font-size: 0.6rem;
    }
}



/*****************************************
* Coming Soon
*****************************************/
#coming-soon {
    padding: 50px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 600px;
    align-items: center;
    justify-content: center;
}

    #coming-soon .thankyou-message {
        font-size: 4rem;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        margin-bottom: 15px;
    }

    #coming-soon .success-message {
        font-size: 1.3rem;
        font-family: 'Montserrat-Light', 'Prompt-Regular';
        letter-spacing: 3px;
        text-transform: uppercase;
    }


@media (max-width: 767px) {

    #coming-soon {
        height: 525px;
    }


        #coming-soon .thankyou-message {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        #coming-soon .success-message {
            font-size: 0.8rem;
        }
}


/*****************************************
* What new collection
*****************************************/
#whatsnew {
}

.whatsnew-item {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #eae8e4;
}

    .whatsnew-item .whatsnew-info {
        width: 60%;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        padding: 2% 3% 2% 3%;
        position: relative;
    }

        .whatsnew-item .whatsnew-info .title {
            color: #19110b;
            font-size: 2rem;
            line-height: 2.5rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
        }

        .whatsnew-item .whatsnew-info .detail {
            color: #19110b;
            font-size: 0.8rem;
            font-family: 'Montserrat-light', 'Prompt-light';
            line-height: 1.5rem;
            letter-spacing: 1px;
            padding: 10px 0px 20px 0px;
        }

        .whatsnew-item .whatsnew-info .btn-purchase {
            font-family: 'Montserrat-light', 'Prompt-light';
            letter-spacing: 2px;
            padding: 10px 50px 7px 50px;
            color: #ffffff;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #000000;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            text-decoration: none;
            display: block;
            max-width: 185px;
            position: absolute;
            bottom: 25px;
            right: 50px;
        }


    .whatsnew-item .whatsnew-image {
        width: 40%;
    }



@media (max-width: 767px) {
    .whatsnew-item .whatsnew-image {
        width: 100%;
    }


    .whatsnew-item .whatsnew-info {
        width: 100%;
        padding: 4%;
    }

        .whatsnew-item .whatsnew-info .title {
            color: #000000;
            font-size: 1rem;
            line-height: 1.5rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            text-align: left;
        }

        .whatsnew-item .whatsnew-info .detail {
            color: #000000;
            font-size: 0.8rem;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            line-height: 1rem;
        }


        .whatsnew-item .whatsnew-info .btn-purchase {
            padding: 0px 20px 0px 20px;
            font-size: 0.6rem;
        }
}


/*****************************************
* Backend transaction items
*****************************************/
.transaction-item {
    margin-bottom: 15px;
    border: 1px solid #f8f8f8;
}

    .transaction-item .transaction-item-info {
        border: 1px solid #f8f8f8;
        padding: 20px;
        background: #f8f8f8;
        font-size: 0.8rem;
        display: flex;
        position: relative;
        cursor: pointer;
    }

        .transaction-item .transaction-item-info .transaction-id {
            font-family: 'Montserrat-SemiBold', 'Prompt-SemiBold';
            font-size: 1rem;
            margin-right: 20px;
        }

        .transaction-item .transaction-item-info .transaction-payment-type {
            padding: 0px;
            width: 10%;
            text-align: center;
        }

        .transaction-item .transaction-item-info .transaction-shipping {
            padding: 0px 20px;
            width: 40%;
        }

        .transaction-item .transaction-item-info .transaction-status {
            padding: 0px 20px;
            width: 150px;
            text-align: center;
        }

        .transaction-item .transaction-item-info .transaction-date {
            padding: 0px 20px;
            width: 10%;
        }

        .transaction-item .transaction-item-info .approve-action {
            display: flex;
            justify-content: flex-start;
        }

            .transaction-item .transaction-item-info .approve-action .icon {
                width: 24px;
                margin: 0px 5px;
            }

        .transaction-item .transaction-item-info .transaction-collapse {
            position: absolute;
            top: 40px;
            right: 30px;
            cursor: pointer;
        }

            .transaction-item .transaction-item-info .transaction-collapse img {
                width: 36px;
                transform: rotate(-90deg);
                transition: 0.3s ease all;
            }

            .transaction-item .transaction-item-info .transaction-collapse.open img {
                transform: rotate(0deg);
                transition: 0.3s ease all;
            }


    .transaction-item .transaction-item-detail {
        display: none;
    }


#menuModal {
    background: #ffffff;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
            }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #000000;
                    font-size: 1.5rem;
                    font-family: 'Montserrat-Light', 'Prompt-Light';
                    letter-spacing: 3px;
                    text-align: center;
                    padding: 10px 0px;
                }


.policy-modal {
    background: #ffffff;
}

    .policy-modal .modal-dialog {
        padding: 40px;
    }

        .policy-modal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            font-size: 0.8rem;
        }

            .policy-modal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
            }

            .policy-modal .modal-dialog .modal-content h4 {
                font-size: 1.5rem;
                margin-top: 30px;
            }

            .policy-modal .modal-dialog .modal-content a {
                color: #000000;
                text-decoration: underline;
            }

            .policy-modal .modal-dialog .modal-content p {
                line-height: 18px;
            }


@media (max-width: 430px) {

    .policy-modal .modal-dialog {
        padding: 40px 20px;
    }

        .policy-modal .modal-dialog .modal-content h4 {
            margin-top: 15px;
        }
}



.map-modal {
    background: #ffffff;
}

    .map-modal .modal-dialog {
        padding: 40px;
        max-width: 100%;
    }

        .map-modal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            font-family: 'Montserrat-Light', 'Prompt-Light';
            font-size: 0.8rem;
        }

            .map-modal .modal-dialog .modal-content .close {
                position: absolute;
                top: -40px;
                right: 0px;
            }

                .map-modal .modal-dialog .modal-content .close img {
                    width: 32px;
                }

            .map-modal .modal-dialog .modal-content h4 {
                font-size: 1.5rem;
                margin-top: 30px;
            }

            .map-modal .modal-dialog .modal-content a {
                color: #000000;
                text-decoration: underline;
            }

            .map-modal .modal-dialog .modal-content p {
                line-height: 18px;
            }

#notfoundmap {
    display: block;
    font-size: 2rem;
    font-family: 'Montserrat-Light', 'Prompt-Light';
    text-align: center;
    padding-top: 20%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

    /* Then style the iframe to fit in the container div with full height and width */
    .map-container .responsive-iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }


@media (max-width: 430px) {

    .map-modal .modal-dialog .modal-content .close {
        top: -30px;
    }

        .map-modal .modal-dialog .modal-content .close img {
            width: 20px;
        }

    .map-modal .modal-dialog {
        padding: 40px 20px;
    }

        .map-modal .modal-dialog .modal-content h4 {
            margin-top: 15px;
        }

    .map-container {
        padding-top: 100%;
    }
}





.product-swiper-wrapper {
}

    .product-swiper-wrapper .swiper-text {
        top: 0px;
        position: relative;
    }

        .product-swiper-wrapper .swiper-text .title {
            color: #000000;
        }

        .product-swiper-wrapper .swiper-text .headline {
            color: #000000;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

    .product-swiper-wrapper .product-slide-image {
        width: 32%;
    }

    .product-swiper-wrapper .button-shop-wrapper {
        text-align: center;
        margin-top: 30px;
    }

        .product-swiper-wrapper .button-shop-wrapper .btn-product-link, .product-swiper-wrapper .button-shop-wrapper .btn-product-link .btn-product-link:hover {
            font-family: 'Montserrat-Light', 'Prompt-Light';
            letter-spacing: 2px;
            padding: 6px 25px 5px 25px;
            color: #000000;
            font-size: 0.8rem;
            font-weight: normal;
            line-height: 24px;
            background-color: transparent;
            border: 2px solid #000000;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            text-align: center;
            margin: 0px 10px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            display: block;
            width: 200px;
            margin: 0px auto;
        }


@media (max-width: 430px) {

    .product-swiper-wrapper .swiper-text .title {
        font-size: 1rem;
    }

    .product-swiper-wrapper .swiper-text .headline {
        color: #000000;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .product-swiper-wrapper .product-slide-image {
        width: 80%;
    }

    .product-banner .swiper-button-prev.dark-mode {
        left: 20px;
    }

    .product-banner .swiper-button-next.dark-mode {
        right: 20px;
    }
}


/*****************************************
* home-product-category
*****************************************/
#home-product-category {
    background: #163648;
    padding: 50px 0px;
}

.product-type-lists {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    .product-type-lists .product-type-item {
        width: calc(100% / 3);
        display: block;
        margin: 50px 0px;
    }


@media(max-width: 430px) {
    #home-product-category {
        padding: 0px 0px;
    }

    .product-type-lists .product-type-item {
        width: 100%;
        margin: 30px 0px;
    }
}

/*****************************************
* home-product-lists
*****************************************/
#home-product-lists {
    padding: 0px 0px;
}


.home-category-header {
    background: #1c3546;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .home-category-header.body-theme {
        background: #c67d71;
    }

    .home-category-header .category-thumbnail img {
        height: 100px;
    }


@media(max-width: 430px) {
    .home-category-header .category-thumbnail img {
        height: 80px;
    }
}



.home-product-lists-footer {
    background: #1c3546;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0px;
}

    .home-product-lists-footer .footer-item {
        width: calc(100%/8);
        cursor: pointer;
        text-align: center;
    }

@media(max-width: 430px) {
    .home-product-lists-footer {
        padding: 30px 0px;
    }

        .home-product-lists-footer .footer-item {
            width: calc(100%/4);
        }
}




/*****************************************
* Article
*****************************************/
#article {
    padding: 50px 0px;
}

    #article .title {
        font-size: 3rem;
        color: #00aeef;
        font-family: 'Montserrat-Light', 'Prompt-Light';
        text-align: center;
        margin-bottom: 30px;
    }

.article-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0px;
}

    .article-lists .article-item {
        width: calc(100%/2 - 40px);
        box-shadow: 0px 4px 12px #e8e8e8;
        margin: 15px;
        text-decoration: none;
        padding-bottom: 20px;
        /*transition:0.1s ease all;*/
    }

        .article-lists .article-item:hover {
            box-shadow: 0px 4px 12px #a7a7a7;
            text-decoration: none;
        }

        .article-lists .article-item img {
            transition: 0.4s ease all;
            box-shadow: 0px 4px 12px #e8e8e8;
        }


        .article-lists .article-item .article-title {
            font-size: 1.3rem;
            line-height: 1.8rem;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            text-transform: uppercase;
            padding: 15px 15px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 40px;
            color: #000000;
        }

        .article-lists .article-item .article-subtitle {
            font-size: 0.8rem;
            line-height: 1.3rem;
            font-family: 'Montserrat-Regular', 'Prompt-Regular';
            text-transform: uppercase;
            padding: 10px 15px 10px 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 50px;
            color: #000000;
        }


@media (max-width: 430px) {
    #article {
        padding: 20px 0px;
    }

        #article .container {
            padding-left: 20px;
            padding-right: 20px;
        }

    .article-lists .article-item {
        width: 100%;
        order: 1;
        margin: 10px 0px;
    }
}

#article-photo {
    padding-bottom: 60px;
}

.article-photo {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0px;
}

    .article-photo .article-item {
        width: calc(100%/6 - 20px);
        box-shadow: 0px 4px 12px #e8e8e8;
        margin: 5px;
        text-decoration: none;
        /*transition:0.1s ease all;*/
    }

        .article-photo .article-item:hover {
            box-shadow: 0px 4px 12px #a7a7a7;
            text-decoration: none;
        }

        .article-photo .article-item img {
            transition: 0.4s ease all;
            box-shadow: 0px 4px 12px #e8e8e8;
        }


@media (max-width: 430px) {

    #article-photo .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .article-photo .article-item {
        width: calc(100%/2 - 10px);
    }
}


/*****************************************
* Article Detail
*****************************************/
#article-detail {
    padding: 50px 0px;
}

    #article-detail .article-header {
        padding: 30px 20px 20px 20px;
        border-top: 4px solid #000000;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
        box-shadow: 0px 4px 12px #e8e8e8;
    }

        #article-detail .article-header .article-title {
            font-size: 3rem;
            line-height: 3.3rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            letter-spacing: 0px;
            padding-bottom: 10px;
        }

        #article-detail .article-header .article-subtitle {
            font-size: 1.5rem;
            line-height: 1.8rem;
            font-family: 'Montserrat-Medium', 'Prompt-Medium';
            letter-spacing: 0px;
            padding-bottom: 5px;
        }

        #article-detail .article-header .article-footer {
            font-size: 1rem;
            color: #72767e;
        }

    #article-detail .article-image {
    }


    #article-detail .article-detail {
        padding: 40px 30px 20px 30px;
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 1px;
        font-family: 'Montserrat-Regular', 'Prompt-Regular';
        box-shadow: 0px 4px 12px #e8e8e8;
    }


@media (max-width: 430px) {
    #article-detail {
        padding: 0px 0px 20px 0px;
    }

        #article-detail .container {
            padding-left: 0px;
            padding-right: 0px;
        }

        #article-detail .article-header {
            padding: 20px 10px 15px 10px;
        }

            #article-detail .article-header .article-title {
                font-size: 2rem;
                line-height: 2rem;
            }

        #article-detail .article-detail {
            padding: 20px;
        }
}
