/* ============================================================
   Mini Cart — Offcanvas
   ============================================================ */

/* Общий контейнер внутри offcanvas */
.mc-mini {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: inherit;
    color: #1a1a1a;
}

/* ── Шапка ─────────────────────────────────────── */
.mc-mini__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mc-mini__title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-mini__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: #548048;
    border-radius: 11px;
}

.mc-mini__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: background .2s, color .2s;
}
.mc-mini__close:hover {
    background: #e8e8e8;
    color: #1a1a1a;
}

/* ── Список товаров ────────────────────────────── */
.mc-mini__list {
    flex: 1;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    overscroll-behavior: contain;
}

/* Скроллбар */
.mc-mini__list::-webkit-scrollbar { width: 4px; }
.mc-mini__list::-webkit-scrollbar-track { background: transparent; }
.mc-mini__list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* ── Товар ─────────────────────────────────────── */
.mc-mini__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    transition: background .15s;
}
.mc-mini__item:hover {
    background: #fafafa;
}

/* Картинка */
.mc-mini__thumb {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}
.mc-mini__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Инфо */
.mc-mini__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 75px;
}

.mc-mini__name {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    padding-right: 30px;
}
.mc-mini__name a {
    color: inherit;
    text-decoration: none;
}
.mc-mini__name a:hover {
    color: #548048;
}

.mc-mini__meta {
    font-size: 16px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Степпер количества (WooCommerce buttons_added) */
.mc-mini__qty-wrap {
    display: inline-flex;
    align-items: center;
    background: #eee;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
}
.mc-mini__qty-wrap .minus,
.mc-mini__qty-wrap .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px !important;
    height: 35px !important;
    border: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 500;
    color: #666 !important;
    cursor: pointer;
    transition: background .15s, color .15s;
    padding: 0 !important;
    line-height: 1 !important;
}
.mc-mini__qty-wrap .minus:hover,
.mc-mini__qty-wrap .plus:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}
.mc-mini__qty-wrap .qty,
.mc-mini__qty-wrap input[type="number"] {
    width: 28px;
    height: 35px;
    border: none!important;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
    font-weight: 400 !important;
}
.mc-mini__qty-wrap input::-webkit-outer-spin-button,
.mc-mini__qty-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mc-mini__price {
    color: #1a1a1a;
    font-weight: 400;
    white-space: nowrap;
}

/* Кнопка удалить */
.mc-mini__remove {
    position: absolute;
    top: 14px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #bbb;
    transition: color .2s, background .2s;
    text-decoration: none;
}
.mc-mini__remove:hover {
    color: #e74c3c;
    background: #fdf2f2;
}

/* ── Пустая корзина ────────────────────────────── */
.mc-mini__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    color: #999;
}
.mc-mini__empty p {
    margin: 0 0 16px;
    font-size: 15px;
}
.mc-mini__browse {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #548048;
    border: 1px solid #548048;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.mc-mini__browse:hover {
    background: #548048;
    color: #fff;
}

/* ── Футер (sticky снизу) ──────────────────────── */
.mc-mini__footer {
    flex-shrink: 0;
    padding: 10px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mc-mini__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mc-mini__checkout {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #548048;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}
.mc-mini__checkout:hover {
    background: #3d5e30;
    color: #fff;
}

.mc-mini__to-cart {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #548048;
    text-decoration: none;
    transition: color .2s;
}
.mc-mini__to-cart:hover {
    color: #1a1a1a;
}

/* ── Offcanvas panel overrides ─────────────────── */
.mc-offcanvas-panel .mc-offcanvas-inner {
    padding: 0;
    height: 100%;
}

/* Widget wrapper override */
.mc-offcanvas-panel .widget_shopping_cart_content {
    height: 100%;
}

label[for="subscribeEmail"] {
    font-size: 12px;
    appearance: auto;
}

#reg_privacy_policy_field{
    font-size: 12px;
}

.show-password-input{
    display: none;
}

.woocommerce-account .collapse{
    display: block!important;
}

.disclaimer-product-badge {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: help;
}

.drugs-disclaimer {
    margin-top: 10px;
    font-size: 16px;
    color: #999;
    line-height: 1.4;
    font-style: italic;
    letter-spacing: -.5px;
}

.cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #54af5e;
    padding: 20px 0;
}

.cookies-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    gap: 20px;
}

.cookies-text small {
    font-size: 16px;

}

.cookies-text a {
    color: #fff;
    text-decoration: underline;
}
.cookies-text a:hover {
    color: #fff;
}

.cookie-accept.btn,
.cookie-accept.button {
    padding: 10px 15px;
    text-align: center;
    flex: 0 0 auto;
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    color: #54af5e;
    border: 0;

}

.cookie-accept.button {
    background-color: #54af5e;
    color: #fff;
}

.cookie-accept.btn:hover {
    background: #fff;
    color: #54af5e;
}

@media (max-width: 1024px) {
    .cookies-text {
        width: 100%;
        flex-direction: column;

    }
}

body {
    font-family: "SF Pro Text", sans-serif !important;
    font-weight: 400;
    color: #2d3236;
    font-size: 14px;
    line-height: 1.79;
}

b,
strong {
    font-weight: 700;
}

a {
    color: #000;
}

.page-content a,
.archive .term-description a,
.woocommerce-tabs .tab-content a,
.single-product .description a {
    color: #0645AD;
}

.shop_table a {
    color: #000;
}

a:hover,
a:focus,
.shop_table a:not(.button):focus,
ul.cart_list li a:hover,
ul.product_list_widget li a:hover {
    color: #2d2f79;
}

.shop_table a:not(.button):hover {
    color: #231F20;
}

.fw-500 {
    font-family: "Fira Sans Compressed", sans-serif !important;
    font-weight: 500 !important;
}

.text-fs20 {
    font-size: 20px;
}

.black-06 {
    color: rgba(0, 0, 0, 0.6);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.widget_shopping_cart {
    color: #000;
}

.cart__head {
    display: flex;
    align-items: center;
}

.messengers__link {
    flex-shrink: 0;
}

.header-wrapper {
    z-index: 1006;
}

#header.sticky-header .header-main .container,
#header .header-main .container {
    min-height: 80px;
}

#header .header-main .fungi-notices__container {
    min-height: auto !important;
}

#mini-cart .cart-head {
    min-width: 33px;
}

#header .porto-icon-user-2::before {
    display: none;
}

#header .header-main .header-left {
    flex-wrap: nowrap;
}

.logo {
    text-align: center;
}

#header .logo-txt-wrap {
    display: flex;
    align-self: center;
    margin-left: 13px;
}

