@keyframes ping_pong {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes rotate_wrong {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-1turn);
    }
}

@keyframes rotate_correct {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}

@keyframes fadeTTB {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }
    25% {
        transform: translateY(-60px);
        opacity: .25;
    }
    50% {
        transform: translateY(-40px);
        opacity: .5;
    }
    75% {
        transform: translateY(-20px);
        opacity: .75;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeBTT {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    25% {
        transform: translateY(30px);
        opacity: .25;
    }
    50% {
        transform: translateY(20px);
        opacity: .5;
    }
    75% {
        transform: translateY(10px);
        opacity: .75;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeLTR {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }
    25% {
        transform: translateX(-60px);
        opacity: .25;
    }
    50% {
        transform: translateX(-40px);
        opacity: .5;
    }
    75% {
        transform: translateX(-20px);
        opacity: .75;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeRTL {
    0% {
        transform: translateX(80px);
        opacity: 0;
    }
    25% {
        transform: translateX(60px);
        opacity: .25;
    }
    50% {
        transform: translateX(40px);
        opacity: .5;
    }
    75% {
        transform: translateX(20px);
        opacity: .75;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleZeroToHero {
    0% {
        transform: scale(0);
    }
    25% {
        transform: scale(0.25);
    }
    50% {
        transform: scale(0.5);
    }
    75% {
        transform: scale(0.75);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fade-down {
    0% {
        bottom: 5px;
        opacity: 1;
    }
    75% {
        bottom: -15px;
        opacity: 0;
    }
}

@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1370px;
    }
}

img, iframe, video {
    max-width: 100%;
    height: auto;
}

td {
    min-width: 200px;
}

a {
    color: var(--color1);
}

a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    list-style: none;
}

input {
    background-clip: padding-box;
}

input.form-control::-webkit-outer-spin-button, input.form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"] {
    margin-top: 0;
    vertical-align: top;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    margin: 0 0.2rem 0 0;
    cursor: pointer;
    outline: none !important;
    border: none !important;
}

input[type="radio"]:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    width: 8px;
    height: 8px;
    background: var(--color1);
    border-radius: 50%;
}

input[type="radio"]:after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: var(--color2);
    border: 1px solid var(--color1);
    border-radius: 50%;
}

input[type="radio"]:checked:before {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

input[type="radio"]:checked:after {
    border: 1px solid var(--color1);
}

input[type="checkbox"] {
    margin-top: 0;
    vertical-align: top;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
    outline: none !important;
    border: none !important;
}

input[type="checkbox"]:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -moz-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    -o-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: .38em;
    margin: auto;
    z-index: 1;
    width: 10px;
    height: 5px;
    border: 2px solid var(--color1);
    border-top-style: none;
    border-right-style: none;
}

input[type="checkbox"]:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -moz-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    -o-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1);
}

input[type="checkbox"]:after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: var(--color2);
    border: 1px solid var(--color1);
    cursor: pointer;
    border-radius: 3px;
}

input[type="checkbox"]:checked:after {
    border-color: var(--color1);
}

input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

.swal-icon--success__line, button.swal-button.swal-button--confirm {
    background: var(--color_main) !important;
}

.swal-icon--success__ring {
    border: 4px solid var(--color_main) !important;
}

