@keyframes shake {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes bigZoom {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    50% {
        transform: rotate(0) scale(1.2) skew(1deg);
        opacity: .5;
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }
}

@keyframes smallZoom {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }

    30% {
        transform: rotate(0) scale(1.2) skew(1deg);
        opacity: .1;
    }

    100% {
        transform: rotate(0) scale(1.3) skew(1deg);
        opacity: .1;
    }
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus,
[tabindex="0"]:focus {
    outline: 0 !important;
    text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.h2,
h2 {
    font-size: 22px;
}

.h3,
h3 {
    font-size: 18px;
}

.pointer {
    cursor: pointer;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
}

a {
    color: #333;
    text-decoration: none;
}

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

img {
    max-width: 100%;
    border: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 68px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 56%) 0%, rgba(0, 0, 0, 0) 100%);
}

.slide-1 .slick-arrow {
    width: 57px;
    height: 57px;
    top: calc((50% - 9px) - (57px/2));
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    left: 40px;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.slide-1 .slick-next {
    left: auto;
    right: 40px;
}

.slide-1 .item {
    position: relative;
}

.slide-1 .item-body {
    position: absolute;
    width: 1170px;
    left: calc(50% - (1170px/2));
    top: 0;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.slide-1 .item-text {
    font-size: 26px;
    line-height: 36px;
    max-width: 800px;
    padding-left: 0;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 1px 6px rgb(0 0 0 / 90%);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* .slide-1 .slick-slide {
    height: 420px;
} */

.slick-arrow {
    position: absolute;
    z-index: 1;
    padding: 0;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    font-size: 0;
    line-height: 0;
    border: 0;
    cursor: pointer;
    background-color: rgba(56, 142, 45, .5);
    border-radius: 5px;
}

.slick-arrow:before {
    content: '';
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    background: url(../images/prev.svg) no-repeat center;
}

.slick-arrow.slick-next:before {
    background: url(../images/next.svg) no-repeat center;
}

.wrap {
    max-width: 1360px;
    margin: 0 auto;
}

.clr:after,
.wrap:after {
    content: "";
    display: block;
    clear: both;
}

.header .logo {
    float: left;
    margin-top: 8px;
    margin-right: 20px;
}

.header .logo img {
    height: 50px;
}

.header .menu {
    float: right;
}

.header .hotline {
    float: left;
    line-height: 68px;
    margin-left: 10px;
    color: #fff;
}

.header .hotline>a {
    font-weight: 700;
    letter-spacing: .1em;
    color: #ff0000;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

.header .search {
    float: left;
}

.search-box {
    position: relative;
    width: 320px;
    margin-top: 13px;
}

.search-box>input {
    background: #fff;
    color: #333;
    height: 40px;
    font-size: 16px;
    border: 0;
    width: 100%;
    border-radius: 30px;
    padding: 0 15px;
}

.search-box>button {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    color: #C4996C;
    border: 0;
    background: none;
}

.header .menu {
    padding: 0;
    height: 46px;
    list-style: none;
    margin: 16px 0 0;
}

.header .menu>li {
    float: left;
    margin-right: 10px;
}

.header .menu li a {
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    padding: 8px 18px 6px 18px;
    display: block;
    border-radius: 30px;
}

.header .menu li:hover>a {
    color: #fff;
    background-color: #C4996C;
}


.bfixed .header .menu>li>a,
.fixed .header .menu>li>a {
    color: #333;
}

.header .menu>li>ul>li>a.parent::after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    font-size: 18px;
}

.header .menu>li>ul>li>ul {
    position: absolute;
    background: #C4996C;
    color: #ccc;
    border-radius: 0;
    box-shadow: 5px 2px 5px #c2c2c254;
    list-style: none;
    padding: 0;
    display: none;
    min-width: 300px;
    margin-left: 300px;
    top: 0;
}

.header .menu>li>ul>li:hover>ul {
    display: block;
}

.header .menu>li>ul>li>ul>li>a {
    color: #fff;
    font-weight: normal;
    text-transform: unset;
    border-radius: 0;
    font-size: 14px;
}

.header .menu li:hover>a,
.header .menu li:hover>ul>li:hover>a,
.header .menu>li>ul>li>ul>li>a:hover {
    color: #fff;
    background: #C4996C;
}

.header .menu>li>ul>li {
    position: relative;
}

#fmenu {
    position: fixed;
    z-index: 20;
    right: 20px;
    bottom: 20px;
}

#fmenu>a {
    border-radius: 999px;
    width: 170px;
    height: 43px;
    padding: 7px 12px 8px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    position: relative;
    margin-top: 15px;
    background-color: #fff;
    box-shadow: 0 0px 10px rgb(0 0 0 / 21%);
    -webkit-box-shadow: 0 0px 10px rgb(0 0 0 / 21%);
}

#fmenu>a:hover {
    background-color: #C4996C;
    color: #fff;
}

