﻿@media(min-width: 992px) {
    #sticker {
        display: block;
        width: 87.5%;
        line-height: 14px;
        padding-left: 75px;
    }

    #sticker-container .tbl > .tbl-cell {
        vertical-align: middle;
    }

        #sticker-container .tbl > .tbl-cell.mobile {
            display: none;
        }

    #sticker-container.menu-fix {
        z-index: 999;
        -webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,.3);
        -moz-box-shadow: 0 2px 3px 0 rgba(0,0,0,.3);
        box-shadow: 0 2px 3px 0 rgba(0,0,0,.3);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fafafa;
    }

    #sticker-container ul.main-menu {
        display: table;
        width: 100%;
        padding: 0;
        margin: 0;
        height: 50px;
    }

    #sticker .main-menu:after {
        display: table;
        clear: both;
        /* content: ""; */
    }

    #sticker .main-menu > li {
        position: relative;
        text-align: center;
        transition: ease-in-out .3s;
        padding: 15.5px 9px;
    }

        #sticker .main-menu > li.mobile {
            display: none;
        }

    #sticker .main-menu ul > li > a {
        display: block;
        white-space: nowrap;
    }

    #sticker .main-menu > li > a {
        color: #442314;
        transition: ease-in-out .3s;
        display: block;
        font-size: 15px;
        text-align: center;
        white-space: nowrap;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        line-height: 44px;
    }

        #sticker .main-menu > li > a:before {
            content: "";
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--main-color);
            opacity: 0;
            transition: all .5s ease-in-out;
            border: 7px solid transparent;
            border-top: 7px solid var(--main-color);
        }

    #sticker .main-menu > li:hover > a, #sticker .main-menu > li.active > a {
        color: var(--main-color);
    }

        #sticker .main-menu > li:hover > a:before, #sticker .main-menu > li.active > a:before {
            opacity: 1
        }

    #sticker .main-menu > li:last-child {
        border-right: 0;
        padding-right: 0;
        background: none;
        list-style: none;
        padding-left: 30px;
    }

    #sticker .main-menu > li ul {
        background: #fff;
        list-style: none;
        position: absolute;
        min-width: 260px;
        top: 100%;
        left: 0;
        z-index: 1000;
        transform: translate(0,10px);
        box-shadow: none;
        border-radius: 0;
        visibility: hidden;
        opacity: 0;
        padding: 0;
        border-radius: 0 0 4px 4px;
        border-top: 4px solid #d3d1d147;
    }

    #sticker .main-menu > li:nth-child(2) ul {
        left: 0;
        right: auto;
    }

    #sticker .main-menu > li:hover > ul {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition: ease-in-out .3s;
    }

    #sticker .main-menu > li ul:after {
        content: "";
        display: block;
        position: absolute;
        height: .4px;
        top: -.4px;
        width: 100%;
    }

    #sticker .main-menu > li ul > li > a {
        border-bottom: 1px solid #d9caae;
        color: #442314;
        padding: 12px 10px 14px;
        line-height: 18px;
        border-left: 3px solid rgba(17, 17, 17, 0);
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        font-size: 15px;
        text-align: left;
    }

    #sticker .main-menu > li ul > li:last-child > a {
        border-bottom: 0;
    }

    #sticker .main-menu > li ul > li > a:hover, #sticker .main-menu > li ul > li.active > a {
        background: #ffffff;
        color: var(--main-color);
        border-left: 3px solid var(--main-color);
        /* border-right: 3px solid #ed1c24; */
    }

    #sticker .main-menu > li input {
        height: 32px;
        border: 1px solid #dbdbdb;
        border-radius: 3px;
        padding: 10px 37px 10px 12px;
        width: 93%;
    }

    #sticker .main-menu > li:last-child {
        position: relative;
        text-align: right;
    }

        #sticker .main-menu > li:last-child:before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 14px;
            background: url(../images/icon-search-th.png)no-repeat;
            width: 21px;
            height: 21px
        }
}

