
/*
Theme Name: Карта Apple
Theme URI: https://kartaapple.ru/
Author: Леонид Колтан
Author URI: https://koltan.dev
Theme URI: https://kartaapple.ru/
Description: Карта Apple
Version: 1.0.0
Text Domain: kartaapple

/*--------------------------------------------------------------
# Нормалайз
--------------------------------------------------------------*/
html {font-family: sans-serif;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
body {margin: 0;overflow-x: hidden;}
body * {-webkit-box-sizing: border-box;box-sizing: border-box;}
article,aside,details,figcaption,figure,footer,header,menu,nav,summary {display: block;}
audio,canvas,progress,video {display: inline-block;vertical-align: baseline;}
audio:not([controls]) {display: none;height: 0;}
[hidden],template {display: none;}
a {background-color: transparent;}
a:active,a:hover {outline: none;}
abbr[title] {border-bottom: 1px dotted;}
b,strong {font-weight: bold;}
dfn {font-style: italic;}
h1 {font-size: 2em;margin: 0.67em 0;}
mark {background: #ff0;color: #000;}
small {font-size: 80%;}
sub,sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
img {border: 0;object-fit: cover;-o-object-fit: cover;width: 100%;height: 100%;}
svg:not(:root) {overflow: hidden;}
figure {margin: 1em 40px;}
hr {-webkit-box-sizing: content-box;box-sizing: content-box;height: 0;}
pre {overflow: auto;}
code,kbd,pre,samp {font-family: monospace, monospace;font-size: 1em;}
button,input,optgroup,select,textarea {color: inherit;font: inherit;margin: 0; font-family: "Inter", sans-serif !important;}
button {overflow: visible;}
button,select {text-transform: none;}
button,html input[type="button"],input[type="reset"],input[type="submit"] {-webkit-appearance: button;cursor: pointer;}
button[disabled],html input[disabled] {cursor: default;}
button::-moz-focus-inner,input::-moz-focus-inner {border: 0;padding: 0;}
input {line-height: normal;}
input[type="checkbox"],input[type="radio"] {-webkit-box-sizing: border-box;box-sizing: border-box;padding: 0;}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {height: auto;}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}
fieldset {border: 1px solid #c0c0c0;margin: 0 2px;padding: 0.35em 0.625em 0.75em;}
legend {border: 0;padding: 0;}
textarea {overflow: auto;}
optgroup {font-weight: bold;}
table {border-collapse: collapse;border-spacing: 0;}
td,th {padding: 0;}


/*общие*/
:root {
--color-blue: #45ADF8;
--color-black: #212121;
--color-gray: rgba(33, 33, 33, 0.6);
scroll-behavior: smooth;
}

.entry-content p {
    line-height: 1.6;
}

header.entry-header {
    margin: 30px 0;
}

.wrapper {
    max-width: 1190px !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
}

a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

body * {
    font-family: 'Inter', sans-serif;
    color: var(--color-black);
}

section {
    margin-bottom: 80px;
}

.section-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(33, 33, 33, 0.4);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 106.52%;
    color: var(--color-black);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 30px;
}

.section-title span {
    display: block;
    color: var(--color-blue);
    font-style: italic;
    font-weight: 700;
}

*[id]:before {
    display: block;
    content: " ";
    margin-top: -30px;
    height: 30px;
    visibility: hidden;
}

.desktop-hidden {
    display: none !important;
}

.mobile-hidden {
    display: block;
}

/*страницы*/
.entry-content p + p {
    margin-top: 20px;
}

.entry-main {
    margin-bottom: 30px;
}

.page {
    margin: 50px auto;
}

.entry-title {
    font-size: 32px;
}

.success-screen__title {
    text-align: center;
}

section.success-screen .share-post {
    justify-content: center;
}

.back-to-home {
    margin-top: 30px;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
}


.success-screen  .share-post span {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0em;
    margin-top: 15px;
    text-align: left;
    margin-right: 40px;
    color: #212121 !important;
}

section.success-screen .share-post svg {
    width: 36px;
    height: 36px;
}

/*супер классы*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.align-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.flex-1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.flex-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/*кнопки*/
.section-bottom {
    margin-top: 40px;
    text-align: center;
}

.link-button {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    background: var(--color-blue);
    border-radius: 10px;
    padding: 15px 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.link-button:hover {
    background: #3b90cd;
}

.main-button {
    background: #45ADF8 !important;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-button:hover {
    background: #3b90cd !important;
}

.mes-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #fff;
}

a.mes-button span {
    color: #fff;
}

.mes-button--wa {
    background: #48C95F;
}


.mes-button--tg {
    background: #45ADF8;
}

.mes-button--wa:hover {
    background: #359946;
}


.mes-button--tg:hover {
    background: #3b90cd;
}

/* попап */
.popup, .popup--exit {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: auto;
}

.popup__close {
    position: fixed;
    top: 30px;
    right: 0;
    width: 32px;
    height: 32px;
    z-index: 99;
    cursor: pointer;
}

.popup__overlay {
    background: #010510d6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup__box {
    background-color: #F5F5F5;
    border-radius: 25px;
    overflow: hidden;
    background-repeat: no-repeat;
    padding: 15px 25px;
    max-width: 500px;
    margin: auto;
    top: 50%;
    position: relative;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.popup-open .popup, .popup-open--exit .popup--exit {
    display: block;
    opacity: 1;
    -webkit-animation: fadeInFromNone .3s ease-in-out;
    animation: fadeInFromNone .3s ease-in-out;
}


@-webkit-keyframes fadeInFromNone {
    0% {
      display: none;
      opacity: 0;
    }

    1% {
      display: block;
      opacity: 0;
    }

    100% {
      display: block;
      opacity: 1;
    }
  }

  @keyframes fadeInFromNone {
    0% {
      display: none;
      opacity: 0;
    }

    1% {
      display: block;
      opacity: 0;
    }

    100% {
      display: block;
      opacity: 1;
    }
  }

/* кнопка в статьях для вызова попапа*/
.entry-btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    background: var(--color-blue);
    border-radius: 10px;
    padding: 20px 45px;
    -webkit-transition: filter .3s;
    -o-transition: filter .3s;
    transition: filter .3s;
    margin: 25px 0;
    display: block;
}

.entry-btn.center {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

a.entry-btn.left {
    width: fit-content;
}

.entry-btn:hover {
    filter: hue-rotate(35deg);
}

.popup__content .calc-cart__left {
    flex: unset;
    padding-right: 0;
}

/* форма в окне*/
.popup__content p.dropdown__title {
    color: #757575;
    border: 1px solid rgb(168, 168, 168);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 14px !important;
    font-weight: 500 !important;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    margin-bottom: -45px !important;
    display: flex !important;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    position: relative;
}

.popup__content .calc-cart__nominals p.mobile-hidden {
    display: none;
}

.popup__content .calc-nominals__items.dropdown__content {
    width: calc(100% + 20px);
    padding: 5px 30px;
    margin: 0 -15px;
}

.popup__content .dropdown--show .calc-nominals__items.dropdown__content {
    opacity: 1;
    z-index: 99;
    margin-top: 50px;
}

.popup__content span.nominal {
    width: calc(30% - 37px) !important;
}

.popup__content .calc-nominals__items.dropdown__content {
    position: absolute;
    opacity: 0;
    z-index: -1;
    background: #F5F5F5;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.popup__content .dropdown__title:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_51_106' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='14' height='14'%3E%3Crect y='14' width='14' height='14' transform='rotate(-90 0 14)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_51_106)'%3E%3Cpath d='M12.4249 4.49163L6.99995 9.91663L1.57495 4.49163L2.18745 3.86454L6.99995 8.67704L11.8125 3.86454L12.4249 4.49163Z' fill='%23757575'/%3E%3C/g%3E%3C/svg%3E%0A");
    width: 14px;
    height: 14px;
    right: 0;
    top: auto;
    position: absolute;
    margin-right: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.popup__content .dropdown--show p.dropdown__title:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.popup__content .calc-cart__left .section-title {
    font-size: 20px !important;
}

.popup__content .calc-cart__left .section-subtitle {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 0 !important;
}

.popup__content .calc-cart__nominals {
    margin-top: 10px;
    margin-bottom: 30px;
}

.popup__content .t-input, .popup__content p.dropdown__title {
    font-size: 13px;
    height: 48px;
}

.popup__content .calc-cart__left .submit_btn {
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px !important;
    margin-top: 0 !important;
    padding: 12px !important;
    min-width: unset !important;
    height: unset !important;
    width: 100% !important;
}

.popup__content span.wpcf7-spinner {
    display: none;
}

.popup__content .promocod {
    margin-top: 15px;
}

.popup__content .promocod button {
    font-size: 13px;
}

.popup__content span.input-desc.attent {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1;
}

.popup__content .promocod .promocod_info {
    font-size: 12px;
    margin-top: 5px;
}

.popup__content .nominals__button {
    width: 86% !important;
    text-align: center;
}

/*попап по уходу*/
.popup-exit .popup__content.popup-content {
    display: flex;
    align-items: unset;
}

.popup-exit .popup__box {
    max-width: 800px;
    background-color: #fff;
    padding: 0;
}

.popup-exit .popup__content > div {
    flex: 1;
}

.popup-exit .section-subtitle {
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    text-transform: inherit;
    margin-bottom: 30px;
    color: var(--color-black);
}

.popup-exit .popup-content__right {
    /* background-image: url(../../../../../../themes/applecard/images/logoapple.svg)!important; */
    background-repeat: no-repeat!important;
    background-size: contain !important;
    background-position: right!important;
    background: #45ADF8;
    background-image: url(./images/logoapple--e.svg), linear-gradient(to right, #FFFFFF, #46ADF8);
    border-radius: 0px!important;
    border: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    overflow: hidden;
    position: relative;
    padding: 30px;
}

.popup-exit__desc {
    color: rgba(33,33,33,.4);
    margin-bottom: 20px;
}

.popup-exit__desc span {
    color: var(--color-blue);
}


.popup-exit .popup-content__left {
    padding: 50px;
}

/* магазин */
.product .wrapper-post {
    max-width: 1190px !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
}

.woocommerce-product-details__short-description {
    display: none;
}



a.back-to-products {
    color: rgba(33, 33, 33, 0.7);
}

.products__info-desc {
    font-size: 24px;
}

.products__info {
    margin-top: 40px;
    gap: 30px;
}

.products__info a.link-button {
    line-height: 1;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: none;
}

.products__info a.link-button svg {
    flex: none;
}

form.cart {
    display: none;
}

.product_meta {
    display: none;
}

.product .entry-meta {
    display: none;
}

span.woocommerce-Price-amount.amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.woocommerce-product-details__short-description p {
    font-size: 20px;
}

a.button.wp-element-button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    display: none;
}

ul.tabs.wc-tabs {
    display: none;
}

div#tab-description h2, div#tab-description p:first-child {
    display: none;
}

div#tab-description * + * {
    margin-top: 15px;
}

section.related.products {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

section.related.products h2 {
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin-top: 20px;
}

.btn_cart {
    margin: 25px 0;
}

.btn_cart a {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    background: var(--color-blue);
    border-radius: 10px;
    padding: 15px 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn_cart a:hover {
	    background: #3b90cd;
}

.woocommerce-page div.product div.images {
    width: 35%;
}

.woocommerce-page div.product div.summary {
    width: 61%;
}

.woocommerce-Tabs-panel--description li {
    color: rgba(33, 33, 33, 0.7);
    margin-top: 5px !important;
}

.woocommerce-Tabs-panel--description ul li::marker {
    color: var(--color-blue);
}

.woocommerce-Tabs-panel--description ul, .woocommerce-Tabs-panel--description ol {
    margin-top: 10px !important;
}

h2.woocommerce-loop-product__title {
    font-weight: 500;
}

section.related.products .amount {
    font-size: 20px;
}

.entry-summary span.woocommerce-Price-amount.amount:before {
    content: "Цена ";
    font-weight: 400;
    font-size: 25px;
}

/*страницы формы и редиректа*/
.post-680 .wrapper {
    max-width: 730px !important;
}

.post-680 .entry-title {
    display: none;
}

/* кнопка - ссылка в номиналах */
.nominals__button {
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background-color: #2b6a97;
    padding: 8px 35px;
    white-space: nowrap;
    color: #fff;
    transition: .3s;
    display: inline-block;
}

.nominals__button:hover {
    background-color: #1e4e72;
}


/* шапка */
.header__inner {
    padding: 25px 15px;
}

.header__button .mes-button {
    padding: 8px 30px;
}

.header__logo {
    width: 150px;
}

.header__desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(33, 33, 33, 0.4);
    border-left: 1px solid rgba(33, 33, 33, 0.2);
    padding-left: 20px;
}

.header__logo img {
    width: 120px;
    /* padding-right: 20px; */
}

.header__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
}

.header__menu a {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    margin-right: 0 !important;
}

.header__menu ul li + li {
    margin-left: 30px;
}

/*первый экран*/
.calc-cart__left .section-title {
    font-weight: 600;
    font-size: 24px !important;
    line-height: 120% !important;
    color: var(--color-black);
    text-align: left;
    margin-bottom: 0;
    text-transform: inherit;
}

.calc-cart__left .section-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: left;
    text-transform: inherit;
    color: var(--color-gray);
}