#fmenu>a:before {
    z-index: -1;
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 999px;
}

#fmenu>a>img {
    margin-right: 10px;
    -webkit-animation: shake 1.2s infinite ease-in-out;
    animation: shake 1.2s infinite ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    height: 26px;
}

#fmenu>a:hover.call-fb img,
#fmenu>a:hover.call-zalo img {
    filter: unset;
}

#fmenu>a>span {
    padding-top: 2px;
}

#fmenu>a>i.fa.fa-arrow-up {
    width: 26px;
    text-align: center;
    height: 26px;
    line-height: 22px;
    display: inline-block;
    border-radius: 2px;
    border: 2px solid;
    border-radius: 50%;
    color: #C4996C;
    margin-right: 10px;
}

#fmenu>a:hover>i.fa.fa-arrow-up {
    color: #fff;
}

.footer {
    background: #212121;
    color: #fff;
    text-align: center;
    padding: 30px 0 10px;
}

.footer .block-list {
    padding-left: 0;
    margin-bottom: 20px;
    display: inline-block;
}

.footer .block-list li {
    line-height: 24px;
    list-style-type: none;
    display: flex;
    float: left;
    margin-right: 20px;
}

.footer .block-list li .img {
    min-width: 17px;
    margin-right: 11px;
    margin-top: -1px;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bfixed {
    padding-top: 70px;
}

.bfixed .header,
.fixed .header {
    background: #fff;
    box-shadow: 0px -2px 5px rgb(0 0 0);
}

.bfixed .header .search-box>input,
.fixed .header .search-box>input {
    background: #e4e4e4;
    color: #333;
}

.bfixed .search-box>input::-ms-input-placeholder,
.fixed .search-box>input::-ms-input-placeholder {
    color: #333;
}

.bfixed .search-box>input:-ms-input-placeholder,
.fixed .search-box>input:-ms-input-placeholder {
    color: #333;
}

.bfixed .search-box>input::placeholder,
.fixed .search-box>input::placeholder {
    color: #333;
}

.imgc,
.imgc0 {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.imgc0 {
    display: flex;
}

.imgc img,
.imgc0 img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgc0 img {
    object-fit: cover;
}

.imgc:before,
.imgc0:before {
    display: block;
    content: "";
    padding-bottom: 100%;
}

@media screen and (max-width: 992px) {
    .imgc,
    .imgc0 {
        z-index: 7;
    }
}

.slide-1 .item-img .imgc:before {
    display: block;
    content: "";
    padding-bottom: calc(874/1900*100%);
}

#copyright {
    text-align: center;
    color: #fff;
    background: #000;
    font-size: 12px;
    padding: 15px 0;
}

.p0x200 {
    padding: 0 200px;
}

.box {
    margin-top: 30px;

}

.box .heading {
    font-size: 1.6em;
    text-transform: capitalize;
    line-height: 1.8em;
    letter-spacing: -0.02em;
    position: relative;
    color: black;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 24px;
}

.box .heading:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100px;
    height: 3px;
    background-color: #fecf07;
    left: 0;
    bottom: -12px;
}

.text-center .heading:before {
    left: calc(50% - 50px) !important
}

