/* ======================= TABLE OF CONTENT =======================
01 GENERAL
------ Typography
------ Input
------ Button
------ List
------ Pagination
02 LOADING
03 HEADER
------ Desktop
------ Topbar
------ Menu
------ Logo
------ Icon
04 Container
------ Tab
------ Width
------ Table
05 BANNER
06 IMAGE
07 Footer
08 BACK TO TOP
------ 
------ 

*/


/* !===========================================================
!           01 -> GENERAL                                      
! ===========================================================*/

/*----------------------------*\
        Typography
\*----------------------------*/

body, html {
    height: 100%;
    font-family: "K2D", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-weight: 600;
    margin: 0px;
}

h1{
    font-size: 36px;
}
h2{
    font-size: 32px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 24px;
}

p {
    font-family: "K2D", sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000000;
    margin: 0px;
}

a {
    font-family: "K2D", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    text-decoration: none;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #ff2d0c;
}

b, strong {
    font-weight: 600;
}

.home-about p{
    font-size: 24px;
    font-weight: 600;
    text-align: justify;
    text-indent: 3vw;
}

.contact p{
    padding: 6px 0px;
    text-align: start;
}
/*----------------------------*\
        Form
\*----------------------------*/

.form-group{
    padding: 8px;
}

/*----------------------------*\
        Input
\*----------------------------*/

input {
    outline: none;
}

textarea {
    outline: none;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }


/*----------------------------*\
        Button
\*----------------------------*/

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}


/*----------------------------*\
        list
\*----------------------------*/

ul, li {
    margin: 0px;
    list-style-type: none;
}


/*----------------------------*\
        Pagination
\*----------------------------*/

.pagination {
    --bs-pagination-color: #ff0000;
    --bs-pagination-hover-color: #000000;
    --bs-pagination-active-bg: #ff0000;
    --bs-pagination-active-border-color: #b7b7b7;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgb(253 13 13 / 25%);
    --bs-pagination-focus-color: #000000;
}
/* !===========================================================
!           02 -> LOADING                                      
! ===========================================================*/

.animsition-loading-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}


/* !===========================================================
!           03 -> HEADER                                      
! ===========================================================*/

.header1 {
    height: 125px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fixed-header {
    height: 110px;
}

header{
    padding: 0px 5%;
}

/*----------------------------*\
        Desktop
\*----------------------------*/

.container-menu-header {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1100;
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}


/*----------------------------*\
        topbar
\*----------------------------*/

.topbar {
    height: 45px;
    background-color: #f5f5f5;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-social {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.topbar-social-item {
    font-size: 18px;
    color: #888888;
    padding: 10px;
}


/*----------------------------*\
        Menu
\*----------------------------*/

.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: white;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fixed-header .wrap_header {
    height: 65px;
}

.main_menu {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.main_menu > li {
    display: block;
    position: relative;
    padding-top: 20px;  
    padding-bottom: 20px; 
    padding-left: 15px;
    padding-right: 15px;
}

.main_menu > li > a {
    font-family: "K2D", sans-serif;
    font-size: 15px;
    color: #333333;
    padding: 0;
    border-bottom: 1px solid transparent;
}

li.sale-noti > a {
    color: #e65540;
}

.main_menu > li:hover > a {
    text-decoration: none;
    border-bottom: 1px solid #333333;
}

.main_menu li {
    position: relative;
}

.main_menu > li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu {
    text-align: start;
    list-style-type: none;
    z-index: 1100;
    width: max-content;
    background-color: #fffffffa;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 1px 1px 5px 0px rgb(0 0 0 / 66%);
}

.main_menu > li > .sub_menu {
    top:100%;
    left: 0;
    position: absolute;
}

.sub_menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
} 

.sub_menu li { 
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
    padding: 10px;
    color: rgb(0, 0, 0);
}

.sub_menu > li:hover > a {
    color: #e65540;
    text-decoration: none;
}

#sizemenu {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-weight: 600;
    font-size: 22px;
}

/*----------------------------*\
        Dropdown
\*----------------------------*/

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: -1px;
    background-color: #ffffff;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
    box-shadow: 1px 1px 5px 0px rgb(0 0 0 / 66%);
    border: unset;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; 
    border-width: 5px 0 5px 5px;
    border-left-color: #858585;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*----------------------------*\
        Logo