.calc-cart .share-post {
    margin: 30px 0 0;
}

.nominal.active-nominal {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background: var(--color-blue) !important;
    color: #fff;
}

.calc-cart__left .submit_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 50px;
    background: #45ADF8;
    border-radius: 6px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    -webkit-box-shadow: none;
            box-shadow: none;
    min-width: 335px;
}

/* поле промокод*/
.promocod {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

#er_d div {
	color: red;
	font-weight: bold;
	margin-top: 20px;
}

.promocod .i_p, .promocod .promocod_info {

}

.promocod .promocod_info {
    font-size: 14px;
    margin-top: 8px;
}

.promocod .promocod_info .er {
    color: red;
    font-weight: 500;
}


.promocod .promocod_info .er_u {
    color: green;
    font-weight: 500;
}

.promocod input {
    margin-bottom: 0;
}

.promocod button {
    border: none;
    border-radius: 6px;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 0;
    background: #45ADF8 !important;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #fff;
    padding: 0 20px;
}


.promocod button:hover {
    background: #3b90cd !important
}

.form-btns {
    margin-top: 0px !important;
    position: relative;
}



.nominal {
    color: #a8a8a8;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background-color: #eeeeee;
    padding: 10px 0;
    white-space: pre;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 92px;
    text-align: center;
}