ul.block-contact {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

ul.block-contact>li {
    float: left;
    width: 50%;
}

.slide-1 .item-text>strong {
    color: #c92039;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 3px 3px 5px gray;
}

ul.block-contact span.vname {
    display: block;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
}

ul.block-contact span.vname:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 43px;
    height: 2px;
    background-color: #7fc345;
    left: 0;
    bottom: 0;
}

ul.block-contact span.vline {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: rgb(255 255 255 / 19%);
    border-radius: 30px;
    padding: 5px 15px;
}

ul.block-contact span.vline>a {
    color: #fff;
}

ul.block-contact span.vline>a>img {
    height: 17px;
    margin-right: 7px;
    margin-left: -5px;
}

ul.block-contact span.vline:hover {
    background: #fff;
}

ul.block-contact span.vline:hover>a {
    color: #333;
}

ul.block-contact span.vline:hover>a>img.invert {
    filter: invert(1);
}

.contact-1 {
    padding: 68px 0 58px;
    background: url(../images/footer-bg.webp) no-repeat center;
    color: #fff;
    margin-top: 40px;
    background-size: cover;
}

.contact-1 .block-wrap {
    background-color: rgba(255, 255, 255, .3);
    border-radius: 3px;
    padding: 25px 30px 30px;
}
.contact-1 .block-wrap .col-addr {
    display: none;
}

.contact-1 .block-subtext {
    line-height: 24px;
    height: 48px;
    margin-bottom: 23px;
}

.contact-1:after {
    content: "";
    background: rgb(0 0 0 / 69%);
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-1 {
    position: relative;
}

.contact-1>.container {
    position: relative;
    z-index: 2;
}

.block-form {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.block-form [class^='col'] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 9px;
    display: flex;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.block-form input,
.block-form textarea {
    width: 100%;
    line-height: 24px;
    padding: 7px 11px;
    border-radius: 3px;
    background-color: #fff;
    border: none;
    color: #333;
}

#modal-cart .has-error input,
#modal-cart .has-error textarea,
.contact-1 .has-error input,
.contact-1 .has-error textarea {
    border-color: #a94442 !important;
    color: #a94442 !important;
}

#modal-cart input,
#modal-cart textarea {
    border: 1px solid #ccc;
}

#modal-cart .has-error,
.contact-1 .has-error {
    position: relative;
}

#modal-cart .has-error .help-block,
.contact-1 .has-error .help-block {
    position: absolute;
    bottom: -18px;
    background: #d43430;
    padding: 1px 4px;
    display: inline-block;
    right: 5px;
    height: 16px;
    overflow: hidden;
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    z-index: 1;
}

#modal-cart [name="content"] {
    display: none;
}

.btn-success,
.contact-1 .block-submit {
    height: 38px;
    display: inline-flex;
    min-width: 90px;
    justify-content: center;
    align-items: center;
    background-color: #c92039;
    color: #fff;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-success>i {
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -2px;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success:active:focus,
.btn-success:active:hover,
.contact-1 .block-submit:hover {
    background-color: #C4996C;
    border-color: #C4996C;
}

.contact-1 .block-title {
    font-size: 22px;
    text-transform: uppercase;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 22px;
    margin-top: 18px;
    font-weight: 600;
}

.contact-1 .block-title:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: 0;
}

.contact-1 .block-text {
    line-height: 26px;
    max-height: 130px;
    overflow: hidden;
    margin-bottom: 32px;
}

.contact-1 .block-links {
    display: flex;
}

.contact-1 .block-links>a {
    font-size: 18px;
    color: #000;
    line-height: 24px;
    padding: 2px 24px 2px 2px;
    border-radius: 999px;
    background-color: rgba(240, 240, 240, .6);
    display: inline-flex;
    align-items: center;
}

.contact-1 .block-links>a {
    margin-right: 10px;
}

.contact-1 .block-links>a>img {
    margin-right: 8px;
}

.contact-wrap {
    margin-top: -20px;
    margin-bottom: -40px;
}