#header .logo+.separator {
    border-left: 1px solid rgba(0, 0, 0, 1);
    align-self: center;
    margin-left: 14px;
}

#header .logo-txt {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    flex-grow: 1;
    min-width: 120px;
}

.header-col>:not(.header-col-wide) {
    margin-left: 30px;
}

#header .my-wishlist .wishlist-count {
    display: none;
}

#header i {
    line-height: 1;
}

#header .searchform-popup.search-popup::after {
    content: 'Поиск';
}

#header .my-account::after {
    content: 'Профиль';
}

#header .my-wishlist::after {
    content: 'Избранное';
}

#header .cart-head>a::after {
    content: 'Корзина';
}

#header .cart-head>a,
#header .my-account,
#header .my-wishlist,
#header .searchform-popup.search-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 45px;
}

#header .searchform-popup.search-popup::after,
#header .my-account::after,
#header .my-wishlist::after,
#header .cart-head>a::after {
    display: inline-block;
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 9px;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 8px;
}

.messengers__link+.messengers__link {
    margin-left: 20px;
}

#header .my-account .porto-icon-user-2 {
    display: inline-block;
    background: url(images/user.svg) no-repeat;
    width: 21px;
    height: 28px;
}

#header .main-menu .wide li.menu-item li.menu-item>a:hover,
#header .main-menu .wide li.sub>a:hover {
    text-decoration: none;
}

#header.sticky-header .header-main.sticky {
    box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}

#mini-cart .minicart-offcanvas .widget_shopping_cart_content {
    font-family: "SF Pro Text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
}

#mini-cart .cart-popup {
    width: 504px !important;
    max-width: 100%;
}

#mini-cart.minicart-offcanvas .widget_shopping_cart_content {
    padding: 0 19px 0.5rem 19px !important;
    background-color: #fff !important;
}

.mini-cart__head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
}

.mini-cart__head img,
.mini-cart__head svg {
    vertical-align: baseline;
}

.minicart-offcanvas .mini-cart__title {
    font-family: "Fira Sans Compressed", sans-serif !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    color: #000 !important;
    line-height: 1 !important;
    text-align: center !important;
    letter-spacing: 0.025em !important;
    margin: 0 60px !important;
    transform: translateY(calc(100% - 2px)) !important;
}

.minicart-overlay svg {
    top: 1.25rem;
    right: 448px;
    width: 1.5rem;
    height: 1.5rem;
}

.cart-popup .minicart-svg {
    stroke: #231f20;
}

.mini-cart__icon-cross svg {
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
}

.cross-sells {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 20px;
    margin-top: 28px;
}

.woocommerce-cart .cross-sells {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.woocommerce-cart .cross-sells::before {
    content: '';
    width: 100vw;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 52px;
    margin-top: 28px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.mini-cart .cross-sells .slider-title,
.woocommerce-cart .cross-sells .slider-title {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    color: #000000;
    text-transform: none;
}

#mini-cart .cross-sells .product-image {
    width: 156px;
}

#mini-cart .cross-sells .product-image,
.woocommerce-cart .cross-sells .product-image {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mini-cart .cross-sells .woocommerce-loop-product__title,
.woocommerce-cart .cross-sells .woocommerce-loop-product__title {
    margin-bottom: 19px;
    white-space: normal;
}

#mini-cart .cross-sells .rating-wrap,
#mini-cart .cross-sells .price,
.woocommerce-cart .cross-sells .rating-wrap,
.woocommerce-cart .cross-sells .price {
    display: none !important;
}

.owl-carousel.nav-style-4 .owl-nav [class*=owl-],
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    width: 50px !important;
    height: 50px !important;
    background: #F9F8F8 !important;
    border-radius: 50%;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
}

.owl-carousel.nav-style-4 .owl-next:before,
.owl-carousel.nav-style-4 .owl-prev:before,
.owl-carousel .owl-nav .owl-next::before,
.owl-carousel .owl-nav .owl-prev:before {
    font-weight: bold;
    color: #000;
}

.owl-carousel.nav-style-4 .owl-next:hover::before,
.owl-carousel.nav-style-4 .owl-prev:hover:before,
.owl-carousel .owl-nav .owl-next:hover:before,
.owl-carousel .owl-nav .owl-prev:hover::before {
    color: #2D2F79;
}

.owl-carousel .owl-nav {
    top: 50% !important;
    width: 100% !important;
}

.owl-carousel.nav-inside .owl-dots {
    bottom: 20px;
}

.cross-sells .owl-carousel .owl-nav [class*='owl-'],
.owl-carousel.show-nav-title .owl-nav [class*=owl-] {
    font-size: 26px;
}

#blog-home .owl-carousel .owl-item .grid-box {
    padding-right: 5px;
    padding-left: 5px;
}

.checkout_wrap {
    display: flex;
    flex-direction: column;
}

.page-top h1.page-title {
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0;
    font-family: 'SF Pro Text';
    line-height: 52px;
}

.page-top.page-header-1 {
    padding-top: 32px;
    padding-bottom: 40px;
}

.page-top > .container {
    padding-top: 0;
    padding-bottom: 0;
}
.page-top ul.breadcrumb>li, .page-top ul.breadcrumb>li a,
.page-top .breadcrumbs-wrap a, .page-top .breadcrumbs-wrap .breadcrumb_last {
    font-size: 14px;
    text-transform: none;
    line-height: 20px;
}

.page-top .breadcrumbs-wrap .breadcrumb_last,
.page-top ul.breadcrumb>li span:not([itemprop="name"]):last-child {
    color: #777777 !important;
}

.page-top ul.breadcrumb>li .delimiter.delimiter-2,
.page-top .breadcrumbs-wrap .delimiter.delimiter-2 {
    font-size: 14px;
    width: auto;
    margin: 0 8px;
    font-style: normal;
}

nav.breadcrumbs-wrap {
    margin-bottom: 24px;
}

.page-header-8 .delimiter.delimiter-2:before,
.page-top ul.breadcrumb>li .delimiter.delimiter-2:before,
.page-top .breadcrumbs-wrap .delimiter.delimiter-2:before {
    content: '\2022';
}

h2:not(.woocommerce-Reviews-title) {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 131%;
    text-align: center;
    letter-spacing: 0.025em;
}

.home h2 {
    font-size: 30px;
    line-height: 131%;
    margin-bottom: 19px;
}

#comments .woocommerce-Reviews-title {
    font-size: 30px;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.col-first {
    order: 2;
}

.col-second {
    order: -1;
}

.products-slider div.quantity .minus,
.products-slider div.quantity .plus {
    text-indent: -999999999999999px;
}

.tab-pane {
    padding-bottom: 10px;
}

