﻿@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        -ms-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes showMenu {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes showMenu {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.mobnav {
    background-color: #fff;
    bottom: 0;
    height: 100vh;
    left: -9999999px;
    letter-spacing: 2px;
    overflow-y: auto;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100;
    -webkit-animation: showMenu .5s;
    animation: showMenu .5s
}

@media screen and (max-width:782px) {
    .admin-bar .mobnav {
        top: 46px
    }
}

.mobnav.active {
    left: 0
}

.mobnav .close {
    cursor: pointer;
    height: 20px;
    width: 20px;
    position: relative;
    border: 0;
    background: 0 0
}

.mobnav .header {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 52px;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    padding: 0 8px
}

.mobnav .overlay {
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-backdrop-filter: blur(25px) opacity(1);
    backdrop-filter: blur(25px) opacity(1);
    background-color: hsla(0, 0%, 7%, .7);
    left: -9999999px
}

.mobnav .back {
    display: none;
    width: 10px;
    height: 20px;
    border: 0;
    cursor: pointer;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic3ZnLWljb24iIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNjQwIDgzMmEyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxLTE1LjE0NjY2Ny02LjE4NjY2N2wtMjk4LjY2NjY2Ni0yOTguNjY2NjY2YTIxLjMzMzMzMyAyMS4zMzMzMzMgMCAwIDEgMzAuMjkzMzMzLTMwLjI5MzMzNGwyOTguNjY2NjY3IDI5OC42NjY2NjdhMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMSAwIDMwLjI5MzMzM0EyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxIDY0MCA4MzJ6IiBmaWxsPSIjMzMzMzMzIiAvPjxwYXRoIGQ9Ik0zNDEuMzMzMzMzIDUzMy4zMzMzMzNhMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMS0xNS4xNDY2NjYtNi4xODY2NjYgMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMSAwLTMwLjI5MzMzNGwyOTguNjY2NjY2LTI5OC42NjY2NjZhMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMSAzMC4yOTMzMzQgMzAuMjkzMzMzbC0yOTguNjY2NjY3IDI5OC42NjY2NjdBMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMSAzNDEuMzMzMzMzIDUzMy4zMzMzMzN6IiBmaWxsPSIjMzMzMzMzIiAvPjwvc3ZnPg==)
}

.mobnav.active .overlay {
    left: 0
}

.mobnav .close::after,
.mobnav .close::before {
    content: " ";
    display: block;
    left: 0;
    position: absolute;
    width: 100%
}

.mobnav .close::before {
    border-top: 1px solid #000;
    top: 50%;
    transform: rotate(45deg)
}

.mobnav .close::after {
    border-bottom: 1px solid #000;
    top: 50%;
    transform: rotate(-45deg)
}

.mobnav.not-active {
    display: none
}

.mobnav .mobnav-scroll-wrapper {
    position: relative;
    width: 335px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden
}

.mobnav ul.categories {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative
}

.mobnav ul.categories.active {
    left: -100%;
    transition: all 1s
}

.mobnav ul.categories li a {
    display: flex;
    padding: 15px;
    color: #111;
    font-size: 16px;
    letter-spacing: .25px;
    border-bottom: 1px solid #e7e9ea;
    line-height: 20px;
    text-decoration: none;
    align-items: center;
    justify-content: space-between
}

.mobnav .icon {
    width: 10px;
    height: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic3ZnLWljb24iIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNjgyLjY2NjY2NyA1MzMuMzMzMzMzYTIxLjMzMzMzMyAyMS4zMzMzMzMgMCAwIDEtMTUuMTQ2NjY3LTYuMTg2NjY2bC0yOTguNjY2NjY3LTI5OC42NjY2NjdhMjEuMzMzMzMzIDIxLjMzMzMzMyAwIDAgMSAzMC4yOTMzMzQtMzAuMjkzMzMzbDI5OC42NjY2NjYgMjk4LjY2NjY2NmEyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxIDAgMzAuMjkzMzM0QTIxLjMzMzMzMyAyMS4zMzMzMzMgMCAwIDEgNjgyLjY2NjY2NyA1MzMuMzMzMzMzeiIgZmlsbD0iIzMzMzMzMyIgLz48cGF0aCBkPSJNMzg0IDgzMmEyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxLTE1LjE0NjY2Ny02LjE4NjY2NyAyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxIDAtMzAuMjkzMzMzbDI5OC42NjY2NjctMjk4LjY2NjY2N2EyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxIDMwLjI5MzMzMyAzMC4yOTMzMzRsLTI5OC42NjY2NjYgMjk4LjY2NjY2NkEyMS4zMzMzMzMgMjEuMzMzMzMzIDAgMCAxIDM4NCA4MzJ6IiBmaWxsPSIjMzMzMzMzIiAvPjwvc3ZnPg==)
}