.main-404 {
    text-align: center;
    margin: 100px auto;
}

.product-2 .item-img .imgc0.video-thumb:before {
    padding-bottom: 56.25%;
}

.product-2 .item-img .imgc0.video-thumb img {
    object-fit: cover;
}


/* .product-2 .item {
    margin-bottom: 24px;
} */

/* .product-related .item {
    margin: 0 !important;
} */

.product-2 .item-img {
    position: relative;
    background-color: #f4f4f4;
    box-shadow: 0 3px 5px rgb(0 0 0 / 12%);

}

.product-2 .item-wrap {
    position: absolute;
    z-index: 5;
    top: 16px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    left: 18px;
    right: 18px;
    bottom: 15px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-2 .item-play {
    color: #fff;
    font-size: 30px;
}

.product-2 .item-link {
    width: 140px;
    height: 36px;
    color: #fff;
    border-radius: 999px;
    visibility: hidden;
    opacity: 0;
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background-color: #C4996C;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.product-2 .item-link:hover {
    background-color: rgb(255 255 255);
    color: #c92039;
}

.product-2 .item-body {
    text-align: center;
    margin-top: 14px;
    min-height: 90px;
}
.product-2 .list-catelog .item-body {
    font-weight: 600;
}

.product-2 .item-img .imgc0:before {
    padding-bottom: calc(326/370*100%);
}

.product-2 .item-img:after {
    content: '';
    position: absolute;
    z-index: 3;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    visibility: hidden;
    opacity: 0;
}

.product-2 .item-img:hover:after {
    visibility: visible;
    opacity: 1;
}

.product-2 .item-img:hover .item-wrap {
    border-color: rgba(255, 255, 255, .5);
}

.product-2 .item-img:hover .item-link {
    visibility: visible;
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.product-2 .item-link i {
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.slick-arrow.slick-next {
    left: auto;
    right: 0;
}

.product-2 .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 1px;
    top: 50%;
    left: -66px;
    margin-top: -45px;
    background-color: #c7c7c7;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.product-2 .slick-next {
    left: auto;
    right: -66px;
}

.product-2 .item-title {
    line-height: 22px;
    display: block;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#modal-preview .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

#modal-preview .modal-body {
    position: relative;
    padding: 0px;
}

#modal-preview .close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

.list-product,
.list-video {
    margin-left: -2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-thumb {
    background: #e9e9e9;
}

.list-product>.item,
.list-video>.item {
    width: 23%;
    margin-left: 2%;
    margin-top: 2%;
    margin-right: 0;
}

#product .info {
    background-color: #fffaee;
    padding: 15px;
    margin: 15px 0 20px;
    border-radius: 5px;
    border-left: 5px solid #c92039;
}

.modal-title {
    font-size: 22px;
    text-transform: uppercase;
}

.modal-header .close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 40px;
}

.tags>h5 {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags>span {
    display: block;
}

.tags {
    border-top: 1px solid #dfdfdf;
    padding-top: 15px;
    margin-top: 30px;
}

.paler-blue {
    background-color: #f1f1f1;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 3em;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 4%), 0 0 10px 0 rgb(0 0 0 / 8%);
}

.paler-blue.paler-right .content-text {
    order: 1;
}

.paler-blue.paler-right .col-image {
    padding-right: 60px;
    padding-left: 0;
}

.paler-blue .content-area {
    padding: 2.5em 3.5rem;
}

.paler-blue h3 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.paler-blue .img-cover {
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
    position: relative;
    height: 100%;
    background-size: cover;
    position: relative
}

.paler-blue .img-cover>a {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pt-30 {
    padding-top: 30px;
}

.row-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row-flex .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

/* loader-ellips
------------------------- */
.page-load-status {
    display: none
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555;
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/* loader-wheel
------------------------- */

.loader-wheel {
    font-size: 64px;
    /* change size here */
    position: relative;
    height: 1em;
    width: 1em;
    padding-left: 0.45em;
    overflow: hidden;
    margin: 0 auto;
    animation: loader-wheel-rotate 0.5s steps(12) infinite;
}

.loader-wheel i {
    display: block;
    position: absolute;
    height: 0.3em;
    width: 0.1em;
    border-radius: 0.05em;
    background: #333;
    /* change color here */
    opacity: 0.8;
    transform: rotate(-30deg);
    transform-origin: center 0.5em;
}

.pagination {
    display: none;
}

h2.description {
    font-size: 16px;
    line-height: 22px;
}

@keyframes loader-wheel-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.richtext {
    font-size: 16px;
    width: 100%;
    overflow: hidden;
}

.richtext img {
    max-width: 100%;
}

.richtext table {
    border-left: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
}

.richtext table th {
    font-weight: bold;
}

.richtext table td,
.richtext table th {
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 5px 10px;
}

.richtext blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #4fd6ff;
}

.richtext ul {
    list-style: disc;
    padding-left: 40px;
}

.richtext ul,
.richtext ol {
    margin-bottom: 15px;
}

.table_of_contents {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #aaa;
    padding: 20px;
    margin-bottom: 15px;
}

.table_of_contents .toc_title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.table_of_contents ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.table_of_contents ul li {
    font-size: 13.5px;
}

.toc_content {
    margin-bottom: 15px;
}

.toc_header {
    border-bottom: 2px solid #ccc;
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.toc_header:after {
    content: " ";
    border-bottom: 2px solid #000000;
    display: block;
    margin-bottom: -2px;
    width: 20%;
    padding-bottom: 10px;
}

.share {
    margin: 10px 0;
}

span.sale {
    position: absolute;
    z-index: 9;
    top: 5px;
    right: 5px;
    background-color: #fe4007;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
}

span.sale2 {
    background-color: #fe4007;
    color: #fff;
    border-radius: 3px;
    padding: 1px 5px;
    font-size: 14px;
    vertical-align: middle;
    margin-top: -8px;
    display: inline-block;
}

.item-price>strong {
    color: red;
}

.item-price>strong>del {
    font-weight: normal;
    color: #6b6b6b;
}

.mmenu {
    float: left;
    height: 68px;
    width: 60px;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

#nav-aside {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    color: #818385;
    max-width: 260px;
    width: 100%;
    padding: 14px;
    overflow-y: scroll;
    z-index: 10000;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

#nav-aside.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

body.aside:before {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 9999;
    content: "";
    width: 100%;
}

body.aside:after {
    background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMjRweCIgZmlsbD0iI2ZmZiI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMiAxOSA2LjQxeiIvPjwvc3ZnPg==);
    width: 24px;
    height: 24px;
    content: "";
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 10000;
    color: #fff;
    font-size: 30px;
    opacity: 0.8;
}

#nav-aside ul {
    list-style: none;
    padding: 0;
}

#nav-aside li>a {
    display: block;
    font-size: 16px;
    padding: 7px 0;
    text-transform: uppercase;
    font-weight: 700;
}
.catelog-22 {
    display: none;
    margin-top: 7px;
}
.catelog-22 ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.catelog-22 ul li {
    font-size: 14px;
    background-color: #f0f0f0;
    padding: 4px 7px;
    margin-bottom: 7px;
    margin-right: 7px;
    border-radius: 2px;
    box-shadow: 0px 0px 2px 2px #ddd;
}
.catelog-22 ul li:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1200px) {
    .header .menu li {
        margin-right: 5px;
    }

    .header .menu li a {
        padding: 8px 10px 6px 10px;
    }

    .search-box {
        width: 220px
    }
}

@media screen and (max-width: 1380px) {
    .wrap {
        margin: 0 15px;
    }
}

@media screen and (max-width: 1060px) {
    .search-box {
        width: 220px;
    }

    .p0x200 {
        padding: 0;
    }

    .slide-1 .slick-slide {
        height: 100%;
    }
}

@media screen and (max-width: 992px) {
    .search-box {
        width: 170px
    }

    .contact-1 {
        background-size: cover;
        padding: 30px 0;
    }

    .contact-1 .block-wrap {
        margin-top: 30px;
    }

    .footer .block-list li {
        float: none;
        display: inline-flex;
    }

    /* .product-2 .item {
        margin-left: 8px;
        margin-right: 8px;
    } */

    .list-product>.item,
    .list-video>.item {
        width: 31.33%;
        margin-left: 2% !important;
        margin-right: 0 !important;
    }

    .slide-1 .item-body {
        display: none;
    }
}

@media screen and (max-width: 940px) {
    .mmenu {
        display: flex;
    }

    .header .menu {
        display: none;
    }

    .header .search {
        float: right
    }
}

@media screen and (max-width: 900px) {
    .product-2 .slick-arrow {
        left: 0;
        top: -26px;
    }

    .product-2 .slick-next {
        left: auto;
        right: 0;
    }

    #copyright {
        padding-bottom: 58px;
    }

    #fmenu {
        bottom: 0;
        background: #fff;
        width: 100%;
        left: 0;
        right: 0;
        display: flex !important;
        height: 43px;
        box-shadow: 0 6px 10px #000;
    }

    #fmenu>a:before {
        display: none;
    }

    #fmenu>a {
        display: flex !important;
        float: left;
        width: 25%;
        margin: 0;
        font-size: 14px;
        background: none;
        border-radius: 0;
        box-shadow: none;
        color: #333;
    }

    #fmenu>a:hover {
        color: #333;
        background: none;
    }
}

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

    .list-product>.item,
    .list-video>.item {
        width: 48%;
    }

    .row-flex .col-md-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .paler-blue .col-image,
    .paler-blue.paler-right .col-image {
        padding-right: 0;
        padding-left: 0;
        height: 180px;
        width: 100%;
    }

    .paler-blue .content-area {
        padding: 20px;
    }
    .catelog-22 {
        display: block;
    }
}