@media(max-width: 991px) {
    #sticker .main-menu > li.mobile {
        display: block;
    }

    #sticker {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        position: fixed;
    }

        #sticker.opened {
            visibility: visible;
            opacity: 1;
            transition: ease-in-out .3s;
        }

        #sticker .container {
            padding: 0;
        }

    #sticker-overlay {
        opacity: 0;
        visibility: hidden;
        background: rgba(0,0,0,0.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        -webkit-transition: all 300ms ease-out;
        -moz-transition: all 300ms ease-out;
        -o-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
    }

    #sticker-wrapper {
        width: 310px;
        max-width: 100%;
        background: var(--main-color);
        height: 100%;
        border: none;
        z-index: 1;
        left: -100%;
        display: block;
        position: relative;
        padding: 116px 0 50px;
        -webkit-transition: all 300ms ease-out;
        -moz-transition: all 300ms ease-out;
        -o-transition: all 300ms ease-out;
        transition: all 300ms ease-out;
        margin: 0;
    }

    #sticker.opened #sticker-wrapper {
        left: 0;
        z-index: 9999;
    }

    #sticker.opened #sticker-overlay {
        opacity: 1;
        visibility: visible;
    }

    #sticker .tbl, #sticker .tbl-cell {
        display: block;
        width: 100%;
    }

    #sticker .sticker-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

        #sticker .sticker-header .title {
            font-size: 20px;
            line-height: 75px;
            /* font-weight: 700; */
            text-transform: uppercase;
            color: #fff;
            padding: 0 50px 0 20px;
        }

        #sticker .sticker-header .close-menu {
            width: 40px;
            height: 40px;
            line-height: 40px;
            position: absolute;
            right: 5px;
            top: 17px;
            cursor: pointer;
            text-transform: uppercase;
        }

            #sticker .sticker-header .close-menu:before, #sticker .sticker-header .close-menu:after {
                width: 18px;
                height: 2px;
                position: absolute;
                left: 50%;
                top: 50%;
                margin: -1px 0 0 -9px;
                content: "";
                background: #fff;
            }

            #sticker .sticker-header .close-menu:before {
                transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
            }

            #sticker .sticker-header .close-menu:after {
                transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
            }

    #sticker .sticker-body {
        max-height: 100%;
        overflow: auto;
    }

    #sticker .search form {
        position: relative;
    }

        #sticker .search form input {
            width: 100%;
            height: 40px;
            line-height: 40px;
            padding: 0 30px 0 15px;
            background-color: #fff;
            border: none;
            outline: none !important;
        }

        #sticker .search form button {
            position: absolute;
            top: 7px;
            right: 10px;
            background: none !important;
            color: #666;
            outline: none !important;
            border: none;
            font-size: 20px;
            padding: 0;
        }

    #sticker ul.main-menu {
        display: block;
        float: none !important;
        padding: 0;
        margin: 0;
        padding-bottom: 46px;
    }

    #sticker .main-menu > li {
        display: block;
        border-bottom: 1px solid #cdd0cc;
        padding: 0;
        position: relative;
        width: 100%;
    }

        #sticker .main-menu > li:last-child {
            display: none
        }

        #sticker .main-menu > li > a {
            color: #ffffff;
            line-height: 14px;
            padding: 10px 45px 10px 0;
            display: block;
            text-align: left;
            font-weight: normal;
            font-size: 16px;
            text-transform: capitalize;
            position: relative
        }

    #sticker #sticker-wrapper .main-menu > li > .fa {
        position: absolute;
        right: 0;
        top: 0;
        line-height: 39px;
        width: 39px;
        text-align: center;
        cursor: pointer;
        margin: 0;
        font-size: 12px;
        display: block;
        color: #fff;
    }

    #sticker ul.main-menu > li ul {
        position: static;
        transform: none;
        width: 100%;
        padding-left: 10px;
        margin-left: 0;
        background-color: transparent;
        display: none;
        margin-bottom: 10px;
    }

        #sticker ul.main-menu > li ul:after {
            display: none;
        }

        #sticker ul.main-menu > li ul > li {
            border-bottom: none;
            list-style: none;
        }

            #sticker ul.main-menu > li ul > li > a {
                border-bottom: none;
                padding: 7px 10px 7px 20px;
                color: #fff;
                font-size: 14px;
                position: relative
            }

                #sticker ul.main-menu > li ul > li > a:before {
                    content: "\f105";
                    font: normal normal normal 14px/1 FontAwesome;
                    font-size: 12px;
                    left: 5px;
                    position: absolute;
                    top: 8px
                }

    #sticker .sticker-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #873302;
        color: #fff;
    }

    #sticker .hotline {
        text-align: center;
        display: block;
        margin: 0 auto;
        font-size: 16px;
        padding-right: 0;
    }

        #sticker .hotline .text {
            min-height: 34px;
            line-height: 34px;
            background: url('../img/hotline-icon.png') 3px 4px no-repeat;
            white-space: nowrap;
            padding: 0px 10px 0px 40px;
            background-color: #fff !important;
            border-radius: 34px;
        }

            #sticker .hotline .text span, #sticker .main-menu > li.hotline .text b {
                display: inline-block;
                font-weight: 600;
            }

            #sticker .hotline .text span {
                color: #5d5d5d;
                text-transform: uppercase;
                font-size: 16px;
                font-weight: bold;
                margin-bottom: 0;
                padding-right: 5px;
            }

            #sticker .hotline .text b {
                color: #0a4976;
                font-size: 16px;
            }

    #sticker .lang {
        border-top: 1px solid #006530;
        padding: 12px 15px;
        text-transform: uppercase;
    }

        #sticker .lang .current {
            color: #ddd;
            font-weight: bold;
        }

    #sticker .socials {
        display: inline-block;
        width: auto;
        color: #fff;
        margin-bottom: 0;
        padding: 0;
    }

        #sticker .socials:after {
            content: "";
            display: table;
            clear: both;
        }

    #sticker .top-header .right ul {
        display: block;
        width: 100%;
    }

    #sticker .socials > li {
        width: 25%;
        border: none;
        float: left;
        list-style: none;
    }

        #sticker .socials > li > a {
            padding: 0;
            display: flex;
            align-items: center;
            height: 50px;
            line-height: 50px;
            border: 1px solid #b5cec1;
            text-align: center;
            border-left: none;
            text-transform: uppercase;
            font-size: 19px;
            color: #fff;
            justify-content: center;
        }

        #sticker .socials > li:last-child > a {
            border-right: 0;
        }

    #sticker .top-header {
        height: 50px;
        border-top: 1px solid #b5bfba;
        background: #720207;
        padding: 12px;
    }

    #sticker .socials > li > a .fa {
        border-radius: 0;
        font-size: 20px;
        color: #fff;
    }

    #sticker .socials > li:last-child > a .fa {
        border-right: none;
    }

    #sticker .top-header .right ul li.hotline:before {
        top: 6px;
    }

    #touch-menu {
        width: 30px;
        height: 25px;
        float: right;
        position: absolute;
        right: 15px;
        top: 16px;
        z-index: 99;
        transition: ease-in-out .3s;
    }

        #touch-menu .touch-menu-inner, #touch-menu .touch-menu-inner:before, #touch-menu .touch-menu-inner:after {
            position: absolute;
            background-color: #ed1c24;
            width: 30px;
            height: 4px;
            transition-timing-function: ease;
            transition-duration: .15s;
            transition-property: transform;
        }

        #touch-menu .touch-menu-inner {
            display: block;
            margin-top: -2px;
            top: auto;
            bottom: 0;
            transition-delay: .13s;
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-duration: .13s;
        }

        #touch-menu.opened .touch-menu-inner {
            transition-delay: .22s;
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transform: translate3d(0,-10px,0) rotate(-45deg);
        }

            #touch-menu.opened .touch-menu-inner:before {
                top: 0;
                transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
                transform: rotate(-90deg);
            }

            #touch-menu.opened .touch-menu-inner:after {
                top: 0;
                transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
                opacity: 0;
            }

        #touch-menu .touch-menu-inner:before, #touch-menu .touch-menu-inner:after {
            display: block;
            content: "";
        }

        #touch-menu .touch-menu-inner:before {
            top: -10px;
            transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19);
        }

        #touch-menu .touch-menu-inner:after {
            top: -20px;
            transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear;
        }

    #touch-menu {
        width: 30px;
        height: 25px;
        float: right;
        position: absolute;
        right: 15px;
        top: 16px;
        z-index: 99;
        transition: ease-in-out .3s;
    }

        #touch-menu .touch-menu-inner, #touch-menu .touch-menu-inner:before, #touch-menu .touch-menu-inner:after {
            position: absolute;
            background-color: #ed1c24;
            width: 30px;
            height: 4px;
            transition-timing-function: ease;
            transition-duration: .15s;
            transition-property: transform;
        }

        #touch-menu .touch-menu-inner {
            display: block;
            margin-top: -2px;
            top: auto;
            bottom: 0;
            transition-delay: .13s;
            transition-timing-function: cubic-bezier(.55,.055,.675,.19);
            transition-duration: .13s;
        }

        #touch-menu.opened .touch-menu-inner {
            transition-delay: .22s;
            transition-timing-function: cubic-bezier(.215,.61,.355,1);
            transform: translate3d(0,-10px,0) rotate(-45deg);
        }

            #touch-menu.opened .touch-menu-inner:before {
                top: 0;
                transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
                transform: rotate(-90deg);
            }

            #touch-menu.opened .touch-menu-inner:after {
                top: 0;
                transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
                opacity: 0;
            }

        #touch-menu .touch-menu-inner:before, #touch-menu .touch-menu-inner:after {
            display: block;
            content: "";
        }

        #touch-menu .touch-menu-inner:before {
            top: -10px;
            transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19);
        }

        #touch-menu .touch-menu-inner:after {
            top: -20px;
            transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear;
        }

    .product-hot .content .lSAction > .lSPrev {
        left: 0;
        top: 35%;
        width: 14px;
    }

    .product-hot .content .lSAction > .lSNext {
        top: 35%;
        right: 0;
        width: 14px;
        background-position-x: -4px;
    }

    .footer .item ._img {
        width: 160px
    }

    .submit-ft > span a {
        display: block;
        font-size: 16px;
        padding-left: 0;
    }
}