.mobnav ul.categories li a.sub-nav-return {
    font-size: 12px;
    padding: 15px
}

.mobnav ul.categories li .sub-categories {
    display: none;
    padding: 0;
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    z-index: 1
}

.mobnav ul.categories li .sub-categories .products a {
    align-items: center;
    display: flex;
    flex: 0 1 50%;
    flex-flow: column nowrap;
    text-decoration: none;
    margin: 0 0 36px;
    border: 0
}

.mobnav ul.categories li .sub-categories img {
    height: 80px;
    width: 100px;
    margin: 0 0 4px
}

.mobnav ul.categories li .sub-categories .name {
    color: #111;
    font-size: 14px;
    letter-spacing: .25px;
    line-height: 22px;
    font-weight: 400
}

.mobnav ul.categories a.liveact+.sub-categories {
    display: block
}

.mobnav ul.categories li .sub-categories .all {
    font-weight: 400;
    border-top: 1px solid #e7e9ea
}

.mobnav ul.categories a.liveact+.sub-categories .products {
    display: flex;
    flex-flow: row wrap
}

#google_translate_element2,
.hidden,
iframe.skiptranslate {
    display: none
}

.submit {
    background: #000;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: .2rem;
    font-size: 15px
}

.submit:hover {
    background: #fff;
    color: #333;
    border: 2px solid #333
}

.wp-element-button {
    border-radius: 8px
}

.popup-cart {
    background-color: rgba(95, 95, 95, .35);
    bottom: 0;
    left: 0;
    opacity: 1;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .3s;
    z-index: 9999;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.popup-cart a {
    text-decoration: none !important
}

.popup-open .popup-cart {
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.popup-cart .cart-content {
    background: #fff;
    height: 100%;
    width: 400px;
    position: fixed;
    right: 0;
    top: 0
}

.popup-cart .cart-content:after {
    border-style: solid;
    border-width: 0 0 0 1px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    opacity: .3;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0
}

.admin-bar .cart-content {
    height: calc(100dvh - 46px);
    margin-top: 46px
}

@media only screen and (min-width:783px) {
    .admin-bar .cart-content {
        height: calc(100dvh - 32px);
        margin-top: 32px
    }
}

.popup-cart .cart-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: -webkit-fill-available;
    max-height: -moz-available;
    margin: 16px 16px -32px;
    padding-bottom: 32px
}

.popup-cart .cart-inner {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden
}

.popup-cart .woocommerce-mini-cart {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
    overflow-y: auto;
    scrollbar-width: thin
}

.popup-cart .cart-header {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
    color: #1d1d1f;
    text-align: center
}

.popup-cart .close {
    color: #fff;
    border: none;
    cursor: pointer;
    float: right
}

.popup-cart .cart_list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto
}

.popup-cart .total {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-weight: 600;
    margin-bottom: 16px
}

.popup-cart .total strong {
    flex-grow: 1
}

.popup-cart .total:before {
    border-style: solid;
    border-width: 1px 0 0;
    bottom: 0;
    content: "";
    display: block;
    opacity: .3;
    pointer-events: none;
    width: 100%;
    padding-top: 10px
}

.popup-cart .buttons .button {
    display: block;
    width: 165px;
    max-width: 90%;
    height: 32px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 14px;
    color: #000;
    text-align: center;
    line-height: 30px;
    margin: 12px auto;
    transition: all .4s
}

.popup-cart .buttons {
    padding: 0;
    margin: 0
}

.popup-cart .buttons .button.checkout {
    background: #000;
    color: #fff
}

.popup-cart .cart_list li {
    position: relative;
    padding: 15px 34px 15px 120px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f3f4f7
}

.popup-cart .cart_list li::after {
    clear: both;
    content: ' ';
    display: table
}

