*{
    padding:0;
    margin:0;
    outline:none !important;
    box-sizing: content-box;
}
body{
    
    font-size: 20px;
    overflow-x: hidden;
    
    background-color: #fff;
    font-family: 'Noto Sans TC', sans-serif !important;
}
a{
    text-decoration: none;
}
.mobile-intro-banner{
    display: none;
}
@media(max-width:500px){
    .desktop-intro-banner{
        display: none;
    }
    .mobile-intro-banner{
        display: block;
        width: 100%;
    }
}

.user{
    display: none;
}
.guest{
    display: none;
}


.style-1-t-color{
    color: #F95800;
}
.product-block .bot.style-1{
    background-color: rgba(251,202,189,0.5);
}

.special-offer.style-1{
    background-color: #FBCABD;
}
.sub-menu.style-1{
    background-color: #FBCABD;
}
.header-bot.style-1{
    background-color: #fff;
}
.sub-menu.style-1{
    background-color: #FBCABD;
}

.menu-hover.style-1::after{
    content: "";
    position: absolute;
    right: 2px;
    width: 0;
    bottom: -3px;   
    background: #FBCABD;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.cd-cart__checkout{
    background-color: #FBCABD;
}
.cd-cart__checkout:hover{
    background-color: #FBCABD;
}

@media(min-width:991px){
    .menu-item.style-1:hover a{
        color:#FBCABD;
    }
}
.cart-count.style-1{
    background-color: #FBCABD;
    color: #333;
}
.line-title .line.style-1{
    background-color: #F95800;
}

.container{
    max-width: 1400px;
    width: 95%;
    margin: auto;
    padding: 0px;
    
}
.sm-container{
    max-width: 1100px;
    width: 90%;
    margin: auto;  
}

.xs-container{
    max-width: 900px;
    width: fit-content;
    margin: auto;  
}

.center-container{
    max-width: 1400px;
    width: 95%;
    margin: auto;
    padding: 0px;
    /* always change */
    min-height: calc(90vh - 207px);

    display: flex;
    justify-content: center;
    align-items: center;
}

.min-vh-100{
    min-height: 100vh;
}
.min-vh-50{
    min-height: 50vh;
}

/* The container */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #666666;
  }

  
  /* Hide the browser's default checkbox */
  .checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox_container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox_container input:checked ~ .checkmark {
    background-color: #F95800;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox_container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .checkbox_container a{
    color: #333;
    font-weight: 900;
  }
  .checkbox_container a.to_login{
    color: #F95800;
  }

/* always change */
.menu-offset{
    margin-top: 207px;
}



.line-title{
    display: flex;
    align-items: center;
    
}
.line-title .line{
    width: 33px;
    height: 2px;
}    

.line-title .text{
    color: #333;
    font-size: 18px;
    margin-left: 33px;
}



.form-group{
    width: 470px;
    
    margin-bottom: 40px;
}
.form-group .alert{
    font-size: 14px;
    color: red;
    display: none;
}
.form-group .label{
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}
.input-group{
    position: relative;
    width: 100%;
    
}
.input-group input{
    height: 62px;
    width: calc(100% - 70px);
    padding-left: 70px;
    border: #F1F1F1 1px solid;
    background-color: #FAFAFA;
    font-size: 16px;
    font-weight: 900;
}
.input-group .icon-container{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
}
.input-group input:focus{
    border: #F95800 1px solid;
}

@media(max-width:991px){
    .menu-offset{
        margin-top: 110px;
    }
    .center-container{
        justify-content: flex-start;
        
    }
    .xs-container{
        width: 100%;
    }
    .form-group{
        width: 100%;
    }
}