@media screen and (max-width: 586px) {
    #fmenu>a {
        width: 33.33%;
    }

    #fmenu>a.scroll-top {
        position: fixed;
        bottom: 43px;
        right: -14px;
        width: unset;
    }

    #fmenu>a.scroll-top>span {
        display: none;
    }

    .search {
        position: absolute;
        right: 15px;
        top: 0;
    }

    .search-box {
        width: auto;
    }

    .search-box>input {
        width: 40px;
        float: right;
    }

    .search-box>input:focus {
        width: calc(100vw - 30px);
    }

    .search-box>button {
        background: #fff;
        border-radius: 50%;
    }
    .list-product>.item,
    .list-video>.item {
        width: 46%;
        margin-left: 4% !important;
        margin-right: 0 !important;
    }
    .product-2 .item-body {
        min-height: 110px;
    }
    .product-2 .list-catelog .item-body {
        min-height: 64px;
    }
    
    .box .heading {
        font-size: 1.4em;
        line-height: 1.4em;
    }
}

@media screen and (max-width: 480px) {
    .product-2 .slick-arrow {
        display: none !important;
    }

    #copyright {
        padding-bottom: 75px;
    }

    #fmenu {
        height: 60px;
    }

    #fmenu>a {
        text-align: center;
        display: block !important;
    }

    #fmenu>a>img {
        margin-right: 0
    }

    #fmenu>a>span {
        display: block;
        width: 100%;
        font-weight: normal;
        font-size: 12px;
    }

    #fmenu>a.scroll-top {
        bottom: 60px;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .mmenu {
        margin-left: -15px;
    }

    .search-box {
        width: auto;
    }

    .header .search {
        position: absolute;
        right: 15px;
        top: 0;
        left: 125px;
    }
}