.checkout-breadcrumbs-list.nav::before,
.tab-pane.fade:not(.show),
.shop_table.review-order tr.cart-discount {
    display: none;
}

.checkout-breadcrumbs {
    order: 2;
}

.checkout-breadcrumbs-header {
    padding: 28px 0 44px 0;
}

.checkout-breadcrumbs-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-bottom: 0;
}

.checkout-breadcrumbs-list .checkout-item {
    display: flex;
    align-items: center;
    line-height: 1.25;
}

.checkout-breadcrumbs-list .checkout-item:last-child .delimiter {
    visibility: hidden;
    opacity: 0;
}

.checkout-breadcrumbs-list .checkout-btn.nav-link.active,
.checkout-breadcrumbs-list .checkout-btn.nav-link.passed {
    color: #000;
}

.checkout-breadcrumbs-list .checkout-item .delimiter.delimiter-2 {
    float: none;
    display: inline-flex;
    width: auto;
    font-size: 1.2rem;
    margin: 0 13px 0 6px;
}

.checkout-item .checkout-btn {
    display: flex;
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    line-height: 1.25;
    border: 0;
    text-align: left;
    padding: 0;
    background-color: transparent;
}

.checkout-breadcrumbs.nav-tabs .checkout-btn.nav-link.active,
.checkout-breadcrumbs.nav-tabs .nav-item.show .checkout-btn.nav-link {
    color: #000;
}

.checkout-breadcrumbs-list .nav-link.active {
    background-color: transparent;
}

.checkout-breadcrumbs--sticky {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 99;
    background-color: #fff;
}

.checkout-breadcrumbs--sticky .checkout-breadcrumbs-header {
    padding: 0.6rem var(--porto-fluid-spacing) 0.25rem;
}

.checkout-item .checkout-btn:hover,
.checkout-item .checkout-btn:focus {
    background-color: transparent;
}

.step-number {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    background: #1ac47d;
    justify-content: center;
    font-size: 14px;
    line-height: 1.3;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    margin-right: 6px;
}

.checkout-item .checkout-btn[type="button"][disabled] {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.checkout-item .checkout-btn[type="button"][disabled] .step-number {
    background: rgba(0, 0, 0, 0.4);
}

.featured-box .box-content,
.featured-box {
    border: 0;
}

.featured-box .box-content {
    padding: 0;
}

.featured-box {
    box-shadow: none;
}

#customer_details .featured-box {
    margin-bottom: 0;
}

body.woocommerce-page .checkout-order-review.featured-box {
    margin-bottom: 0px;
    min-height: auto;
}

.woocommerce .featured-box h3 {
    font-size: 30px;
    line-height: 140%;
    margin-top: 16px;
    margin-bottom: 17px;
}

.woocommerce .featured-box h2,
.woocommerce .featured-box h3,
.woocommerce .featured-box h4 {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
    text-transform: none;
}

.box-wrap-title h3 {
    font-size: 30px;
    line-height: 140%;
    margin-top: 16px;
    margin-bottom: 17px;
}

.box-wrap-title h3:first-child {
    margin-top: -5px;
}

.woocommerce-form-login-toggle .woocommerce-info {
    padding: 0;
    color: rgba(0, 0, 0, 0.4);
}

.woocommerce-form-login-toggle .woocommerce-info::before {
    display: none;
}

.woocommerce .featured-box h2,
.box-wrap-title h3,
.woocommerce .featured-box h4 {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
    text-transform: none;
}

.box-wrap-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.box-wrap-title * {
    margin-bottom: 0 !important;
}

.woocommerce-terms-and-conditions-wrapper .row-form {
    padding: 0;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
    display: block;
}
.woocommerce-terms-and-conditions p{
    font-size: 12px;
    line-height: 23px;
    color: #8a8b8e;
}

.woocommerce-privacy-policy-text:has(input) {
    display: flex;
    align-items: start;
}

.woocommerce-privacy-policy-text input {
    margin-top: 5px;
    flex: 0 0 16px;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input {
    width: 16px;
    flex: 0 0 16px;
    height: 16px;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox .woocommerce-privacy-policy-text p{
    margin-bottom: 5px;
    display: inline-block;
}

.woocommerce-checkout label,
.porto-radio .porto-control-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.58;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0;
}

.woocommerce-checkout label.order_comments {
    font-size: 14px;
}

::placeholder,
.form-control::placeholder,
.shop_table.cart-table .actions input[type="text"]::placeholder,
.woocommerce-checkout input[type="text"]::placeholder,
.woocommerce-checkout textarea::placeholder,
.input-text::placeholder,
select:required:invalid {
    font-family: "SF Pro Text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.form-row input[type="color"],
.form-row input[type="date"],
.form-row input[type="datetime-local"],
.form-row input[type="datetime"],
.form-row input[type="email"],
.form-row input[type="month"],
.form-row input[type="number"],
.form-row input[type="password"],
.form-row input[type="search"],
.form-row input[type="tel"],
.form-row input[type="text"],
.form-row input[type="time"],
.form-row input[type="url"],
.form-row input[type="week"],
.form-row select,
.form-row textarea {
    color: #000;
}

option[value=""][disabled] {
    display: none;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    background-image: none;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    background-position: right calc(0.375em + 0.1875rem) center;
}

.form-control:focus,
.form-check-input:focus,
select:focus,
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    box-shadow: none;
    border-color: #000;
}

abbr[title],
abbr[data-bs-original-title] {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

input[type="checkbox"],
.woocommerce-form__input-checkbox,
input[type="radio"] {
    margin-right: 9px;
}

.form-check,
#mailpoet_woocommerce_checkout_optin_field.row-form,
#payment .woocommerce-terms-and-conditions-wrapper .form-row {
    padding-left: 28px;
}

.form-check .form-check-input,
.woocommerce-form__input-checkbox {
    margin-left: -28px;
}

.woocommerce-form__input-checkbox {
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    appearance: none;
}

.porto-radio .porto-control-label:after {
    width: 15px;
    height: 15px;
    left: 0;
    margin-top: -9px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-color: #1ac47d;
    border: 1px solid #1ac47d;
}

#shipping_method #custom_checkout_field {
    margin-top: 12px;
    padding-left: 25px;
}

.woocommerce-checkout #shipping_method input.input-radio[type=radio] {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    border-radius: 50%;
}

.form-check-input,
.woocommerce-checkout #shipping_method input.input-radio[type=radio],
.woocommerce-form__input-checkbox,
.porto-radio .porto-control-label:before {
    width: 15px;
    height: 15px;
    border-color: rgba(0, 0, 0, 0.2);
}

.woocommerce-checkout #shipping_method label.radio {
    padding-left: 26px;
}