@media(max-width: 1200px) {
    #sticker {
        width: calc(100% - 145px);
        padding-left: 20px;
    }

    .top-header .left {
        padding-left: 165px;
    }

    #sticker .main-menu > li {
        padding: 0px 5px 0 10px;
    }
}

@media(max-width: 991px) {
    .top-header .left ul li span.none {
        display: none;
    }

    #logo {
        padding: 8px 0;
        width: 20%;
        line-height: 0;
    }

        #logo a {
            line-height: 32px;
        }

    .top-header .left {
        padding-left: 110px;
    }

    .top-header {
        padding-right: 10px;
        background: #fff;
        display: none;
    }

        .top-header .right ul li.leng a {
            padding: 0 15px;
        }

        .top-header .right ul li.leng:before {
            display: none;
        }

    #sticker {
        width: 100%;
        padding: 0;
    }

        #sticker .top-header .left {
            width: 100%;
            padding: 0;
            display: block;
        }

    .top-header ul {
        margin: 0 auto;
    }

    .top-header .right {
        padding-right: 30px;
        display: none
    }

    .sub-full {
        display: block
    }

    .contact-th .item-right {
        width: 100%;
        padding: 0;
    }

    .contact-th .item-left {
        width: 100%;
        padding: 15px 0;
    }

    .swiper-slide img {
        width: 100%
    }

    .lSSlideOuter .lSGallery li, .lSSlideOuter .lightSlider > * {
        overflow: hidden !important
    }

    .detail-content-right .add span {
        width: 100% !important;
        margin: 10px 0 !important
    }

    .cart .checkout-right {
        width: 100%
    }

    .cart .checkout-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
        overflow: hidden;
        overflow-x: auto
    }

    .checkout-left table {
        width: 800px;
        overflow-x: auto
    }

    .cart {
        padding-bottom: 20px
    }

    .detail-content-right ul {
        clear: both;
        padding: 15px
    }

    .tab-detail.content-detail .nav-tabs {
        padding: 15px 0
    }
}