.overplay-all {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    background: rgba(45, 45, 50, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.2s;
    z-index: 98;
}

body, html {
    min-height: 100vh;
    font-size: 16px;
}

@media (max-width: 1200px) {
    body, html {
        font-size: 15.5px;
    }
}

@media (max-width: 1024px) {
    body, html {
        font-size: 15.0px;
    }
}

@media (max-width: 991px) {
    body, html {
        font-size: 14.5px;
    }
}

@media (max-width: 767px) {
    body, html {
        font-size: 14.0px;
    }
}

@media (max-width: 480px) {
    body, html {
        font-size: 13.5px;
    }
}

@media (max-width: 360px) {
    body, html {
        font-size: 13.0px;
    }
}

body.open-noscroll, html.open-noscroll {
    position: relative;
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

body.open-overplay .overplay-all, html.open-overplay .overplay-all {
    opacity: 1;
    visibility: visible;
}

body.open-wishlist .shop-wishlist-modal, html.open-wishlist .shop-wishlist-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.open-compare .shop-compare-modal, html.open-compare .shop-compare-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.open-cart .shop-cart-sidebar, html.open-cart .shop-cart-sidebar {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

body.open-filter-mobile .shop-filter-mobile, html.open-filter-mobile .shop-filter-mobile {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

body.open-share .main-article .main-article-share > button svg *, body.open-share .main-article .main-article-share > a svg *, html.open-share .main-article .main-article-share > button svg *, html.open-share .main-article .main-article-share > a svg * {
    fill: var(--color2);
}

body.open-share .main-article .main-article-share .main-article-share-popup, html.open-share .main-article .main-article-share .main-article-share-popup {
    opacity: 1;
    visibility: visible;
    transform: none;
}

body.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-cta, html.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-cta {
    background: var(--color_main);
}

body.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-cta svg *, html.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-cta svg * {
    fill: var(--color2);
}

body.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-popup, body.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-overplay, html.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-popup, html.open-share .main-product .main-product-wrap .main-product-right .main-product-share .main-product-share-overplay {
    opacity: 1;
    visibility: visible;
    transform: none;
}

body.open-article-menu .main-article .main-article-share > button svg *, body.open-article-menu .main-article .main-article-share > a svg *, html.open-article-menu .main-article .main-article-share > button svg *, html.open-article-menu .main-article .main-article-share > a svg * {
    fill: var(--color2);
}

body.open-article-menu .main-article > .container .main-article-menu.sidebar, html.open-article-menu .main-article > .container .main-article-menu.sidebar {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

body.open-menu-mobile .shop-menu-mobile, html.open-menu-mobile .shop-menu-mobile {
    transform: none;
    visibility: visible;
    opacity: 1;
}

body.is-safari .product-item .product-item-wrap .product-item-image a span, html.is-safari .product-item .product-item-wrap .product-item-image a span {
    transition: none !important;
    transform: none !important;
}

body.is-safari .superContent-product .superContent-product-left a img, html.is-safari .superContent-product .superContent-product-left a img {
    transition: none !important;
    transform: none !important;
}

body::-webkit-scrollbar, html::-webkit-scrollbar {
    width: 0;
}

body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
    background: #ccc;
}

body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
    background: var(--color_main);
}

.fancybox__content {
    padding: 20px !important;
}

@media (max-width: 1200px) {
    .fancybox__content {
        padding: 18px !important;
    }
}

@media (max-width: 1024px) {
    .fancybox__content {
        padding: 16px !important;
    }
}

@media (max-width: 991px) {
    .fancybox__content {
        padding: 14px !important;
    }
}

@media (max-width: 767px) {
    .fancybox__content {
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .fancybox__content {
        padding: 10px !important;
    }
}

@media (max-width: 360px) {
    .fancybox__content {
        padding: 5px !important;
    }
}

.has-spin {
    position: relative;
}

@keyframes home_tab-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.has-spin:before {
    content: "";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxnPjxnPjxwYXRoIGQ9Im0yNTYgOTIuNzE2Yy04LjUzNCAwLTE1LjQ1My02LjkxOC0xNS40NTMtMTUuNDUzdi02MS44MWMwLTguNTM1IDYuOTE5LTE1LjQ1MyAxNS40NTMtMTUuNDUzIDguNTM0IDAgMTUuNDUzIDYuOTE4IDE1LjQ1MyAxNS40NTN2NjEuODExYzAgOC41MzQtNi45MTkgMTUuNDUyLTE1LjQ1MyAxNS40NTJ6IiBmaWxsPSIjNzk5ZWE4IiBkYXRhLW9yaWdpbmFsPSIjNzk5ZWE4Ij48L3BhdGg+PHBhdGggZD0ibTI1NiA1MTJjLTguNTM0IDAtMTUuNDUzLTYuOTE4LTE1LjQ1My0xNS40NTN2LTYxLjgxMWMwLTguNTM0IDYuOTE4LTE1LjQ1MyAxNS40NTMtMTUuNDUzIDguNTM0IDAgMTUuNDUzIDYuOTE4IDE1LjQ1MyAxNS40NTN2NjEuODExYzAgOC41MzUtNi45MTkgMTUuNDUzLTE1LjQ1MyAxNS40NTN6IiBmaWxsPSIjY2ZkYmU0IiBkYXRhLW9yaWdpbmFsPSIjY2ZkYmU0Ij48L3BhdGg+PC9nPjxnPjxwYXRoIGQ9Im0xNzQuMzU4IDExNC41OTJjLTcuMzkxIDQuMjY3LTE2Ljg0MiAxLjczNS0yMS4xMDktNS42NTZsLTMwLjkwNS01My41M2MtNC4yNjctNy4zOTEtMS43MzUtMTYuODQyIDUuNjU2LTIxLjEwOSA3LjM5MS00LjI2NyAxNi44NDItMS43MzUgMjEuMTA5IDUuNjU2bDMwLjkwNSA1My41M2M0LjI2NyA3LjM5MSAxLjczNSAxNi44NDItNS42NTYgMjEuMTA5eiIgZmlsbD0iIzhlYjFiZiIgZGF0YS1vcmlnaW5hbD0iIzhlYjFiZiI+PC9wYXRoPjxwYXRoIGQ9Im0zODQgNDc3LjcwMmMtNy4zOTEgNC4yNjctMTYuODQyIDEuNzM1LTIxLjEwOS01LjY1NmwtMzAuOTA1LTUzLjUzYy00LjI2Ny03LjM5MS0xLjczNS0xNi44NDIgNS42NTYtMjEuMTA5IDcuMzkxLTQuMjY3IDE2Ljg0Mi0xLjczNSAyMS4xMDkgNS42NTZsMzAuOTA1IDUzLjUzYzQuMjY3IDcuMzkyIDEuNzM1IDE2Ljg0Mi01LjY1NiAyMS4xMDl6IiBmaWxsPSIjZTBlYmYwIiBkYXRhLW9yaWdpbmFsPSIjZTBlYmYwIj48L3BhdGg+PC9nPjxnPjxwYXRoIGQ9Im0xMTQuNTkyIDE3NC4zNThjLTQuMjY3IDcuMzkxLTEzLjcxOCA5LjkyMy0yMS4xMDkgNS42NTZsLTUzLjUzLTMwLjkwNWMtNy4zOTEtNC4yNjctOS45MjMtMTMuNzE4LTUuNjU2LTIxLjEwOSA0LjI2Ny03LjM5MSAxMy43MTgtOS45MjMgMjEuMTA5LTUuNjU2bDUzLjUzIDMwLjkwNWM3LjM5MSA0LjI2NyA5LjkyMyAxMy43MTggNS42NTYgMjEuMTA5eiIgZmlsbD0iIzhlYjFiZiIgZGF0YS1vcmlnaW5hbD0iIzhlYjFiZiI+PC9wYXRoPjxwYXRoIGQ9Im00NzcuNzAzIDM4NGMtNC4yNjcgNy4zOTEtMTMuNzE4IDkuOTIzLTIxLjEwOSA1LjY1NmwtNTMuNTMtMzAuOTA1Yy03LjM5MS00LjI2Ny05LjkyMy0xMy43MTgtNS42NTYtMjEuMTA5IDQuMjY3LTcuMzkxIDEzLjcxOC05LjkyMyAyMS4xMDktNS42NTZsNTMuNTMgMzAuOTA1YzcuMzkgNC4yNjcgOS45MjMgMTMuNzE4IDUuNjU2IDIxLjEwOXoiIGZpbGw9IiNlMGViZjAiIGRhdGEtb3JpZ2luYWw9IiNlMGViZjAiPjwvcGF0aD48L2c+PGc+PHBhdGggZD0ibTkyLjcxNiAyNTZjMCA4LjUzNC02LjkxOCAxNS40NTMtMTUuNDUzIDE1LjQ1M2gtNjEuODFjLTguNTM1IDAtMTUuNDUzLTYuOTE5LTE1LjQ1My0xNS40NTMgMC04LjUzNCA2LjkxOC0xNS40NTMgMTUuNDUzLTE1LjQ1M2g2MS44MTFjOC41MzQgMCAxNS40NTIgNi45MTkgMTUuNDUyIDE1LjQ1M3oiIGZpbGw9IiM4ZWIxYmYiIGRhdGEtb3JpZ2luYWw9IiM4ZWIxYmYiPjwvcGF0aD48cGF0aCBkPSJtNTEyIDI1NmMwIDguNTM0LTYuOTE4IDE1LjQ1My0xNS40NTMgMTUuNDUzaC02MS44MTFjLTguNTM0IDAtMTUuNDUzLTYuOTE4LTE1LjQ1My0xNS40NTMgMC04LjUzNCA2LjkxOC0xNS40NTMgMTUuNDUzLTE1LjQ1M2g2MS44MTFjOC41MzUgMCAxNS40NTMgNi45MTkgMTUuNDUzIDE1LjQ1M3oiIGZpbGw9IiNlMGViZjAiIGRhdGEtb3JpZ2luYWw9IiNlMGViZjAiPjwvcGF0aD48L2c+PGc+PHBhdGggZD0ibTExNC41OTIgMzM3LjY0MmM0LjI2NyA3LjM5MSAxLjczNSAxNi44NDItNS42NTYgMjEuMTA5bC01My41MyAzMC45MDVjLTcuMzkxIDQuMjY3LTE2Ljg0MiAxLjczNS0yMS4xMDktNS42NTYtNC4yNjctNy4zOTEtMS43MzUtMTYuODQyIDUuNjU2LTIxLjEwOWw1My41My0zMC45MDVjNy4zOTEtNC4yNjcgMTYuODQyLTEuNzM1IDIxLjEwOSA1LjY1NnoiIGZpbGw9IiNjZmRiZTQiIGRhdGEtb3JpZ2luYWw9IiNjZmRiZTQiPjwvcGF0aD48L2c+PGc+PHBhdGggZD0ibTE3NC4zNTggMzk3LjQwOGM3LjM5MSA0LjI2NyA5LjkyMyAxMy43MTggNS42NTYgMjEuMTA5bC0zMC45MDUgNTMuNTNjLTQuMjY3IDcuMzkxLTEzLjcxOCA5LjkyMy0yMS4xMDkgNS42NTYtNy4zOTEtNC4yNjctOS45MjMtMTMuNzE4LTUuNjU2LTIxLjEwOWwzMC45MDUtNTMuNTNjNC4yNjctNy4zOTEgMTMuNzE4LTkuOTIzIDIxLjEwOS01LjY1NnoiIGZpbGw9IiNjZmRiZTQiIGRhdGEtb3JpZ2luYWw9IiNjZmRiZTQiPjwvcGF0aD48cGF0aCBkPSJtMzg0IDM0LjI5N2M3LjM5MSA0LjI2NyA5LjkyMyAxMy43MTggNS42NTYgMjEuMTA5bC0zMC45MDUgNTMuNTNjLTQuMjY3IDcuMzkxLTEzLjcxOCA5LjkyMy0yMS4xMDkgNS42NTYtNy4zOTEtNC4yNjctOS45MjMtMTMuNzE4LTUuNjU2LTIxLjEwOWwzMC45MDUtNTMuNTNjNC4yNjctNy4zOSAxMy43MTgtOS45MjMgMjEuMTA5LTUuNjU2eiIgZmlsbD0iIzY1OGI5NiIgZGF0YS1vcmlnaW5hbD0iIzY1OGI5NiI+PC9wYXRoPjwvZz48L2c+PC9nPjwvc3ZnPg==);
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 3rem;
    animation: home_tab-spin 5s linear infinite;
}

.slick-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slick-slider .slick-track {
    margin-left: initial;
}

.slick-slider .slick-track div, .slick-slider .slick-track a, .slick-slider .slick-track a:focus, .slick-slider .slick-track div:focus, .slick-slider .slick-track article:focus, .slick-slider .slick-track article {
    outline: 0 !important;
}

.slick-slider .slick-track div img, .slick-slider .slick-track a img, .slick-slider .slick-track a:focus img, .slick-slider .slick-track div:focus img, .slick-slider .slick-track article:focus img, .slick-slider .slick-track article img {
    padding: 0;
}

.slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    background-color: transparent;
    transform: translateY(-50%);
    border: none;
    outline: 0;
    font-size: 20px;
    z-index: 1;
    padding: 0;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}

@media (max-width: 480px) {
    .slick-slider .slick-arrow {
        display: none !important;
    }
}

.slick-slider .slick-arrow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #CCC;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.slick-slider .slick-arrow:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #FFF;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.slick-slider .slick-arrow.slick-prev {
    padding-right: 10px;
    padding-left: 5px;
    left: 10px;
}

.slick-slider .slick-arrow.slick-prev:before {
    transform: rotateY(180deg);
}

.slick-slider .slick-arrow.slick-prev:after {
    transform: rotateY(180deg);
}

@media (max-width: 767px) {
    .slick-slider .slick-arrow.slick-prev {
        left: 5px;
    }
}

.slick-slider .slick-arrow.slick-next {
    right: 10px;
    padding-right: 5px;
    padding-left: 10px;
}

@media (max-width: 767px) {
    .slick-slider .slick-arrow.slick-next {
        right: 5px;
    }
}

.slick-slider .slick-dots {
    position: absolute;
    bottom: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 9;
}

@media (max-width: 1024px) {
    .slick-slider .slick-dots {
        bottom: -10px;
    }
}

.slick-slider .slick-dots li {
    margin: 0 2.5px;
}

.slick-slider .slick-dots li.slick-active button {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.6);
}

.slick-slider .slick-dots li button {
    font-size: 0;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: 20px;
    height: 5px;
    transform: scale(0.75);
    border-radius: 0;
}

.grecaptcha-badge {
    display: none;
}

.section-title-all {
    margin-bottom: 15px;
}

.section-title-all > span {
    color: var(--color_main);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    font-size: 1.25rem;
    position: relative;
    padding-left: 27.5px;
    line-height: 1;
}

.section-title-all > span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    z-index: 9;
    height: 15px;
    width: 20px;
    background: url(//theme.hstatic.net/200000584705/1000969925/14/image_title_all.png?v=2507);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.section-title-all > h1, .section-title-all h2, .section-title-all h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 10px;
}

.section-title-all > p {
    color: #AAA;
    margin-top: 10px;
}

.section-title-all > a {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    display: inline-block;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #CCC;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    transition: color .4s .4s ease-in, border .4s .4s ease-in;
}

@media (max-width: 360px) {
    .section-title-all > a {
        width: 280px;
    }
}

.section-title-all > a:hover {
    color: var(--color_main);
    border-color: var(--color_main);
}

.section-title-all > a:hover:after {
    transform: scale(1);
}