.woocommerce-checkout #shipping_method label.radio:not(:last-child) {
    margin-bottom: 0.6rem;
}

.form-check-input[type="checkbox"],
.woocommerce-form__input-checkbox[type="checkbox"] {
    border-radius: 3px;
    margin-top: 2px;
}

input.input-radio:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

#save-contact-details {
    margin-top: 5px;
}

.woocommerce-checkout #shipping_method input.input-radio:checked[type=radio],
.form-check-input:checked,
.woocommerce-form__input-checkbox:checked {
    background-color: #1ac47d;
    border-color: #1ac47d;
}


.woocommerce-checkout #shipping_method input[type=radio] {
    margin-top: 2px;
}

input#rememberme {
    margin-top: 2px;
}

.woocommerce-form__input-checkbox[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.woocommerce-form__input-checkbox[type="checkbox"]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.woocommerce-form__input-checkbox:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}

.form-check-input:focus,
.woocommerce-form__input-checkbox:focus {
    outline: 0;
}

.form-check-input:active {
    background-color: transparent;
}

.woocommerce-form.woocommerce-form-login.login {
    flex: 1 0 100%;
    margin-top: 8px;
}

.woocommerce-form.woocommerce-form-login.login .form-row.form-check {
    margin-top: 0.5rem !important;
}

.woocommerce-form.woocommerce-form-login .lost_password {
    text-decoration: underline;
}

.woocommerce-form.woocommerce-form-login .lost_password:hover {
    text-decoration: none;
}

.woocommerce-form.woocommerce-form-login .form-row-btn-wrap,
.woocommerce-form.woocommerce-form-login .lost_password {
    margin-top: 17px;
}

.woocommerce-form.woocommerce-form-login .form-row-first {
    margin-bottom: 17px !important;
}

.юwoocommerce-form-login-toggle .label-showlogin {
    color: rgba(0, 0, 0, 0.4);
}

.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="text"] {
    line-height: 1.35;
}

#order_comments {
    min-height: 50px;
}

