:root {
    --font-accent: "Geologica", sans-serif;
    --accent: #030917;
    --comleted: #61dea4;
    --failed: #f45e6d;
    --btn-color: var(--accent);
    --btn-text: #ffffff;
    --bg-color: #e4e5e2;
    --second-bg-color: #efefef;
    --border-color: var(--accent);
    --white-color: #ffffff;
    --text: var(--accent);
    --title: var(--accent);
    --second-color: #b7b7b7;
    --invalid-color: #cc1f51;
    --valid-color: #5acdb8;
    --placeholder-color: #ffffff;
    --transition: 0.3s linear;
    --brs: 23px;
}
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: 0;
    color: var(--btn-text);
    background-color: transparent;
    text-align: center;
    cursor: pointer;
    padding: 13px 50px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    position: relative;
    border: none;
}
.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--btn-color);
    border: 1px solid transparent;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(0.97, 0.9);
    -ms-transform: translate(-50%, -50%) scale(0.97, 0.9);
    transform: translate(-50%, -50%) scale(0.97, 0.9);
}
.btn_transparent {
    color: var(--accent);
}
.btn_transparent::before {
    background-color: transparent;
    border-color: var(--border-color);
    z-index: 1;
}
.btn__icon {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}
.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}
.container-sm {
    max-width: 1180px;
    padding: 0 15px;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    .container-sm {
        padding: 0 20px;
    }
}
.container-lg {
    padding: 0;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.section {
    padding: 10px 15px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    .section {
        padding: 10px 20px;
    }
}
.section_lg {
    padding: 10px 0;
}
.main-screen {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
}
.main-screen__container {
    background-color: var(--bg-color);
    overflow: hidden;
    position: relative;
}
.main-screen__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 0;
    z-index: 3;
}
/*@media screen and (min-width: 768px) {
    .main-screen__content {
        padding: 0 15px;
    }
}*/
.main-screen__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
}
@media screen and (min-width: 768px) {
    .main-screen__top {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 40px 20px;
    }
}
.main-screen__top-text {
    color: var(--second-color);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}