.t-input {
	color: #000000;
  border: 1px solid #000000;
	margin-bottom: 15px;
}


.t-input {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(168, 168, 168);
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    height: 56px;
}

.t-input::-webkit-input-placeholder {
   font-weight: 500;
}

.t-input::-moz-placeholder {
   font-weight: 500;
}

.t-input:-ms-input-placeholder {
   font-weight: 500;
}

.t-input::-ms-input-placeholder {
   font-weight: 500;
}

.t-input::placeholder {
   font-weight: 500;
}

.t-input::-webkit-input-placeholder {
    font-weight: 500;
}
.t-input:-moz-placeholder {
   font-weight: 500;
}
.t-input::-moz-placeholder {
   font-weight: 500;
}
.t-input:-ms-input-placeholder {
   font-weight: 500;
}
.t-input::-ms-input-placeholder {
   font-weight: 500;
}

.promocod .i_p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
}

span.input-desc.attent {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #E32020;
}

.home-page.calc-cart__right {
    background-image: url(./images/logoapple.svg) !important;
    background-repeat: no-repeat !important;
    background-size: 445px 517px!important;
    background-position: bottom !important;
    background: #45ADF8;
    border-radius: 20px !important;
    border: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    overflow: hidden;
    position: relative;
    padding: 30px;
}


.calc-cart__img {
    width: 31px;
    height: 36px;
}

.home-page.calc-cart__right .calc-cart__titlebox .calc-cart__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    margin-top: 20px;
}

.home-page.calc-cart__right .calc-cart__title {
    color: #fff;
    text-align: left;
    margin-top: 20px;
}

.home-page.calc-cart__right .calc-cart__title span {
    font-size: 32px;
    color: #fff;
}

.home-page.calc-cart__right .calc-cart__title span:first-child, .home-page.calc-cart__right .calc-cart__title span:last-child {
    font-size: 55px;
}

.home-page.calc-cart__right .calc-cart__title span:last-child {
    margin-left: 15%;
}

.home-page.calc-cart__right .calc-cart__title span.nth-2 {
    margin-left: 20%;
}

.home-page.calc-cart__right .calc-cart__title br {
    content: '';
    margin-top: -25px;
    display: block;
}

.home-page.calc-cart__right .calc-cart__bigsum {
    background: none;
    color: #fff;
    margin-top: 110px;
    position: static;
}

.calc-cart__bigsum * {
    color: #fff;
}

.home-page.calc-cart__right .nominal-text {
    font-weight: 600;
    font-size: 86px;
    line-height: 100%;
}

.home-page.calc-cart__right .nominal-text__desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}

.home-page.calc-cart__right:before {
    display: none;
}

.home-page.calc-cart__right .nominal-text__desc {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    margin-bottom: 30px;
}

.calc-cart {
    border-radius: 0 0 40px 40px;
    padding-bottom: 26px;
    position: relative;
    margin-bottom: 0;
    background: #fff;
    z-index: 2;
}

.calc-img {
    position: absolute;
    z-index: 9;
}

.calc-img.calc-img--4 {
    width: 164.32px;
    height: 202.09px;
    top: 160px;
    left: 0;
}

.calc-img.calc-img--1 {
    width: 96.94px;
    height: 119.36px;
    right: 0;
    top: 50px;
}

.calc-img.calc-img--2 {
    width: 95.22px;
    height: 116.57px;
    bottom: 0;
    right: 20px;
}

.calc-img.calc-img--3 {
    width: 38.53px;
    height: 47.32px;
    top: 0;
    right: 42%;
}

.calc-cart__inner {
    position: relative;
}

p.danger-text {
    text-align: center;
    font-size: 35px;
    max-width: 800px;
    margin: auto;
}

p.danger-text svg {
    width: 40px;
    height: 40px;
}