.at-svc-whatsapp,
.at-svc-pinterest_share,
.at-svc-email {
    display: none !important;
}

.slide-1 .slick-arrow.slick-next {
    left: auto;
    right: 40px;
}

.header .menu li {
    position: relative;
}

.header .menu li.lang:hover>a {
    background: none
}

.menu-drop,
.lang-drop {
    position: absolute;
    background: #fff;
    color: #333;
    width: 80px;
    right: 0;
    border-radius: 5px;
    box-shadow: 5px 2px 5px #c2c2c254;
    display: none;
}

.header .menu li:hover .menu-drop,
.header .menu li.lang:hover .lang-drop {
    display: block;
}

.lang-drop>a {
    color: #333 !important;
}

li.lang a img {
    vertical-align: middle;
    margin-top: -3px;
}

.modal-body .block-title {
    display: none;
}

.menu-drop {
    min-width: 300px;
    padding: 10px;
}

.header .menu li .menu-drop {
    list-style: none;
    padding: 0;
    border-radius: 0;
}

.header .menu li .menu-drop>li>a {
    color: #333;
    text-transform: capitalize;
    border-radius: 0;
    font-size: 14px;
}

.header .menu li .menu-drop>li>a:hover {
    color: #fff;
    background: #C4996C;
}

#nav-aside .menu-drop {
    display: block;
    position: relative;
    background: none;
    box-shadow: none;
    min-width: unset;
    width: 100%;
}