.popup-cart .cart_list li a {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000
}

.popup-cart .cart_list li a .amount {
    font-weight: 400
}

.popup-cart .cart_list li img {
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #d9d9d9;
    border-radius: 8px
}

.popup-cart .cart_list li a.remove {
    position: absolute;
    top: 13px;
    right: 0;
    font-size: 16px;
    font-weight: 400;
    height: 18px;
    width: 18px;
    line-height: 16px;
    text-align: center
}

.popup-cart .cart_list li a.remove svg {
    fill: rgb(123 120 120);
    width: 16px;
    height: 16px
}

.popup-cart .cart_list li .quantity {
    font-size: 14px;
    margin: 5px 0
}

.popup-cart .cart_list .mini-cart-attr li {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    border: 0;
    font-size: 14px
}

.popup-cart .cart-wrapper .total {
    border-top: 1px solid #f3f4f7;
    padding: 15px 0 0;
    display: flex;
    margin-top: 0;
    justify-content: space-between
}

.popup-cart .cart-wrapper .buttons {
    display: flex;
    flex-direction: column;
    text-align: center
}

.popup-cart .cart-wrapper .buttons a {
    font-size: 15px;
    margin-bottom: 10px
}

.popup-cart .cart-wrapper .empty-cart {
    width: 180px;
    height: 46px;
    display: inline-block;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 23px;
    padding: 0;
    line-height: 46px;
    font-size: 14px;
    font-weight: 300
}

.popup-cart dl.variation {
    display: none
}

.popup-cart dl.variation p {
    margin: 0
}

.not-found {
    height: 100vh
}

.woocommerce-mini-cart__empty {
    display: flex;
    flex-flow: column;
    align-items: center
}

.popup-cart dl.variation dt,
.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name dl.variation dt {
    float: left;
    clear: both;
    margin-right: .25em;
    display: inline-block;
    list-style: none outside
}
.woocommerce td.product-name dl.variation dd {
    float: left;
}

.popup-cart dl.variation dt,
.popup-cart dl.variation p,
.woocommerce td.product-name dl.variation dt,
.woocommerce td.product-name dl.variation p {
    font-weight: 400;
    font-size: 12px;
    margin: 0
}

.woocommerce-notices-wrapper li {
    list-style: none
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    color: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    clear: both;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #c4c5c5
}

.woocommerce-error {
    padding: 0;
    color: #000;
    border-radius: 10px;
    background-color: #ff0
}

.woocommerce-error a.button,
.woocommerce-info a.button,
.woocommerce-message a.button {
    order: 2;
    padding: 10px 20px;
    margin-left: auto;
    color: #fff;
    background: #e60a28;
    font-weight: 700;
    font-size: 13px;
    border-radius: 23px;
    width: 150px
}

.wp-block-vapsolo-build-faq {
    color: #666;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -8px;
    margin-right: -8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.wp-block-vapsolo-build-faq:after {
    content: "";
    border-bottom: 1px solid rgba(0, 0, 0, .09)
}

.wp-block-vapsolo-build-faq:after,
.wp-block-vapsolo-build-faq>div {
    width: 100%
}

.wp-block-vapsolo-build-faq .question {
    cursor: pointer;
    color: rgba(0, 0, 0, .85)
}

.wp-block-vapsolo-build-faq .question h4 {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, .85);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.wp-block-vapsolo-build-faq .answer {
    display: none;
    padding: 10px 0;
    overflow-wrap: break-word
}

.question:first-child:before {
    content: '\002B';
    font-size: 20px;
    float: right;
    margin-left: 5px
}

.wp-block-vapsolo-build-faq .active:before {
    content: '\2212'
}

.counter-wraper {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    height: 976px;
    padding-top: 15%
}

.counter-wraper .counter-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none
}

.counter-inner {
    max-width: 1480px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-around
}

.counter-numbox {
    text-align: center
}

.counter-numbox p {
    font-size: 22px;
    color: #738791
}