\*----------------------------*/

.logo {
    display: block;
    position: absolute;
    left: 52px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.logo img {
    max-height: 27px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 23px;
    margin-right: 23px;
    margin-top: 5px;
}

.fa{
    color: #494949;
}


/*----------------------------*\
        Mobile
\*----------------------------*/
a.menu-icon{
    font-size: 40px;
    line-height: unset;
}

.logo-mobile {
    display: block;
}

.logo-mobile img {
    max-height: 50px;
}

@media only screen and (max-width: 767px) {
    .wrap_header_mobile {
        width: 100%;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding-left: 20px;
        padding-top: 6px;
        padding-bottom: 6px;
        background-color: white;
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
        box-shadow: 0px 1px 5px 1px #BABABA;
    }
}

@media only screen and (min-width: 768px) {
    .wrap_header_mobile {
        display:none;
    }
}

/*----------------------------*\
        offcanvas
\*----------------------------*/

.offcanvas {
    width: 80% !important;
}
/* !===========================================================
!           04 -> Container                                      
! ===========================================================*/

.pd-top{
    padding-top: 64px;
}

.no-wrap{
    display: flex;
    flex-wrap: nowrap;
}

.pd-20{
    padding: 20px;
}

.Best-seller{
    background-image: url(../img/bs-2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 6px;
}

.grid{
    display: flex;
    flex-wrap: wrap;
}

.contain{
    width: 100%;
    justify-items: center;
    text-align:center;
}



@media only screen and (min-width: 768px) {
    .con-inner{
        width: 80%;
    }
    .cate-cell{
        margin-top: 25px;
        padding: 12px;
        width: 25%;
    }

    .home-about{
        display: flex;
        flex-wrap: nowrap;
    }

    .home-about-l{
        width: 40%;
        padding: 3px;
    }

    .home-about-r{
        width: 50%;
        padding: 3px;
    }

    .contact-con{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    .contact-detail{
        width: 45%;
        padding: 3px;
    }

}

@media only screen and (max-width: 767px) {
    .con-inner{
        width: 100%;
        padding: 0px 16px;
    }
    .cate-cell{
        margin-top: 25px;
        padding: 6px;
        width: 50%;
    }

    .cate-cell img{
        padding: 6px;
        transition:transform .3s;
    }

    .home-about{
        display: flex;
        flex-direction: column-reverse;
    }

    .home-about-r, .home-about-l{
        width: 100%;
        padding: 3px;
    }

    .contact-con{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-detail{
        width: 100%;
        padding: 3px;
    }
}

.cate-cell p{
    padding-top: 12px;
    font-weight: 600;
    font-size: 22px;
}

.cate-cell img{
    padding: 12px;
    transition:transform .3s;
}
.cate-cell img:hover{
    transform: scale(1.05);
}

.post-grid{
    padding: 12px 12px 32px 12px;
}

.post-img{
    padding: 6px;
}

.post-title{
    padding-top: 12px;
}

.post-title a{
    font-size: 20px;
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-weight: 600;
}

.center{
    justify-items: center;
    text-align:center;
}

.center-all{
    align-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
    text-align:center;

}

@media only screen and (min-width: 768px) {
    .cus-cell{
        padding: 6px;
        width: 16.6%;
    }
}

@media only screen and (max-width: 767px) {
    .cus-cell{
        padding: 6px;
        width: calc(100%/3);
    }
}

.spacer{
    width: 100%;
}

.end{
    text-align: end;
}

.statistics{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.sta-text{
    font-size: 16px !important;
}

.dwn{
    padding: 16px 16px;
}


/*----------------------------*\
        Tab
\*----------------------------*/

.nav-tabs{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border:none;
}

.nav-link{
    padding: 1rem 5rem;
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: 600;
    background-color: #ffffff96;
    border-color: #dee2e6;
    transition: color .25s 
        ease-in-out, background-color .35s 
        ease-in-out, border-color .35s 
        ease-in-out;
}

.nav-link:hover{
    color: red;
}

.nav-link.active{
    color: #ef0000 !important;
}

.tab-content{
    padding: 0px 16px 16px 16px;
}

.tab-inner{
    padding: 32px 6px 12px 6px;
    display: flex !important;
    flex-wrap: wrap;
    background-color: #ffffff7a;
    border-radius: 8px;
    border:solid 1px lightgray;
    box-shadow: 2px 3px 5px 0px rgb(161 161 161 / 60%);
}

/*----------------------------*\
        Width
\*----------------------------*/

.w-80{
    width: 80% !important;
}

.w-70{
    padding: 3px;
    width: 70% !important;
}

.w-60{
    padding: 3px;
    width: 60% !important;
}

.w-55{
    padding: 3px;
    width: 55% !important;
}

.w-45{
    padding: 3px;
    width: 45% !important;
}

.w-40{
    padding: 3px;
    width: 40% !important;
}

.w-30{
    padding: 3px;
    width: 30% !important;
}

.w-20{
    padding: 3px;
    width: 20% !important;
}

.w-10{
    padding: 3px;
    width: 10% !important;
}

.w-5{
    padding: 3px;
    width: 5% !important;
}

/*----------------------------*\
        Table
\*----------------------------*/

th{
    text-align: center;
    align-content: center;
}



/* !===========================================================
!           05 -> BANNER                                      
! ===========================================================*/

.banner{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.banner-bot{
    padding: 12px 60px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

}

.banner-text{
    padding-left: 32px;
    justify-items: center;
}
.banner-text p{
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 38px;
    color: rgb(255, 0, 0);
    font-weight: 600;
}

.banner-text hr{
    margin:0px;
    width: 95%;
}


.carousel-control-next-icon {
    background-image: url(/images/arrow-r.png);
}

.carousel-control-prev-icon {
    background-image: url(/images/arrow-l.png);
}

.carousel-indicators {
    margin-bottom: 1.5rem;
}

/*----------------------------*\
        Mobile
\*----------------------------*/

@media only screen and (max-width: 767px) {
    .banner-pc, .show-pc{
        display:none;
    }

    .banner-mb{
        width: 100%;
        padding: 3px;
    }

    .scroll-tab{
        width: 100%;
        padding: 3px;
    }

    .scroll-inner{
        overflow-y: scroll;
        display: -webkit-box;

    }

    .scroll-body{
        box-shadow: 2px 1px 4px 1px #8f8f8f7d;
        border-radius: 5px;
    }
    
    .scroll-head p{
        text-align: start;
        font-size: 26px;
        font-weight: 600;
        font-family: "IBM Plex Sans Thai", sans-serif;
        padding-left: 16px;
    }

    .product-1, .post-grid{
        width: calc(100%/2);
    }

    .pro-con{
        display: flex;
        flex-direction: column;
    }

    .pro-con-r, .pro-con-l{
        width: 100%;
    }
}


/*----------------------------*\
        PC
\*----------------------------*/

@media only screen and (min-width: 768px) {
    .show-mb{
        display:none;
    }

    .banner-pc{
        width: 70%;
        padding: 3px;
    }

    .banner-mb{
        width: 30%;
        padding: 3px;
    }

    .product-1, .post-grid{
        width: calc(100%/4);
    }

    .pro-con{
        display: flex;
        flex-wrap: nowrap;
    }

    .pro-con-l{
        width: 45%;
        padding: 3px;
    }

    .pro-con-r{
        width: 55%;
        padding: 3px;
    }
}


/* !===========================================================
!           06 -> IMAGE                                      
! ===========================================================*/

img{
    max-width: 100% !important;
    border-radius: 6px;
}

.img-w{
    width: 300px;
}

.img-h{
    height: 200px;
}



/* !===========================================================
!           07 -> FOOTER                                      
! ===========================================================*/

@media only screen and (min-width: 768px) {
    .foot{
        display: flex;
        flex-wrap: nowrap;
    }

    .foot-col1{
        width: 20%;
        padding: 3px;
    }

    .foot-col2{
        width: 30%;
        padding: 3px;
    }

    .foot-col3{
        width: 20%;
        padding: 3px;
    }

    .foot-col4{
        width: 30%;
        padding: 3px;
    }
}

@media only screen and (max-width: 767px) {
    .foot{
        display: flex;
        flex-direction: column;
    }

    .foot-col1, .foot-col2, .foot-col3, .foot-col4{
        width: 100%;
    }
}

.foot{
    border-top: #ffc420 solid 3px;
    background-color: #e50000;
    padding: 45px 30px 30px 30px;
}

.foot p, .foot a{
    color: #ffffff;
}

.foot-logo{
    width: 75%;
    padding-bottom: 25px;

}

p.foot-topic {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.foot-contact{
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
}

.foot-contact img, .foot-contact a{
    width: 50%;
    padding: 6px;
}

.foot-contact a img{
    width: 100%;
    padding: 0px;
}

footer .text{
    text-align: justify;
    text-indent: 3vw;
    font-weight: 300;
}

.foot a:hover{
    color: rgb(255, 204, 39);

}
footer li{
    background-color: unset !important;
    border: unset !important;
    text-align: start;
    padding: 3px !important;
}

footer i{
    color: #ffffff;
}

li.list-group-item a{
    padding-left: 16px;
}

/*----------------------------*\
        shipping
\*----------------------------*/

.shipping{
    padding: 64px 0px;
}

@media only screen and (min-width: 768px) {
    .ship-inner{
        display: flex;
        flex-wrap: nowrap;
    }
}

@media only screen and (max-width: 767px) {
    .shipping{
        width: 100% !important;
    }

    .ship-inner{
        display: flex;
        flex-direction: column;
    }

}

/* !===========================================================
!           08 -> BACK TO TOP                                      
! ===========================================================*/

.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    left: 40px;
    background-color: black;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
    }
}


/* !===========================================================
!           09 -> ADMIN                                      
! ===========================================================*/

#wrapper {
    width: 100%;   
}

@media (min-width: 768px) {
    #page-wrapper {
        width: 100%;
        position: inherit;
        padding: 64px 30px;
        height: 100%;
    }
}

/*----------------------------*\
        sidebar
\*----------------------------*/

.sidebar{
    position: sticky;
    top: 0;
    width: 300px;
    height: 100vh;
    padding: 64px 6px 0px 12px;
    border-right: 1px solid #e7e7e7;
}

.sidebar li{
    padding: 8px 0px;
    border-bottom: 1px solid #e0e0e09f;
}

.nav-second-level li{
    padding-left: 2vw;
}

#side-menu i{
    width: 30px;
}


/*----------------------------*\
        Scroll
\*----------------------------*/

.img-scroll{
    overflow-y: scroll;
    height: 85vh;
    position: sticky;
    top: 64px;
}

/*----------------------------*\
        Sticky
\*----------------------------*/

.pro-data{
    position: sticky;
    top: 64px;
    padding: 3px 6px 6px 22px;
    height: 90vh;
    border-left: 1px solid #e7e7e7;
    overflow-y: auto;
}


/*----------------------------*\
        noti
\*----------------------------*/

.noti-border{
    width: 100%;
    padding: 1px;
    background: linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 4px) calc(100% - 4px) no-repeat, 
    linear-gradient(270deg, #ffffff 5%, rgb(255, 100, 100) 40%, rgb(255, 100, 100) 60%, #ffffff 95%);
border-radius: 0px;
box-sizing: content-box;
}

.noti-inner{
    background: radial-gradient(circle,rgba(255, 173, 173, 0.58) 30%, rgba(255, 255, 255, 1) 100%);
    padding: 6px 0px;
}


.noti-inner a{
    text-decoration: underline;
    font-weight: 600;
}





/* !===========================================================
!           10 -> Article                                      
! ===========================================================*/

.article-content div{
    padding-top: 36px;
}

.article-content img{
    padding: 48px 0px;
}

.article-content h2{
    padding-bottom: 12px;
}

.article-content p{
    text-indent: 3vw;
}


/*-------------------------------------------------------------------------*/
* {
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;
}




iframe {
    border: none !important;
}

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.hamburger {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.linedivide2 {
    display: block;
    height: 20px;
    width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.header-icons-mobile .header-cart {
    width: 300px;
    top: 190%;
    right: -80px;  
    z-index: 1100;
    transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
    width: 100%;
    background-color: white;
    display: none;
    border-top: 1px solid #ececec;
}

.side-menu {
    width: 100%;
}

.side-menu li {
    list-style-type: none;
}

.side-menu .main-menu {margin-bottom: 0;}

.item-menu-mobile {
    background-color: black;
}

.side-menu .main-menu > li > a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.side-menu .main-menu > li {
    color: white;
    position: relative;
}


.side-menu .main-menu .arrow-main-menu {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 5px;
    padding: 10px;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

.side-menu .main-menu .arrow-main-menu:hover {
    cursor: pointer;
}

.turn-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-menu .sub-menu a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu > li {
    padding-left: 12px;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #e65540 !important;
}

.side-menu .sub-menu {
    background-color: white;
    display: none;
}

@media (min-width: 992px){
    .wrap-side-menu {
        display: none;
    }
}

/* ------------------------------------ */
.item-topbar-mobile {
    border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-social-moblie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------------------ */
.logo2 {
    display: block;
}

.logo2 img {
    max-height: 27px;
}

.fixed-header2 {
    z-index: 1300;
    position: fixed;
    left: 0;
    top: -70px;
    visibility: hidden;

    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}

.show-fixed-header2 {
    visibility: visible;
    top: 0px;
}

.fixed-header-menu > li{
    padding: 15px;
}

/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 320px;
    height: 100vh;
    border-right: 1px solid #e5e5e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*[ Menu ]
===========================================================*/
.container-menu-header-v3 .wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: white;
}


/*[ Logo ]
-----------------------------------------------------------*/
.container-menu-header-v3 .logo3 {
    display: block;
}

.container-menu-header-v3 .logo3 img {
    max-width: 120px;
}

/*[ Header Icon ]
-----------------------------------------------------------*/
.container-menu-header-v3 .header-icons3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: unset;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.container-menu-header-v3 .header-cart {
    left: -10px;
    transform-origin: top left;
}

/*[ Menu ]
-----------------------------------------------------------*/
.container-menu-header-v3 .main_menu {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}

.container-menu-header-v3 .main_menu > li {
    padding-top: 3px;  
    padding-bottom: 3px; 
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

.container-menu-header-v3 .sub_menu {
    top:0;
    left:100%;
}

.container-menu-header-v3 .main_menu > li > .sub_menu {
    top: 10px;
    left: 95%;
}

.container-menu-header-v3 .sub_menu li { 
    text-align: left;
}

.container-menu-header-v3 .topbar-social-item {
    padding: 10px 8px;
}


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
    margin-left: 320px;
}

@media (max-width: 992px){
    .wrap_header {display: none;}

    .container-menu-header-v3,
    .container-menu-header-v2,
    .container-menu-header 
    {display: none;}

    .top-bar {display: none;}
    header {height: auto !important;}

    .container1-page {
        margin-left: 0px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.arrow-slick1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;

    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
    opacity: 0.5;
}

.arrow-slick1:hover {
    background-color: #e65540;
}

.next-slick1 {
    right: 50px;
    left: auto;
}

.prev-slick1 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 50px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 470px;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 40px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 370px;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}




/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
    position: absolute;
    z-index: 100;
    top: calc((100% - 70px) / 2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 39px;
    color: #cccccc;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.arrow-slick2:hover {
    color: #666666;
}

.next-slick2 {
    right: -30px;
}

.prev-slick2 {
    left: -30px;
}

@media (max-width: 1280px) {
    .next-slick2 {
        right: 0px;
    }

    .prev-slick2 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick2 .next-slick2 {
        right: 0px;
    }

    .rs1-slick2 .prev-slick2 {
        left: 0px;
    }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.swal-button:hover {
    background-color: #333333;
}

.swal-button:active {
    background-color: #e65540;
}

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;

    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before 
{
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale::before {
    background-color: #e65540;
    content: 'Sale';
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'New';
}

/* ------------------------------------ */
.block2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
    display: block;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 20px;
    color: white;
    line-height: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.block2-btn-addwishlist:hover {
    color: white;
}

.block2-btn-addwishlist .icon-wishlist,
.block2-btn-towishlist .icon-wishlist {
    line-height: 0;
}

.block2-btn-addwishlist:hover .icon_heart_alt {
    display: none;
}

.block2-btn-addwishlist:hover .icon_heart {
    display: block;
}

/* ------------------------------------ */
.block2-btn-towishlist .icon_heart_alt {
    display: none;
}

.block2-btn-towishlist .icon_heart {
    display: block;
    color: #e65540;
}

/* ------------------------------------ */
.block2-overlay:hover {
    opacity: 1;
}

.block2-overlay:hover .block2-btn-addcart {
    bottom: 20px;
}

.block2-overlay:hover .block2-btn-addwishlist,
.block2-overlay:hover .block2-btn-towishlist{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5);
}

@media (max-width: 1360px) {
    .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1200px) {
    .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
    .rs1-block4 .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1380px) {
    .rs1-block4 .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 1200px) {
    .rs1-block4 .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .rs1-block4 .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
.block4-overlay {
    display: block;
    background-color: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}

.block4-overlay:hover {
    color: unset;
}

/* ------------------------------------ */
.block4-overlay-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
    transform-origin: top left;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
    visibility: visible;
    opacity: 1;
}

.block4:hover .block4-overlay-txt {
    bottom: 0;
}

.block4:hover .block4-overlay-heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 239px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

@media (max-width: 576px) {
    .bg-title-page .l-text2 {font-size: 35px;}
    .bg-title-page .m-text13 {font-size: 16px;}
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
    margin-right: 6px;
    margin-left: 6px;
    height: 4px;
    border: none;
    background-color: #e1e1e1;
}
.leftbar #filter-bar .noUi-connect {
    background-color: #c5c5c5;
    border: none;
    box-shadow: none;
}
.leftbar #filter-bar .noUi-handle {
    width: 13px;
    height: 13px;
    left: -6px;
    top: -5px;
    border: none;
    border-radius: 50%;
    background: #999999;
    cursor: pointer;
    box-shadow: none;
    outline: none;
}
.leftbar #filter-bar .noUi-handle:before {
    display: none;
}
.leftbar #filter-bar .noUi-handle:after {
    display: none;
}

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {background-color: #00bbec;}
.color-filter2 {background-color: #2c6ed5;}
.color-filter3 {background-color: #ffa037;}
.color-filter4 {background-color: #ff5337;}
.color-filter5 {background-color: #a88c77;}
.color-filter6 {background-color: #393939;}
.color-filter7 {background-color: #cccccc;}

.checkbox-color-filter {
    display: none;
}

.color-filter {
    display:block;
    width:25px;
    height:25px;
    cursor:pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
    box-shadow: 0 0 0px 2px black;
    -moz-box-shadow: 0 0 0px 2px black;
    -webkit-box-shadow: 0 0 0px 2px black;
    -o-box-shadow: 0 0 0px 2px black;
    -ms-box-shadow: 0 0 0px 2px black;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
    display: block;
}

.show-dropdown-content .up-mark {
    display: none;
}



/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    padding: 5px 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: 3px;
}

.tag-item:hover {
    border: 1px solid #e65540;
}


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: none;
    margin-right: -15px;
    margin-left: -15px;
}

.tab01 .nav-tabs .nav-item {
    padding: 8px 16px;
}

.tab01 .nav-link {
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #888888;
    line-height: 1.1;
}

.tab01 .nav-link.active {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

.tab01 .nav-link:hover {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

@media (max-width: 480px) {
    .tab01 .nav-tabs .nav-item {
        padding: 8px 6px;
    }

    .tab01 .nav-tabs {
        margin-right: -6px;
        margin-left: -6px;
    }
}


/*&-----------------------------MENU-----------------------------*/

ul#side-menu{
    flex-direction: column;
}

.nav{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}


/*&-----------------------------PRODUCT-----------------------------*/

.product-1 p{
    transition:all .3s;
}

.product-1 p:hover{
    color: red;
}

.img-product{
    padding: 12px;
}

.img-product img{
    transition:transform .3s;
}

.img-product img:hover{
    transform: scale(1.05);
}

@media only screen and (min-width: 768px) {

    .product-1{
        padding: 16px;
    }
}

@media only screen and (max-width: 767px) {

    .product-1{
        padding: 0px;
    }
}