#nav-aside .menu-drop a {
    display: block;
    background: #f9f9f9;
    border-radius: 0;
    margin: 5px 0;
    padding: 5px 10px;
    text-transform: unset;
    font-weight: normal;
    font-size: 14px;
}
#nav-aside .menu-drop li ul {
    margin-left: 14px;
}

#product h1 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
}

.bfixed .mmenu,
.fixed .mmenu {
    color: #c4996c;
}

.slide-thumb .slick-slide {
    display: flex;
    position: relative;
    height: 80px;
}

.slide-thumb .slick-slide>img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
}

.slide-thumb .slick-arrow {
    background: rgba(0, 0, 0, 0.5);
    width: 22px;
    height: 100%;
    border-radius: 0;
    top: 0;
}

.product-2 .slick-list {
    margin: 0 -10px;
}
.product-2 .slick-slide {
    margin: 0 10px;
}

@media screen and (max-width: 992px) {
    #product h1 {
        margin-top: 20px;
    }
}

.tags>h5>a:before {
    content: "#";
    margin-right: 2px;
    color: #787878;
    font-weight: normal;
}

.comment {
    margin-top: 15px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 4%), 0 0 10px 0 rgb(0 0 0 / 8%);
    padding: 15px;
}

.dathang {
    margin-top: 15px;
}

.pqty input::-webkit-outer-spin-button,
.pqty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pqty {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pqty>span {
    line-height: 39px;
    margin-right: 10px;
}

.pqty>input {
    line-height: 24px;
    padding: 7px 11px;
    border-radius: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
    width: 60px;
    border-left: 0 !important;
    border-right: 0 !important;
}

.pqty>button {
    border: 1px solid #ccc;
    line-height: 36px;
    z-index: 1;
    width: 30px;
}

.pages {
    display: flex;
    justify-content: center;
}

.pages .pagination {
    display: block;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #c4996c;
    border-color: #c4996c;
}

.pagination>li>a,
.pagination>li>span {
    color: #333;
}

.footer h4 {
    position: relative;
    padding-bottom: 15px;
}

.footer h4:after {
    content: "";
    background: url(../images/line.png) no-repeat bottom center;
    position: absolute;
    bottom: 0;
    width: 96px;
    height: 10px;
    display: block;
    left: 50%;
    margin-left: -49px;
}

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

.slide-thumb {
    padding: 5px 5px 0 5px;
    width: 80px;
    overflow: auto;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.slide-thumb::-webkit-scrollbar {
    width: 0;
}
#image-load {
    cursor: zoom-in;
}
.slide-thumb>a {
    position: relative;
    padding-top: 68%;
    display: flex;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.slide-thumb>a>img {
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.product-image {
    width: calc(100% - 90px);
    display: flex;
    background: #e9e9e9;
    align-items: center;
}
.slide-thumb>a:after {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}
.slide-thumb>a.selected:after {
    content: "";
    border: 3px solid #c92039;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}
.slide-thumb>a:hover:after {
    content: "";
    border: 3px solid #fff;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}