.counter-numbox .counter {
    font-size: 80px;
    font-weight: 600;
    position: relative;
    background: repeating-linear-gradient(90deg, #ff6400 0, #ff6400 15%, #942cd0 62%, #5b62e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    display: inline-block
}

.counter-numbox .counter:after {
    content: "+";
    font-size: 50px;
    position: absolute;
    -webkit-text-fill-color: #5b62e2
}

.space {
    overflow: hidden;
    border: 0;
    position: relative;
    background-repeat: no-repeat
}

.space .pica {
    display: block;
    width: 44.11%;
    float: left;
}

.space .pica .pic {
    display: block;
    width: 100%
}

.space .size2 {
    width: 55.89%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0
}

.space .uptxt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.space .uptxt .desc {
    font-size: 30px;
    color: #000000;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
}

.space .uptxt .desc span {
    display: block;
    font-size: 23px
}

.space .uptxt .button {
    display: block;
    margin: 70px auto 0;
    text-decoration: none !important;
    width: 264px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 8px;
    border: solid 2px #000;
    font-size: 20px;
    color: #000;
    transition: all .4s;
    text-decoration: none !important
}

.space .uptxt .button:hover {
    background-color: #fff;
    color: #000;
}

.space .side {
    position: absolute;
    right: 5%;
    bottom: 5%;
    text-align: center;
    font-size: 23px;
    color: #000000;
    font-weight: 700;
}

.space .side .lks {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px
}

.space .side .lks .lka {
    display: block;
    width: 24px;
    margin: 0 10px
}

.space .pic {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.labslide {
    position: relative;
    width: 100%;
    overflow: hidden
}

.labslide .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.labslide .pic {
    flex: 0 0 58%;
    max-width: 58%;
    overflow: hidden;
    flex-flow: row wrap;
    display: flex;
    justify-content: space-between;
    border-radius: 20px
}

.labslide .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.labslide .infos {
    flex: 0 0 33%;
    max-width: 33%;
    text-align: center
}

.labslide .infos .title {
    font-size: 30px;
    color: #000;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 40px
}

.labslide .infos .desc {
    font-size: 23px;
    color: #000;
    margin: 0 0 24px;
    line-height: 36px
}

.labslide .infos .button {
    width: 290px;
    height: 54px;
    background-color: #000;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    font-size: 19px;
    line-height: 54px;
    transition: all .4s;
    border: 1px solid #000
}

.labslide .infos .button:hover {
    background-color: transparent;
    color: #000
}

.labslide .swiper-pagination-box {
    padding: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    flex: 0 0 33%;
    max-width: 33%
}

.labslide .swiper-pagination-bullet {
    height: 100%;
    width: 25px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    margin-right: 10px
}

.labslide .swiper-pagination-bullet .progress {
    width: 25px;
    height: 3px;
    background-color: #00b83c;
    position: relative;
    overflow: hidden
}

.labslide .swiper-pagination-bullet .progress:after {
    content: " ";
    display: block;
    height: 4px;
    width: 0;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.labslide .swiper-pagination-bullet.active .progress:after {
    opacity: 1;
    width: 25px
}

.popup-block {
    background: #fff;
    padding: 20px 30px;
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    position: relative
}

@media(max-width:1400px) {
    .space .pica {
        display: block;
        width: 44.11%;
        float: left
    }

    .space .size2 {
        width: 55.89%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0
    }

    .space .uptxt .desc {
        font-size: 26px
    }

    .space .uptxt .desc span {
        font-size: 20px
    }

    .space .uptxt .button {
        margin: 50px auto 0;
        width: 220px;
        height: 44px;
        line-height: 44px;
        font-size: 18px
    }

    .space .side {
        right: 5%;
        bottom: 15%;
        font-size: 20px
    }

    .space .side .lks {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px
    }

    .space .side .lks .lka {
        display: block;
        width: 24px;
        margin: 0 3px
    }

    .space .side .lks .lka img {
        display: block;
        width: 100%
    }

    .labslide .infos .title {
        font-size: 26px;
        line-height: 36px
    }

    .labslide .infos .desc {
        font-size: 20px;
        line-height: 36px;
        margin: 30px auto 30px
    }

    .labslide .infos .button {
        width: 220px;
        height: 48px;
        font-size: 17px;
        line-height: 44px
    }
}

@media(max-width:1200px) {
    .space .pica {
        display: block;
        width: 100%;
        float: none
    }

    .space .pic {
        min-height: 250px
    }

    .space .size2 {
        width: 100%;
        min-height: 250px;
        right: 0;
        top: 0
    }

    .space .uptxt {
        padding: 0 3% 0 3%
    }

    .space .uptxt .desc {
        font-size: 16px
    }

    .space .uptxt .desc span {
        font-size: 14px
    }

    .space .uptxt .button {
        margin: 20px auto 0;
        width: 200px;
        height: 34px;
        line-height: 34px;
        font-size: 14px
    }

    .space .side {
        right: 5%;
        bottom: 0;
        font-size: 14px;
        position: static;
        margin-top: 25px
    }

    .space .side .lks {
        margin-top: 10px
    }

    .space .side .lks .lka {
        display: block;
        width: 20px;
        margin: 0 3px
    }

    .labslide {
        width: 90%;
        margin: 0 auto;
        justify-content: space-between
    }

    .labslide .infos,
    .labslide .pics {
        flex: 0 0 100%;
        max-width: 100%
    }

    .labslide .infos .title {
        font-size: 16px;
        line-height: 20px
    }

    .labslide .infos .desc {
        font-size: 14px;
        width: 94%;
        max-width: 600px;
        line-height: 22px;
        margin: 15px auto 15px
    }

    .labslide .infos .button {
        width: 125px;
        height: 34px;
        border-width: 1px;
        font-size: 14px;
        line-height: 32px
    }
}

@media(max-width:768px) {
    .popup-cart .cart-content {
        width: 95%
    }

    .counter-wraper .counter-inner {
        width: 130vw;
        -webkit-transform: translateX(-15vw);
        transform: translateX(-15vw)
    }

    .counter-wraper {
        height: auto;
        padding-bottom: 1rem
    }

    .counter-wraper .counter-bg {
        position: relative;
        width: 100vw
    }

    .counter-numbox .counter {
        font-size: 18px
    }

    .counter-inner {
        flex-direction: column;
        position: absolute;
        top: 15%
    }

    .counter-numbox .counter:after {
        position: relative;
        font-size: 18px
    }
}

.card-wrapper {
    position: relative;
    padding: 40px 0 100px;
    width: 1200px;
    margin: 0 auto
}

.card-wrapper .card-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 724px
}

.card-wrapper .card-grid>.card-bundle {
    width: 60%;
    height: 100%
}

.card-wrapper .card-grid .card {
    position: relative;
    background: #191c21;
    z-index: 0;
    overflow: hidden;
    cursor: pointer
}

.card-wrapper .card-grid .card .bg {
    height: 100%
}

.card-wrapper .card .text {
    color: #fff;
    font-size: 18px;
}

.card-wrapper .card-grid .card .text-group {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    text-align: center
}

.card-wrapper .card-grid>.card-bundle .group-acces {
    height: 250px
}

.card-wrapper .card-grid>.card-bundle .group-share {
    height: 450px
}

.card-wrapper .card-grid>.card-bundle .group-acces {
    margin-top: 24px;
    border-bottom-left-radius: 20px
}

.card-wrapper .card-grid>.card-bundle .group-share {
    border-top-left-radius: 20px
}

.card-wrapper .card-grid .card-alone {
    width: calc(40% - 24px);
    height: 724px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px
}

.alert-box {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #f8fb54, #ecc243);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    color: #000;
    line-height: 1.2
}

.alert-box img {
    width: 32px;
    height: 32px;
    margin-right: 10px
}

@media(max-width:1200px) {
    .card-wrapper {
        width: 100%;
        padding: 0 24px
    }

    .card-wrapper .card .text {
        font-size: 14px
    }

    .card-wrapper .card-grid .card-alone,
    .card-wrapper .card-grid>.card-bundle {
        width: 100%
    }

    .card-wrapper .card-grid .card-alone {
        margin-top: 24px
    }

    .card-wrapper .card-grid .card {
        border-radius: 20px
    }

    .alert-box {
        font-size: 16px
    }
}

@media (max-width:768px) {
    .hide-mb {
        display: none
    }
}

@media (min-width:769px) and (max-width:1023px) {
    .hide-tb {
        display: none
    }
}

@media (min-width:1024px) {
    .hide-pc {
        display: none
    }
}

.foot a {
    text-decoration: none !important
}

.country-wrap,
.language-wrap,
.poster-wrap,
.warning-wrap {
    z-index: 99999;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(20, 20, 20, .6);
    background-size: cover
}

.warning-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    height: auto;
    background-color: #fff;
    padding: 20px;
    top: 25%;
    position: relative;
    border-radius: 4px;
    margin: 0 auto
}

.warning-inner p {
    margin: 0 0 15px;
    line-height: 1.5;
    color: #514a4a
}

.warning-inner .header {
    font-size: 20px;
    font-weight: 800;
    color: #000
}

.warning-inner .footer {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.warning-inner .button {
    background: #1d1d1f;
    border-radius: 4px;
    padding: 10px 30px;
    margin: 0 auto;
    color: #fff;
    display: inline-flex;
    text-decoration: none !important
}

.warning-inner .button.yes {
    background: #416ff7
}

.language-inner {
    max-width: 1200px;
    height: auto;
    background-color: #fff;
    padding: 20px;
    top: 25%;
    font-size: 16px;
    position: relative;
    border-radius: 4px;
    margin: 0 auto
}

.poster-inner {
    width: 50%;
    height: 100%;
    top: 15%;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    position: relative
}

.poster-inner img {
    width: 100%
}

.poster-inner .close {
    position: absolute;
    right: 5%;
    background: #ccc;
    border-radius: 100%;
    padding: 3px 5px;
    top: 5%;
    cursor: pointer;
    line-height: 1
}

.country-wrap .language-inner {
    max-width: 800px
}

.language-inner .language-title {
    width: 100%;
    color: #7e7e7e;
    font-size: 20px;
    margin-bottom: 25px
}

.language-inner .country-top {
    display: flex;
    gap: 20px;
    justify-content: center;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 30px;
    margin-bottom: 30px
}

.language-inner .country-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background-color: #f8f9fa
}

.language-inner .country-top a:hover {
    color: #9bb2eb
}

.language-inner .gtranslate_wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    margin: 0
}