p.danger-text .mes-button--tg {
    width: fit-content;
    margin: 30px auto 0;
    /* padding: 0; */
}

p.danger-text .mes-button--tg span{
    font-size: 20px;
    margin-right: 8px;
}

@media(max-width: 992px) {
    .home-page.calc-cart__right {
        display: none;
    }
}

@media(max-width: 767px) {
    p.danger-text {
        font-size: 20px;
    }
}

/*второй экран*/
.func-screen__content {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
}

.func-content__desc a {
    color: #fff;
    border-bottom: 1px solid #fff;
    transition: .35s;
}

.func-content__desc a:hover {
    border-bottom: none;
}

.func-screen {
    background-color: var(--color-blue);
    padding-top: 120px;
    padding-bottom: 80px;
    margin-top: -40px;
    z-index: 1;
    position: relative;
}

.func-content__item {
    text-align: center;
    padding: 70px 30px;
    position: relative;
}

.func-content__imgwrap {
    background: #fff;
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.func-content__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px;
}

p.func-content__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.8);
}

.func-content__item:not(:last-child):before {
    content: '';
    position: absolute;
    background: var(--color-blue);
    width: 20px;
    height: 110%;
    right: -5px;
    top: -5%;
}

.func-content__item:not(:last-child):after {
    content: '';
    background: rgba(255, 255, 255, 0.8);
    width: 1px;
    display: block;
    position: absolute;
    right: 4px;
    height: 90%;
    top: 5%;
}

/*третий экран*/
.manreg-screen__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.manreg__item {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
}

.manreg-item__num {
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: #F9F9F9;
    -webkit-text-stroke: 1px var(--color-blue);
    margin-bottom: 60px;
}

.manreg-item__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 24px;
    margin-bottom: 20px;
}

.manreg-item__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--color-gray);
    max-width: 80%;
}

/*четвертый экран*/

.manact-screen__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.manact__item {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
}

.manact-item__num {
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: #F9F9F9;
    -webkit-text-stroke: 1px var(--color-blue);
    margin-bottom: 60px;
}

.manact-item__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 28px;
    margin-bottom: 20px;
}

.manact-item__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--color-gray);
    max-width: 80%;
}

.tab-trigger {
    border: 1px solid rgba(33, 33, 33, 0.3);
    border-radius: 10px;
    padding: 10px 35px;
    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;
    gap: 15px;
    cursor: pointer;
    width: 170px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.tab-trigger span {
    color: rgba(33, 33, 33, 0.3);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.tab-trigger svg path,  .tab-trigger svg rect {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.tab-triggers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.tab-content {
    display: none;
}

.tab-content.tab-content--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tab-trigger.tab-trigger--active {
    border-color: var(--color-blue);
}

.tab-trigger.tab-trigger--active span {
    color: var(--color-blue);
}

.tab-trigger.tab-trigger--active.tab-trigger--mac svg path {
    stroke: var(--color-blue);
    stroke-opacity: 1;
}

.tab-trigger.tab-trigger--iphone.tab-trigger--active svg rect {
    stroke: var(--color-blue);
    stroke-opacity: 1;
}

/*пятый экран*/
.accordion__item {
    padding: 0;
}

.accordion__item:last-child {
    border-bottom: 1px solid rgba(33, 33, 33, 0.2);
    padding: 0;
}


.accordion__content {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.2s ease-out;
    -o-transition: height 0.2s ease-out;
    transition: height 0.2s ease-out;
}

.accordion__item--show .accordion__content {
    height: 100px;
}

.accordion__title span {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}

.accordion__title {
    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;
    padding: 30px 0;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-top: 1px solid rgba(33, 33, 33, 0.2);
}

.accordion__title:hover {
    opacity: .75;
}

.accordion__title svg {
    width: 25px;
    height: 25px;
}

.accordion__item--show .accordion__title svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}

.accordion__content p {
    color: var(--color-gray);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    max-width: 70%;
}

.callback__item.callback-item .mes-button {
    padding: 50px 0;
    border-radius: 0;
}

.callback-screen {
    margin-bottom: 0;
}

.section-top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.section-top__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-gray);
}

.section-top {
    margin-bottom: 30px;
}

.section-top .section-title {
    margin-bottom: 0;
}


/*footer*/
.footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-logo.header__logo {
    width: auto;
}

.footer-logo img {
    width: 100px;
    -o-object-fit: contain;
       object-fit: contain;
}

.footer__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(33, 33, 33, 0.7);
    margin-top: 30px;
}

.footer__menu ul {
    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 !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
}

.footer__menu ul li + li {
    margin-left: 0;
    margin-top: 20px;
}

.footer__menu a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-black);
}

.footer__link {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 140%;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    color: rgba(33, 33, 33, 0.7);
}

.footer__text u {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(33, 33, 33, 0.7);
}

.footer__bottom {
    margin-top: 50px;
    padding: 15px 0;
}

.footer__bottom * {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: rgba(33, 33, 33, 0.4);
    margin-bottom: 0;
    margin-top: 0;
}

a.footer__link--totop svg {
    margin-left: 5px;
}

.footer__links {
    margin-top: 50px;
}

.footer__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
}

.footer__col.footer__col--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
}

.footer__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(33, 33, 33, 0.4);
    margin-bottom: 20px;
}

.footer input.wpcf7-form-control.has-spinner.wpcf7-submit.t-submit.main-button {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(33, 33, 33, 0.4);
    margin-bottom: 20px;
    border-radius: 6px;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 0;
    width: 100%;
}

.footer {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 20px 20px 0 0;
    padding-top: 45px;
}

.footer__col .wpcf7-spinner {
    top: -62px;
    position: relative;
}

.footer__col .wpcf7-response-output {
    display: inherit;
    margin-top: -30px !important;
    margin-bottom: 15px !important;
}

/*статьи*/
.wrapper-post {
    max-width: 730px;
    margin: 0 auto;
    padding: 0 15px;
}

body.single article h2, body.single article h3, body.single article h4, body.single article h5 {
    margin: 30px 0 20px;
}

.entry-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
}

.entry-excerpt {
    max-width: 65%;
}

.entry-excerpt p {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: rgba(33, 33, 33, 0.8);
}