.notes_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.notes_wrap button {
    width: 20px;
    height: 20px;
    display: inline-flex;
    line-height: 1;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.notes_wrap button>span {
    flex-shrink: 0;
    display: block;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='2' viewBox='0 0 12 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.607422 1.07812L11.3767 1.07812' stroke='black' stroke-opacity='0.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.notes_wrap button.collapsed>span {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.99219 11.4629L5.99219 0.69366' stroke='black' stroke-opacity='0.2' stroke-linejoin='round'/%3E%3Cpath d='M0.607422 6.07812L11.3767 6.07812' stroke='black' stroke-opacity='0.2' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}


.collapse:not(.show) {
    display: none;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
    border-color: #000;
    box-shadow: none;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: rgba(0, 0, 0, 0.2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231AC47D' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.invalid-feedback {
    margin-top: 6px;
    margin-left: 17px;
}

.shop_table.woocommerce-checkout-review-order-table {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 12px;
}

.shop_table tr.cart_item:last-child td {
    padding-bottom: 22px;
}

.shop_table thead tr,
.shop_table tr:not(:last-child) {
    border-bottom: 0;
}

.shop_table tbody {
    vertical-align: top;
}

.shop_table.woocommerce-checkout-review-order-table tbody+tbody tr:first-child td {
    padding: 0;
}

.shop_table strong {
    font-weight: 500;
}

.shop_table.cart-table a.remove-product {
    text-transform: lowercase;
    white-space: nowrap;
}

.shop_table .cart_item td,
.woocommerce-form-login-toggle .woocommerce-info {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
}

.cart-subtotal,
.cart-shipping {
    vertical-align: baseline;
}

.shop_table .cart-subtotal th,
.shop_table .cart-subtotal td {
    padding-top: 22px !important;
}

.shop_table .order-total th,
.shop_table .order-total td {
    padding-top: 20px;
    padding-bottom: 26px;
}

.checkout-order-review .cart-subtotal,
.woocommerce-form-login-toggle .showlogin,
.order-total,
.woocommerce-cart h4,
.woocommerce-checkout h4,
.woocommerce-order-details h4 {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
}

.checkout-order-review .cart-subtotal,
.cart-shipping .amount,
.checkout-order-review tbody .amount,
.order_details tbody .amount {
    color: #000;
}

.review-order.shop_table .order-total .amount {
    font-size: 20px;
}

.checkout-actions {
    padding: 0px 0 10px 0;
}

.checkout-actions .totals {
    font-size: 22px;
    margin-top: 1rem;
}

.woocommerce-form-login-toggle .showlogin {
    text-decoration: underline;
}

.woocommerce-form-login-toggle .showlogin:hover {
    text-decoration: none;
}

.shop_table td.product-thumbnail {
    padding-left: 0;
}

.shop_table td.product-thumbnail .img-wrap {
    position: relative;
    display: flex;
    align-items: self-start;
}

.shop_table td.product-thumbnail .img-wrap .items-quantity {
    transform: translate(-10px, -10px);
    flex: 0 0 auto;
}

.shop_table .product-thumbnail img {
    max-width: 70px;
    object-fit: contain;
}

.product-subtotal .woocommerce-Price-amount {
    color: #000;
}

.form-row {
    margin-bottom: 17px;
}

.form-row:not(.row).form-row-btn-wrap {
    display: flex;
    flex-flow: column-reverse;
    align-items: stretch;
}

.form-row-btn-wrap .btn-txt {
    margin-top: 29px;
}

.coupon-title {
    font-size: 16px;
}

.coupon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-text-coupon {
    margin-right: 17px;
}

.btn-groupe {
    align-items: center;
}

.btn-txt {
    display: inline;
    border: 0;
    background-color: transparent;
    font-size: 14px;
    line-height: 1.28;
    padding: 0;
    color: #000;
    text-decoration: none;
}

.btn-label {
    background-image: linear-gradient(to right, #000 0%, #000 100%);
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 100% 1px;
    transition: background-image 0.3s ease-in;
}

.btn-label:hover {
    background-size: 0 0;
    color: #2d2f79;
}

.btn-default.btn {
    background: rgba(0, 0, 0, 0.4);
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-default.btn:hover,
.btn-default.btn:focus {
    background: rgba(45, 43, 43, 0.8);
    color: #fff;
    border-color: rgba(45, 43, 43, 0.8);
}

[type="submit"].btn-default {
    color: #fff;
}

.btn-coupon {
    background: rgb(26 196 125);
    min-width: 150px;
    color: #fff;
    flex-grow: 0;
    border: none;
}

.to-shipping,
#place_order,
.to-payment,
.woocommerce-form-login__submit,
.cart-v2 .wc-proceed-to-checkout .btn {
    flex-grow: 1;
}

.shop_table_review-order-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.12;
    color: #000000;
    width: 100%;
    padding: 28px 0 19px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.shop_table_review-order-btn .collapse-label {
    text-align: left;
    margin-right: 1rem;
}

.shop_table_review-order-btn .collapse-icon {
    margin-left: auto;
    margin-right: 1.5rem;
    align-self: flex-start;
}

.shop_table_review-order-btn .amount {
    text-align: right;
    align-self: flex-start;
    transform: translateY(1px);
}

.cart-subtotal .amount,
.cart-shipping .amount {
    font-family: "Fira Sans Compressed", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.28;
    text-align: right;
}

.shop_table.review-order .cart-shipping td,
.shop_table.review-order .cart-shipping th {
    font-size: 12px;
    padding-bottom: 22px;
}

.cart-subtotal {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.shop_table.review-order .cart-subtotal th,
.shop_table.review-order .cart-subtotal td {
    padding-bottom: 2px;
}

.checkout-order-review .shop_table .cart-subtotal th,
.checkout-order-review .shop_table .order-total th,
.checkout-order-review .shop_table .cart-shipping th {
    padding-left: 0;
}

.checkout-order-review .shop_table .cart-subtotal th h5 {
    margin-bottom: 0;
}

.order-total {
    line-height: 1.25;
    padding: 4px 0;
    vertical-align: baseline;
}

.woocommerce-thankyou .order-total {
    border-top: 0;
}

.row-form label.invalid-feedback {
    display: none;
    font-size: 14px;
    line-height: 19px;
    color: #fb0b0b;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border: 1px solid #fb0b0b;
    box-shadow: 0px 0px 0px 1px #fb0b0b inset;
    color: #fb0b0b !important;
}

.form-control:invalid::placeholder,
.form-control.is-invalid::placeholder {
    color: #fb0b0b;
}

table {
    border-color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 19px;
}

table.checkout__contact-details {
    border-spacing: 0 10px;
    margin-bottom: 4px;
    border-collapse: separate;
}

table.checkout__contact-details td {
    vertical-align: top;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-radius: 3px;
    padding: 15px 8px 10px;
}

.checkout__contact-details-title,
.checkout__contact-txt {
    display: block;
}

.checkout__contact-details-title {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 7px;
}

.checkout__contact-txt {
    color: #231F20;
}

.checkout-order-review tr.order-total h5 {
    font-size: 20px;
}

table.checkout__contact-details td:first-child {
    border-left-width: 1px;
    padding-left: 20px;
}

table.checkout__contact-details td:last-child {
    border-right-width: 1px;
    padding-right: 20px;
    text-align: right;
}

.checkout-order-review tr td:last-child {
    text-align: left;
}

.checkout-order-review tr.order-total td:last-child,
.checkout-order-review tr.cart-subtotal td:last-child,
.checkout-order-review tr.cart-shipping td:last-child {
    text-align: right;
}

table.checkout__contact-details td span {
    display: inline-block;
}

.payment-methods-list .porto-control-label img {
    display: none;
}

#payment .payment-methods {
    margin-bottom: 14px;
}

.shipping-methods,
.payment-methods {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background-color: #fff;
    color: #000;
}

.shipping-methods {
    margin-bottom: 35px;
}

.tab-content .shipping-methods-list {
    margin-top: 0;
}

.shipping-methods-list .form-check {
    margin-bottom: 0;
}

.shipping-methods-list .form-check-input {
    margin-top: 1px;
}

.shipping-methods-list tr:not(:last-child) td,
.payment-methods-list tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.shipping-methods-list td,
.payment-methods-list td {
    vertical-align: top;
    line-height: 1.36;
    font-size: 14px;
    padding: 15px 8px 10px;
}

.shipping-methods-list td:first-child,
.payment-methods-list td:first-child {
    padding-left: 20px;
}

.shipping-methods-list td:last-child,
.payment-methods-list td:last-child {
    padding-right: 20px;
}

#shipping_method.shipping-methods-list td:last-child {
    text-align: right;
}

.shipping-methods label {
    color: #231f20;
}

.form-check label.checkbox,
#mailpoet_woocommerce_checkout_optin_field.row-form label.checkbox,
#payment .woocommerce-form__label-for-checkbox {
    margin-right: 0;
}

.form-check-price {
    white-space: nowrap;
    text-align: right;
}

.woocommerce-checkout .woocommerce-additional-fields {
    margin-bottom: 28px;
}

.checkout_text2 {
    color: rgba(0, 0, 0, 0.6);
    line-height: 19px;
}

.checkout_text2 a strong {
    font-family: "SF Pro Text", sans-serif;
    font-weight: 400;
    color: #000;
    display: inline-block;
    background-image: linear-gradient(to right, #000 0%, #000 100%);
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 100% 1px;
    transition: background-image 0.3s ease-in;
}

.checkout_text2 a strong:hover {
    background-size: 0 0;
    color: #2d2f79;
}

.woocommerce-cart h4,
.woocommerce-checkout h4,
.woocommerce-order-details h4 {
    letter-spacing: 0;
    line-height: 129%;
}

.woocommerce-cart .card {
    border: 0 !important;
}

.woocommerce-cart .page-title {
    display: block;
}

.cart-v2 .card.card-default {
    padding: 0;
}

.shop_table.cart-table .quantity {
    margin-right: 0;
}

.cart-v2 .card.card-default .card-body tbody tr {
    border: 0;
}


.shop_table.cart-table .product-subtotal {
    text-align: right;
}

.shop_table.cart-table .product-subtotal .amount {
    font-size: 14px;
    font-weight: 400;
    line-height: 136%;
    color: #000;
}

.cart-v2 .card.card-default .card-body tbody tr td:last-child,
.shop_table.cart.cart-table td.product-subtotal {
    padding-right: 0;
}

.woocommerce-cart .cart_contents_count {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: #000000;
}

.cart-v2 .wc-proceed-to-checkout {
    display: flex;
    margin-top: 14px;
}

.woocommerce-cart .cart_contents_count__wrap {
    display: flex;
    justify-content: center;
}

.wc-proceed-to-checkout .btn i {
    display: none;
}

.woocommerce-cart .card-sub-title,
.woocommerce-checkout .card-sub-title,
.woocommerce-order-details .card-sub-title {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: #000;
    text-transform: none;
}

.shop_table.cart-table a.remove-product {
    display: inline-block;
    font-size: 14px;
    line-height: 129%;
    border-bottom: 1px solid #000;
}

.shop_table.cart-table a.remove-product:hover {
    border-bottom-color: transparent;
}

.shop_table.cart-table a.remove.remove-product::before {
    display: none;
}

.woocommerce-tabs .resp-tabs-list li,
.comment-reply-title {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.thankyou__title {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 140%;
    color: #000;
    margin-bottom: 20px;
    margin-top: 36px;
    text-align: center;
}

.thankyou-order-info {
    border: 1px solid #1ac47d;
    border-radius: 3px;
    padding: 11px 16px;
    margin-bottom: 24px;
}

.thankyou-order-info__item {
    display: flex;
    font-size: 14px;
    line-height: 19px;
    justify-content: space-between;
}

.thankyou-order-info__item+.thankyou-order-info__item {
    margin-top: 9px;
}

.thankyou-order-info__item span+span {
    padding-left: 0.8rem;
}

.thankyou-order-info__label {
    color: rgba(0, 0, 0, 0.6);
}

.thankyou__table-order_details {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.thankyou__table-order_details tbody tr.order_item td {
    padding-bottom: 20px;
    padding-top: 13px;
}

.thankyou__order-total-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
}

.thankyou__woocommerce-order-details tfoot {
    color: #000;
    font-weight: 500;
    font-family: "Fira Sans Compressed", sans-serif;
}

.thankyou__woocommerce-order-details tfoot td,
.thankyou__woocommerce-order-details tfoot th {
    padding-top: 2px;
    padding-bottom: 20px;
}

.thankyou__woocommerce-order-details tfoot tr td {
    color: #000;
}

.thankyou_cart-shipping {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #000;
}

.thankyou__woocommerce-order-details tfoot tr:last-child .amount {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.woocommerce-order-received .thankyou__table-order_details.shop_table {
    width: 100%;
}

.thankyou__woocommerce-order-details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.thankyou__table-order_details td a {
    text-decoration: none;
    display: inline-block;
}

.thankyou__contact-details {
    border-spacing: 0 8px;
    margin-bottom: 4px;
    border-collapse: separate;
    color: #231f20;
    border: 0;
}

.woocommerce-contact-details__title {
    margin-bottom: 12px;
    text-align: left;
}

.thankyou__contact-details .checkout__contact-details-title {
    margin-bottom: 0;
}

.thankyou__contact-details td {
    display: block;
    padding: 8px 10px 10px 19px;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-radius: 3px;
}

.thankyou__contact-details tr td:first-child {
    border-top-width: 1px;
    padding-top: 15px;
    padding-bottom: 0;
    border-left-width: 1px;
    border-right-width: 1px;
    white-space: nowrap;
}

.thankyou__contact-details tr td:last-child {
    border-bottom-width: 1px;
    padding-bottom: 20px;
    border-left-width: 1px;
    border-right-width: 1px;
}

.thankyou__woocommerce-order-details .shop_table tfoot tr th {
    padding-left: 0;
}

.thankyou__woocommerce-order-details .shop_table tr td:last-child {
    padding-right: 0;
}

.post-about-info__wrapper {display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;}

.post-about-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.post-about-info__time-read {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-about-info__views {
    display: flex;
    align-items: center;
    gap: 10px;
}


/*Mobile for all */

@media(min-width: 480px) {

    .form-row:not(.row).form-row-btn-wrap {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .form-row-btn-wrap .btn-txt {
        margin-top: 0;
        margin-right: 15px;
    }

    .to-shipping,
    .to-payment,
    .to-pay,
    .woocommerce-form-login__submit,
    #place_order {
        max-width: 270px;
        margin-left: auto;
    }

}

@media (min-width: 576px) {
    .cart-v2 .wc-proceed-to-checkout .btn {
        margin-left: auto;
        max-width: 50%;
    }
}

@media (min-width: 768px) {

    .home h2 {
        font-size: 40px;
        margin-bottom: 37px;
    }

    .mini-cart__head {
        margin-bottom: 1.5rem;
    }

    .minicart-offcanvas .mini-cart__title {
        font-size: 40px;
    }

    #mini-cart .widget_shopping_cart .buttons {
        padding-top: 42px;
        padding-bottom: 33px;
    }

    .mini-cart .product-details__wrap:not(:first-child) {
        margin-top: 1rem;
    }

    #mini-cart.minicart-offcanvas .product-details a {
        font-size: 14px !important;
    }

    .mini-cart .cross-sells .slider-title,
    .woocommerce-cart .cross-sells .slider-title {
        font-size: 30px;
        line-height: 140%;
    }

    .mini-cart .cross-sells {
        padding-top: 38px;
        margin-top: 52px;
    }

    .woocommerce-cart .cross-sells::before {
        padding-top: 52px;
        margin-top: 97px;
    }

    #mini-cart .cross-sells .product-image,
    .woocommerce-cart .cross-sells .product-image {
        margin-bottom: 47px;
    }

    .box-wrap-title h3 {
        margin-top: 23px;
    }

    .shop_table .cart_item td.remove {
        display: none;
    }

    .shop_table .cart_item .product-name__wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 1.7em;
    }

    .shop_table.cart-table td.product-name {
        position: relative;
    }

    .shop_table.cart-table .product-name__wrap .remove-product {
        position: absolute;
        bottom: 20px;
        left: 10px;
    }

    .shop_table.cart-table .product-subtotal .amount {
        display: inline-flex;
        transform: translateY(10px);
    }

    .shop_table .product-thumbnail img {
        max-width: 73px;
    }

    .box-wrap-title {
        margin-bottom: 36px;
    }

    .woocommerce-form.woocommerce-form-login.login {
        margin-top: 36px;
    }

    .col2-set .woocommerce-form.woocommerce-form-login.login {
        margin-top: 0;
    }

    .shop_table tr.cart_item:last-child td {
        padding-bottom: 38px;
    }

    .shop_table_review-order-collapse {
        margin-bottom: 20px;
    }

    .woocommerce-checkout label,
    .porto-radio .porto-control-label,
    .shop_table.review-order .cart-shipping td {
        font-size: 14px;
    }

    .shop_table .order-total th,
    .shop_table .order-total td {
        padding-top: 12px;
    }

    .checkout-order-review .shop_table tr:last-child th,
    .checkout-order-review .shop_table tr:last-child td {
        padding-bottom: 25px;
    }

    .woocommerce-checkout #shipping_method input[type=radio] {
        margin-top: 4px;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 18px;
        line-height: 1.4;
        margin-right: 12px;
    }

    .checkout-breadcrumbs--sticky .checkout-breadcrumbs-header {
        padding-bottom: 0.1rem;
    }

    .checkout-breadcrumbs-list {
        justify-content: center;
    }

    .checkout-item .checkout-btn {
        font-size: 20px;
        line-height: 1.25;
    }

    .checkout-breadcrumbs-list .checkout-item .delimiter.delimiter-2 {
        font-size: 1.8rem;
        margin: 0 19px 0 23px;
    }

    .shop_table .cart_item td,
    .woocommerce-form-login-toggle .woocommerce-info {
        font-size: 14px;
        line-height: 1.36;
    }

    .woocommerce-checkout label {
        font-size: 14px;
    }

    .shop_table.woocommerce-checkout-review-order-table tr:first-child th,
    .shop_table.woocommerce-checkout-review-order-table tr:first-child td {
        padding-top: 0;
    }

    .thankyou-order-info {
        display: flex;
        justify-content: space-between;
        min-height: 50px;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .thankyou-order-info__item+.thankyou-order-info__item {
        margin-top: 0;
    }

    .thankyou-order-info__item span+span.thankyou-order-info__date {
        padding-left: 1.8rem;
    }

    .thankyou__woocommerce-order-details {
        border-bottom: 0;
    }

    .woocommerce-contact-details__title {
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .thankyou__contact-details td {
        display: table-cell;
        vertical-align: top;
        border-top-width: 1px;
        border-bottom-width: 1px;
        border-radius: 3px;
        padding-top: 15px;
        padding-bottom: 14px;
    }

    .thankyou__contact-details tr td:first-child {
        border-right-width: 0;
        padding-left: 20px;
        padding-bottom: 14px;
        min-width: 170px;
    }

    .thankyou__contact-details tr td:last-child {
        border-left-width: 0;
        padding-right: 20px;
        padding-left: 10px;
        padding-bottom: 14px;
    }

}

@media (min-width: 992px) {

    #header .main-menu {
        display: flex;
        min-height: 80px;
    }

    #header .main-menu>li.menu-item {
        display: flex;
        align-items: center;
        min-height: calc(100%);
        flex-grow: 1;
    }

    .header-col>:not(.header-col-wide) {
        margin-left: 30px;
    }

    .shop_table_review-order-collapse {
        display: none;
    }

    .shop_table.woocommerce-checkout-review-order-table {
        border-bottom: 0;
        margin-top: 0;
    }

    #shop_table_review-order {
        display: block;
    }

    .checkout-breadcrumbs {
        order: -1;
    }

    .col-first {
        order: 2;
    }

    .col-second {
        order: 3;
    }

    .col-first,
    .cart__col-first {
        padding-right: 4.1665%;
        padding-bottom: 10px;
    }

    .col-second {
        padding-left: 4.1665%;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        padding-bottom: 10px;
    }

    .cart__col-second {
        position: relative;
        padding-left: 4.1665%;
    }

    .cart__col-second::before {
        content: '';
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        width: 1px;
        height: 100px;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .shop_table.woocommerce-cart-form__contents tr:first-child td,
    .shop_table.woocommerce-cart-form__contents tr:first-child th,
    .cart-v2 .card.card-default .card-body tbody tr:first-child th,
    .cart-v2 .card.card-default .card-body tbody tr:first-child td {
        padding-top: 0;
    }

    .woocommerce-cart .cart_contents_count__wrap {
        display: flex;
        justify-content: flex-start;
    }

    .woocommerce-cart .cart_contents_count {
        margin-bottom: 47px;
        font-size: 0;
    }

    .woocommerce-cart .cart_contents_count span {
        font-size: 14px;
    }

    .woocommerce-cart .cart_contents_count span span {
        display: none;
    }

    .woocommerce-cart .wc-proceed-to-checkout {
        padding-left: 4.1665%;
    }

    .cart-v2 .wc-proceed-to-checkout .btn {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .woocommerce-cart .main-content {
        padding-top: 28px;
    }

    .shop_table .product-thumbnail img {
        max-width: 88px;
    }

    .col-second {
        order: 3;
    }

    .col-second {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

    .checkout-breadcrumbs-header {
        padding-bottom: 45px;
    }

    .checkout-breadcrumbs-list .checkout-item .delimiter.delimiter-2 {
        margin: 0 18px 0 15px;
    }

    .woocommerce-cart .page-title-wrap {
        margin-top: 12px;
    }

    .thankyou-order-info__item span+span.thankyou-order-info__date {
        padding-left: 2.8rem;
    }

    .thankyou-order-info {
        padding-left: 19px;
    }

}

@media (min-width: 1440px) {

    .checkout-breadcrumbs--sticky .checkout-breadcrumbs-header {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .checkout-item .checkout-btn {
        font-size: 30px;
        line-height: 1.4;
        align-items: center;
    }
}

@media (max-width: 1439.98px) {
    #mini-cart .cart-popup {
        width: 490px !important;
    }
}

@media (max-width: 1199.98px) {
    #header .my-wishlist {
        display: none;
    }
}

@media (max-width: 767.98px) {

    #header .my-account,
    #header .logo-txt-wrap,
    #header .logo+.separator {
        display: none;
    }

    .header-col>:not(.header-col-wide) {
        margin-left: 20px;
    }

    #mini-cart.minicart-offcanvas .widget_shopping_cart_content {
        padding: 0 19px 19px 19px;
    }

    #mini-cart .cart-popup {
        width: 375px;
    }

    #mini-cart .product-details {
        width: calc(100% - 68px);
    }

    #mini-cart .product-image {
        width: 68px;
    }

    #mini-cart.minicart-offcanvas .product-details a,
    .product_list_widget .product-details .amount {
        font-size: 12px;
    }

    .amount__mini-cart,
    .mini-cart__remove-producr-wrap {
        padding-left: 10px;
    }

    .widget_shopping_cart .mini-cart__product-details,
    .product-details__link,
    .mini-cart__quantity-buttons {
        padding-left: 10px;
    }

    .product-details__link {
        padding-right: 0 !important;
    }

    .mini-cart .product-details__wrap {
        margin-left: -10px;
    }

    .shop_table.responsive,
    .shop_table.shop_table_responsive {
        box-shadow: none;
        border: 0;
    }

    .shop_table.responsive tr.cart_item {
        display: grid;
        grid-gap: 0 10px;
        grid-template-columns: 68px 1fr 70px;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
			"image content price"
			"image quantity remove";
    }

    .shop_table .cart_item .product-name__wrap a.remove-product {
        display: none;
    }

    .shop_table .cart_item td.product-thumbnail {
        grid-area: image;
    }

    .shop_table .cart_item td.remove {
        grid-area: remove;
        align-self: center;
    }

    .shop_table .cart_item td.product-name {
        grid-area: content;
    }

    .shop_table .cart_item td.product-subtotal {
        grid-area: price;
    }

    .shop_table .cart_item td.product-quantity {
        grid-area: quantity;
        align-self: center;
    }

    .shop_table.responsive td,
    .shop_table.responsive th,
    .shop_table.shop_table_responsive td,
    .shop_table.shop_table_responsive th {
        text-align: left;
    }


    .fungi-sticky-cart.cart-sticky {
        position: fixed;
        z-index: 1001;
        bottom: 36px !important;
        left: calc(var(--bs-gutter-x) / 2);
        right: calc(var(--bs-gutter-x) / 2);
        bottom: env(safe-area-inset-bottom);
    }

    .fungi-sticky-cart-wrapper {}

    .fungi-sticky-cart-wrapper .single_add_to_cart_button {
        margin-bottom: 0;
    }

    .cart-sticky .cart {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        justify-content: center;
    }

}