@media(max-width: 767px) {
    #touch-menu {
        width: 25px;
        height: 20px;
        top: 26px;
        position: fixed;
    }

        #touch-menu .touch-menu-inner, #touch-menu .touch-menu-inner:before, #touch-menu .touch-menu-inner:after {
            width: 25px;
            height: 3px;
        }

            #touch-menu .touch-menu-inner:before {
                top: -8px;
            }

            #touch-menu .touch-menu-inner:after {
                top: -16px;
            }

    .top-header .left {
        display: none;
    }

    .top-header .right ul li {
        position: initial;
    }

        .top-header .right ul li .form-search {
            top: 100%;
            right: 0;
            left: 0;
            width: 100%;
        }

            .top-header .right ul li .form-search input, .top-header .right ul li .form-search button {
                height: 40px;
            }

    .tool-bar ul li {
        font-size: 12px
    }

    #back-top {
        bottom: 15px
    }

    .sub-menu-2 ul li {
        width: calc(50% - 10px);
        float: left;
        margin: 5px 5px
    }

    .footer .item {
        width: 100%;
        padding: 0;
    }

    .contact-th .item-right .tit-lg h1 span {
        display: block;
        padding: 0;
    }

    .contact-th {
        padding: 10px 0;
        margin: 0;
    }

        .contact-th .flex-about {
            flex-direction: column;
            gap: 0;
        }

        .contact-th .item-left {
            justify-content: center;
            aspect-ratio: 1;
        }

            .contact-th .item-left img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }

    .main-heaeder {
        padding: 10px 0;
    }

    .news-th .content {
        padding-bottom: 15px;
    }

    .contact-th .item-right .tit-lg h1 {
        font-size: 20px
    }

    .contact-th .item-right .tit-lg {
        padding: 10px 0
    }

    .contact-th .item-right p {
        height: auto
    }

    .tit-lg {
        padding: 0;
        padding-bottom: 10px
    }

    .slider-product-th .action .prev {
        left: 15px;
    }

    .slider-product-th .action .next {
        right: 15px;
    }

    .detail-news .content {
        width: 100%;
        padding-right: 0
    }

    .detail-news .list-right {
        width: 100%
    }

    .form-contact .item {
        width: auto
    }

    .detail-content-right .add span a {
        font-size: 10px;
        padding: 5px 13px;
        text-align: center
    }

    .detail-content-right h3, .detail-content-right h1 {
        font-size: 20px
    }

    .detail-content-right p span {
        font-size: 20px;
        line-height: 18px
    }

        .detail-content-right p span:last-child {
            font-size: 16px;
            line-height: 18px
        }

    #fixed-left ul li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

        #fixed-left ul li a img {
            width: 50%
        }

    #fixed-left ul li:nth-child(3) a img {
        width: 33%
    }

    .addthis_button_tweet {
        display: none !important
    }

    .addthis_button_pinterest_pinit {
        display: none !important
    }

    .tab-detail.content-detail {
        margin-top: 20px
    }

    .tit-h2 h2 {
        font-size: 20px;
        padding: 0px 0 15px
    }

    .product-hot {
        padding-bottom: 0;
        margin-bottom: 15px;
    }

    .item-video {
        padding-bottom: 7.5px
    }

    .video-th {
        padding-bottom: 10px
    }

    .bottom-footer {
        text-align: center;
        padding-bottom: 15px;
    }

        .bottom-footer .right {
            margin: 0 auto
        }

    .submit-ft > span a {
        display: initial
    }

    .detail-news .content h1 {
        padding-bottom: 0;
        margin: 0
    }

    .detail-news {
        padding-bottom: 20px
    }

    .footer .item h3 {
        padding: 0 0 15px 0;
    }

    .footer .item:nth-child(2), .footer .item:last-child {
        width: 100%;
    }

    .news-th .content .desc {
        padding: 15px 0
    }

    .clock {
        padding: 5px 0
    }

    .footer {
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
    }

    .news-th .content .desc p {
        margin: 0;
        height: auto
    }

    .content-contact .item-right .form:last-child {
        padding: 15px 0
    }

    .tit-lg h1 {
        font-size: 20px
    }

    .toll-bar-1 ul {
        margin: 5px 0
    }

    .slider-product-th .desc {
        padding: 10px 0;
    }

        .slider-product-th .desc h3 {
            height: auto
        }

    .contact-th .item-right p {
        margin-bottom: 10px
    }

    .video-th {
        padding-top: 15px
    }

    .news-th .content .desc h3 {
        font-size: 15px;
        height: auto
    }

    .content-contact {
        margin-bottom: 0px
    }

    .news-th .content .desc p {
        text-align: justify
    }

    .content-contact .item-right {
        margin-top: 10px
    }

    .detail-content-right p {
        display: block
    }

    .tab-content .item-first .desc a.view {
        display: table;
        margin: 20px auto 0;
    }

    .slider-product-th .item ._img img {
        object-fit: contain
    }

    .flex-video {
        margin-bottom: 0;
        flex-direction: column;
    }

        .flex-video .item-video {
            width: 100%;
        }

    .fanpage .iframe {
        aspect-ratio: 16 / 5;
    }

    .bottom-footer .container {
        flex-direction: column;
        gap: 10px;
    }

    .flex-video.flex-3 .item-video {
        width: 100%;
    }

    .banner-th, .banner-th .item {
        aspect-ratio: 1600/890;
    }

        .banner-th .item img {
            object-fit: cover;
            height: 100%;
        }
}

@media(max-width: 426px) {
    .footer .item {
        width: 100%
    }

        .footer .item:nth-child(2) {
            width: 100%;
        }

        .footer .item:nth-child(3) {
            width: 60%
        }

    .bottom-footer .right {
        padding: 0;
    }

        .bottom-footer .right ul {
            float: initial !important;
            margin: 0 auto;
            padding-right: 44px
        }

    .contact-th .item-right p {
        font-size: 14px;
    }

    .tit-h2 h2 {
        font-size: 17px
    }

    .news-th .content .desc p {
        font-size: 13px
    }

    .clock {
        padding: 0
    }

    .news-th .content {
        padding-bottom: 0
    }
}