.entry-image {
    margin: 30px 0 30px 0;
}

.entry-content {
    margin-bottom: 60px;
}

.share-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.share-post span {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: rgba(33, 33, 33, 0.5);
}

.share-post a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.share-post a:hover {
    opacity: .85;
}

.entry-content p, .entry-content li {
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    color: rgba(33, 33, 33, 0.7);
}


/*слайдер товаров*/
.woocommerce.product-slider ul.products li.product {
    width: unset;
    margin: 5px;
}

.woocommerce.product-slider ul.products li.first, .woocommerce-page ul.products li.first {
    clear: none;
}

.product-slider .product {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    padding: 30px;
    -webkit-box-flex: 0;
    padding: 10px !important;
}

.product-slider__btn {
    font-size: 14px;
    box-shadow: none;
    border-radius: 10px;
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 12px 10px;
    display: block;
}

.product-slider h2.woocommerce-loop-product__title {
    font-size: 14px !important;
        text-align: center;
}

.woocommerce.product-slider ul.products li.product a img {
    margin-bottom: 5px;
}

.product-slider span.woocommerce-Price-amount.amount {
    font-size: 20px;
    margin: 5px 0 10px;
    text-align: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn.slider-btn--next {
    right: -20px;
}

.slider-btn.slider-btn--prev {
    left: -20px;
}

.slider-btn:hover {
    background: #45adf8;
    border-color: #45adf8;
}

.slider-btn:hover svg path {
    fill: #fff;
}

.slider-btn svg path {
        transition: .35s;
}

.slider-btn {
    border: 2px solid #fff;
    border-radius: 9999px;
    width: 50px;
    height: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: .35s;
    background: #fff;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 15%);
}

.slider-wrapper {
    position: relative;
}

.slider-btn.slick-disabled {
    transition: .35s;
    opacity: 0;
}

.related.products .product-slider__btn {
    display: none;
}

h2.slider-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.products-screen {
    margin-top: 30px;
}

.slider-wrapper.slider-usd {
    margin-top: 30px;
}

.slider-wrapper.slider-tl {
    margin-top: 30px;
}


/*страница b2b*/
.hero-b2b__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 80px 50px;
}

.hero-b2b__left {
    padding-right: 50px;
}

.hero-b2b h1 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 40px;
}

.hero-b2b__left p {
    font-size: 24px;
}

.func-screen--b2b .func-screen__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.func-screen--b2b h2 {
    font-weight: 900;
    color: #fff;
    font-style: italic;
}

.func-screen--b2b .func-content__item:not(:nth-child(even)):after {
    content: '';
    background: rgba(255, 255, 255, 0.8);
    width: 1px;
    display: block;
    position: absolute;
    right: 4px;
    height: 90%;
    top: 5%;
}

.func-screen--b2b .func-content__item:not(:nth-child(even)):before {
    content: '';
    position: absolute;
    background: var(--color-blue);
    width: 20px;
    height: 110%;
    right: -5px;
    top: -5%;
}

.func-content__item:nth-child(2):after, .func-content__item:nth-child(2):before {
    display: none;
}

.func-content__item:nth-child(1), .func-content__item:nth-child(2) {
    border-bottom: 1px solid #fff;
}

.func-screen--b2b .func-content__title {
    font-size: 26px;
    font-weight: 400;
}

.func-screen--b2b .func-content__imgwrap {
    width: 120px;
    height: auto;
    padding: 15px;
    aspect-ratio: 1 / 1;
}

.manreg--b2b .manreg__item--empty {
    border: none;
    background: unset;
}

.manreg--b2b .manreg-item__title {
    font-size: 26px;
}

.manreg--b2b .manreg-item__num {
    margin-bottom: 40px;
}

.email-us__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
}

.email-us  input.wpcf7-form-control.has-spinner.wpcf7-submit.t-submit.main-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px;
    background: #45ADF8;
    border-radius: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    margin: 0;
}

.email-us h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 900;
}

.email-us {
    background: #F5F5F5;
    padding: 80px 0;
}

.email-us .wpcf7-spinner {
    top: -41px;
}

.email-us .wpcf7-not-valid {
    background: rgb(255, 255, 255) !important;
}

.email-us .wpcf7-not-valid::placeholder {
    color: red;
}

.t-input input.wpforms-field-large[type=text] {
    color: rgb(0, 0, 0) !important;
    border: 1px solid rgb(168, 168, 168) !important;
    background-color: rgb(255, 255, 255) !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 56px !important;
}

.wpforms-container .wpforms-field {
    padding: 7px 0 !important;
    position: relative;
}

div.wpforms-container-full button[type=submit] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px;
    height: 52px !important;
    background: #45ADF8;
    border-radius: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    margin: 0;
    transition: .35s !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    margin-top: 0 !important;
    padding-top: 7px !important;
}

a.giftcard {
    width: fit-content !important;
    padding: 9px 12px !important;
        position: relative;
}

.popup a.giftcard {
    margin-top: 15px;
}