.main-screen__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 26px 20px;
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .main-screen__bottom {
        padding: 40px 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.main-screen__bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(13.36%, #e4e5e2), color-stop(61.83%, rgba(228, 229, 226, 0)));
    background: linear-gradient(0, #000000 13.36%, rgba(228, 229, 226, 0) 61.83%);
    z-index: -1;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .main-screen__bottom::before {
        content: none;
    }
}
.main-screen__bottom-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.main-screen__bottom-btn {
    margin-top: 20px;
    color: #fff;
}
.main-screen__bottom-btn:before{
	border-color: #fff;
}
@media screen and (min-width: 768px) {
    .main-screen__bottom-btn {
        margin-top: 0;
    }
}
.cardLink{
	display: block;
	position: relative;
}
.cardLink:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 212px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 16%, rgba(0, 0, 0, 0) 75%);
}
.main-screen__picture {
    position: relative;
    padding-bottom: 53.33%;
    min-height: 530px;
    display: block;
    width: 100%;
    background-color: var(--bg-color);
}
.main-screen__picture-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .main-screen__picture-img {
        right: unset;
        bottom: unset;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
.main-slider {
    position: relative;
}
.main-slider__nav {
    position: absolute;
    width: 70px;
    bottom: 34px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .main-slider__nav {
        top: 50%;
        left: 0;
        width: 100%;
        bottom: unset;
        right: unset;
        padding: 0 40px;
    }
}
.main-slider__nav-btn {
    background-image: url(../img/icons/arrow.svg);
    background-size: 24px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    cursor: pointer;
    filter: invert(1);
}
.main-slider__nav-next {
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background-color: var(--white-color);
}
.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
}
.utm {
    background-color: var(--accent);
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.32px;
    padding: 7px;
}
.banner {
    position: relative;
}
.banner__container {
    background-color: var(--second-bg-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
@media screen and (min-width: 768px) {
    .banner__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.banner__container::before {
    content: "";
    background-image: url(../img/icons/logo-big.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 20%;
    width: 100%;
    padding-top: 35%;
    z-index: 2;
    pointer-events: none;
    display: none;
}
@media screen and (min-width: 768px) {
    .banner__container::before {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
.banner__picture {
    position: relative;
    padding-bottom: 75%;
    display: block;
    width: 100%;
    min-height: 369px;
}
@media screen and (min-width: 768px) {
    .banner__picture {
        padding-bottom: 43.4%;
    }
}
.banner__picture::before {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(#efefef), color-stop(50%, rgba(239, 239, 239, 0)));
    background: linear-gradient(180deg, #efefef 0, rgba(239, 239, 239, 0) 50%);
    width: 100%;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.banner__picture::after {
    content: "";
    width: 80px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: -webkit-gradient(linear, right top, left top, color-stop(44.36%, #efefef), to(rgba(239, 239, 239, 0)));
    background: linear-gradient(270deg, #efefef 44.36%, rgba(239, 239, 239, 0) 100%);
}
.banner__picture-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.banner__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .banner__content {
        width: calc(50% - 120px);
    }
}
@media screen and (min-width: 1024px) {
    .banner__content {
        margin-left: 100px;
    }
}
.banner__title {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 500;
}
.banner__title-top {
    text-transform: uppercase;
    font-weight: 500;
}
.banner__text-wrap {
    display: -ms-grid;
    display: grid;
    grid-gap: 18px;
}
@media screen and (min-width: 768px) {
    .banner__text-wrap {
        max-width: 280px;
    }
}
.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}
.breadcrumbs__item:last-child {
    pointer-events: none;
}
.breadcrumbs__item + .breadcrumbs__item {
    margin-left: 20px;
    position: relative;
}
.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 1px;
    height: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.navigation {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}
.navigation__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navigation__link {
    display: none;
}
@media screen and (min-width: 768px) {
    .navigation__link {
        display: inline-block;
    }
}
.privacy {
    padding: 40px 0 20px;
}
.privacy ol,
.privacy ul {
    margin: 12px 0 32px;
    list-style-position: inside;
}
.privacy h1,
.privacy h2 {
    margin-bottom: 32px;
    text-transform: uppercase;
    font-size: 16px;
}
.privacy h3 {
    color: var(--second-color);
    font-size: 12px;
}
.privacy h2,
.privacy h3 {
    margin: 12px 0;
}
.product-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.card {
    width: 100%;
    background-color: var(--second-bg-color);
    border: 1px solid var(--border-color);
    margin: 0 -1px -1px 0;
    overflow: hidden;
}
@media screen and (min-width: 540px) {
    .card {
        width: 50%;
    }
}
@media screen and (min-width: 768px) {
    .card {
        width: 33.33%;
    }
}
@media screen and (min-width: 1280px) {
    .card {
        width: 25%;
    }
}
.card:hover .card__img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.card:hover .card__bottom {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.card__content {
    position: relative;
}
.card__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 25px 28px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25%;
    grid-template-columns: 1fr 25%;
    grid-row-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card__icon {
    margin-left: auto;
}
.card__title {
    font-weight: 500;
    color: #fff;
}
.card__action {
    text-align: right;
}
.card__price-disc {
    color: var(--second-color);
    margin-right: 2px;
}
.card__price{
	color: #fff;
}
/*.card__price .woocommerce-Price-amount:first-child{
	text-decoration: line-through;
	color: #b7b7b7;
}*/
.card__basket{
	filter: invert(1);
}

.card__picture {
    position: relative;
}
.card__picture::before {
    content: "";
    display: block;
    padding-bottom: 150.87%;
}
.card__img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.card__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    border-top: 1px solid var(--border-color);
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px 0;
    font-weight: 500;
}
.card__bottom-size {
    display: inline-block;
}
.card__bottom-size + .card__bottom-size {
    margin-left: 10px;
}
.card__bottom-size_sold {
    color: var(--second-color);
}
.cta__content {
    padding: 70px 15px;
    border: 1px solid var(--border-color);
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.cta__title {
    text-transform: uppercase;
    font-size: 16px;
}
.cta__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.c-number {
    border: 1px solid var(--border-color);
    width: 82px;
    height: 35px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.c-number__value {
    text-align: center;
    pointer-events: none;
    border: none;
    background-color: transparent;
    width: 32px;
    padding: 0;
    font-weight: 300;
    font-size: 12px;
}
.c-number__button {
    min-width: 12px;
    height: 12px;
    background-color: transparent;
    font-size: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
.c-number__button::before {
    content: "";
    width: 8px;
    height: 1px;
    background-color: var(--text);
    display: inline-block;
}
.c-number__button_plus {
    position: relative;
}
.c-number__button_plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 8px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--text);
}
.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 20px 0;
}
.footer__content {
    text-align: center;
}
.footer__cta {
    margin-bottom: 20px;
}
.success {
    padding: 128px 0;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid var(--border-color);
}
.success__content {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.success__img {
    margin: 0 auto;
}
.success__title {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
}
.success__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    background: rgba(239, 239, 239, 0.9);
}
.modal__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.modal__content {
    max-width: 350px;
    width: 100%;
    padding: 30px;
    position: relative;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    background: var(--white-color);
    color: var(--text);
    border: 1px solid var(--border-color);
}
.modal__title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text);
    text-transform: uppercase;
}
.modal__subtitle {
    text-align: center;
    margin-bottom: 12px;
}
.modal._visible {
    opacity: 1;
    visibility: visible;
    z-index: 22;
}
.modal._visible .modal__content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.modal__form {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}
.close-btn {
    width: 12px;
    height: 12px;
    padding: 4px;
    border: none;
    background-color: transparent;
    position: absolute;
    stroke-width: 2px;
    cursor: pointer;
    top: 6px;
    right: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(../img/icons/close.svg);
}
.product {
    padding: 32px 0;
}
.product__content {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}
@media screen and (min-width: 1024px) {
    .product__content {
        -ms-grid-columns: 450px 1fr;
        grid-template-columns: 450px 1fr;
    }
}
@media screen and (min-width: 1280px) {
    .product__content {
        grid-gap: 90px;
    }
}
.product__name {
    margin-bottom: 10px;
}
.product__price-disc {
    margin-right: 10px;
    color: var(--second-color);
}
.product-slider .swiper-container {
    width: 100%;
    height: 100%;
}
.product-slider__flex {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (min-width: 1024px) {
    .product-slider__flex {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.product-slider__col {
    display: none;
}
@media screen and (min-width: 540px) {
    .product-slider__col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 100px;
        width: 100%;
        margin-right: 10px;
    }
}
.product-slider__next,
.product-slider__prev {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.product-slider__thumbs {
    height: 520px;
}
.product-slider__thumbs .swiper-slide {
    height: 120px;
    cursor: pointer;
}
.product-slider__images {
    position: relative;
    height: 480px;
}
@media screen and (min-width: 540px) {
    .product-slider__images {
        height: 520px;
    }
}
.product-slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    background-color: var(--bg-color);
}
.product-slider__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}
.product-slider__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
    font-size: 44px;
}
.product-slider__nav-btn {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    background-image: url(../img/icons/arrow.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.product-slider__nav-next {
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
}
.product-slider__nav .swiper-button-disabled {
    opacity: 0.5;
}
.product__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 34px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.product__title-sm {
    display: block;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}
.product__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}
.added_to_cart.wc-forward{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 4px;
	margin-top: 10px;
	color: rgba(22, 163, 76, 1);
	font-size: 12px;
	font-weight: 300;
}
.added_to_cart.wc-forward:Before{
	background: url(../img/danger-circle.svg) center no-repeat;
	width: 16px;
	height: 16px;
	content: "";
	display: block;
}
.product__actions .product__btn + .product__btn {
    margin-top: 16px;
}
@media screen and (min-width: 540px) {
    .product__actions {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: unset;
    }
    .product__actions .product__btn + .product__btn {
        margin-top: 0;
        margin-left: 16px;
    }
}
.product__description ul {
    list-style: none;
    margin-top: 20px;
}
.product-size__wrap {
    display: -ms-inline-grid;
    display: inline-grid;
    grid-auto-flow: column;
    grid-gap: 10px;
}
.product-size__title {
    display: block;
    margin-bottom: 12px;
}
.product-size__input {
    display: none;
}
.product-size__input:checked + .product-size__label {
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
}
.product-size__label {
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.product-size__label_sold {
    pointer-events: none;
    border: none;
    background-color: transparent;
    color: var(--second-color);
}
.form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}
.form__field {
    width: 100%;
}
.form__field_phone {
    padding-left: 42px;
}
.form__phone {
    position: relative;
}
.form__phone::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/ua.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.basket {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.basket__main {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}
@media screen and (min-width: 1024px) {
    .basket__main {
        -ms-grid-columns: 1fr 266px;
        grid-template-columns: 1fr 266px;
        grid-gap: 34px;
    }
}
.basket__content_sm .basket__card {
    -ms-grid-columns: 1fr 150px;
    grid-template-columns: 1fr 150px;
    grid-column-gap: 24px;
}
@media screen and (min-width: 540px) {
    .basket__content_sm .basket__card {
        -ms-grid-columns: 80px 1fr;
        grid-template-columns: 80px 1fr;
        grid-column-gap: 40px;
    }
}
.basket__item {
    padding: 24px 0;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .basket__item {
        padding: 40px 0;
        border-right: 1px solid var(--border-color);
    }
}
.basket__item::before {
    content: "";
    width: 100vw;
    height: 1px;
    background-color: var(--border-color);
    position: absolute;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}
@media screen and (min-width: 1024px) {
    .basket__item::before {
        right: 0;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }
}
.basket__card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 150px;
    grid-template-columns: 1fr 150px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 26px;
}
@media screen and (min-width: 540px) {
    .basket__card {
        grid-column-gap: 65px;
        -ms-grid-columns: 170px 1fr;
        grid-template-columns: 170px 1fr;
    }
}
.basket__card-title {
    font-size: 12px;
}
@media screen and (min-width: 768px) {
    .basket__card-title {
        font-size: 16px;
    }
}
.basket__card-price {
    font-weight: 400;
}
.basket__card-remove {
    background-color: transparent;
    cursor: pointer;
    border: none;
    margin-top: 22px;
}
.basket__card-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
@media screen and (min-width: 540px) {
    .basket__card-info {
        -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
        order: unset;
    }
}
.basket__order {
    max-width: 604px;
    width: 100%;
}
.basket__order-step {
    margin-bottom: 12px;
    display: block;
}
.basket__order-subtitle {
    display: block;
}
.basket__order-subtitle._full {
    margin-top: 12px;
}
.basket__order-fields {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 24px;
    margin-top: 24px;
}
.basket__order-fields .form__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
.basket__order-payments {
    margin-top: 24px;
}
.basket__order-payments .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.basket__order-payments .form__field {
    display: none;
}
.basket__order-payments .form__field:checked + .form__label {
    border-color: var(--border-color);
}
.basket__order-payments .form__field:checked + .form__label::before {
    width: 8px;
    height: 8px;
    background-color: var(--text);
    left: 22px;
}
.basket__order-payments .form__field:checked + .form__label::after {
    border-color: var(--text);
}
.basket__order-payments .form__row {
    width: 100%;
}
.basket__order-payments .form__label {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--second-color);
    position: relative;
    padding: 20px 56px 20px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 12px;
}
.basket__order-payments .form__label::after,
.basket__order-payments .form__label::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
}
.basket__order-payments .form__label::after {
    width: 12px;
    height: 12px;
    border: 1px solid var(--second-color);
    left: 20px;
}
.basket__order-payments .form__label-sm {
    font-size: 12px;
    display: block;
    margin-top: 8px;
    font-weight: 300;
}
@media screen and (min-width: 1024px) {
    .basket__side {
        padding: 24px 0 0;
    }
}
.basket__side-info {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}
.basket__side-info-delivery {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
*,
:after,
:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
[hidden] {
    display: none;
}
::-webkit-input-placeholder {
    color: var(--text);
}
::-moz-placeholder {
    color: var(--text);
}
:-ms-input-placeholder {
    color: var(--text);
}
::-ms-input-placeholder {
    color: var(--text);
}
::placeholder {
    color: var(--text);
}
::-moz-selection {
    background-color: var(--accent);
    color: #fff;
}
::selection {
    background-color: var(--accent);
    color: #fff;
}
button,
input,
textarea {
    outline: 0;
    font-family: inherit;
    color: var(--text);
    border: 1px solid var(--second-bg-color);
}
button:focus:required:invalid,
input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: var(--invalid-color);
}
button:required:valid,
input:required:valid,
textarea:required:valid {
    border-color: var(--valid-color);
}
select {
    display: none;
    color: var(--accent);
}
input {
    color: var(--accent);
    height: 40px;
    padding: 12px 16px;
    font-weight: 300;
    font-size: 12px;
}
input::-webkit-input-placeholder {
    color: var(--second-color);
}
input::-moz-placeholder {
    color: var(--second-color);
}
input:-ms-input-placeholder {
    color: var(--second-color);
}
input::-ms-input-placeholder {
    color: var(--second-color);
}
input::placeholder {
    color: var(--second-color);
}
html {
    height: 100%;
    font-size: 12px;
    font-weight: 300;
}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    position: relative;
    line-height: 1.2;
    font-family: var(--font-accent);
    background-color: var(--white-color);
    font-weight: 300;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    height: 100%;
    color: var(--text);
}
body .nice-select {
    font-weight: 300;
    color: var(--accent);
}
body .nice-select .current {
    color: var(--text);
    font-size: 12px;
    font-weight: 300;
}
body .nice-select .list .current {
    color: var(--text);
    font-weight: 500;
}
body .nice-select .list .option.disabled {
    display: none;
}
body .nice-select .option {
    font-size: 12px;
    color: var(--text);
    font-weight: 300;
}
a {
    text-decoration: none;
    display: inline-block;
    color: var(--text);
}
.link {
    position: relative;
}
.link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: calc(100% + 2px);
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
    background-color: var(--text);
}
.link:hover::before {
    width: 100%;
    height: 1px;
}
ul {
    padding-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    text-transform: uppercase;
}
.main {
    padding-top: 94px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.header__logo {
    height: 24px;
    -webkit-transition: height 0.3s linear;
    transition: height 0.3s linear;
    will-change: height;
}
.header__logo-img {
    height: 100%;
}
@media screen and (min-width: 768px) {
    .main-page .header__logo {
        height: 300px;
    }
}
.main-page .main {
    -webkit-transition: padding-top 0.3s linear;
    transition: padding-top 0.3s linear;
    padding-top: 160px;
    will-change: padding-top;
}
@media screen and (min-width: 768px) {
    .main-page .main {
        padding-top: 390px;
    }
}
.main-page.scrolled .header__logo {
    height: 18px;
}
.main-page.scrolled .main {
    padding-top: 80px;
}
img,
picture {
    max-width: 100%;
    display: block;
    height: auto;
}
.line {
    border: 1px solid var(--border-color);
    margin: 10px 0;
    text-align: center;
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: 500;
}
.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.j-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.al-i-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.fw-n {
    font-weight: 400;
}
.fw-s {
    font-weight: 500;
}
.c-sc {
    color: var(--second-color);
}
select-pure {
    --select-height: 44px;
    --select-width: 100%;
    --border-radius: 4px;
    --border-width: 1px;
    --border-color: #000;
    --padding: 0 10px;
    --dropdown-z-index: 2;
    --disabled-background-color: #bdc3c7;
    --disabled-color: #ecf0f1;
    --background-color: #fff;
    --color: #000;
    --hover-background-color: #e3e3e3;
    --hover-color: #000;
    --selected-background-color: #e3e3e3;
    --selected-color: #000;
    --dropdown-gap: 0;
    --font-size: 14px;
    --font-family: inherit;
    --font-weight: 400;
    --select-outline: 2px solid #e3e3e3;
    --dropdown-items: 4;
}

.header__basket.cart-not-empty {
  position: relative;
}

.header__basket.cart-not-empty::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  background: rgba(3, 9, 23, 1);
  border-radius: 50%;
}


@media screen and (max-width: 767px) {
	.header__logo{
		height: 25px;
	}
	.home .header__logo{
		height: 92px;
	}
	.main-page.scrolled .header__logo {
	    height: 25px;
	}
	.main-screen__picture-img{
		width: 100%;
	}
}


.product-size{
    position: relative;
}
.product-size__example{
    font-weight: 300;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #2757c9;
    position: absolute;
    top: 0;
    left: 100px;
    cursor: pointer;
}
.product-size__example:hover{
    text-decoration: none;
}
.size-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 239, 239, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.size-modal.active{
    z-index: 10;
    opacity: 1;
    visibility: visible;
}
.size-modal__content{
    position: relative;
}
.size-modal__close{
    position: absolute;
    top: 9px;
    right: 9px;
    border: none;
    background: none;
    cursor: pointer;
}
.size-modal__title{
    text-align: center;
    margin-bottom: 20px;
}
.size-modal__title b{
    display: block;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #030917;
    margin-bottom: 12px;
}
.size-modal__title span{
    display: block;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    color: #b7b7b7;
}
.size-modal__content{
    border: 1px solid #030917;
    width: 385px;
    background: #fff;
    position: relative;
    padding: 40px 20px 32px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.size-modal__table table{
    width: 100%;
    margin: 0;
    border: 1px solid #e3e3e3;
    border-collapse: collapse;
}
.size-modal__table table thead th{
    background: #f4f4f4;
    padding: 6px 6px;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    color: #000;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
.size-modal__table table thead th:last-child{
    border-right: none;
}
.size-modal__table table tbody td{
    padding: 6px 6px;
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    color: #000;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}
.size-modal__table table tbody td:last-child{
    border-right: none;
}
.size-modal__table table tbody tr:last-child td{
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .size-modal__content{
        margin: 0 10px;
    }
}