@media (max-width: 575.98px) {

    #header .search-popup .searchform {
        position: fixed !important;
        top: 65px !important;
        left: var(--porto-fluid-spacing) !important;
        right: var(--porto-fluid-spacing) !important;
        font-size: 16px;
    }

    #header .searchform .text {
        flex-grow: 1;
    }

    #header .searchform input {
        max-width: 100%;
        width: 92%;
    }

}

/*Баннер*/

.hero-block {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
    overflow: hidden;
}

.hero-block__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
    background-image: url(images/banner/fungi-mobile.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-block__inner {
    position: relative;
    padding: 50px 24px 28px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.hero-block__content {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
    flex-grow: 1;
}

.hero-block__link {
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hero-block__title {
    font-family: "Fira Sans Compressed";
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0.025em;
    color: #B01C40;
    margin-bottom: 8px;
}

.hero-block__txt {
    font-family: "Fira Sans Compressed", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #DE4066;
    margin-bottom: 10px;
}

.inner-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hero-block__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    margin-bottom: auto;
}

.hero-block__ins {
    font-family: "Fira Sans Compressed";
    font-weight: 500;
    font-size: 40px;
    line-height: 131%;
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

.hero-block__del {
    position: relative;
    font-family: "Fira Sans Compressed";
    font-weight: 300;
    font-size: 40px;
    line-height: 131%;
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
    margin-bottom: 5px;
}

.hero-block__del::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -5px;
    right: 22px;
    height: 50%;
    border-bottom: 3px solid #B01C40;
    transform: rotate(5.22deg);
}

.hero-block__icons-list {
    display: flex;
}

.hero-block__icons-list>*:not(:first-child) {
    margin-left: 8px;
}

.hero-block__img-product {
    position: absolute;
    bottom: 9px;
    width: 160px;
    right: -3px;
    z-index: 1;
}

.post-views.content-post.entry-meta.load-static {
    display: none;
}
#city {
    background: url(images/icons8-geo-50.png) no-repeat left center;
    background-size: 20px;
    padding: 5px 0 5px 30px;
    margin-bottom: 5px;
    cursor:pointer;
}

#city span {
    border-bottom: 1px dotted;
}
.domains {
    position: relative;
}
#subdomains-list {
    display:none;
    opacity:0;
    visibility:hidden;
    transition: .4s;
    height: 400px;
    overflow-y: scroll;
}
#subdomains-list.opened {
    display: flex;
    position: absolute;
    flex-wrap: wrap;
    bottom: 0;
    z-index: 9999;
    background: rgb(242, 242, 242);
    list-style: none;
    gap: 20px;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 320px;
    opacity:1;
    visibility:visible;
}
@media (min-width: 576px) {

    .hero-block {
        min-height: 350px;
    }

    .hero-block__inner {
        padding-left: 66px;
    }

    .hero-block__wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        flex-grow: 1;
        background-image: url(images/banner/fungi-768.png);
        background-repeat: no-repeat;
        background-position: 100% 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }

}