.language-inner .gtranslate_wrapper a {
    width: calc((100% - 80px)/ 4);
    margin-right: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 0 10px;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer
}

.country-wrap .language-inner .gtranslate_wrapper a {
    width: calc((100% - 60px)/ 3)
}

.country-wrap .language-inner img {
    width: 32px;
    height: 32px
}

@media (max-width:768px) {
    .poster-inner {
        width: 100%
    }

    .poster-inner .close {
        right: 15%;
        top: 1%
    }

    .language-inner {
        width: 90%
    }

    .country-wrap .language-inner .gtranslate_wrapper a,
    .language-inner .gtranslate_wrapper a {
        width: 100%
    }

    .country-wrap .gtranslate_wrapper,
    .language-inner .country-top {
        flex-flow: column;
        padding: 0;
        border: 0;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 20px
    }

    .country-wrap .language-title {
        border-bottom: 1px solid #f8f9fa;
        padding-bottom: 20px;
        margin-bottom: 20px
    }

    .country-wrap .language-inner img {
        width: 24px;
        height: 24px
    }
}

.language-inner .gtranslate_wrapper a a {
    line-height: 46px;
    display: flex;
    align-items: center;
    color: #a2a2a2;
    text-decoration: none !important;
    justify-content: space-between
}

.language-inner .country {
    display: flex;
    align-items: center
}

.language-inner .lang-title {
    color: #1a1a1a;
    padding-left: 5px
}

.language-inner .close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer
}

.country_notice_box {
    display: none;
    background: #fff;
    max-width: 400px;
    right: 10px;
    min-height: 244px;
    position: fixed;
    bottom: 2%;
    border-radius: 5px;
    box-shadow: 0 0 9px 1px #666;
    z-index: 9999
}

.country_notice_box p {
    margin: 0;
    padding: 30px 30px 10px 30px;
    line-height: 22px
}

.country_notice_box img {
    width: 20px;
    margin-right: 5px;
    vertical-align: baseline;
    display: inline-block
}

.country_notice_box .close {
    font-size: 22px;
    position: absolute;
    right: 7px;
    top: 8px;
    cursor: pointer;
    color: #000;
    font-weight: 700
}

.country_notice_box .btns {
    margin: 20px auto 0 auto;
    text-align: center
}

.country_notice_box .btns button {
    width: 90%;
    height: 38px;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    background-color: #d56f72
}

.country_notice_box .btns button:last-child {
    margin-top: 10px;
    background-color: #ccc
}