.button-1{
    border: #333 solid 1px;
    color: #333;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}

.button-1.active{
    background-color: #D85738;
    color: white;
    border: #D85738 solid 1px;
}

.button-1:hover{
    background-color: #D85738;
    color: white;
    border: #D85738 solid 1px;
}

.button-1.style-1:hover{
    background-color: #fbcabd;
    color: #333;
    border: #fbcabd solid 1px;
}


.button-1.sm{
    padding: 10px 28px;
    font-size: 15px;
}
.button-1.md{
    padding: 18px 60px;
    font-size: 16px;
    width: fit-content;
    border-radius: 0px;
}


.button-1 img{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.button-1.md:hover img{
    /* opacity: 0.7; */
    filter: invert(99%) sepia(1%) saturate(2%) hue-rotate(314deg) brightness(109%) contrast(100%);
}

.button-2{
    color: #fff;
    background-color: #333;
    transition: all .3s ease;
    cursor: pointer;
    width: 100%;
    padding: 20px 0px;
    text-align: center;
    font-size: 16px;
    transition: all .3s ease;
}

.button-2.style-1:hover{
    background-color: #D85738;
}

.button-3{
    border: #333 solid 1px;
    color: #333;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    padding: 18px 60px;
    font-size: 15px;
}
.button-3 img{
    transition: all .3s ease;
}
.button-3:hover{
    background-color: #333;
    color: #fff;

}
.button-3:hover img{
    filter: invert(99%) sepia(1%) saturate(2%) hue-rotate(314deg) brightness(109%) contrast(100%);
}

.button-4{
    color: white;
    padding:14px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
}
.button-4:hover{
    opacity: 0.7;
}

.button-4.style-1{
    background-color: #D85738;
}


.button-5{
    color: white;
    background-color: #2D689A;
    padding:14px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
}
.button-5:hover{
    opacity: 0.7;
}


.bold{
    font-weight: 900;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.z_-1{
    z-index: -1;
}
.w-100{
    width: 100%;
}
.w-50{
    width: 50%;
}
.w-48{
    width: 48%;
}
.w-45{
    width: 45%;
}
.w-40{
    width: 40%;
}
.hidden{
    overflow:hidden;
}
.auto{
    overflow:auto;
}

.mr-10{
    margin-right: 10px;
}

.mt-10{
    margin-top: 10px;
}
.mt-20{
    margin-top: 20px;
}
.mt-40{
    margin-top: 40px;
}
.mt-80{
    margin-top: 80px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-80{
    margin-bottom: 80px;
}
.ml-10{
    margin-left: 10px;
}
.ml-20{
    margin-left: 20px;
}
.ml-40{
    margin-left: 40px;
}
.mr-10{
    margin-right: 10px;
}
.mr-20{
    margin-right: 20px;
}
.mr-40{
    margin-right: 40px;
}

.pl-20{
    padding-left: 20px;
}
.pt-20{
    padding-top: 20px;
}
.pb-20{
    padding-bottom: 20px;
}
.grey-bg{
    background-color: #F5F5F5;
}
.al-c{
    align-items: center;
}
.fit{
    width: fit-content;
    
}
.h-fit{
    height: fit-content;
}
.flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.max-w-100{
    max-width: 100%;
}
.flex-1{
    flex: 1;
}
.t-center{
    text-align: center;
}

.h-start{
    flex-direction: row;
    justify-content: flex-start;
}
.h-center{
    flex-direction: row;
    justify-content: center;
}
.h-end{
    flex-direction: row;
    justify-content: flex-end;
}
.h-between{
    flex-direction: row;
    justify-content: space-between;
}
.h-around{
    flex-direction: row;
    justify-content: space-around;
}

.v{
    flex-direction: column;
}

.w-fit{
    width: fit-content;
}

.v-start{
    flex-direction: column;
    justify-content: flex-start;
}
.v-center{
    flex-direction: column;
    justify-content: center;
}
.v-end{
    flex-direction: column;
    justify-content: flex-end;
}
.round-border{
    border-radius: 15px;
}
.new_car_title{
    margin-top: 25px;
}

.mobile-table{
    display: none;
}

.lang-menu{
    max-height: 35px;
    
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}

.current_lang{
    display: flex;
    align-items: center;
}
.current_lang span{
    padding: 5px;
    transition: all .3s ease;
}
.current_lang img{
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: all .3s ease;
}
.lang-option-list{
    position: absolute;
    top: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: all .3s ease;
    background-color: white;
    
    
    z-index: 2;
}
.lang-option-list .lang-option{
    transition: all .3s ease;
    background-color: white;
    padding: 5px;
    
    text-align: center;
}
.lang-option-list .lang-option:hover{
    background-color: #FBCABD;
    color: white;
}
.lang-menu:hover .current_lang span{
    background-color: rgba(51,51,51,0.2);
}

.lang-menu.active .lang-option-list{
    max-height: 1000px;
}
.lang-menu.active .current_lang img{
    transform:rotate(180deg);
}
.lang-menu.mobile{
    display: none;
}
.lang-menu.desktop{
    display: none;
}

@media(min-width:992px){
    .mt-40-992{
        margin-top: 40px;
    }
    .mt-100-992{
        margin-top: 100px;
    }
    .mt-80-992{
        margin-top: 80px;
    }
    .mb-20-992{
        margin-bottom: 20px;
    }
    .mb-80-992{
        margin-bottom: 80px;
    }
    .mb-130-992{
        margin-bottom: 130px;
    }
}
@media(max-width:991px){
    .col-991{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mt-20-991{
        margin-top: 20px;
    }
    .mt-40-991{
        margin-top: 40px;
    }
    .r-90-991{
        transform: rotate(90deg);
    }
    .w-100-991{
        width: 100%;
    }
    .mr-0-991{
        margin-right: 0px;
    }
    .ml-0-991{
        margin-left: 0px;
    }
    .mobile-table{
        display: block;
    }
    .desktop-table{
        display: none;
    }
}
@media(max-width:680px){
    .col-680{
        flex-direction: column;
        justify-content: center;
        
    }
    .mr-0-680{
        margin-right: 0px;
    }
    .ml-0-680{
        margin-left: 0px;
    }
}



header{
    padding-top: 20px;
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    background-color: white;
    justify-content: space-between;
    /* background-color:rgba(0,0,0,0.6) ; */
    
}
.header-container{
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    width: 95%;
    margin: auto;
    
}
.right-container{
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    min-width: 65px;
    justify-content: space-between;
    align-items: center;
}
.burger{
    max-height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 15px;
}

.burger-child{
    width: 25px;
    height: 1px;
    background-color:#333;
    margin-bottom: 5px;
    transition: all .5s ease;
}

.language-menu{
    max-height: 27px;
    overflow: hidden;
    /* margin-bottom: 10px; */
    cursor: pointer;
    transition: all .3s ease;
}
.lang-menu{

}
.lang-item-open{
    max-height: 80px;
}
.lang-item{
    font-size: 1.3rem;
    color:white;
    text-align: center;
}

.icon-group {
    display: flex;
    align-items: center;
}

.icon-group a{
    display: flex;
    align-items: center;
    color: #333;
    margin-right: 15px;
    position: relative;
    
}
.icon-group a img{
    filter: brightness(0);
    transition: filter .3s ease;
}

.icon-group a span{
    margin-left: 10px;
    font-size: 16px;
}
.icon-group a:last-child{
    margin-right: 0px;
}

.fb-link img{
    width: 24px;
    height: 24px;
}
.ig-link img{
    height: 24px;
    height: 24px;
}
.icon-group a:hover img{
    filter: brightness(1);
}

.header-top{
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom:#D8D8D8 1px solid;
}
.header-bot{
    padding-top: 20px;
    padding-bottom: 20px;
}
.shopping-cart{
    cursor: default;
}

.cart-count{
    position: absolute;
    right: -10px;
    top: -10px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.cart-count span{
    font-size: 14px !important;
    text-align: center;
    margin: 0 !important;
}


.cart-item-container{
    position: absolute;
    width: 350px;
    right: 0px;
    top: 10px;
    
    background-color: #fff;
    z-index: 2;
    display: none;
}

.cart-item{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s ease;
}
.cart-item:hover{
    background-color: #D8D8D8;
}
.cart-item img{
    width: 30%;
}
.product_count span{
    margin: 0 !important;
}
.shopping-cart:hover .cart-item-container{
    display: block;
}
.cart-default{
    text-align: center;
    padding: 20px;
    font-size: 15px;
}
.login-mobile{
    display: none !important;
}
@media(min-width:992px){
    .main-menu{
        max-width: 600px;
        display: flex;
        justify-content: space-between;
        display: flex;
        align-items: center;
        
        margin-right: 3%;
    }
    .menu-item{
        position: relative;
        cursor: pointer;
        margin-right: 10px;
    }
    .menu-item a{
        transition: all .3s ease;
    }

    .menu-hover:hover:after,
    .menu-hover:focus:after,
    .menu-hover:active:after {
      left: 0;
      right: auto;
      width: 100%;
    }
    .menu-item a{
        font-size: 1rem;
        color: #333;
        text-decoration: none;
        cursor: pointer;
    }
    .menu-item.parent{
        position: relative;
    }
    .logo-container{
        width: 128px;
        max-width: 128px;
        height: fit-content;
    }
    .logo-container img{
        width: 100%;
        height: 65px;
        object-fit: contain;
        cursor: pointer;
        opacity: 0;
        transition: opacity .3s ease;
    }
    .logo-container.mobile{
        display: none;
    }

    .sub-menu{
        display: none;
        /* max-height: 0px; */
        width: fit-content;
        flex-direction: column;
        min-width: 150px;
        transition: all .3s ease;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .sub-menu-item{
        padding: 14px 14px;
        cursor: pointer;
        text-align: center;
        font-size: 1.1rem;
        transition: all .3s ease;
    }
    .sub-menu-item a{
        color: #333 !important;
    }
    .sub-menu-item:hover{
        background-color: #fff;

    }
    .sub-menu-item:hover a{
        color: #333;
    }
    .menu-item.parent:hover .sub-menu{
        /* max-height: 1000px; */
        display: flex;
    }
    .sub-menu-arrow{
        position: absolute;
        right: -14px;
        top: 8px;
        width: 10px;
    }

    .sub-menu-item.lv-2-parent{
        position: relative;
    }


    .lv-2-menu{
        position: absolute;
        width: 100%;
        left: 100%;
        top: 0;
        display: none;
        flex-direction: column;
    }
    .lv-2-menu.style-1{
        background-color: #FBCABD;
    }
    .lv-2-item{
        padding: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
        transition: all .3s ease;
    }
    .sub-menu-item.lv-2-parent img{
        position: absolute;
        transform: rotate(-90deg);
        right: 15px;
        top: 22px;
    }

    .lv-2-item.style-1{
        background-color: #FBCABD;
    }
    .lv-2-item:hover{
        background-color: white;
    }
    .sub-menu-item.lv-2-parent:hover .lv-2-menu{
        display: flex;
    }
}

@media(max-width:991px){
    header{
        /* background-color: rgba(0,0,0,0.5); */
        height: 50px;
    }
    .header-container{
        width: 100%;
    }

    .main-menu{
    display: flex;
    flex-direction: column;
    right: 0;
    width: 100%;
    /* background-color: #fff; */
    /* min-height: 100vh; */
    
    /* background-color: aqua; */
    }


    .offset-item-desktop{
        display: none;
    }
    .menu-item{
        margin-bottom: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        height: fit-content;
        position: relative;
    }
    .language-menu{
        margin-left: 20px;
        width: fit-content;
    }

    .lang-item{
        font-size: 1rem;
    }
    .menu-item a{
        font-size: 1rem;
        color: #969696;
        text-decoration: none;
        margin-left: 20px;
        cursor: pointer;
    }
    .logo-container{
        max-width: 128px;
        height: fit-content;
        margin-left: 3%;
        /* margin-left: 5%; */
        /* left: 5%;
        position: absolute; */
    }
    .logo-container img{
        width: 100%;
        height: 65px;
        object-fit: contain;
        object-position: center;
        transition: opacity .3s ease;
    }
    .logo-container.desktop{
        display: none;
    }
    .logo-container.mobile{
        display: block;
        margin: auto;
    }
    .logo-container.mobile{
        width: 100px;
    }
    .logo-item{
        display: none;
    }
    .burger{
        display: flex;
    }
    .header-top .icon-group{
        margin-right: 3%;
        height: 40px;
    }
    .header-bot{
        flex-direction: column;
        height: 90vh;
        transition: all .5s ease;
        transform: translateX(105%);
        overflow-y: auto;
        padding-top:0px;
        position: absolute;
        top: 100px;
    }

    .header-top .icon-group a{
        margin-right: 15px;
        position: relative;
    }

    .icon-group a span{
        font-size: 14px;
    }

    .login-mobile{
        /* display: inline-block; */
    }
    .login-desktop{
        /* display: none !important; */
    }

    .header-bot .icon-group{
        margin-left: 25px;
        margin-bottom: 20px;
    }
    .main-menu_active{
        transform:translateX(0%);
        overflow-y: auto;
    }


    .sub-menu{
        overflow: hidden;
        max-height: 0px;
        width: 100%;
        transition: all .3s ease;
    }

    .sub-menu-item{
        padding: 14px 14px;
        cursor: pointer;
        padding-left: 50px;
        font-size: 1.1rem;
        transition: all .3s ease;
    }
    .sub-menu-item:hover{
        background-color: #fff;
    }
    .menu-item.parent:hover .sub-menu{
        max-height: 1000px;
    }

    .sub-menu-arrow{
        /* position: absolute; */
        left: 60px;
        top: 28px;
        width: 10px;
        
    }
    
    .sub-menu-item.lv-2-parent{
        position: relative;
    }


    .lv-2-menu{
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .lv-2-menu.style-1{
        /* background-color: #FBCABD; */
    }
    .lv-2-item{
        padding: 14px;
        /* padding: 14px;
        text-align: center;
        display: flex;
        justify-content: center;
        transition: all .3s ease; */
    }
    .sub-menu-item.lv-2-parent img{
        /* position: absolute; */
        /* transform: rotate(-90deg); */
        left: 120px;
        top: 20px;
    }

    .lv-2-item.style-1{
        padding-left: 20px;
    }
    .lv-2-item:hover{
        background-color: white;
    }
    .sub-menu-item.lv-2-parent:hover .lv-2-menu{
        max-height: 1000px;
    }

    .lang-menu.mobile{
        display: none;
    }
    .lang-option-list{
        position: absolute;
        top: 0%;
        left: 50px;
        max-height:unset;
        overflow: hidden;
        transition: all .3s ease;
        background-color: white;
        max-width: 0px;
        display: flex;
        align-items: center;
        z-index: 2;
    }
    .lang-menu.active .lang-option-list{
        max-width: 1000px;
    }
    .lang-menu.active .current_lang img{
        transform: rotate(-90deg);
    }
    .lang-menu.active{
        width: 120px;
    }
    .lang-menu.desktop{
        display: none;
    }

}

.special-offer{
    font-size: 14px;
    color: #333;
    /* margin-top: 20px; */
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
    
}



.special-offer .title{
    transition: all .3s ease;
}
.special-offer a{
    text-decoration: underline;
    color: #333;
}

.special-offer .content{
    max-height: 0px;
    overflow: hidden;
    text-align: justify;
    opacity: 0;
    transition: all .3s ease;
}
.special-offer .content.content_active{
    max-height: 1000px;
    padding: 30px;
    
}

.read_more{
    display: inline-block;
}
.read_less{
    display: none;
}

.banner{
    margin-top: 206px;
}

#banner-slider .owl-nav{
    width: 90%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-slider .owl-nav button{
    width: 57px;
    height: 57px;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
}
.banner-slider .owl-nav button img{
    margin-top: 5px;
}
.banner-slider .owl-nav button:hover{
    background-color: #FBCABD !important;
}
.banner-slider .owl-dots{
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}



.product-cate .title{
    font-size: 24px;
    color: #333;
    margin-top: 55px;
    margin-bottom: 55px;
}
.product-row{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */

}

.product-block{
    width: 326px;
    height: 411px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-top: 15px;
    margin-left: 20px;
    position: relative;
}

.product-block .img-container{
    height: calc(100% - 96px);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.product-block .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.product-block .img-container .tag-container{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    
}
.product-block .img-container .sell-tag{
    background-color: #D85738;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 10px;
}

.product-block .img-container .sell-tag.out-stock{
    background-color: #6A6A6A;
}
.product-block .img-container .sell-tag.vip-tag{
    background-color: #38C6D8;
}
.product-block .img-container .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    font-weight: 900;
    text-align: center;
    top: 0;
    left:0;
    background-color: rgba(106,106,106,0.7);
    font-size: 250px;
}

.product-block .bot{
    padding: 10px;
    width: calc(100% - 20px);
}
.product-block .bot .title{
    font-size: 16px;
    min-height: 52px;
    color: #333;
    font-weight: 900;
    margin: 0;
    
}
.product-block .bot .price{
    font-size: 16px;
    color: #333;
    margin-top:5px;
    font-weight: 100;
}
.product-block .bot .price .ori-price{
    text-decoration: line-through;
    margin-right: 20px;
}

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

.product-content{
    margin-top: 236px;
}
.product-content a{
    color: #333;
}

.bread-cum{
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
}
.product-data{
    display: flex;
    justify-content: space-between;
}
.product-data .left{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}
.product-data .left .main-photo{
    width: 100%;
    height: 670px;
}
.product-data .left .main-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.small-photo-list{
    width: 100%;
    /* display: flex;
    justify-content: space-between; */
}
.small-photo-list .img-container{
    width: 155px;
    height: 155px;
    cursor: pointer;
    margin-top: 20px;
}
.small-photo-list .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all .3s ease;
}
.small-photo-list .img-container.active img{
    opacity: 1;
}
.small-photo-list .img-container:hover img{
    opacity: 1;
}
.product-data .right{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.product-data .right .title{
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 25px;
}
.product-data .right .price{
    font-size: 27px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 100;
}
.product-data .right .price .ori-price{
    text-decoration: line-through;
    margin-right: 20px;
    
}
.product-data .right .price .price{

}
.data-row{
    margin-top: 20px;
    margin-bottom: 20px;
}
.data-row .label{
    font-size: 15px;
    color: #333;
}
.data-row .size-list{
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
}
.data-row .size-list .button-1.sm{
    margin-right: 20px;
    margin-top: 20px;
    min-width: 52px;
    text-align: center;
}
.qty-container{
    margin-top: 20px;
    display: flex;
    border: #D1D1D1 solid 1px;
    width: 141px;
    height: 36px;
    justify-content: space-between;
}
.qty-container.product{
    margin: auto;
}
.qty-container .qty-button{
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.qty-container .qty-button:first-child{
    border-right: 1px solid #D1D1D1;
}
.qty-container .qty-button:last-child{
    border-left: 1px solid #D1D1D1;
}
.qty-container .qty-number{
    height: 36px;
    width: 69px;
}
.qty-container .qty-number input{
    width: 100%;
    height: 100%;
    border: none;
    text-align: center;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
@media(min-width:1400px){
    .banner-img{
        width: 1400px !important;
        height: calc(calc(1400px / 70) * 31);
        object-fit: cover;
    }
    .product-cate{
        margin-bottom: 130px;
    }
    
}
@media(max-width:1399px){
    .banner-img{
        width: 95vw;
        height: 95vw;
        object-fit: cover;
    }
    .product-cate{
        margin-bottom: 65px;
    }
}
@media(max-width:1076px){
    .product-row{
        justify-content: center;
    }
}

@media(max-width:991px){
    .product-data{
        flex-direction: column;
    }
    .product-data .left{
        width: 100%;
        margin: 0;
    }
    .product-data .right{
        width: 100%;
    }
    .product-content{
        margin-top: 120px;
    }
    .header-top{
        padding-bottom: 10px;
        background-color: #fff;
    }
    .banner{
        margin-top: 112px;
    }
    .product-row{
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .product-block{
        /* margin-right: 20px; */
        width: calc(calc(95vw/2) - 20px);
        height: unset;
    }
    .product-block .bot{
        width: calc(100% - 20px)
    }
    .product-cate .title{
        text-align: center;
    }
    .special-offer{
        margin-top: 0px;
    }
    .product-data .right .title{
        margin-top: 40px;
    }
    .product-data .left .main-photo{
        height: 400px;
    }


}

@media(max-width:500px){
    .product-block{
        /* width: calc(calc(95vw) - 20px); */
    }
    .product-block .bot .title{
        font-size: 14px;
    }
}

.product-detail{
    width: 100%;
    display: flex;
    border: 1px;
    margin-top: 40px;
    border: 1px solid #D1D1D1;
    margin-bottom: 40px;
    flex-direction: column;
}
.product-detail .tab{
    display: flex;
    justify-content: space-around;
    width: 100%;
    
    border-bottom: 1px solid #D1D1D1;
}
.product-detail .tab .tab-item{
    width: 50%;
    text-align: center;
    cursor: pointer;
    padding: 20px 0px;
    transition: opacity  .3s ease;
}
.product-detail .tab .tab-item:hover{
    opacity: 0.7;
}
.product-detail .tab .tab-item.active{
    font-weight: 900;
}
.product-detail .main-detail{
    padding: 50px 60px;
    font-size: 16px;
    color: #333;
    white-space: pre;
}
.product-detail .main-detail ul{
    margin-left: 20px;
}

.related-product .title{
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 900;
}

@media(max-width:991px){
    .related-product-list .owl-item{
        display: flex;
        justify-content: center;
    }
}
.cd-cart__header{
    width: 80%;
}

footer{
    background-color: #363637;
}
footer .top .list-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
}
footer .top .list-container ul{
    list-style: none;
    flex: 1;
}
footer .top .list-container ul li{
    margin-bottom: 12px;
}
footer .top .list-container ul .footer-title{
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 26px;
}

footer .top .list-container ul a{
    color: #D1D1D1;
    font-size: 14px;
}
.copy-right{
    text-align: center;
    font-size: 12px;
    color: white;
    font-weight: 100;
    padding-bottom: 40px;
}

footer .bot{
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}
footer .bot .sm-container .con{
    display: flex;
    justify-content: space-between;
}
footer .payment{
    width: 60%;
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 14px;
    align-items: center;
}
footer .social-media{
    width: 5%;
    display: flex;
    min-width: 55px;
    justify-content: space-between;
}

@media(max-width:991px){
    footer .bot{
        display: flex;
        flex-direction: column;
    }
    footer .bot .sm-container .con{
        flex-direction: column;

    }
    footer .payment{
        width: 100%;
        flex-wrap: wrap;
    }
    footer .payment img{
        margin-right: 15px;
    }
    footer .social-media{
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    footer .social-media a:first-child{
        margin-right: 20px;
    }
}

.account-title{
    font-size: 20px;
    color: #333;
    font-weight: 900;
    text-align: center;
    background-color: #F5F5F5;
    padding-top:45px;
    padding-bottom:45px;
}
.center-container.side-bar-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 80px;
    
}
.center-container.side-bar-container .left{
    display: flex;
    flex-direction: column;
    width: 300px;
    min-height: 1300px;
    /* justify-content: center; */
    
}

.center-container.side-bar-container .right{
    display: flex;
    flex-direction: column;
    width: calc(100% - 300px);
    
}

.cate-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 260px;
    width: 240px;
    height: fit-content;
    height: -moz-fit-content;
    opacity: 0;
    transition: all .3s ease;
}
.cate-container h2{
    color: #8b8b8b;
    text-align: left;
    width: 192px;
    margin-bottom: 30px;
    font-size: 24px;
}
.cate-block{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    color: #363637;
    width: 80%;
}
.cate-block .cate-title{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    width: 40%;
    position: relative;
    cursor: pointer;
}
.cate-block.active .cate-title{
    font-weight: 900;
}
.cate-block .sub-cate-container{
    font-size: 14px;
    font-weight: 100;
    max-height: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}
.cate-block .sub-cate-container.active{
    max-height: 1000px;
}
.cate-block .sub-cate-container .sub-cate{ 
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 200;
}
.cate-block .sub-cate-container .sub-cate.active{
    font-weight: 900;
    
}

.cate-block .down-arrow{
    position: absolute;
    right: 0;
    /* top: 43%; */
    /* transform:translateY(-50%); */
    width: 15px;
}

.cate-block .cate-block .down-arrow{
    position: absolute;
    right: 0;
    top: 50%;
    transform:translateY(-50%);
    width: 15px;
}

.center-container.side-bar-container .right .top{
    width: 99.5%;
}
.center-container.side-bar-container .right .bottom{
    width: 100%;
}

.product-count{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product-count .title{
    font-size: 16px;
    color: #8b8b8b;
}


.select-box{
    width:270px;
}
.select-box.product{
    width: 50%;
    margin: auto;
}
.payment-select{
    width: 100%;
}
.payment-select .drop-down{
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat 95% #fff;
}

.drop-down {
    width: 95%;
    margin: auto;
    color:#8b8b8b;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    border: 1px #d1d1d1 solid; 
    /* margin: auto; */
    margin-right: 15px;
    font-size: 16px;
    
    padding-left: 20px; 
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat 85% #fff;
    -webkit-appearance: none;
}
.cart-table .drop-down {
    font-size: 14px;
}

.drop-down div {
    margin-left: 20px;
}

.drop-down img {
    margin-right: 20px;
}

.sub-total-block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29%;
}

.center-container.side-bar-container .right .bottom .product-row{
    /* justify-content: flex-start; */
}
.center-container.side-bar-container .right .bottom .product-row .product-block{
    /* margin-right: 40px; */
}

@media(max-width:991px){
    .center-container.side-bar-container{
        flex-direction: column;
    }
    .center-container.side-bar-container .left{
        width: 100%;
        height: fit-content;
        min-height: unset;
    }
    .center-container.side-bar-container .left .cate-container{
        position: unset;
        flex-direction: row;
        width: 100%;
        align-items: baseline;
        
        flex-wrap: wrap;
    }
    .cate-block{
        width: fit-content;
        min-width: 200px;
    }
    .cate-container h2{
        width: 100%;
    }
    .center-container.side-bar-container .right{
        width: 100%;
    }
    .product-count{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .product-count .title{
        margin-bottom: 20px;
    }
}

.cart-table{
    table-layout: fixed;
    width: 100%;
    margin-top: 40px;
    border-spacing: 0px;
}
.cart-table thead tr th{
    
    border-bottom: 1px solid #D1D1D1;
    padding-bottom: 20px;
    font-size: 14px;
}

.cart-table tbody tr td{
    padding-bottom: 20px;
    padding-top: 20px;
    height: 100px;
    border-bottom: 1px solid #D1D1D1;
}
.table-product-block{ 
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
}
.extra-block .table-product-block{
    width: 30%;
    margin: 0;
    min-width: 210px;
}
.table-product-block .img-container{ 
    width: 68px;
    height: 68px;
}
.table-product-block .img-container img{ 
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.table-product-block .text-container{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.table-product-block .text-container .title{
    color: #19202C;
    font-size: 16px;
    font-weight: 900;
    min-width: 150px;
}

.table-product-block .text-container .sku{
    color: #19202C;
    font-weight: 100;
    font-size: 12px;
    margin-top: 5px;
}
.table-product-block .text-container .model{
    color: #19202C;
    font-weight: 100;
    margin-top: 5px;
    font-size: 12px;
}
.table-product-block .text-container .qty{
    color: #19202C;
    font-weight: 100;
    font-size: 12px;
    margin-top: 20px;
}
.cart-table .price-block{
    color: #19202C;
    font-size: 14px;
    text-align: center;
    font-weight: 100;
}
.cart-table .total-price-block{
    color: #19202C;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}
.delete_btn{
    cursor: pointer;
    width: 14px;
    height: 14px;
}
.extra-buy{
    background-color: #F5F5F5;
    width: 100%;
    margin-top: 40px;
}

.extra-buy .head-title{
    text-align: center;
    color: #202020;
    font-weight: 900;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: white;
}
.extra-block{
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.extra-block .price-block{
    color: #19202C;
    font-size: 14px;
    text-align: center;
    font-weight: 100;
    width: 20%;
    min-width: 210px;
}
.extra-block .btn-container{
    width: 30%;
    
}
.extra-block .btn-container .button-3{
    margin: auto;
    max-width: 216px;
    min-width: 89px;
    display: flex;
    justify-content: space-between;
    
}

@media(max-width:687px){
    .extra-block .btn-container .button-3{
        margin-top: 20px;
    }
}
.payment-content{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.payment-content .left{
    width: calc(100% - 400px);
    height: 100%;
}
.payment-content .right{
    width: 366px;
    
}
.payment-content .right .payment-detail{
    
    position: -webkit-sticky;
    position: sticky;
    top: 200px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 12px 14px rgba(0,0,0,0.16);
}
.payment-content .right .payment-detail .title-line{
    width: 100%;
    height: 2px;
    margin-top: 10px;
}
.payment-content .right .payment-detail .title-line.style-1{
    background-color: #F95800;
}
.line-title.side-bar-item{
    margin-bottom: 40px;
    cursor: pointer;
}
.payment-detail .line-title{
    width: 100%;
    color: #F95800;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.payment-detail .line-title .line{
    width: 32px;
    height: 2px;
    
}
.line-title.side-bar-item .line{
    background-color: transparent;
}
.line-title.side-bar-item.active .line{
    background-color: #F95800;
}

.line-title.side-bar-item .text{
    font-weight: 900;
}

.payment-detail .line-title .text{
    margin-left: 20px;
    color:#F95800;
    font-weight: 900;
}



.payment-detail .table-product-block{
    min-height: 100px;
    width: 100%;
    justify-content: flex-start;
    /* align-items: center; */
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #CBCBCB;
}
.payment-detail .table-product-block .text-container{
    /* justify-content: flex-start; */
}

.payment-detail .table-product-block .price{
    position: absolute;
    right: 20px;
    bottom:35px;
    font-size: 14px;
    color: #333;
    font-weight: 900;
}
.cash-dollor-block{
    padding-top: 20px;
    padding-bottom: 20px;
}
.cash-dollor-block .dollor-text{
    color: #333;
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    margin-bottom: 20px;
}
.input-text-btn-group{
    display: flex;
    justify-content: space-between;
}
.input-text-btn-group input{
    border: #707070 1px solid;
    padding-left: 10px;
    width: 135px;
    height: 44px;

}
.input-text-btn-group input:placeholder{
    color: #ccc;
    font-size: 14px;
}
.payment-data{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #666;
    font-weight: 100;
    margin-bottom: 20px;
}
.data-data.pay-amount{
    font-size: 25px;
    font-weight: 900;
    color: #333;
}
.delivery-box{
    box-shadow: 0px 12px 16px rgba(0,0,0,0.16);
    padding: 20px;
    width: calc(100% - 40px);
    transition: all .3s ease;
}
.delivery-box .title.style-1{
    color: #F95800;
}
.delivery-option-container{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}
.option-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-right: 20px;
    padding: 20px;
    border: 1px solid #D1D1D1;
    transition: all .3s ease;
}
.option-block:last-child{
    margin-right: 0px;
}
.option-block img{
    margin-bottom: 30px;
}
.option-block.active.style-1{
    border: 1px solid #F95800;
}
.option-block.style-1:hover{
    border: 1px solid #F95800;
}
.address-title{
    display: flex;
    color: #333;
    font-size: 14px;
    min-width: 600px;
}
.address-title .reciver{
    width: calc(30% - 80px);
    margin-left: 80px;
    min-width: 120px;
}
.address-title .phone{
    width: calc(25% - 80px);
    min-width: 120px;
}
.address-title .address{
    width: calc(50% - 80px);
    
}

.address-block{
    display: flex;
    padding: 18px;
    width: calc(100% - 40px);
    border: 1px #D1D1D1 solid;
    min-height: 45px;
    align-items: center;
    /* min-width: 600px; */
}

.address-block.self-pick{
    flex-direction: column;
}
.address-block .line{
    width: 100%;
    height: 1px;
    background-color: #666;
    margin-top: 20px;
    margin-bottom: 20px;

}

/* The container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .radio-container .checkmark {
    position: absolute;
    top: -15px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .checkmark {
    background-color: #F95800;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }
  .address-block{
      font-size: 16px;
      font-weight: 100;
      margin-bottom: 20px;
  }
  .address-block .reciver{
    width: calc(30% - 80px);
    margin-left: 20px;
    min-width: 120px;
    margin-bottom: 20px;
  }
  .address-block .phone{
    width: calc(25% - 80px);
    margin-left: 10px;
    min-width: 120px;
    margin-bottom: 20px;
  }
  .address-block .address{
    width: calc(50% - 80px);
    margin-bottom: 20px;
    /* margin-left: 20px; */
  }
  .input-address-block{
    width: calc(100% - 80px);
    margin-left: 20px;
  }

  .step-container{
      width: 95%;
      max-width: 1400px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      font-size: 14px;
      margin-top: 20px;
  }
  .step{
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;
      
  }
  .step:last-child{
    margin-right: 0px;
  }
  .step .number{
    background-color: #767676;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 5px;
  }
  .step .number.active.style-1{
    background-color: #F95800;
  }
  .next{
      margin-right: 10px;
  }

  @media(max-width:991px){
    .payment-content{
        flex-direction: column;
    }
    .payment-content .left{
        width: 100%;
    }
    .payment-content .right{
        width: 100%;
        margin-top: 40px;
    }
    .address-title{
        display: none;
    }
    .address-block{
        /* flex-direction: column;
        align-items: flex-start; */
        /* flex-wrap: wrap; */
    }
    .address-block div{
        margin-left: 0px !important;
        
    }
    .address-block .address{
        width: 100%;
    }
  }

  @media(max-width:680px){
    .delivery-option-container{
        flex-direction: column;
    }
    .option-block{
        margin-right: 0px;
        margin-bottom: 20px;
    }
  }

  .none-mode{
    display: none;
    opacity: 0;
  }
  .checkout_amount.style-1{
      color: #D34141;
      font-weight: 100;
  }
  .checkout-message{
      color: #8E8E8E;
      font-size: 14px;
  }
  .page-btn{
      cursor: pointer;
  }
  .page-btn.active{
      font-weight: 900;
  }

  .loading-block{
      min-height: calc(70vh - 300px);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all .3s ease;
      opacity: 0;
  }
  .content-block{
    transition: all .3s ease;
    opacity: 0;
    display: none;
  }

  .cd-cart__details h3{
      width: 100%;
      white-space: pre-line;
  }

.cd-cart::before{
    z-index: 1001;
}
.cd-cart__content{
    z-index: 1002;
}
.cd-cart__trigger{
    z-index: 1003;
}
.user_rank{
    flex: 1;
}
.user_rank .card{
    width: 90%;
    height: 31.36%;
    max-width: 462px;
    min-height: 161px;
    min-width: 320px;
    margin: auto;
}
.detail_form{
    flex: 1;
}

.card-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 10px;
    background-color: #f2f2f2;
    position: relative;
}

.hover-msg{
    position: absolute;
    right: 10px;
    bottom: -10px;
    max-width: 352px;
    min-width: 352px;
    min-height: 44px;
    padding: 20px;
    color: white;
    background-color: #626262;
    display: flex;
    font-size: 13px;
    align-items: center;
    display: none;
}
.hover-msg img{
    width: 35px;
    height: 44px;
    object-fit: contain;
    margin-right: 10px;
}

.hidden-btn{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 1px;
    height: 1px;
    
}

.hidden-btn:hover .hover-msg{
    display: flex;
}

.card-content#vip-content{
    background-image: url('../img/vip_bg.png');
    display: none;
}
.card-content#vip-content .data-block{
    color: white;
}
.card-content#basic-content{
    /* display: none; */
}


.data-left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 80%;
    margin-left: 5%;
    width: fit-content;
    max-width: 137px;
}
.data-right{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 80%;
    margin-right: 5%;
    margin-left: 2%;
    
    width: calc(calc(100% - 13%) - 137px);
    align-items: flex-end;
}

.data-block .title-text{
    
    font-size: 12px;
    font-weight: 100;
    margin-bottom: 10px;
}
.data-block .data-text{
    font-size: 20px;
    font-weight: 900;
}
.dollor_block{
    display: none;
}
.scroll-bar-container{
    width: 100%;
    color: #F9581E;
    font-size: 12px;
    display: none;
}
.scroll-bar-container .top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.scroll-bar-container .bottom{
    display: flex;
    align-items: center;
}
.scroll-bar-container .bottom .circle{
    width: 11px;
    height: 11px;
    border-radius: 50%;
    
}
.scroll-bar-container .bottom .circle.start{
    background-color: #F95800;
}
.scroll-bar-container .bottom .circle.end{
    background-color: #FCDDCD;
}
.scroll-bar-container .bottom .bar{
    width: calc(100% - 22px);
    background-color: #FCDDCD;
    height: 3px;
    position: relative;
}
.scroll-bar-container .bottom .bar .fill{
    width: 50%;
    height: 100%;
    position: absolute;
    background-color: #F95800;
    left: 0;
    top: 0;
    transition: all .3s ease;
}

.pin-point{
    position: absolute;
    bottom: 10px;
    right: 10px;

}
.pin-point img{
    width: 15px;
    height: 17px;
    object-fit: contain;
}
.pin-point:hover .hover-msg{
    display: flex;
}
.normal-input{
    padding-left: 10px !important;
    width: 100% !important;
}
.select-tab{
    display: none;
    width: 98%;
    margin: auto;
    margin-bottom: 40px;
}
.select-tab .drop-down{
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat 97% #fff;
}
.account-tab{
    transition: all .3s ease;
    width: 100%;
}
#account{
    display: flex;
    opacity: 1;
}
#order{

    display: none;
    opacity: 0;
}
#order_detail{

    display: none;
    opacity: 0;
}
#coupon{
    display: none;
    opacity: 0;
}
#address{

    display: none;
    opacity: 0;
}
.order_record{
    width: 100%;
    table-layout: fixed;
    border-spacing:0 15px;
    border-collapse: separate;
    min-width: 650px;
    font-size: 18px;
}

.order_record thead{
    
}
.order_record thead tr th:first-child{
    padding-left: 35px;
    
}

.order_record thead tr th{
    padding-bottom: 20px;
}
.order_record tbody tr td{
    height: 100px;
    background-color: #F7F7F7;
    transition: all .2s ease;
}
.order_record tbody tr td:first-child{
    border-left: 9px solid #0F5D96;
    border-radius:6px 0px 0px 6px;
    padding-left: 20px;
}

.order_record tbody tr td:last-child{
    border-radius:0px 15px 15px 0px;
}
.order_record th{
    text-align: left;
}
.order_record tbody tr:hover td{
    background-color: #E5E5E5;
}
.order_detail_container{
    display: flex;
    justify-content: space-between;
}
@media(max-width:1200px){
    #account{
        flex-direction: column;
    }
    .user_rank .card{
        width: 95%;
        max-width: 95%;
        height: 200px;
        margin-bottom: 40px;
    }
    .detail_form{
        width: 95%;
        margin: auto;
    }
    .detail_form .form-group{
        width: 100%;
    }
}
@media(max-width:991px){
    .side-tab{
        display: none !important;
    }
    .select-tab{
        display: block;
    }
    .order_detail_container{
        flex-direction: column;
    }
    .left.side-tab.account{
        display: flex !important;
        flex-direction: row;
        height: fit-content;
        min-height: unset;
        max-width: 100%;
        flex-wrap: wrap;
    }
    .center-container.side-bar-container.account{
        min-height: unset;
    }
    .account .line-title{
        margin-right: 30px;
    }
    .account .line-title .text{
        margin-left: 5px;
    }
}

.order_data{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    font-size: 15px;
}
.order_data #order_id{
    color: #333;
    margin-right: 10px;
}
.order_data #order_status{
    /* color: #0F961A; */
}
.payment_detail{
    background-color: #F5F5F5;
    width: 215px;
    height: 290px;
    padding: 40px 30px;
    color: #666666;
    font-weight: 100;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    /* align-items: center; */

}
.payment_detail img{
    margin-top: 20px;
}
.detail-bottom-left .form-group{
    width: 250px;
}
.top-row{
    display: flex;
    justify-content: space-between;
}
.detail-top-left{
    cursor: pointer;
}
.detail-top-left img{
    transition: all .3s ease;
}
.detail-top-left:hover img{
    transform:translateX(-5px);
}
@media(max-width:991px){
    .top-row{
        flex-direction: column;
    }
    .detail-top-right{
        margin-top: 20px;
    }
    .payment_detail{
        width: calc(100% - 80px) ;
    }
    .payment_detail img{
        object-fit: contain;
        margin: auto;
        margin-top: 20px;
    }
}
.coupon-block{
    cursor: pointer;
    margin-bottom: 40px;
}
.coupon-block .top{
    display: flex;
}
.coupon-block .top .img-container{
    width: 50%;
    overflow: hidden;
    max-width: 550px;
    max-height: 266px;
    
}
.coupon-block .top .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.coupon-block:hover img{
    transform: scale(1.1);
}
.coupon-block .top .text-container{
    width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
.coupon-block .top .text-container .title{
    color: #19202C;
    font-size: 20px;
    margin-bottom: 5px;
}
.coupon-block .top .text-container .sub-title{
    font-size: 12px;
}
.coupon-block .top .text-container .text-bot img{
    transition:  all .3s ease;
    width: 12px;
    height: 8px;
}
.text-bot{
    font-size: 12px;
}
.coupon-detail{
    width: 90%;
    margin: auto;
    margin-top: 20px;
    overflow: hidden;
    max-height: 0px;
    font-size: 12px;
    transition: all .3s ease;
}
.coupon-block.active .coupon-detail{
    max-height: 1000px;
}
.coupon-block.active .top .text-container .text-bot img{
    transform:rotate(180deg)
}
.address-row{
    margin-bottom: 20px;
}
.address-row .address-block{
    margin-bottom: 0px;
}
.address-row .address-block div{
    margin-bottom: 0px;
}
@media(max-width:991px){
    .address-row{
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
        
    }
    .address-row .address-block{
        flex-direction: column;
        align-items: flex-start;
        
    }
    .pre-loaded-address{
        flex-direction: column;
        align-items: flex-start;
    }
    .address-block{
        min-width: unset;
    }
    .address-row .address-block div{
        margin-bottom: 10px;
    }
}
.terms h3{
    font-size: 1.3rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 1em;
}

.terms h4{
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin: .75em 0;
}
.terms p{
    font-size: .9rem;
    font-weight: 300;
    color: #000;
    margin: .75em 0;
}
.terms table tr td {
    font-size: .9rem;
    font-weight: 300;
    color: #000;
    padding: .5em 0;
}

.terms .list-alpha > li, .list-num > li, .list-roman > li{
    list-style: none;
padding-left: 5ch;
position: relative;
display: block;
font-size: .9rem;
font-weight: 300;
color: #000;
margin: .75em 0;
}
.fb-link{
    display: none !important;
}
.ig-link{
    display: none !important;
}