a.giftcard:before {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    right: -15px;
    top: -15px;
    display: block;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 800 800' style='enable-background:new 0 0 800 800;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2345ADF8;%7D .st1%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M725.9,380.8l65-56.5l-79.3-20.8l55-57.9l-92.8-6.5l32.4-64.5l-86.9,14.2L635,88.4l-77.7,43.8L557,27.1 l-77.9,59.1L453.1,0l-54.9,76.9L354.2,7l-30.4,82.3l-55.8-54l-9.3,80.8l-65.3-42.1l8.3,78.3L93.4,125.6l39.5,90.5l-92.2,0.8 L99.3,292L13,313.9l74.5,58.9L9.1,414.4l89.2,40.8l-66.2,59l75,14.8l-33.3,61.3l76-10L122,668.5l83.7-30.3l-6.2,94.8l0,0.3l0,0v0 l0.3-0.2l75.2-39.6l14.7,84l64.2-69.8l42.8,92.3l47.9-91.4l40.3,47.9l17.4-78.8l74.3,53.1l-2.1-62l77.9,30l-15-87.7l84.4,11.9 l-49.4-87.6l94.2-21.2l-67.6-62.5l91.8-30L725.9,380.8z M313.7,576.4c51.4-185.8,0,0,51.4-185.8c-31.8-12.8-54.2-44-54.2-80.4 c0-47.8,38.8-86.6,86.6-86.6c47.9,0,86.6,38.8,86.6,86.6c0,32.6-18,60.9-44.6,75.7C489,576.4,489,576.4,489,576.4 S320.2,576.4,313.7,576.4z'/%3E%3C/g%3E%3Crect x='239.6' y='186.1' class='st0' width='360' height='447'/%3E%3Cg%3E%3Cpath class='st1' d='M305.2,508.2l-36.7,9.6l-80.7-69.7l-0.9,0.2l22.2,85l-43.9,11.5L122.9,383l37.3-9.8l79.7,69.7l1.3-0.3 L219,357.9l43.9-11.5L305.2,508.2z'/%3E%3Cpath class='st1' d='M283.8,340.9l116.6-30.5l9.3,35.4l-72.7,19l7.3,27.8l66.7-17.4l9.3,35.4L353.5,428l7.3,27.8l72.4-18.9 l9.3,35.4l-116.3,30.4L283.8,340.9z'/%3E%3Cpath class='st1' d='M415.5,306.4l49-12.8l48.2,93.8l1.3-0.3l0.2-106.4l38.6-10.1l52.4,93l1.3-0.3l-4-105.7l49-12.8l-5.4,174.3 l-42,11l-51.1-83.2l-1.3,0.3l-3.9,97.6l-42,11L415.5,306.4z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
}

@media(max-width: 768px) {
    .hero-b2b {
        background: #f5f5f5;
        border-radius: 0 0 30px 30px;
    }
    
a.giftcard:before {
    width: 30px;
    height: 30px;
    right: -15px;
    top: -15px;
}

    .hero-b2b h1 {
        text-align: center;
        font-weight: 500;
        font-size: 28px;
        margin-bottom: 15px;
    }
    .hero-b2b__left {
        padding-right: 0;
    }
    .hero-b2b__inner {
        grid-template-columns: 1fr;
        padding: 30px 15px;
    }
    .hero-b2b__left p {
        font-size: 16px;
        text-align: center;
    }
    .func-screen--b2b .func-screen__content {
        grid-template-columns: 1fr;
    }
    
    .func-screen--b2b .func-content__item:before, .func-screen--b2b .func-content__item:after {
        display: none !important;
    }
    
    .func-content__item:not(:last-child) {
        border-bottom: 1px solid #fff;
    }
    
    .func-screen--b2b {
        z-index: -1;
        margin-top: -150px;
    }
    
    .email-us h2 {
        font-size: 24px;
    }
    
    .email-us__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
}