@media (min-width: 768px) {

    .hero-block {
        height: 350px;
    }

    .hero-block__inner {
        padding: 50px 24px 50px 70px;
    }

    .hero-block__content {
        margin-right: 237px;
    }

    .hero-block__title {
        font-size: 36px;
        letter-spacing: 0.025em;
        max-width: 80%;
    }

    .hero-block__txt {
        font-size: 20px;
        margin-bottom: 19px;
    }

    .hero-block__price {
        margin-bottom: 0;
    }

    .hero-block__del,
    .hero-block__ins {
        font-size: 60px;
        line-height: 1;
    }

    .inner-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-grow: 0;
        margin-top: auto;
        align-items: flex-end;
    }

    .hero-block__price {
        flex-grow: 0;
    }

    .hero-block__icons-list {
        order: -1;
        margin-left: 4px;
    }

    .hero-block__img-product {
        width: auto;
        bottom: 18px;
        right: -8px;
    }
}

@media (min-width: 992px) {

    .hero-block__wrap {
        background-image: url(images/banner/fungi-fone.png);
    }

    .hero-block__inner {
        padding-top: 69px;
        padding-bottom: 50px;
    }

}

@media (min-width: 1170px) {
    .hero-block__price {
        margin-right: auto;
        margin-left: auto;
        padding-right: 60px;
    }
}