.section-title-all > a:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color_main);
    left: 0;
    bottom: 0;
    transition: all 0.4s ease-in;
    transform: scale(0);
}

.shop-pagination *:last-child {
    margin: 0;
}

.shop-pagination > a, .shop-pagination > span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
    color: var(--color);
    border-radius: var(--border_radius);
    border: 1px solid var(--color_bg_item);
    background: var(--color_bg_item);
    font-size: .9rem;
}

.shop-pagination > a svg, .shop-pagination > span svg {
    width: 10px;
    height: 10px;
    color: var(--color1);
}

.shop-pagination .current {
    color: var(--color2);
    background: var(--color1);
    border: 1px solid var(--color1);
}

.header {
    position: sticky;
    overflow-anchor: none;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 97;
    transition: transform 0.4s;
    transform: translateY(0);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .header {
        z-index: 100;
    }
}

.header.active {
    transform: translateY(-100%);
}

.header.open-menuMob {
    z-index: 100;
}

.header .header-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px;
}

.header .header-top .header-left {
    width: 20%;
    padding-right: 20px;
}

@media (max-width: 1200px) {
    .header .header-top .header-left {
        width: 40%;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .header .header-top .header-left {
        width: 45%;
    }
}

.header .header-top .header-left a {
    display: block;
}

.header .header-top .header-left a img {
    max-height: 50px;
}

.header .header-top .header-center {
    width: 50%;
}

@media (max-width: 1200px) {
    .header .header-top .header-center {
        order: 3;
    }
}

.header .header-top .header-center form {
    position: relative;
    width: 90%;
    border-bottom: 1px solid #cccccc;
}

@media (max-width: 1200px) {
    .header .header-top .header-center form {
        position: absolute;
        right: 0;
        top: 100%;
        background: #FFF;
        width: 100%;
        transition: all .5s;
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    }

    .header .header-top .header-center form.show {
        opacity: 1;
        visibility: visible;
        transform: none;
        transform-origin: top;
    }

    .header .header-top .header-center form:not(.show) {
        opacity: 0;
        visibility: hidden;
        transform-origin: top;
        transition: 0.7s ease-in-out;
        transform: scaleY(0);
    }
}

.header .header-top .header-center form svg {
    width: 20px;
    height: 20px;
}

.header .header-top .header-center form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    border-bottom: 1px solid #F9F9F9;
    padding: 2.5px 25px 2.5px 0;
    width: 100%;
    color: var(--color1);
}

.header .header-top .header-center form input::placeholder {
    color: var(--color1);
}

@media (max-width: 1200px) {
    .header .header-top .header-center form input {
        padding: 5px 25px 5px 15px;
    }
}

.header .header-top .header-center form button[type="submit"] {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .header .header-top .header-center form button[type="submit"] {
        background: var(--color_main);
        padding: 5px 15px;
        top: 0;
        bottom: 0;
    }

    .header .header-top .header-center form button[type="submit"] svg * {
        fill: var(--color2);
    }
}

.header .header-top .header-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    gap: 25px;
}

@media (max-width: 1200px) {
    .header .header-top .header-right {
        width: 60%;
        justify-content: flex-end;
        gap: 22.5px;
    }
}

@media (max-width: 480px) {
    .header .header-top .header-right {
        width: 55%;
        gap: 20px;
    }
}

.header .header-top .header-right .header-right-phone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .header .header-top .header-right .header-right-phone {
    }
}

.header .header-top .header-right .header-right-phone .header-right-phone-detail {
    margin-left: 10px;
}

.header .header-top .header-right .header-right-phone .header-right-phone-detail span {
    display: block;
}

.header .header-top .header-right .header-right-phone .header-right-phone-detail a {
    display: block;
    color: var(--color_main);
    font-weight: bold;
}

.header .header-top .header-right .shop-tool {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
}

.header .header-top .header-right .shop-tool svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .header .header-top .header-right .shop-tool svg {
        width: 17.5px;
        height: 17.5px;
    }
}

.header .header-top .header-right .shop-tool.has-count {
    position: relative;
}

.header .header-top .header-right .shop-tool.has-count span {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    background: var(--color_main);
    color: var(--color2);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 999px;
    font-size: 11px;
}

.header .header-top .header-right .shop-tool[data-type="shop-customer-header"] {
    display: block;
}

.header .header-top .header-right .shop-tool[data-type="shop-menu-mobile-header"] {
    display: none;
}

@media (max-width: 1200px) {
    .header .header-top .header-right .shop-tool[data-type="shop-menu-mobile-header"] {
        display: block;
    }
}

.header .header-menu {
    background: var(--color_main2);
    width: 100%;
}

.header .header-menu .header-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.header .header-menu .header-menu-wrap .header-menu-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 270px;
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-left {
        width: 250px;
    }
}

@media (max-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left {
        width: 100%;
    }
}

.header .header-menu .header-menu-wrap .header-menu-left svg {
    width: 20px;
    height: 20px;
    fill: #FFF;
}