@media(max-width: 768px) {
    .footer__menu.header__menu {
        padding-right: 0;
    }

    h2.slider-title {
        font-size: 20px;
    }

    .woocommerce.product-slider ul.products[class*=columns-] li.product:nth-child(2n), .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
        float: left;
        clear: none!important;
    }

    .woocommerce.product-slider ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        clear: none!important;
    }

    .woocommerce.product-slider li.product {
        min-height: unset;
    }

    .slider-btn.slider-btn--next {
        right: -10px;
    }

    .slider-btn.slider-btn--prev {
        left: -10px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .product-slider .post-522  h2.woocommerce-loop-product__title {
        max-width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media(min-width: 1024px) {
    .slider-wrapper.slider-usd .slick-track {
        margin-left: unset !important;
    }

    .slider-wrapper.slider-tl .slick-track {
        margin-left: unset !important;
    }
}

/*responsive*/

@media(max-width: 992px) {
    p.header__desc.mobile-hidden {
        display: none;
    }

    .header__button.flex.gap-15.mobile-hidden {
        display: none;
    }
}


@media(max-width: 767px) {

    ul.products.columns-4 li:nth-child(2n+1) {
        margin-right: .7em !important;
    }

.tab_valuta span, .tab_valuta a {
    margin-bottom: 10px;
    font-size: 15px !important;
}


    .flex-column-mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .success-screen .share-post span {
        margin-right: 0;
    }

    .success-screen .share-post span br {
       display: none;
    }

    /*шапка*/
       /*шапка*/
       .mobile-hidden {
        display: none;
    }

    .desktop-hidden {
        display: block !important;
    }

    .header__burger-box.home-page {
        background: var(--color-blue);
        width: 40px;
        height: 40px;
        border-radius: 999999px;
        margin-left: 30px;
        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;
        position: relative;
        z-index: 999;
    }

    .home-page .header__burger {
        position: relative;
        width: 24px;
        height: 1px;
        z-index: 9999999;
        background: none !important;
        border-radius: 0;
        -webkit-transition: -webkit-transform .15s ease;
        transition: -webkit-transform .15s ease;
        -o-transition: transform .15s ease;
        transition: transform .15s ease;
        transition: transform .15s ease, -webkit-transform .15s ease;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition-delay: .15s;
        -o-transition-delay: .15s;
        transition-delay: .15s;
        -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
        -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
        transition-timing-function: cubic-bezier(.55,.055,.675,.19);
        -webkit-transition-duration: .15s;
        -o-transition-duration: .15s;
        transition-duration: .15s;
    }

    .home-page .header__burger:before {
        content: "";
        display: block;
        top: -4px;
        position: absolute;
        width: 24px;
        height: 3px;
        background-color: #fff;
        border-radius: 0;
        -webkit-transition: -webkit-transform .15s ease;
        transition: -webkit-transform .15s ease;
        -o-transition: transform .15s ease;
        transition: transform .15s ease;
        transition: transform .15s ease, -webkit-transform .15s ease;
        -webkit-transition: top .3s cubic-bezier(.33333,.66667,.66667,1) .3s,opacity .1s linear;
        -o-transition: top .3s cubic-bezier(.33333,.66667,.66667,1) .3s,opacity .1s linear;
        transition: top .3s cubic-bezier(.33333,.66667,.66667,1) .3s,opacity .1s linear;
    }

    .home-page .header__burger:after {
        content: "";
        display: block;
        top: 2px;
        position: absolute;
        width: 24px;
        height: 3px;
        background-color: #fff;
        border-radius: 0;
        -webkit-transition: -webkit-transform .15s ease;
        transition: -webkit-transform .15s ease;
        -o-transition: transform .15s ease;
        transition: transform .15s ease;
        transition: transform .15s ease, -webkit-transform .15s ease;
        -webkit-transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .3s,-webkit-transform .15s cubic-bezier(.55,.055,.675,.19),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19);
        transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .3s,transform .15s cubic-bezier(.55,.055,.675,.19),-webkit-transform .15s cubic-bezier(.55,.055,.675,.19);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .home-page .header__burger:before {
        top: 0;
        opacity: 1;
        -webkit-transition: top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .27s;
        -o-transition: top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .27s;
        transition: top .3s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .27s;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }

    body.menu-open .home-page .header__burger:after {
        top: 0;
        -webkit-transition: top .12s cubic-bezier(.33333,0,.66667,.33333) .18s,-webkit-transform .15s cubic-bezier(.215,.61,.355,1) .42s,-webkit-transform .15s cubic-bezier(.215,.61,.355,1) .42s;
        transition: top .12s cubic-bezier(.33333,0,.66667,.33333) .18s,transform .15s cubic-bezier(.215,.61,.355,1) .42s,-webkit-transform .15s cubic-bezier(.215,.61,.355,1) .42s;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    .header__menu {
        opacity: 0;
        height: 100%;
        width: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        -webkit-transform: translateY(-200%);
            -ms-transform: translateY(-200%);
                transform: translateY(-200%);
        position: absolute;
        top: 16%;
        left: 0;
        background: #00000000;
        padding: 30px 0 50px;
        z-index: 99;
        -webkit-box-shadow: 0px 3px 4px 2px #00000014;
        box-shadow: 0px 3px 4px 2px #00000014;
        width: 100%;
        z-index: -1;
    }

    .header__menu {
        background-color: var(--color-blue);
        top: 150px;
        padding: 0 0 70px 0;
    }

    body.menu-open .header__menu {
        opacity: 1;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        z-index: 99;
    }

    .header__menu:before {
        content: '';
        top: -50%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-blue);
        position: absolute;
        z-index: -1;
    }

    .header__left {
        -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: start;
    }

    .header__menu ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .header__menu ul li + li {
        margin-left: 0;
        margin-top: 30px;
    }

    .header__menu ul a {
        color: #fff;
        font-size: 18px;
    }

    .header__button {
        margin-top: 50px;
    }

    .header__button.flex.gap-10.desktop-hidden {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .header__logo img {
        width: 120px;
    }

    .header {
        border: 1px solid #E8E8E8;
    }


    .header__menu .header__button {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    a.mes-button.mes-button--tg {
        border: 1px solid #fff;
    }

    /*первый экран*/
    .calc-cart__left .section-title br {
        display: none;
    }

    .calc-cart__left .section-title {
        text-align: center;
        font-weight: 500;
        font-size: 24px;
        line-height: 100%;
    }

    .calc-cart__left .section-subtitle {
        font-weight: 400;
        font-size: 10px;
        line-height: 140%;
        text-align: center;
    }

    .calc-cart {
        z-index: 2;
    }

    .calc-cart .share-post span {
        width: auto;
    }

    .calc-cart .share-post {
        justify-content: flex-start;
    }

    .products__info a.link-button {
        justify-content: center;
    }

    .products__info a.link-button svg {
        transform: scale(1.3);
        margin-top: 0px;
    }

    .calc-cart__flex {
        border-radius: 0;
        padding: 30px 20px;
        display: block !important;
    }

    .calc-cart__left .submit_btn {
        min-width: unset;
    }

    .calc-cart__inner .calc-cart__flex {
        background: none;
    }

    span.nominal {
        width: 100% !important;
    }

    .calc-cart__nominals.calc-nominals.dropdown {
        position: relative;
    }

    .calc-nominals__items.dropdown__content {
        position: absolute;
        opacity: 0;
        z-index: -1;
        background: #fff;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

    .dropdown--show .calc-nominals__items.dropdown__content {
        opacity: 1;
        z-index: 99;
        margin-top: 50px;
    }

    p.dropdown__title {
        color: #757575;
        border: 1px solid rgb(168, 168, 168);
        background-color: rgb(255, 255, 255);
        border-radius: 5px;
        font-size: 14px !important;
        font-weight: 500 !important;
        height: 56px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 20px;
        margin-bottom: -45px !important;
        display: flex !important;
        align-items: center;
    }

    p.dropdown__title span {
        display: none;
    }

    input.wpcf7-form-control.has-spinner.wpcf7-submit.send-form.t-submit.main-button.submit_btn {
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        width: 100%;
    }

    .promocod button {
        padding: 0 20px;
        font-size: 14px;
        line-height: 17px;
    }

    .calc-img.calc-img--4 {
        top: 120px;
        left: 0;
        width: 38.07px;
        height: 46.83px;
    }

    .calc-img.calc-img--1 {
        right: 0;
        top: 0;
        width: 43.74px;
        height: 53.85px;
    }

    .calc-img.calc-img--3 {
        width: 38.53px;
        height: 47.32px;
        top: 10px;
        right: 0;
    }

    .calc-img.calc-img--2 {
        display: none;
    }

    .dropdown__title:after {
        content: '';
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_51_106' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='14' height='14'%3E%3Crect y='14' width='14' height='14' transform='rotate(-90 0 14)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_51_106)'%3E%3Cpath d='M12.4249 4.49163L6.99995 9.91663L1.57495 4.49163L2.18745 3.86454L6.99995 8.67704L11.8125 3.86454L12.4249 4.49163Z' fill='%23757575'/%3E%3C/g%3E%3C/svg%3E%0A");
        width: 14px;
        height: 14px;
        right: 0;
        top: auto;
        position: absolute;
        margin-right: 20px;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

    .dropdown--show p.dropdown__title:after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .calc-nominals__items.dropdown__content {
        width: calc(100% + 20px);
        padding: 20px 30px;
        margin-left: -10px;
    }

    span.input-desc.attent {
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
        text-align: center;
    }

    /*второй блок*/
    .func-content__item:not(:last-child):before {
        content: '';
        position: absolute;
        background: #45adf8;
        width: 104%;
        height: 20px;
        left: -2%;
        bottom: -4%;
        top: unset;
        right: unset;
    }

    .func-content__item:not(:last-child):after {
        content: '';
        background: rgba(255, 255, 255, 0.8);
        width: 95%;
        display: block;
        position: absolute;
        left: 9px;
        height: 1px;
        bottom: -4px;
        top: unset;
        right: unset;
    }

    .func-content__title {
        font-weight: 500;
        font-size: 28px;
        line-height: 100%;
    }

    .section-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 106.52%;
        text-align: center;
    }

    .manreg__item {
        background: #F9F9F9;
        border: none;
        border-radius: 30px;
        padding: 20px;
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
    }

    a.link-button {
        width: 100%;
        display: block;
    }

    .tab-triggers {
        margin-top: 22px;
    }

    .manact__item {
        background: #F9F9F9;
        border: none;
        border-radius: 30px;
        padding: 20px;
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
    }

    .accordion__title span {
        margin-right: 15px;
        font-weight: 500;
        font-size: 20px;
        line-height: 120%;
        padding-right: 20px;
    }

    .accordion__content p {
        color: var(--color-gray);
        max-width: 70%;
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
    }

    .section-top__desc br {
        display: none;
    }

    .section-top__desc {
        text-align: center;
        margin-top: 10px;
        padding: 0 10px;
    }

    .callback__item.callback-item svg {
        width: 60px;
        height: 60px;
    }

    .callback__item.callback-item .mes-button {
        padding: 40px 0;
        border-radius: 0;
    }

    .nominals__button {
        width: 100%;
        text-align: center;
    }


    .footer__logo img {
        padding: 0;
    }

    .footer__desc.header__desc {
        border: none;
        padding: 0;
        margin-top: 15px;
    }

    .footer__desc.header__desc br {
        display: none;
    }

    .footer__menu.header__menu {
        opacity: 1;
        visibility: visible;
        position: relative;
        top: unset;
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
        z-index: auto;
        background-color: unset;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .footer__menu.header__menu ul a {
        color: var(--color-black);
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
    }

    .footer__menu.header__menu:before {
        display: none;
    }

    .footer__title {
        margin-top: 35px;
    }

    .footer__col {
        text-align: center;
    }

    .footer__menu ul {
        -webkit-box-align: center !important;
            -ms-flex-align: center !important;
                align-items: center !important;
    }

    .footer__menu ul li + li {
        margin-left: 0;
        margin-top: 20px;
    }

    .footer__links {
        margin-top: 0;
    }

    .footer__link--totop.mob {
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: rgba(33, 33, 33, 0.5);
        margin-top: 30px;
    }

    .footer__text {
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        text-align: center;
        color: rgba(33, 33, 33, 0.7);
    }

    .footer__text u {
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        text-align: center;
        color: rgba(33, 33, 33, 0.7);
    }

    .footer__text.mob {
        margin-bottom: 15px;
    }

    /*статья*/
    .entry-main {
        text-align: center;
    }


    .share-post span {
        width: 100%;
    }

    .share-post {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .share-post a svg {
        width: 30px;
        height: 30px;
    }

    .entry-title {
        font-weight: 500;
        font-size: 24px;
        line-height: 100%;
    }

    .entry-excerpt {
        max-width: unset;
    }

    .entry-excerpt p {
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
    }

    .entry-image .full-image {
        min-height: 190px;
    }

    .entry-content p {
        font-weight: 400;
        font-size: 14px;
        line-height: 1.6;
    }

    /* попап*/
    .popup__box {
        margin: auto 15px;
        padding: 15px;
    }

    .popup__content .dropdown__title:after {
        margin-right: 20px;
    }

    .popup__content span.nominal {
        width: calc(26% - 10px) !important;
    }

    .popup__content .nominals__button {
        width: calc(100% - 10px) !important;
        text-align: center;
    }


    .popup__content .nominal {
        font-size: 14px;
    }

    .popup-exit .popup-content__left {
        padding: 35px 20px;
    }

    .popup-exit .section-subtitle, .popup-exit__desc {
        text-align: center;
    }

    .popup-exit__button {
        justify-content: center;
    }


    /* магазин */

    .woocommerce-page div.product div.images, .woocommerce-page div.product div.summary {
        float: none;
        width: 100%;
    }


}

/*отзывы*/

.anycomment-app .anycomment-global-header .anycomment-rating:before {
    content: 'Оцените наш сервис';
    margin-top: 3px;
    margin-right: 15px;
    margin-left: 10px;
    font-weight: 900;
    font-size: 25px;
}

@media(max-width: 992px) {
	.anycomment-app .anycomment-global-header {
        flex-direction: column;
        align-items: start;
    }

    .anycomment-app .anycomment-global-header .anycomment-rating {
        margin-bottom: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .anycomment-app .anycomment-global-header .anycomment-rating:before {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 10px;
        font-size: 18px;
    }
}

/*страница блога*/
.post-feed {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit,minmax(min(350px,100%),1fr));
    padding: 0;
    margin-bottom: 30px;
}

.post-feed article {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
}

.post-header {
    margin-bottom: 15px;
}

.post-image {
    margin-bottom: 15px;
}

.post-title {
    font-size: 24px;
    line-height: 1.1;
}

.post-image img {
    border-radius: 10px;
    max-height: 200px;
    min-height: 200px;
    object-fit: cover;
}

.post-content p {
    font-size: 16px;
    line-height: 1.4;
}

.post-meta {
    margin-top: 15px;
}

.post-title a:hover {
   color: #45ADF8;
}

.post-image a:hover {
    opacity: .8;
}

.loadmore.link-button {
    border: none;
    margin: auto;
    display: block;
}

.no-more-post.link-button {
    opacity: .4;
    display: block;
     margin: auto;
     border: none;
}

.page-template-blog .bg-wrapper {
    margin-bottom: 30px;
}

#head .menu-blog {
    display: none;
}


body.single .calc-cart {
    background: #f5f5f5;
    margin: 50px 0 75px 0;
    border-radius: 0;
}

.entry {
    margin-bottom: 75px;
}

.entry-image img {
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}