@media (min-width: 1400px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 767px) {
    .hero-block__icons-list img {
        max-height: 28px;
        width: auto;
    }
}

@media (max-width: 991px) {

    .page-top.page-header-1 {
        padding-top: 12px;
        padding-bottom: 24px;
    }

    nav.breadcrumbs-wrap {
        margin-bottom: 12px;
    }
}

/* ─── Пагинация блога ──────────────────────────────────────────────────────── */
nav.woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.woocommerce-pagination ul.page-numbers li {
    margin: 0;
    padding: 0;
}

nav.woocommerce-pagination ul.page-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    background: none;
    border: none;
    transition: background 0.15s;
}

nav.woocommerce-pagination ul.page-numbers .page-numbers.current {
    background-color: #1e3320;
    color: #fff;
    font-weight: 500;
}

nav.woocommerce-pagination ul.page-numbers a.page-numbers:hover {
    background-color: #f0f0f0;
    color: #333;
}

nav.woocommerce-pagination ul.page-numbers .page-numbers.dots {
    background: none !important;
    cursor: default;
    min-width: 24px;
}


nav.woocommerce-pagination ul.page-numbers a.prev.page-numbers,
nav.woocommerce-pagination ul.page-numbers a.next.page-numbers {
    width: 40px;
    min-width: 40px;
    padding: 0;
}

nav.woocommerce-pagination ul.page-numbers a.prev.page-numbers::before {
    content: '‹';
    font-size: 20px;
    line-height: 1;
}

/* SEO — скрытый H1 на главной (не влияет на вёрстку, нужен только для поисковиков) */
.hidden-h1 {
    position: absolute;
    left: -9999rem;
    top: -9999rem;
}