.header .header-menu .header-menu-wrap .header-menu-left > span {
    display: block;
    line-height: 1;
    margin-left: 15px;
    color: #FFF;
    tex-transform: uppercase;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left:hover .header-menu-sidebar {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar {
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: all .5s;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    border: 1px solid #CCC;
    border-top: 3px solid var(--color_main);
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar.active {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 60vh;
    overflow: hidden auto;
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar:before {
    content: "";
    position: absolute;
    top: -12.5px;
    left: 35px;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent var(--color_main) transparent;
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul {
    padding: 10px;
}

@media (min-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li.hasChild:hover .menu1 {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li.activeChild > a span {
    transform: rotate(90deg);
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li.activeChild > .menu1 {
    display: flex;
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

@media (max-width: 767px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > a:hover {
        color: #000;
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > a span {
    margin-left: 10px;
    font-size: 20px;
    transition: all .4s;
}

@media (max-width: 767px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > a span {
        height: 15px;
        display: flex;
        align-items: center;
        vertical-align: middle;
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 {
    border-top: 3px solid var(--color_main);
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 {
        display: none;
        margin-bottom: 10px;
        border-bottom: 3px solid var(--color_main);
        border-width: 2px;
    }
}

@media (min-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 {
        opacity: 0;
        visibility: hidden;
        transform-origin: top;
        transform: scaleY(0);
        transition: all .5s;
        position: absolute;
        top: -3px;
        bottom: 0;
        overflow-y: auto;
        left: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(6px);
        width: calc(1370px - 300px);
        padding: 10px;
    }

    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1::-webkit-scrollbar {
        width: 3px;
    }

    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1::-webkit-scrollbar-thumb {
        background: var(--color_main);
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li {
    width: calc(100% / 4);
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li {
        width: calc(100% / 2);
    }
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li > a {
    display: block;
    font-weight: bold;
    color: var(--color_main);
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li > a span {
    display: none;
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li .menu2 > li > a {
    padding: 2.5px 0;
    display: block;
    color: #AAA;
}

.header .header-menu .header-menu-wrap .header-menu-left .header-menu-sidebar > ul > li > .menu1 > li .menu2 > li > a:hover {
    color: var(--color_main);
}

.header .header-menu .header-menu-wrap .header-menu-center {
    width: 70%;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-center {
        width: calc(100% - 250px - 50px);
    }
}

@media (max-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-center {
        display: none;
    }
}

.header .header-menu .header-menu-wrap .header-menu-center > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-center > ul {
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .header .header-menu .header-menu-wrap .header-menu-center > ul {
        gap: 15px;
    }
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li {
    position: relative;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--color2);
    padding: 10px 0;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li > a span {
    margin-left: 10px;
    transform: rotate(90deg);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s ease-in;
    position: absolute;
    left: 0;
    background: #FFF;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    border-top: 3px solid var(--color_main);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1:before {
    content: "";
    position: absolute;
    top: -13px;
    left: 17.5px;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent var(--color_main) transparent;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li {
    position: relative;
    display: block;
    width: 100%;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li:hover > a {
    background: var(--color_main);
    color: var(--color2);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    transition: all .4s;
    width: 100%;
    color: var(--color1);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li .menu2 {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all .35s ease-in;
    position: absolute;
    top: -3px;
    left: calc(100% + 1px);
    background: #FFF;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    border-top: 3px solid var(--color_main);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li .menu2 > li {
    position: relative;
    display: block;
    width: 100%;
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li .menu2 > li:hover > a {
    background: var(--color_main);
    color: var(--color2);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li .menu2 > li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
    transition: all .4s;
    color: var(--color1);
}

.header .header-menu .header-menu-wrap .header-menu-center > ul > li .menu1 > li .menu2 > li > a span {
    margin-left: 10px;
}

.header .header-menu .header-menu-wrap .header-menu-right {
    width: calc(30% - 270px);
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-right {
        width: 50px;
    }
}

@media (max-width: 1200px) {
    .header .header-menu .header-menu-wrap .header-menu-right {
        display: none;
    }
}

.header .header-menu .header-menu-wrap .header-menu-right a {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: transparent;
    border: 1px solid #FF0000;
    color: #FF0000;
    border-radius: var(--border_radius);
    text-align: left;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-right a {
        font-size: 0;
        text-align: center;
        justify-content: center;
        border: none;
    }
}

@keyframes live_stream {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .25;
    }
    100% {
        opacity: 1;
    }
}

.header .header-menu .header-menu-wrap .header-menu-right a:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #FF0000;
    margin: 0 10px;
    border-radius: 999px;
    animation: live_stream 2s linear 0s infinite;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-right a:before {
        display: none;
    }
}

.header .header-menu .header-menu-wrap .header-menu-right a svg {
    display: none;
    width: 40px;
    height: 40px;
    animation: live_stream 2s linear 0s infinite;
}

@media (max-width: 1350px) {
    .header .header-menu .header-menu-wrap .header-menu-right a svg {
        display: block;
    }
}

.home-newletter {
    background: #F5F6F8;
    position: relative;
    z-index: 2;
    padding: 50px 0 100px;
    background-image: url(https://file.hstatic.net/200000584705/file/news-latter-background_70d641e97__2__e07eaa18badc446b9888f000922314d0.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    .home-newletter {
        padding: 45px 0 85px;
    }
}

@media (max-width: 1024px) {
    .home-newletter {
        padding: 40px 0 70px;
    }
}

@media (max-width: 991px) {
    .home-newletter {
        padding: 35px 0 55px;
    }
}

@media (max-width: 767px) {
    .home-newletter {
        padding: 30px 0 40px;
    }
}

@media (max-width: 480px) {
    .home-newletter {
        padding: 25px 0 25px;
    }
}

@media (max-width: 360px) {
    .home-newletter {
        padding: 20px 0 10px;
    }
}

.home-newletter .home-newletter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left {
    width: 50%;
}

@media (max-width: 767px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-left {
        width: 100%;
        margin-bottom: 25px;
    }
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left h3 {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-left h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-left h3 {
        font-size: 2.0rem;
    }
}

@media (max-width: 767px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-left h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-left h3 {
        font-size: 1.0rem;
    }
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left p:first-of-type {
    margin-bottom: 20px;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left p:last-of-type {
    margin-top: 10px;
    color: #b3b3b3;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    width: 70%;
    padding: 0 10px;
    border: 2px solid #ebebeb;
    border-radius: 5px;
    background: #fff;
    height: 45px;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left form button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    padding: 0 10px;
    width: calc(30% - 10px);
    border: 2px solid var(--color_main);
    background: var(--color_main);
    border-radius: var(--border_radius);
    height: 45px;
    color: var(--color2);
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all .5s;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-left form button:hover {
    color: var(--color_main);
    background: transparent;
}

.home-newletter .home-newletter-wrap .home-newletter-wrap-right {
    width: 50%;
}

@media (max-width: 767px) {
    .home-newletter .home-newletter-wrap .home-newletter-wrap-right {
        width: 100%;
    }
}

footer.footer {
    margin-top: 25px;
    background-image: url(https://file.hstatic.net/200000584705/file/map-3f6e1ddb342185a26c476daa59c3_2520_1__6b90526abdfd4360aee4782f6da8dc45.png);
    background-size: cover;
}

footer.footer p {
    margin: 0;
}

footer.footer h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding-bottom: 10px;
}

footer.footer h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    border-bottom: 1px solid;
}

@media (max-width: 768px) {
    footer.footer h4 {
        margin-bottom: 10px;
    }
}

footer.footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -10px;
    margin-right: -10px;
    padding: 15px 0;
}

footer.footer .footer-top .footer-top-item {
    width: 20%;
    padding: 0 10px;
}

footer.footer .footer-top .footer-top-item:last-child {
    width: 40%;
}

@media (max-width: 991px) {
    footer.footer .footer-top .footer-top-item {
        width: 50% !important;
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    footer.footer .footer-top .footer-top-item {
        width: 100% !important;
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    footer.footer .footer-top .footer-top-item {
        padding: 5px 10px;
    }
}

@media (max-width: 767px) {
    footer.footer .footer-top .footer-top-item h4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    footer.footer .footer-top .footer-top-item h4:after {
        content: '+';
    }
}

footer.footer .footer-top .footer-top-item h4.active:after {
    content: '-';
}

@media (max-width: 767px) {
    footer.footer .footer-top .footer-top-item .footer-top-item-content {
        display: none;
    }
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li:hover a {
    color: var(--color);
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li a {
    padding: 3px 0;
    display: block;
    transition: all .5s;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul li a span {
    font-size: 12px;
    color: #aaa;
    margin-left: 5px;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-social li {
    margin: 10px 0px;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-social li:hover i {
    color: var(--color);
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-social li i {
    font-size: 16px;
    color: #aaa;
    margin-right: 15px;
    transition: all .5s;
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-store {
    position: relative;
    /*.list-store-item{
						a{
						font-weight: 400;
						font-size: 1rem;
						padding: 5px 0;
						margin: 0;
						@include dFlex(nowrap, flex-start, flex-end);

					}
					}*/
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-store .list-store-more {
    position: absolute;
    z-index: 10;
    bottom: -40px;
    left: 0;
    right: 0;
    display: block;
    padding: 80px 0 10px;
    text-align: left;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, #fff), to(transparent));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #fff 90%, transparent);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 90%, transparent);
}

footer.footer .footer-top .footer-top-item .footer-top-item-content ul.list-store .list-store-more a {
    display: inline-block;
    background-color: #fff;
    position: relative;
    border-radius: 4px;
    font-size: 12px;
    line-height: 15px;
    color: color(--color_main);
    cursor: pointer;
    position: relative;
}

footer.footer .footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 0;
}

@media (max-width: 767px) {
    footer.footer .footer-center {
        margin-left: -5px;
        margin-right: -5px;
    }
}

@media (min-width: 767px) {
    footer.footer .footer-center {
        margin-left: -10px;
        margin-right: -10px;
    }
}

footer.footer .footer-center .footer-center-item {
    width: calc(100% / 3);
}

@media (max-width: 767px) {
    footer.footer .footer-center .footer-center-item {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 767px) {
    footer.footer .footer-center .footer-center-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    footer.footer .footer-center .footer-center-item {
        width: 100%;
        padding: 15px 10px;
    }
}

footer.footer .footer-center .footer-center-item img {
    margin-top: 10px;
    max-height: 250px;
}

footer.footer .footer-bot {
    background-color: #FFF;
    border-top: 1px solid #E8E8F2;
    padding-top: 25px;
    padding-bottom: 25px;
}

footer.footer .footer-bot * {
    color: var(--color);
}

footer.footer .footer-bot p {
    font-size: 13px;
    color: #6c6c6c;
}

footer.footer .footer-bot img {
    max-width: 150px;
}

@media (max-width: 767px) {
    footer.footer .footer-bot img {
        margin-bottom: 10px;
    }
}

footer.footer .footer-bot .footer-bot-item {
    width: 50%;
}

@media (max-width: 767px) {
    footer.footer .footer-bot .footer-bot-item {
        width: 100%;
        padding: 15px 10px;
    }
}

footer.footer .footer-bot .footer-bot-item img {
    margin-top: 10px;
}

.breadcrumb-wrap ol {
    padding: 0;
    background: transparent;
    margin: 0;
}

.breadcrumb-wrap ol .breadcrumb-item.active {
    color: var(--color2);
}

.shop-menu-hot {
    font-weight: bold;
    color: #F30;
    justify-content: flex-start !important;
    /*&:before{
	content: "";
	background-image: url(https://file.hstatic.net/200000588277/file/icon-hot_c5f23f4ccabe4e4a8129048e7701b568.gif);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	display: block;
	margin-right: 10px;
}*/
}

.shop-menu-hot span {
    margin-left: auto;
}

.article-item {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .article-item {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 767px) {
    .article-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.article-item .article-item-wrap {
    padding: 30px;
    background: var(--color_bg_item);
    border-radius: var(--border_radius);
    transition: all .5s;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .article-item .article-item-wrap {
        padding: 28px;
    }
}

@media (max-width: 1024px) {
    .article-item .article-item-wrap {
        padding: 26px;
    }
}

@media (max-width: 991px) {
    .article-item .article-item-wrap {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .article-item .article-item-wrap {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .article-item .article-item-wrap {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .article-item .article-item-wrap {
        padding: 15px;
    }
}

.article-item .article-item-wrap:hover {
    box-shadow: 0 0 5px 0.5px rgba(0, 0, 0, 0.1);
}

.article-item .article-item-wrap:hover .article-item-image {
    display: block;
}

.article-item .article-item-wrap:hover .article-item-image a img {
    transform: scale(1);
}

.article-item .article-item-wrap:hover .article-item-image a svg {
    transform: scale(1) translate(-50%, -50%);
}

.article-item .article-item-wrap:hover .article-item-detail .article-item-detail-name a {
    color: var(--color_main);
}

.article-item .article-item-wrap .article-item-image a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: auto;
}

.article-item .article-item-wrap .article-item-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.75s;
    transform: scale(1.1);
}

.article-item .article-item-wrap .article-item-image a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%);
    width: 45px;
    height: 45px;
    transition: all 0.75s;
}

.article-item .article-item-wrap .article-item-detail {
    margin-top: 10px;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-info {
    color: var(--color_main);
    display: block;
    margin: 10px 0;
    transition: all 0.75s 0.25s;
    font-size: 1rem;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-name {
    margin-bottom: 10px;
    font-size: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-name a {
    transition: all 0.75s 0.25s;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-des {
    margin-bottom: 10px;
    margin-top: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-cta {
    text-align: right;
}

.article-item .article-item-wrap .article-item-detail .article-item-detail-cta a {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    width: 150px;
    font-size: 14px;
    text-transform: capitalize;
}

.article-item.layout-small .article-item-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.article-item.layout-small .article-item-wrap .article-item-image {
    width: 30%;
}

.article-item.layout-small .article-item-wrap .article-item-image a {
    height: auto;
}

.article-item.layout-small .article-item-wrap .article-item-image a svg {
    width: 30px;
    height: 30px;
}

.article-item.layout-small .article-item-wrap .article-item-detail {
    width: 70%;
    padding-left: 25px;
    margin-top: 0;
}

@media (max-width: 1200px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 24px;
    }
}

@media (max-width: 1024px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 23px;
    }
}

@media (max-width: 991px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 22px;
    }
}

@media (max-width: 767px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 21px;
    }
}

@media (max-width: 480px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 20px;
    }
}

@media (max-width: 360px) {
    .article-item.layout-small .article-item-wrap .article-item-detail {
        padding-left: 15px;
    }
}

.article-item.layout-small .article-item-wrap .article-item-detail .article-item-detail-info {
    font-size: .9rem;
}

.article-item.layout-small .article-item-wrap .article-item-detail .article-item-detail-name {
    font-size: 1.25rem;
    margin-bottom: 0px;
}

.article-item.layout-small .article-item-wrap .article-item-detail .article-item-detail-des {
    display: none;
}

.article-item.layout-small .article-item-wrap .article-item-detail .article-item-detail-cta {
    display: none;
}

@keyframes scroll_product_item_start {
    to {
        -webkit-transform: -webkit-translateY(calc(-100% + 350px));
        -moz-transform: -moz-translateY(calc(-100% + 350px));
        -ms-transform: -ms-translateY(calc(-100% + 350px));
        -o-transform: -o-translateY(calc(-100% + 350px));
        transform: translateY(calc(-100% + 350px));
    }
}

@keyframes scroll_product_item_end {
    to {
        transform: none;
    }
}

.product-item {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .product-item {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 767px) {
    .product-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.product-item .product-item-wrap {
    border: 1px solid var(--color_bg_item);
    background: var(--color_bg_item);
    border-radius: var(--border_radius);
    transition: all .5s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .product-item .product-item-wrap:hover {
        box-shadow: 0 0 5px 0.5px rgba(0, 0, 0, 0.1);
    }

    .product-item .product-item-wrap:hover .product-item-image.hasThumbs .product-item-link img:first-child {
        opacity: 0;
        visibility: hidden;
    }

    .product-item .product-item-wrap:hover .product-item-image.hasThumbs .product-item-link img:last-child {
        opacity: 1;
        visibility: visible;
    }

    .product-item .product-item-wrap:hover .product-item-action button {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .product-item .product-item-wrap:hover .product-item-detail .product-item-detail-price span:after {
        opacity: 1;
    }
}

.product-item .product-item-wrap .product-item-image {
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .product-item .product-item-wrap .product-item-image.hasThumbs {
        padding-bottom: 50px;
        background: #FFF;
    }
}

.product-item .product-item-wrap .product-item-image.hasThumbs .product-item-link {
    display: block;
    overflow: hidden;
    border-radius: var(--border_radius);
    position: relative;
    padding-bottom: 100%;
}

.product-item .product-item-wrap .product-item-image.hasThumbs .product-item-link img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.product-item .product-item-wrap .product-item-image.hasThumbs .product-item-link img:first-child {
    opacity: 1;
    visibility: visible;
}

.product-item .product-item-wrap .product-item-image.hasThumbs .product-item-link img:last-child {
    opacity: 0;
    visibility: hidden;
}

.product-item .product-item-wrap .product-item-image .product-item-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    transition: all .35s ease-in;
}

@media (max-width: 1024px) {
    .product-item .product-item-wrap .product-item-image .product-item-thumbs {
        display: none;
    }
}

.product-item .product-item-wrap .product-item-image .product-item-thumbs li {
    border: 1px solid #DbDbDb;
}

.product-item .product-item-wrap .product-item-image .product-item-thumbs li a {
    display: block;
}

.product-item .product-item-wrap .product-item-image .product-item-thumbs li a img {
    max-height: 40px;
}

.product-item .product-item-wrap .product-item-image .product-item-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: #F30;
    padding: 2.5px 10px;
    font-size: .85rem;
    color: var(--color2);
}

.product-item .product-item-wrap .product-item-action button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    transition: all .5s ease-in;
    background: var(--color_bg_item);
    border-radius: 4px;
    width: 32.5px;
    height: 32.5px;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-action button {
        width: 22.5px;
        height: 22.5px;
        line-height: 1;
    }
}

.product-item .product-item-wrap .product-item-action button.inStorage, .product-item .product-item-wrap .product-item-action button:hover {
    background-color: var(--color_main);
}

.product-item .product-item-wrap .product-item-action button.inStorage svg *, .product-item .product-item-wrap .product-item-action button:hover svg * {
    fill: var(--color2);
}

.product-item .product-item-wrap .product-item-action button svg {
    width: 17.5px;
    height: 17.5px;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-action button svg {
        width: 15px;
        height: 15px;
    }
}

.product-item .product-item-wrap .product-item-action button.shop-compare-button-add {
    top: 55px;
    opacity: 0;
    visibility: hidden;
}

.product-item .product-item-wrap .product-item-action button.shop-quickview-button {
    top: 100px;
    opacity: 0;
    visibility: hidden;
}

.product-item .product-item-wrap .product-item-action button.shop-addLoop-button {
    top: 55px;
    opacity: 0;
    visibility: hidden;
}

.product-item .product-item-wrap .product-item-detail {
    padding: 15px;
}

@media (max-width: 767px) {
    .product-item .product-item-wrap .product-item-detail {
        padding: 7.5px;
    }
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail {
        padding: 5px;
    }
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-vendor {
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-vendor a {
    color: var(--color_main2);
}

@media (max-width: 360px) {
    .product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-vendor {
        font-size: .7rem;
    }
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-tag {
    font-size: .75rem;
    color: #AAA;
    margin-left: 3px;
    padding: 0px 5px;
    border-radius: 3px;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-tag:nth-of-type(1) {
    background: #ebf0ff;
    color: #1560f5;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-tag:nth-of-type(2) {
    background: #ffebeb;
    color: #f51517;
}

@media (max-width: 360px) {
    .product-item .product-item-wrap .product-item-detail .product-item-detail-info .product-item-detail-info-tag {
        font-size: .7rem;
    }
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-name {
    margin: 5px 0;
    height: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-name a {
    font-size: 14px;
    color: var(--color1);
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-price span {
    color: #F30;
    display: inline-block;
    font-size: 1rem;
    font-weight: bolder;
    margin-right: 10px;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail .product-item-detail-price span {
        font-size: .85rem;
        margin-right: 5px;
    }
}

.product-item .product-item-wrap .product-item-detail .product-item-detail-price del {
    color: #AAA;
    font-size: .85rem;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail .product-item-detail-price del {
        font-size: .75rem;
    }
}

.product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    line-height: 1;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge {
        gap: 5px;
    }
}

@media (max-width: 360px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge {
        gap: 2.5px;
    }
}

.product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge .hrv-product-reviews-star {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}

.product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge .hrv-product-reviews-star i {
    font-size: 16px;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge .hrv-product-reviews-star i {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge .hrv-product-reviews-star i {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge .hrv-product-reviews-star i {
        font-size: 9px;
    }
}

.product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge p, .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge span {
    font-size: 12px !important;
    margin: 0;
}

@media (max-width: 480px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge p, .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge span {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge p, .product-item .product-item-wrap .product-item-detail .haravan-product-reviews-badge span {
        font-size: 9px;
    }
}

.product-item-small {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .product-item-small {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 767px) {
    .product-item-small {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.product-item-small .product-item-small-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    background: varr(--color2);
    padding: 15px;
    border: 1px solid var(--color_main);
    border-radius: var(--border_radius);
}

.product-item-small .product-item-small-wrap .product-item-small-image {
    position: relative;
    width: 30%;
    overflow: hidden;
}

.product-item-small .product-item-small-wrap .product-item-small-image .product-item-small-image-link {
    display: block;
}

.product-item-small .product-item-small-wrap .product-item-small-info {
    width: 70%;
    text-align: left;
    padding-left: 20px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-title {
    margin: 0;
    font-size: 16px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    min-height: 35px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-title a {
    color: var(--color1);
    display: block;
}

@media (max-width: 1200px) {
    .product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-title {
        font-size: 14px;
        height: 38px;
        line-height: 1.4;
    }
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-price {
    color: #F30;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-price del {
    font-weight: 300;
    margin-left: 5px;
    color: #bbbbbb;
    font-size: 12px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-price span {
    margin-left: 5px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action {
    margin-top: 10px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    margin-right: 25px;
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action button.shop-wishlist-button-remove, .product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action button.shop-compare-button-remove {
    display: none;
}

@media (max-width: 767px) {
    .product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action button.shop-quickview-button {
        display: none;
    }
}

.product-item-small .product-item-small-wrap .product-item-small-info .product-item-small-info-action button svg {
    width: 15px;
    height: 15px;
}

.tool-search.active .tool-search-overplay, .tool-search.active .tool-search-smart {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

@media (max-width: 1024px) {
    .tool-search.active .tool-search-overplay, .tool-search.active .tool-search-smart {
        transform: translateY(0);
        box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.5);
    }
}

.tool-search .tool-search-overplay {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

@media (max-width: 1024px) {
    .tool-search .tool-search-overplay {
        display: none;
    }
}

.tool-search .tool-search-smart {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease-in;
    position: absolute;
    left: 0;
    background: #FFF;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    min-width: 450px;
    z-index: 99;
}

@media (max-width: 1024px) {
    .tool-search .tool-search-smart {
        min-width: 100%;
        width: 100%;
    }
}

.tool-search .tool-search-smart:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 40px;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--color_bg_item) transparent;
}

.tool-search .tool-search-smart > p {
    margin: 0;
    padding: 10px;
}

.tool-search .tool-search-smart .tool-search-smart-data > p {
    margin: 0;
    padding: 10px;
}

.tool-search .tool-search-smart .tool-search-smart-data label {
    background: var(--color_bg_item);
    display: block;
    padding: 5px 15px;
    font-weight: bold;
    margin: 0;
}

.tool-search .tool-search-smart .tool-search-smart-data ul {
    max-height: 375px;
    overflow-y: auto;
    overflow-x: hidden;
}

.tool-search .tool-search-smart .tool-search-smart-data ul::-webkit-scrollbar {
    width: 5px;
}

.tool-search .tool-search-smart .tool-search-smart-data ul::-webkit-scrollbar-track {
    background: #ccc;
}

.tool-search .tool-search-smart .tool-search-smart-data ul::-webkit-scrollbar-thumb {
    background: var(--color_main);
}

.tool-search .tool-search-smart .tool-search-smart-data ul li:not(:last-child) {
    border-bottom: 1px solid #DbDbDb;
}

.tool-search .tool-search-smart .tool-search-smart-data ul li a {
    padding: 5px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.tool-search .tool-search-smart .tool-search-smart-data ul li a img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.tool-search .tool-search-smart .tool-search-smart-data ul li a span {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.shop-social-sidebar {
    position: fixed;
    bottom: 15%;
    right: -125px;
    z-index: 9;
}

@media (max-width: 991px) {
    .shop-social-sidebar {
        display: none;
    }
}

.shop-social-sidebar a, .shop-social-sidebar button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 40px;
    padding: 7.5px;
    width: 165px;
    transform: translateX(0px);
    background: #ffffff;
    color: #333;
    border: 1px solid #DbDbDb;
    cursor: pointer;
    margin-bottom: 5px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.shop-social-sidebar a.back-to-top, .shop-social-sidebar button.back-to-top {
    opacity: 0;
    visibility: hidden;
}

.shop-social-sidebar a.back-to-top.active, .shop-social-sidebar button.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.shop-social-sidebar a:hover, .shop-social-sidebar button:hover {
    transform: translateX(-120px);
}

.shop-social-sidebar a img, .shop-social-sidebar button img {
    margin-right: 20px;
    max-width: 25px;
}

.shop-mobar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color_main);
    display: none;
    z-index: 97;
    top: unset;
}

@media (max-width: 991px) {
    .shop-mobar {
        display: block;
    }
}

.shop-mobar .shop-mobar-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.shop-mobar .shop-mobar-wrap ul li {
    width: calc(100% / 4);
    padding: 7.5px 2.5px;
    text-align: center;
}

.shop-mobar .shop-mobar-wrap ul li:not(:last-child) {
    border-right: 1px solid #d9b23a;
}

.shop-mobar .shop-mobar-wrap ul li img {
    max-width: 20px;
}

.shop-mobar .shop-mobar-wrap ul li span {
    font-size: .9rem;
    display: block;
    margin-top: 10px;
    line-height: 1;
    color: var(--color2);
}

.shop-quantity-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.shop-quantity-wrap label {
    font-weight: 500;
    margin-bottom: 0;
    min-width: 100px;
    display: block;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .shop-quantity-wrap label {
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .shop-quantity-wrap label {
        font-size: 1.10rem;
    }
}

@media (max-width: 991px) {
    .shop-quantity-wrap label {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .shop-quantity-wrap label {
        font-size: 1.20rem;
    }
}

@media (max-width: 480px) {
    .shop-quantity-wrap label {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .shop-quantity-wrap label {
        font-size: 1.30rem;
    }
}

.shop-quantity-wrap .shop-quantity {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #DbDbDb;
}

.shop-quantity-wrap .shop-quantity button, .shop-quantity-wrap .shop-quantity input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
}

.shop-quantity-wrap .shop-quantity button {
    width: 40px;
    height: 30px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .shop-quantity-wrap .shop-quantity button {
        color: #000;
    }
}

.shop-quantity-wrap .shop-quantity input {
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.shop-social {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.shop-social a {
    display: block;
    margin-right: 15px;
}

.shop-social a img {
    max-height: 30px;
}

.shop-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    background: #FFF;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .5s;
}

.shop-menu-mobile .shop-menu-mobile-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #DbDbDb;
    height: 100px;
}

.shop-menu-mobile .shop-menu-mobile-head label {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.45rem;
    }
}

@media (max-width: 1024px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.40rem;
    }
}

@media (max-width: 991px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.30rem;
    }
}

@media (max-width: 480px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.35rem;
    }
}

@media (max-width: 360px) {
    .shop-menu-mobile .shop-menu-mobile-head label {
        font-size: 1.30rem;
    }
}

.shop-menu-mobile .shop-menu-mobile-head button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
}

.shop-menu-mobile .shop-menu-mobile-head button svg {
    width: 15px;
    height: 15px;
}

.shop-menu-mobile .shop-menu-mobile-body {
    height: calc(100% - 235px);
    overflow-y: auto;
    overflow-x: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .shop-menu-mobile .shop-menu-mobile-body {
        height: calc(100% - 300px);
    }
}

.shop-menu-mobile .shop-menu-mobile-body li:not(:last-child) a {
    border-bottom: 1px solid var(--color_bg);
}

.shop-menu-mobile .shop-menu-mobile-body li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 7.5px 15px;
}

.shop-menu-mobile .shop-menu-mobile-body li a.active span {
    transform: rotate(90deg);
}

.shop-menu-mobile .shop-menu-mobile-body li a span {
    transition: all .5s;
    font-size: 1.75rem;
    line-height: 1;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 {
    display: none;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 li a {
    padding-left: 45px;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 .menu2 {
    display: none;
}

.shop-menu-mobile .shop-menu-mobile-body .menu1 .menu2 li a {
    padding-left: 75px;
}

.shop-menu-mobile .shop-menu-mobile-foot {
    padding: 5px 15px;
    margin-top: auto;
    width: 100%;
    height: 185px;
}

.shop-menu-mobile .shop-menu-mobile-foot form {
    width: 100%;
    position: relative;
}

.shop-menu-mobile .shop-menu-mobile-foot form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    background: #FFF;
    border: 1px solid #DbDbDb;
    padding: 0 10px;
    height: 35px;
    width: 100%;
}

.shop-menu-mobile .shop-menu-mobile-foot form button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    opacity: .5;
}

.shop-menu-mobile .shop-menu-mobile-foot form button svg {
    width: 20px;
    height: 20px;
}

.modal-contact {
    display: none;
    width: 850px;
}

@media (max-width: 991px) {
    .modal-contact {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .modal-contact {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .modal-contact {
        width: 90%;
        padding: 0 !important;
    }
}

.modal-contact .modal-contact-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-left {
    width: 45%;
    padding: 10px;
}

@media (max-width: 991px) {
    .modal-contact .modal-contact-wrap .modal-contact-wrap-left {
        display: none;
    }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-left img {
    object-fit: contain;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right {
    padding: 10px;
    width: 55%;
}

@media (max-width: 991px) {
    .modal-contact .modal-contact-wrap .modal-contact-wrap-right {
        width: 100%;
    }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content {
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content {
        max-width: 100%;
    }
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form {
    margin: 10px auto;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form input, .modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    margin: 5px 0px;
    width: 100%;
    border: 1px solid var(--color_main);
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border-radius: var(--border_radius);
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button {
    background: var(--color_main);
    font-size: 14px;
    font-weight: bold;
    border: 1px solid var(--color_main);
    text-align: center;
    border-radius: var(--border_radius);
    color: var(--color2);
    width: 100%;
    text-transform: uppercase;
    margin-top: 10px;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form button span {
    font-size: 15px !important;
}

.modal-contact .modal-contact-wrap .modal-contact-wrap-right .modal-contact-wrap-right-content form span {
    font-size: 11px;
}

.modal-contact .modal-contact-wrap-right-content p {
    font-style: italic;
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.modal-phone {
    display: none;
    width: 400px;
}

@media (max-width: 480px) {
    .modal-phone {
        width: 90%;
        padding: 0 !important;
    }
}

.modal-phone .modal-phone-wrap {
    position: relative;
}

.modal-phone .modal-phone-wrap p {
    font-style: italic;
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.modal-phone .modal-phone-wrap form {
    margin: 10px auto;
}

.modal-phone .modal-phone-wrap form input, .modal-phone .modal-phone-wrap form button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    margin: 5px 0px;
    width: 100%;
    border: 1px solid var(--color_main);
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border-radius: var(--border_radius);
}

.modal-phone .modal-phone-wrap form button {
    background: var(--color_main);
    font-size: 14px;
    font-weight: bold;
    border: 1px solid var(--color_main);
    text-align: center;
    border-radius: var(--border_radius);
    color: var(--color2);
    width: 100%;
    text-transform: uppercase;
    margin-top: 10px;
}

.modal-phone .modal-phone-wrap form button span {
    font-size: 15px !important;
}

.modal-phone .modal-phone-wrap form span {
    font-size: 11px;
}

.shop-coupon-popup {
    display: none;
    max-width: 500px;
    width: 500px;
    max-height: 80vh;
    padding: 20px !important;
}

@media (max-width: 480px) {
    .shop-coupon-popup {
        width: 100%;
        padding: 10px !important;
    }
}

.shop-coupon-popup .coupon-head {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1;
    border-bottom: 1px solid #DbDbDb;
}

@media (max-width: 480px) {
    .shop-coupon-popup .coupon-head {
        margin-bottom: 10px;
        padding-bottom: 10px;
        font-size: 1.25rem;
    }
}

.shop-coupon-popup .coupon-body {
    padding: 0.375rem 0.625rem;
    margin-bottom: 10px;
    background-color: #5F839E;
    position: relative;
}

.shop-coupon-popup .coupon-body:last-of-type {
    margin-bottom: 0;
}

.shop-coupon-popup .coupon-body:before, .shop-coupon-popup .coupon-body:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 4px;
    top: 0;
    background-size: 4px 12px;
    background-position: center center;
    z-index: 2;
}

.shop-coupon-popup .coupon-body:before {
    right: 0;
    background-image: radial-gradient(circle at 4px 6px, #fff 4px, transparent 4px);
}

.shop-coupon-popup .coupon-body:after {
    left: 0;
    background-image: radial-gradient(circle at 0px 6px, #fff 4px, transparent 4px);
}

.shop-coupon-popup .coupon-body .coupon-body-wrap {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    padding: 10px 0;
}

@media (max-width: 480px) {
    .shop-coupon-popup .coupon-body .coupon-body-wrap {
        padding: 5px 0;
    }
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-left {
    width: 85px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #dbdbdb;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-left span {
    background: #f4f4f4;
    border-radius: 999px;
    width: 75px;
    height: 75px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right {
    width: calc(100% - 85px);
    padding-left: 15px;
    padding-right: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right strong {
    display: block;
    width: 100%;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right p {
    margin: 10px 0;
    width: 100%;
    font-size: .9rem;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right span {
    color: #aaa;
    font-size: .8rem;
}

.shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right button {
    background: transparent !important;
    box-shadow: initial !important;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: .8rem;
    padding: 0;
}

@media (max-width: 480px) {
    .shop-coupon-popup .coupon-body .coupon-body-wrap .coupon-body-right button {
        margin: 5px 0;
    }
}

.shop-freeship {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: calc(100% - 75px);
}

.shop-freeship .shop-freeship-bar {
    width: calc(100%);
    position: relative;
}

.shop-freeship .shop-freeship-bar .shop-freeship-bar-main {
    width: 100%;
    height: 5px;
    background: #F4F4F4;
    border-radius: 999px;
    overflow: hidden;
}

.shop-freeship .shop-freeship-bar .shop-freeship-bar-main span {
    width: 0%;
    background: var(--color_main);
    display: block;
    height: 5px;
    border-radius: 999px;
    transition: width ease-in 1s;
}

.shop-freeship .shop-freeship-note {
    width: 100%;
    padding-top: 10px;
    font-size: 13px;
    display: block;
}

.shop-freeship .shop-freeship-note.active {
    color: var(--color_main);
    transition: all .25s 1.5s;
}

.shop-freeship .shop-freeship-note span {
    display: inline-block;
    border: 1px solid var(--color_main);
    padding: 2.5px;
    border-radius: 5px;
    color: var(--color_main);
    margin-left: 5px;
    font-weight: bold;
}

.shop-wishlist-modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    transform: translateY(100%);
}

.shop-wishlist-modal .shop-wishlist-modal-head {
    background: var(--color_main);
    padding: 5px 0;
}

.shop-wishlist-modal .shop-wishlist-modal-head .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.shop-wishlist-modal .shop-wishlist-modal-head .container button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
}

.shop-wishlist-modal .shop-wishlist-modal-head .container button svg {
    width: 15px;
    height: 15px;
}

.shop-wishlist-modal .shop-wishlist-modal-head .container button svg * {
    fill: var(--color2);
}

.shop-wishlist-modal .shop-wishlist-modal-head .container label {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--color2);
}

.shop-wishlist-modal .shop-wishlist-modal-body {
    padding: 15px 0;
}

@media (max-width: 767px) {
    .shop-wishlist-modal .shop-wishlist-modal-body {
        margin-left: -5px;
        margin-right: -5px;
    }
}

@media (min-width: 767px) {
    .shop-wishlist-modal .shop-wishlist-modal-body {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.shop-wishlist-modal .shop-wishlist-modal-body .shop-wishlist-button-remove {
    display: inline-block !important;
}

.shop-wishlist-modal .shop-wishlist-modal-body .wcs-null {
    padding: 0 10px;
    margin-bottom: 0;
}

.shop-compare-modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: #FFF;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    transform: translateY(100%);
}

.shop-compare-modal .shop-compare-modal-head {
    background: var(--color_main);
    padding: 5px 0;
}

.shop-compare-modal .shop-compare-modal-head .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.shop-compare-modal .shop-compare-modal-head .container button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
}

.shop-compare-modal .shop-compare-modal-head .container button svg {
    width: 15px;
    height: 15px;
}

.shop-compare-modal .shop-compare-modal-head .container button svg * {
    fill: var(--color2);
}

.shop-compare-modal .shop-compare-modal-head .container label {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--color2);
}

.shop-compare-modal .shop-compare-modal-body {
    padding: 15px 0;
}

@media (max-width: 767px) {
    .shop-compare-modal .shop-compare-modal-body {
        margin-left: -5px;
        margin-right: -5px;
    }
}

@media (min-width: 767px) {
    .shop-compare-modal .shop-compare-modal-body {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.shop-compare-modal .shop-compare-modal-body .shop-compare-button-remove {
    display: inline-block !important;
}

.shop-compare-modal .shop-compare-modal-body .wcs-null {
    padding: 0 10px;
    margin-bottom: 0;
}

div#accountModal .modal-content .modal-body {
    overflow: hidden;
}

div#accountModal .modal-content .modal-body label {
    margin-top: 10px;
}

div#accountModal .modal-content .modal-body > .row > div:first-child {
    border-right: 1px solid #e1e1e1;
}

div#accountModal .modal-content .modal-body .modalLogo {
    margin-bottom: 15px;
}

div#accountModal .modal-content .modal-body .nav-pills .nav-link.active {
    background: rgba(0, 0, 0, 0.03);
    color: var(--color1);
}

div#accountModal .modal-content .modal-body button {
    background: var(--color1);
    border-radius: 0;
    width: 100%;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--color2);
    border-radius: 5px;
}

div#accountModal button.closeModal {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

div#accountModal button.closeModal i {
    font-size: 18px;
    font-weight: 700;
}

.shop-cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all .5s;
}

@media (max-width: 480px) {
    .shop-cart-sidebar {
        max-width: 375px;
    }
}

@media (max-width: 360px) {
    .shop-cart-sidebar {
        max-width: 100%;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    justify-content: space-between;
    padding: 0 20px;
    height: 100px;
    align-content: center;
    position: relative;
}

@media (max-width: 767px) {
    .shop-cart-sidebar .shop-cart-sidebar-head {
        height: 125px;
    }
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-head {
        padding: 0 10px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-head label {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color1);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.shop-cart-sidebar .shop-cart-sidebar-head button {
    color: var(--color1);
    background: transparent;
    border: none;
    outline: none;
    font-size: 25px;
    position: absolute;
    top: 0;
    right: 35px;
    padding: 40px;
}

@media (max-width: 767px) {
    .shop-cart-sidebar .shop-cart-sidebar-head button {
        right: 25px;
        top: 5px;
    }
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-head button {
        right: 17.5px;
    }
}

@media (max-width: 360px) {
    .shop-cart-sidebar .shop-cart-sidebar-head button {
        right: 10px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-head .shop-cart-sidebar-top-freeship {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-head .shop-cart-sidebar-top-freeship {
        align-items: flex-end;
    }
}

@media (max-width: 767px) {
    .shop-cart-sidebar .shop-cart-sidebar-head .shop-cart-sidebar-top-freeship .shop-freeship {
        width: calc(100% - 60px);
        padding-bottom: 0;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-head .shop-cart-sidebar-top-freeship .shop-cart-sidebar-top-freeship-label img {
    max-width: 75px;
}

@media (max-width: 767px) {
    .shop-cart-sidebar .shop-cart-sidebar-head .shop-cart-sidebar-top-freeship .shop-cart-sidebar-top-freeship-label img {
        max-width: 50px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-body {
    height: calc(100% - 265px);
    overflow-y: auto;
    overflow-x: hidden;
}

.shop-cart-sidebar .shop-cart-sidebar-body::-webkit-scrollbar {
    width: 5px;
}

.shop-cart-sidebar .shop-cart-sidebar-body::-webkit-scrollbar-track {
    background: #ccc;
}

.shop-cart-sidebar .shop-cart-sidebar-body::-webkit-scrollbar-thumb {
    background: var(--color_main);
}

.shop-cart-sidebar .shop-cart-sidebar-body .shop-cart-sidebar-no {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-body .shop-cart-sidebar-no {
        padding: 20px 10px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-body .shop-cart-sidebar-yes {
    padding: 20px;
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-body .shop-cart-sidebar-yes {
        padding: 20px 10px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-foot {
    height: 170px;
    border-top: 1px solid #ebebeb;
    padding: 20px;
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-foot {
        padding: 10px;
        height: 145px;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-foot button[data-type="shop-cart-sidebar-note-action"] {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    font-size: 14px;
    color: #979696;
}

.shop-cart-sidebar .shop-cart-sidebar-foot a[href="/cart"] {
    float: right;
}

.shop-cart-sidebar .shop-cart-sidebar-foot p {
    margin: 10px 0 20px;
}

@media (max-width: 480px) {
    .shop-cart-sidebar .shop-cart-sidebar-foot p {
        margin: 10px 0;
    }
}

.shop-cart-sidebar .shop-cart-sidebar-foot a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #F30;
    text-align: center;
    margin-bottom: 5px;
    padding: 15px 20px;
    background: #F30;
    color: var(--color2);
    text-transform: uppercase;
    border-radius: var(--border_radius);
}

.shop-cart-sidebar .shop-cart-sidebar-foot a span:nth-child(2) {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin: 0 15px;
    background: #fff;
}

.shop-cart-sidebar .shop-cart-sidebar-note {
    height: 225px;
    border-top: 1px solid #ebebeb;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 1px 0 6px rgba(54, 54, 54, 0.2);
    z-index: 1002;
    transition: all .4s;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
}

.shop-cart-sidebar .shop-cart-sidebar-note.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.shop-cart-sidebar .shop-cart-sidebar-note span {
    display: block;
}

.shop-cart-sidebar .shop-cart-sidebar-note textarea {
    margin: 10px 0;
    width: 100%;
    height: 75px;
    padding: 10px;
    border: 1px solid #ebebeb;
}

.shop-cart-sidebar .shop-cart-sidebar-note textarea:focus, .shop-cart-sidebar .shop-cart-sidebar-note textarea:focus-visible {
    border: 1px solid #ebebeb;
    outline: 0;
}

.shop-cart-sidebar .shop-cart-sidebar-note button[data-type="shop-cart-sidebar-note-save"] {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    text-align: center;
    width: 100%;
    border: 1px solid var(--color1);
    padding: 10px 20px;
}

@media (max-width: 1024px) {
    .shop-cart-sidebar .shop-cart-sidebar-note button[data-type="shop-cart-sidebar-note-save"] {
        color: #000;
    }
}

.shop-cart-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 20px;
}

.shop-cart-item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #DbDbDb;
}

.shop-cart-item .shop-cart-item-left {
    width: 100px;
}

.shop-cart-item .shop-cart-item-left a {
    display: block;
}

.shop-cart-item .shop-cart-item-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: space-between;
    flex-direction: column;
    width: calc(100% - 100px);
    padding-left: 15px;
}

.shop-cart-item .shop-cart-item-right h4 {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: .85rem;
    font-weight: 400;
}

.shop-cart-item .shop-cart-item-right > p {
    margin: 0;
    color: #F30;
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-quantity label {
    display: none;
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-remove {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-remove button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
}

@media (max-width: 1024px) {
    .shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-remove button {
        color: #000;
    }
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-remove button:hover:after {
    width: 0;
}

.shop-cart-item .shop-cart-item-right .shop-cart-item-right-action .shop-cart-item-right-action-remove button:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    transition: all 0.5s;
}

@media (min-width: 1025px) {
    button.shop-tool[data-type="shop-search-mobile"] {
        display: none;
    }
}

#fancybox-1 button.is-close {
    top: -37px;
    right: -37px;
    background: #000;
    border-radius: 0;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
}

#fancybox-1 .fancybox__content {
    padding: 10px !important;
}

#product-quickview {
    max-width: 70vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (min-width: 768px) and (max-width: 992px) {
    #product-quickview {
        flex-direction: column;
    }
}

#product-quickview .product-quickview-left {
    width: 40%;
}

@media (min-width: 768px) and (max-width: 992px) {
    #product-quickview .product-quickview-left {
        width: 100%;
    }
}

#product-quickview .product-quickview-left .slick-dots {
    display: none !important;
}

#product-quickview .product-quickview-left .slick-prev {
    left: 0 !important;
}

#product-quickview .product-quickview-left .slick-next {
    right: 0 !important;
}

#product-quickview .product-quickview-left a {
    display: block;
    border: none;
    padding: 1px;
}

#product-quickview .product-quickview-left a img {
    padding: 0;
}

#product-quickview .product-quickview-right {
    width: 60%;
    padding: 0 20px;
}

@media (min-width: 768px) and (max-width: 992px) {
    #product-quickview .product-quickview-right {
        width: 100%;
    }
}

#product-quickview .product-quickview-right .product-quickview-title {
    font-size: 1.85rem;
    font-weight: bold;
    padding-right: 45px;
}

#product-quickview .product-quickview-right .product-quickview-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

#product-quickview .product-quickview-right .product-quickview-info > div {
    width: 50%;
    padding-left: 15px;
    position: relative;
}

#product-quickview .product-quickview-right .product-quickview-info > div:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: var(--color_main);
}

#product-quickview .product-quickview-right .product-quickview-info span {
    font-weight: 400;
    margin-right: 5px;
}

#product-quickview .product-quickview-right .product-quickview-price {
    border-top: 1px dotted #dee2e6;
    border-bottom: 1px dotted #dee2e6;
    padding: 0 !important;
    font-size: 0.95rem;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-wrap;
    align-items: center;
    min-height: 50px;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-this {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F30;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-this.contact {
    width: 100%;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-this.contact a {
    display: block;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-this.contact a img {
    max-height: 50px;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-compare {
    margin-left: 0;
    font-size: 1rem;
    color: #777a7b;
    padding-right: 10px;
    font-weight: 500;
}

#product-quickview .product-quickview-right .product-quickview-price .product-quickview-price-wrap .product-quickview-price-discount {
    margin-left: 10px;
    display: inline-block;
    padding: 2.5px 10px;
    margin-right: 10px;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color2);
    background: #F30;
    border-radius: 5px;
}

#product-quickview .product-quickview-right .product-quickview-cta {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#product-quickview .product-quickview-right .product-quickview-cta button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: 0;
    display: inline-block;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #CCC;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    transition: color .4s .4s ease-in, border .4s .4s ease-in;
    width: calc(50% - 7.5px);
    font-size: .85rem;
    margin: 0;
    border-radius: var(--border_radius);
}

@media (max-width: 360px) {
    #product-quickview .product-quickview-right .product-quickview-cta button {
        width: 280px;
    }
}

#product-quickview .product-quickview-right .product-quickview-cta button:hover {
    color: var(--color_main);
    border-color: var(--color_main);
}

#product-quickview .product-quickview-right .product-quickview-cta button:hover:after {
    transform: scale(1);
}

#product-quickview .product-quickview-right .product-quickview-cta button:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color_main);
    left: 0;
    bottom: 0;
    transition: all 0.4s ease-in;
    transform: scale(0);
}

#product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"] {
    background: var(--color_main);
    transition: all .75s;
}

#product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"]:hover {
    background: #FFF;
}

#product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"]:hover strong, #product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"]:hover span {
    color: var(--color_main);
}

#product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"] strong, #product-quickview .product-quickview-right .product-quickview-cta button[data-type="product-quickview-detail"] span {
    color: var(--color2);
}

@media (max-width: 1200px) {
    #product-quickview .product-quickview-right .product-quickview-cta button {
        font-size: 0.90rem;
    }
}

#product-quickview .product-quickview-right .product-quickview-cta button strong {
    display: block;
    transition: all .75s;
}

#product-quickview .product-quickview-right .product-quickview-cta button span {
    text-transform: initial;
    font-size: .7rem;
    transition: all .75s;
}

@media (max-width: 1200px) {
    #product-quickview .product-quickview-right .product-quickview-cta button span {
        font-size: 0.75rem;
    }
}

#product-quickview .product-quickview-right .product-quickview-quantity {
    margin-top: 20px;
}

#product-quickview .product-quickview-right .product-quickview-swatch {
    margin-bottom: 15px;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line {
    margin-top: 15px;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-title {
    font-weight: 500;
    margin-right: 20px;
    min-width: 100px;
    display: block;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 0;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item .product-sw-select-item-span {
    display: block;
    border: 1px solid #e1e1e1;
    border-radius: var(--border_radius);
    min-width: 70px;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    cursor: pointer;
    box-shadow: 2.5px 2.5px 2.5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s linear;
    font-size: .85rem;
    margin-bottom: 0;
    text-align: center;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item input:not(.disabled):checked + label {
    border-color: #222;
    font-weight: 700;
    color: #222;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item:not(.sw-color) input.soldOut + label {
    position: relative;
    background: url(https://file.hstatic.net/200000544803/file/soldout_bg_461519ca89c54e53978e6d5e00dd7ac0.png);
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color {
    position: relative;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color input.soldOut + label {
    position: relative;
    background: url(https://file.hstatic.net/200000544803/file/soldout_bg_461519ca89c54e53978e6d5e00dd7ac0.png);
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color input.soldOut + label span {
    position: relative;
    z-index: -1;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color .product-sw-select-item-span {
    border: none;
    height: 34px;
    width: 34px;
    min-width: auto;
    position: relative;
    overflow: hidden;
    padding: 2px;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color .product-sw-select-item-span span {
    border: 1px solid #f1f1f1;
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
    background-size: contain;
}

#product-quickview .product-quickview-right .product-quickview-swatch .product-sw-line .product-sw-select .product-sw-select-item.sw-color input:checked + label {
    padding: 2px;
    border: 1px solid var(--color1);
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0)
    }
    100% {
        -moz-transform: rotate(360deg)
    }
}

@-moz-keyframes spinoff {
    0% {
        -moz-transform: rotate(0)
    }
    100% {
        -moz-transform: rotate(-360deg)
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes spinoff {
    0% {
        -webkit-transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(-360deg)
    }
}

@-webkit-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-ms-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes uil-ring-anim {
    0% {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}