/*
Theme Name: Eleonoir Theme
Theme URI: https://eilionoirgrabov.com/
Author: DigiWay
Author URI: https://eilionoirgrabov.com/
Description: A custom WordPress theme based on your static HTML template.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-template-theme
*/
.main-image-decorated__text code{
    font-family: "Montserrat", sans-serif;
}
.grecaptcha-badge {
    display: none;
}

.single-product,
.single-product .product {
    display: block;
}

.single-product #site-content {
    margin-top: 200px;
}

@media(min-width: 769px) {
    .hide_desktop {
        display: none;
    }
}

@media(max-width: 768px) {
    body.open-mini-cart {
        overflow: hidden;
    }

    .show_mobile {
        display: block;
    }

    .hide_mobile {
        display: none;
    }
}

/*chat messages*/
.ht-ctc-chat {
    z-index: 99 !important;
}

.ht-ctc-chat .ctc-analytics.ht_ctc_padding {
    background: url(./assets/public/img/callColor.png) center/cover no-repeat !important;
}

.ht-ctc-chat .ctc-analytics.ht_ctc_padding:before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background: url(./img/whatsApp-icon.svg) center/contain no-repeat;
}

@media(max-width: 768px) {
    .ht-ctc-chat .ctc-analytics.ht_ctc_padding:before {
        width: 24px;
        height: 24px;
    }
}

.ht-ctc-chat .ctc-analytics svg {
    display: none !important;
}

.chat_message {
    display: none;
    color: #0B0B0D;
}

:root[lang="pl-PL"] .chat_message[data-lang="pl"],
:root[lang="de-DE"] .chat_message[data-lang="de"],
:root[lang="en-US"] .chat_message[data-lang="en"] {
    display: block;
}
/*end chat messages*/

/*expand_text*/
[data-action="expand_text"] hr {
    position: absolute;
    display: block;
    border: 0;
    margin: 0;
    width: 0;
    height: 0;
}

[data-action="expand_text"] hr ~ * {
    display: none;
}

[data-action="toggle_text_visibility"] .label_hide {
    display: none;
}

[data-box="expand_text_box"] {
    position: relative;
    height: var(--h, auto);
    transition: .4s;
    overflow: hidden;
}

.showed[data-action="expand_text"] [data-box="expand_text_box"] {
    height: var(--h_full, auto);
}

.showed[data-action="expand_text"] [data-action="toggle_text_visibility"] .label_show {
    display: none;
}

.showed[data-action="expand_text"] [data-action="toggle_text_visibility"] .label_hide {
    display: inline;
}
/*end expand_text*/

/*add-to-cart button*/
.loading {
    pointer-events: none;
}

.loading button {
    position: relative;
    color: transparent !important;
}

.loading button:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #999;
    border-radius: 50%;
    animation: addToCartSpin 0.7s linear infinite;
}

@keyframes addToCartSpin {
    0% { transform: translate(-50%, -50%) rotate(0); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/*end add-to-cart button*/

.menu__nav li:has(.arrow) {
    position: relative;
    padding-right: 36px;
}

.menu__nav .sub-menu {
    width: 100%;
    display: none;
    padding-left: 30px;
    padding-top: 15px;
}

.menu__nav .sub-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.menu__nav .arrow {
    position: absolute;
    top: 5px;
    right: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-right: 2px solid #F9FAFB;
    border-bottom: 2px solid #F9FAFB;
    transform: rotateZ(45deg);
    cursor: pointer;
    transition: .4s;
}

.menu__nav .arrow.opened {
    top: 13px;
    transform: rotateZ(-135deg);
}

@media(max-width: 768px) {
    .menu__nav li:has(.arrow) {
        padding-right: 26px;
        width: 100%;
    }

    .menu__nav .arrow {
        top: 2px;
        width: 13px;
        height: 13px;
    }

    .menu__nav .arrow.opened {
        top: 9px;
    }
}

/*header_cart*/
.header__basket {
    position: relative;
}

.header__basket .basket-count {
    position: absolute;
    top: 55%;
    left: 52%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    text-align: center;
}

.header_cart {
    width: 100%;
    max-width: 415px;
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.header_cart.open {
    transform: translateX(0);
}

.header_cart_content {
    display: block;
    height: 100%;
    padding: 40px 24px;
    background-color: #0B0B0D;
    border: 1px solid #E5B035;
    border-radius: 8px 0 0 8px;
}

.header_cart_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header_cart_head h3 {
    font-size: 28px;
    font-weight: 500;
}

.header_cart_head span {
    cursor: pointer;
}

.header_cart_body {
    position: relative;
}

.header_cart_body.processing {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.header_cart_body.processing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.header_cart_body .product_row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 5%;
}

.header_cart_body .product_info {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 16px;
}

.header_cart_body .img_box {
    width: 80px;
    height: 70px;
    overflow: hidden;
}

.header_cart_body .img_box a {
    height: 100%;
}

.header_cart_body .img_box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    float: none !important;
}

.header_cart_body h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.header_cart_body h4 a {
    color: inherit;
}

.header_cart_body .product_price {
    text-align: right;
}

.header_cart_body .product_price .amount {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    white-space: nowrap;
}

.header_cart_body .remove_from_cart_button {
    display: inline-block;
}

.header_cart .header_cart_body ul {
    margin-bottom: 40px;
    max-height: 45vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 6px;
}

.header_cart .header_cart_body ul::-webkit-scrollbar {
    width: 6px;
}

.header_cart .header_cart_body ul::-webkit-scrollbar-track {
    background: #000;
}

.header_cart .header_cart_body ul::-webkit-scrollbar-thumb {
    background-color: #EDCC58;
    border-radius: 6px;
}

.header_cart .header_cart_body ul {
    scrollbar-width: thin;
    scrollbar-color: #EDCC58 #000;
}

.header_cart .header_cart_body .mini_cart_item {
    padding: 0;
    margin-bottom: 16px;
}

.header_cart .header_cart_body .mini_cart_item:last-child {
    margin-bottom: 0;
}

.header_cart_body .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.header_cart_body .total strong {
    color: inherit;
    font-weight: 500;
}

.header_cart_footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.header_cart_footer .page__button {
    width: 100%;
    font-weight: 500;
}

.header_cart_footer .page__more {
    font-size: 14px;
}


/*page__call*/
a.page__call {
    position: fixed;
    bottom: 105px;
    right: 20px;
    width: 68px;
    height: 68px;
    z-index: 99;
}

@media(max-width: 768px) {
    a.page__call {
        width: 50px;
        height: 50px;
        right: 12px;
        bottom: 80px;
    }

    .ht-ctc-chat svg,
    a.page__call svg {
        width: 24px !important;
        height: 24px !important;
    }

    .ht-ctc-chat {
        right: 13px !important;
    }

    .ht_ctc_padding {
        padding: 12px !important;
    }
}
/*end page__call*/

.product-quantity-picker {
    flex-grow: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    border-radius: 4px;
    padding: 6px 8px;
    border: 1px solid #6C7275;
    color: #F9FAFB;
    background-color: transparent;
}
.product-quantity-picker input {
    background-color: transparent;
    border: none;
    color: #F9FAFB;
    width: 2em !important;
    font-size: 12px;
    line-height: 20px;
    padding: 0;
    text-align: center;
}
.product-quantity-picker input:focus {
    outline: none;
}
.product-quantity-picker button {
    width: 16px;
    height: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #F9FAFB;
    border: none;
    cursor: pointer;
}

.product-quantity-picker button[name="update_cart"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/*end header_cart*/

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.form__form input:-webkit-autofill {
    -webkit-text-fill-color: #F9FAFB;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

.acf-order .order__swiperContainer {
    width: 100%;
    padding-bottom: 20px;
}

.acf-order {
    height: 349px;
}

.acf-order .order__fixed {
    height: calc(100% - 20px);
}

.acf-order .order__pagination {
    position: relative;
    display: flex;
    justify-content: center;
    top: 0 !important;
    bottom: 0 !important;
    width: auto;
    height: 2px;
    overflow: hidden;
    margin-top: 18px;
}

.acf-order .order__pagination .swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border-radius: 10px;
    background: #F9FAFB;
    opacity: 1 !important;
}

.acf-order .order__pagination .swiper-pagination-bullet-active {
    background: #EDCC58;
}

.checkout-steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    justify-content: space-between;
    counter-reset: step;
}

.checkout-step {
    position: relative;
    padding-left: 2rem;
    font-weight: normal;
    color: #999;
}

.checkout-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    background: #ddd;
    color: #fff;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 1.5rem;
}

.checkout-step.active {
    color: #000;
    font-weight: bold;
}

.checkout-step.active::before {
    background: #000;
}

.wpml-language-switcher {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    text-align: center;
}
.wpml-language-switcher li.active a {
    color: #F9FAFB;
}

@media(max-width: 768px) {
    .wpml-language-switcher {
        flex-direction: row;
        gap: 16px;
    }
}

.hero .hero__title {
    position: absolute;
    left: 80px;
    bottom: 70px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    display: block;
    position: static;
    flex-direction: column;
    transform: none;
    max-width: 100%;
}

.hero .hero__title:has(h2) h1 {
    font-size: 42px;
    line-height: 1.4;
}

.hero h2 {
    font-size: 22px;
    line-height: 40px;
}

.hero sup {
    font-size: 65%;
}

.hero.odmłodzenie-hero .hero__button {
    bottom: -115px;
}

.odmłodzenie-komorkowe.space-top {
    margin-top: 268px;
}

.odmłodzenie-komorkowe.service-page {
    margin-top: 120px;
}

.odmłodzenie-komorkowe.page-microneedling .odmłodzenie-komorkowe__textInner p {
    font-size: 24px;
}

@media(max-width: 768px) {
    .odmłodzenie-komorkowe.page-microneedling .odmłodzenie-komorkowe__textInner p {
        font-size: 14px;
    }

    .odmłodzenie-komorkowe.service-page {
        margin-top: 64px;
    }
}

.odmłodzenie-komorkowe.service-page h2 {
    text-transform: uppercase;
}

.odmłodzenie-komorkowe__content h2 {
    display: block;
}

.odmłodzenie-komorkowe__content h2 sup {
    font-size: 65%;
}

.odmłodzenie-komorkowe__textInner {
    height: 330px;
}

@media(min-width: 769px) {
    .odmłodzenie-komorkowe.service-page .odmłodzenie-komorkowe__textInner p {
        font-size: 24px;
        line-height: 1.66;
    }
}

.odmłodzenie-woda {
    max-width: 100%;
    padding-inline: 0;
}

.odmłodzenie-woda .content_wrapper {
    max-width: 1305px;
    padding: 0 20px;
    margin: 0 auto;
}

.odmłodzenie-woda.service-page {
    background: #fff;
    padding-bottom: 112px;
    gap: 53px;
}

.odmłodzenie-woda.service-page .odmłodzenie-woda__top {
    margin-bottom: 100px;
}

.odmłodzenie-woda.service-page p {
    color: #0B0B0D;
}

.odmłodzenie-woda.service-page .odmłodzenie-woda__button--white {
    color: #F9FAFB;
    background-color: #0B0B0D;
}

.odmłodzenie-woda__imageWrapper {
    margin-top: 60px;
}

.odmłodzenie-woda__content p a {
    color: inherit;
}

.odmłodzenie-list__block h3,
.odmłodzenie-skorze__title h2 {
    text-align: center;
}

.odmłodzenie-list__topText {
    max-width: 1210px;
    padding: 0 20px;
    margin: 0 auto 56px;
    text-align: center;
}

.odmłodzenie-list__topText h2 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.odmłodzenie-list__topText p {
    font-size: 24px;
    line-height: 1.66;
}

.odmłodzenie-open video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.odmłodzenie-open__imageWrapper {
    aspect-ratio: auto;
    position: relative;
    padding-top: 52%;
    overflow: hidden;
}

.odmłodzenie-open__imageWrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#form-odmlodzenie {
    margin-bottom: 84px;
}

.follow .sbi {
    grid-column: span 9;
    padding-bottom: 0 !important;
}

.follow #sbi_images {
    padding: 0 !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.follow .sbi_item {
    aspect-ratio: 1 / 1;
}

.google-reviews-slider {
    width: 100%;
    padding-inline: 80px;
    max-width: 1440px;
    margin: auto;
    margin-bottom: 300px;
    overflow: hidden;
}

.google-reviews-slider h2 {
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
}

.google-reviews-slider .wp-google-time,
.google-reviews-slider .wp-google-left,
.google-reviews-slider .wp-google-url {
    display: none !important;
}

.google-reviews-slider .wp-google-feedback {
    order: -1;
}

.google-reviews-slider .wp-google-reviews .wp-google-name{
    color: #fff !important;

    &:before {
        content: '— ';
    }
}
.google-reviews-slider .wp-google-text:before,
.google-reviews-slider .wp-google-text:after {
    content: '"';
}

.google-reviews-slider .wp-google-reviews .wp-google-right {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px ;

}

.google-reviews-slider .wp-gr {
    padding-bottom: 0 !important;
}

.google-reviews-slider .wp-google-feedback {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.google-reviews-slider .wp-google-text {
    min-height: 130px;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.77 !important;
}

@media (min-width: 768px) {
    .google-reviews-slider .wp-google-feedback {
        height: 260px;
    }

    .google-reviews-slider .wp-google-text {
        overflow-y: auto !important;
        padding-right: 8px;
        scrollbar-width: thin;
        scrollbar-color: #fff transparent;
        transition: max-height 0.4s ease;
    }

    .google-reviews-slider .wp-google-text::-webkit-scrollbar {
        width: 6px;
    }

    .google-reviews-slider .wp-google-text::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 3px;
    }

    .google-reviews-slider .wp-google-text::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 3px;
    }
}

.google-reviews-slider .wp-star svg path {
    fill: #EDCC58;
}

.google-reviews-slider .swiper {
    overflow: visible;
}

.google-reviews-slider .swiper-slide {
    padding: 16px;
    border: 1px solid #fff;
    border-radius: 8px;
    user-select: none;
}

.google-reviews-slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.google-reviews-slider .swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border-radius: 10px;
    background: #F9FAFB;
    opacity: 1 !important;
}

.google-reviews-slider .swiper-pagination-bullet-active {
    background: #EDCC58;
}

.main-logoBlock:has( + .acf-main-form) {
    margin-bottom: 200px;
}

.main-logoBlock .main-logoBlock__logo {
    padding: 0;
    max-width: 438px !important;
    width: 100% !important;
}

.main-logoBlock .main-logoBlock__logo img {
    object-fit: contain;
    height: auto;
}

.footer__logo {
    margin: 0 0 57px;
}

@media(max-width: 768px) {
    .footer__logo {
        width: 100%;
        max-width: 227px;
        margin-bottom: 32px;
    }
}

.block_gold_title {
    width: 100%;
    background-image: url(./assets/public/img/page-butelka/blockColor.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 194px;
}

.block_gold_title h2 {
    padding-block: 41px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #0B0B0D;
    text-transform: uppercase;
    text-align: center;
}

.block_gold_title h2 sup {
    font-size: 65%;
}

.block_gold_title h2 p {
    font-size: 32px;
    margin-top: 16px;
}

.notice_text {
    padding: 40px 20px;
    background-color: #222;
    border: 1px solid #E5B035;
    border-radius: 4px;
}

.o_marce-news__firstBlock p :is(strong, b) {
    color: inherit;
}

.follow__social {
    height: 109px;
}

@media(max-width: 1024px) {
    .order__swiper .swiper-wrapper {
        width: 100%;
    }

    .follow__imageBlock {
        grid-template-columns: repeat(12, 1fr);
    }

    .follow__item {
        grid-column: span 3;
        grid-row: auto;
    }

    .google-reviews-slider {
        padding-inline: 32px;
        margin-bottom: 100px;
    }
}

.rejuvenation__textBlock.is-expanded .rejuvenation__textInner p:nth-of-type(2) {
    padding-inline: 0;
}

.odmłodzenie-komorkowe__textInner p:first-of-type {
    max-width: 100%;
}

.hiperbaryczne-etap__textInner p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hiperbaryczne-etap__textBlock p.show_all,
.hiperbaryczne-etap__textBlock.expanded p {
    display: block;
}

@media(min-width: 769px) {
    .mitochondrialne-title-image.bigger-space {
        --space: 300px;
    }

    section.bigger-space {
        margin-bottom: 300px;
    }

    .microneedling-cennik.page-inne h3 {
        font-size: 34px;
    }

    .microneedling-cennik .flex_wrap + h3 {
        font-size: 24px;
    }
}

.hiperbaryczne-domowa__content {
    text-align: center;
}

.butelka-zwiazek__content h2 {
    max-width: 100%;
}

.hiperbaryczne-domowa.service-rejuvenation p {
    font-weight: 500;
}

.hiperbaryczne-domowa.page-ile {
    padding: 200px 0;
}

.hiperbaryczne-domowa.page-ile .hiperbaryczne-domowa__content {
    max-width: 850px;
}

@media(min-width: 769px) {
    .hiperbaryczne-domowa.service-page p {
        font-size: 24px;
    }

    .hiperbaryczne-domowa.service-rejuvenation p {
        font-size: 32px;
        line-height: 1.5;
    }

    .butelka-test.small-text .butelka-test__block p {
        font-size: 21px;
    }
}

.butelka-result.title-center h2 {
    grid-column: span 12;
    max-width: 100%;
}

.product-contacts__imageWrapper {
    aspect-ratio: 1.23;
}

.title__content a:has(button) {
    display: inline-block;
}

.hiperbaryczne-hero.small-gaps .hiperbaryczne-hero__title {
    gap: 16px;
}

.hiperbaryczne-hero .page__call {
    position: absolute;
    right: 5%;
    bottom: 6%;
}

.hiperbaryczne-hero__title {
    max-width: 100%;
    text-align: center;
}

.hiperbaryczne-hero h2 {
    font-size: 34px;
    line-height: 48px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.hiperbaryczne-hero p {
    font-size: 24px;
    line-height: 1.66;
}

.hiperbaryczne-hero__buttonWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hiperbaryczne-hero__buttonWrapper a {
    display: block;
    width: 100%;
    max-width: 310px;
}

.service-page.hiperbaryczne-hero .hiperbaryczne-hero__button {
    display: flex;
    bottom: 40px;
}

.hiperbaryczne-hero.lighter-image .hiperbaryczne-hero__imageWrapper::after {
    background: rgba(0, 0, 0, 0.2);
}

.page-ile .hiperbaryczne-hero__imageWrapper::after {
    background: rgba(0, 0, 0, 0.2);
}

.hiperbaryczne-hero.space-bottom {
    margin-bottom: 200px;
}

.hiperbaryczne-hero.page-inne p {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.butelka-textBlock.service-page {
    background-image: url(/wp-content/uploads/2025/06/15d3fa077af38ef9a3c035337bad6859e9712313-1-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.butelka-textBlock.service-page .butelka-textBlock__container {
    background: none;
}

.butelka-textBlock.service-page b {
    color: inherit;
    font-weight: 700;
}

.butelka-textBlock.service-page p {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
}

.butelka-korzysci.service-page-2 .butelka-korzysci__container {
    padding-top: 200px;
}

.butelka-korzysci.service-page-2 .butelka-korzysci__textBlock {
    gap: 8px;
}

@media(max-width: 768px) {
    .hiperbaryczne-hero.space-bottom {
        margin-bottom: 64px;
    }

    .hiperbaryczne-hero.page-inne p {
        font-size: 16px;
    }

    .butelka-korzysci.service-page-2 .butelka-korzysci__container {
        padding-top: 64px;
    }
}

.butelka-korzysci__container:first-child {
    padding-top: 0;
}

.butelka-korzysci__title h2 {
    text-align: center;
}

.butelka-korzysci__textBlock p {
    font-size: 24px;
    line-height: 1.66;
}

.butelka-korzysci.text-left .butelka-korzysci__textBlock p {
    text-align: left;
}

.butelka-korzysci__textBlock ul {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
    color: #F9FAFB;
    opacity: .8;
}

.butelka-korzysci__textBlock ul li {
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-gap: 8px;
}

.butelka-korzysci__textBlock ul li:last-child {
    margin-bottom: 0;
}

.butelka-korzysci__textBlock ul li:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/wp-content/uploads/2025/06/Icon.svg) center no-repeat;
}

.butelka-korzysci__textBlock h4 {
    font-size: 24px;
}

.hiperbaryczne-intrauceuticals.service-page .hiperbaryczne-intrauceuticals__tag {
    font-size: 14px;
    padding-inline: 6px;
}

.odmłodzenie-komorkowe.service-page .odmłodzenie-komorkowe__textBlock {
    max-width: 970px;
}

.hiperbaryczne-intrauceuticals.service-page {
    padding: 83px 0;
}

.hiperbaryczne-intrauceuticals__wrapper ul {
    width: 100%;
}

.hiperbaryczne-intrauceuticals__wrapper ul input {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    opacity: 0;
}

.hiperbaryczne-intrauceuticals__wrapper ul label:has(input:checked) {
    border: 2px solid #EDCC58;
}

.mitochondrialne-komorkach.page-microneedling .content_wrapper {
    max-width: 930px;
}

@media(min-width: 769px) {
    .mitochondrialne-komorkach.page-microneedling .content_box {
        font-size: 24px;
        line-height: 1.66;
    }

    .hiperbaryczne-intrauceuticals.page-pielegnacja .hiperbaryczne-intrauceuticals__container {
        gap: 200px;
    }

    .hiperbaryczne-intrauceuticals.page-pielegnacja .hiperbaryczne-intrauceuticals__titleBlock p {
        font-size: 24px;
        font-weight: 500;
    }

    .butelka-korzysci.service-page .butelka-korzysci__item {
        min-height: 1px;
        align-items: flex-start;
    }

    .butelka-korzysci.service-page .butelka-korzysci__textBlock li {
        margin-bottom: 16px;
    }

    .butelka-korzysci.service-page .butelka-korzysci__imageBlock {
        aspect-ratio: 1 / 1;
    }

    .butelka-korzysci.service-page .butelka-korzysci__item:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .butelka-korzysci.service-page .butelka-korzysci__item:nth-child(even) {
        flex-direction: row;
    }
}

.hiperbaryczne-metoda.mitochondrialne-page {
    padding: 50px 0;
}

.page-microneedling .pielegnacia-regeneracja__textBlock p {
    font-weight: 600;
}

.hiperbaryczne-hero.mitochondrialne h1 {
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero.odmłodzenie-hero .hero__title span{
        font-size: 20px ;
    }
}

@media(max-width: 768px) {
    .page-microneedling .pielegnacia-regeneracja__textBlock {
        padding: 26px 6px;
        border: 1px solid #FFC94B;
        border-radius: 8px;
    }

    .hiperbaryczne-domowa.page-ile {
        padding: 90px 0 75px;
    }

    .hiperbaryczne-intrauceuticals.page-pielegnacja .hiperbaryczne-intrauceuticals__container {
        gap: 81px;
    }

    .hiperbaryczne-domowa.quantum-page {
        padding: 100px 0;
    }

    .hiperbaryczne-metoda.mitochondrialne-page {
        padding: 87px 0;
    }

    .butelka-textBlock.service-page {
        background-size: 200%;
    }

    .odmłodzenie-komorkowe.service-page .odmłodzenie-komorkowe__textInner {
        height: 195px;
    }

    .butelka-korzysci:is(.service-page, .service-page-2) .butelka-korzysci__imageBlock {
        order: -1;
    }

    .butelka-korzysci__textBlock ul {
        font-size: 14px;
    }

    .butelka-korzysci__textBlock ul li {
        margin-bottom: 24px;
    }

    .butelka-korzysci__textBlock p {
        text-align: center;
        font-size: 14px;
    }

    .butelka-korzysci__textBlock h4 {
        font-size: 18px;
    }

    .butelka-textBlock.service-page .butelka-textBlock__container {
        padding: 32px 0;
    }

    .butelka-textBlock.service-page p {
        font-size: 14px;
    }

    .acf-order {
        height: unset;
    }

    .title__imageWrapper {
        aspect-ratio: unset;
    }

    .title__imageWrapper video {
        object-fit: contain;
    }

    .butelka-hero {
        max-height: 90vh;
    }

    .butelka-result.title-center h2 {
        grid-column: span 4;
    }

    .butelka-zwiazek__textInner {
        height: 230px;
    }

    .menu__item a sup {
        font-size: 10px;
        line-height: 16px;
        top: 2px;
    }

    .welcome__textInner {
        height: 230px;
    }

    .hero .hero__title {
        top: 20%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    .hero.odmłodzenie-hero .hero__title {
        top: 33%;
        align-items: stretch;
        text-align: left;
        gap: 0;
    }

    .hero .hero__title:has(h2) h1 {
        font-size: 29px;
        line-height: 2;
    }

    .hero.odmłodzenie-hero .hero__title:has(h2) h1 {
        font-size: 22px;
    }

    .hero.odmłodzenie-hero h1 {
        text-align: left;
        display: grid;
    }

    .hero.odmłodzenie-hero h1 pl {
        padding-left: 35px;
    }

    .hero .hero__title h2 {
        font-size: 16px;
    }

    .hero.odmłodzenie-hero {
        z-index: 0;
    }

    .hero.odmłodzenie-hero .hero__button {
        bottom: 80px;
    }

    .hero.odmłodzenie-hero .hero__video {
        object-position: 66% center;
        z-index: -1;
    }

    .odmłodzenie-komorkowe.space-top {
        margin-top: 120px;
    }

    .odmłodzenie-komorkowe__textInner {
        height: 205px;
        gap: 16px;
    }

    .odmłodzenie-komorkowe__textBlock {
        gap: 8px;
    }

    .odmłodzenie-woda__imageWrapper {
        margin-top: 30px;
    }

    .odmłodzenie-woda__imageWrapper img {
        display: block;
        margin: 0 auto;
        width: 80%;
    }

    .odmłodzenie-skorze__title h2 br {
        display: none;
    }

    .follow__social {
        height: 56px;
    }

    .follow__imageBlock {
        display: block;
        position: relative;
    }

    .follow__item {
        position: absolute;
        bottom: 0;
        right: 0;
        width: calc(50% - 4px);
    }

    .follow #sbi_images {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .google-reviews-slider h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .google-reviews-slider .swiper {
        overflow: hidden;
    }

    .google-reviews-slider .swiper-pagination {
        margin-top: 16px;
    }

    .google-reviews-slider .wp-google-text {
        font-size: 14px !important;
        min-height: 100px !important;
    }

    .main-logoBlock:has( + .acf-main-form) {
        margin: 100px 0;
    }

    .main-logoBlock .main-logoBlock__logo {
        max-width: 227px !important;
    }

    .block_gold_title {
        min-height: 74px;
    }

    .block_gold_title h2 {
        padding: 21px 15px;
        font-size: 18px;
        text-align: center;
    }

    .block_gold_title h2 p {
        font-size: 14px;
        margin-top: 8px;
    }

    .odmłodzenie-woda.service-page {
        padding-bottom: 32px;
        gap: 32px;
    }

    .odmłodzenie-list__topText h2 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .odmłodzenie-list__topText p {
        font-size: 14px;
    }

    .odmłodzenie-woda.service-page .odmłodzenie-woda__top {
        margin-bottom: 60px;
    }

    .notice_text {
        padding: 30px 10px;
    }

    .butelka-result h2 {
        max-width: 100%;
    }

    .butelka-revolucja__title h2 {
        padding: 25px;
    }

    .butelka-membrana__textInner {
        height: 230px;
    }

    .hiperbaryczne-hero {
        aspect-ratio: auto;
        height: 100lvh;
        max-height: none;
    }

    .hiperbaryczne-hero.mitochondrialne .hiperbaryczne-hero__imageWrapper img {
        object-position: 15% center;
    }

    .hiperbaryczne-hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 85px;
    }

    .hiperbaryczne-hero p {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.57;
    }

    .hiperbaryczne-hero.page-ile p {
        font-size: 16px;
        font-weight: 600;
    }

    .hiperbaryczne-hero.page-ile .hiperbaryczne-hero__title {
        top: 47%;
        align-items: stretch;
        padding: 0 12px;
    }

    .hiperbaryczne-hero.page-ile h1 {
        text-align: left;
        max-width: 200px;
    }

    .hiperbaryczne-hero.page-ile p {
        text-align: right;
        margin-left: auto;
        max-width: 140px;
    }

    .hiperbaryczne-hero__title {
        top: 50%;
    }

    .hiperbaryczne-hero.hiperbaryczne-page .hiperbaryczne-hero__title {
/*         top: 26%;
        padding-left: 5%; */
		top: 50%;
        padding-left: 0;
    }

    .hiperbaryczne-hero.page-skory .hiperbaryczne-hero__title {
        top: 23%;
    }

    .hiperbaryczne-hero.page-drenaz .hiperbaryczne-hero__title {
        top: 41%;
    }

    .whatsApp__modal p span {
        font-weight: 700;
    }
}

/*marce-banner*/
.marce-banner {
    position: relative;
    padding: 315px 0 175px;
    overflow: hidden;
}

.marce-banner .content {
    text-align: center;
}

.marce-banner h2 {
    font-size: 24px;
    font-size: clamp(20px, 6vw, 46px);
    line-height: 1.33;
    margin-bottom: 65px;
    text-transform: uppercase;
}

.marce-banner .logo_box {
    max-width: 435px;
    margin: 0 auto;
    aspect-ratio: 1 / 0.85;
}

.marce-banner .logo_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marce-banner .page__call {
    position: absolute;
    right: 5.5%;
    top: 37.8%;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .marce-banner {
        padding: 125px 0;
    }

    /*.marce-banner .logo_box {*/
    /*    max-width: 500px;*/
    /*}*/
}

@media (max-width: 767px) {
    .marce-banner {
        padding: 85px 0 65px;
    }

    .marce-banner h2 {
        font-size: 20px;
        font-size: clamp(20px, 6vw, 46px);
        margin-bottom: 15px;
    }

    .marce-banner .logo_box {
        /*max-width: 300px;*/

        padding: 0 25px;
        max-width: 60%;
    }

    .marce-banner .page__call {
        right: 3%;
    }
}
/*end marce-banner*/

/*marce-content*/
.marce-content {
    --space: 200px;
    --text_fz: 32px;
    --list_item_mih: 225px;

    position: relative;
    margin-bottom: var(--space);
    overflow: hidden;
}

.marce-content.small-text {
    --text_fz: 24px;
    --list_item_mih: 185px;
}

.marce-content .content {
    max-width: 1140px;
    margin: calc(var(--space) * 0.6) auto 0;
    padding: 0 25px;
    text-align: center;
}

.marce-content .content p,
.marce-content .content li {
    font-size: var(--text_fz);
    font-weight: 500;
    line-height: 1.5;
}

.marce-content.small-text .content p,
.marce-content.small-text .content li {
    line-height: 1.66;
}

.marce-content .img_box {
    margin-bottom: calc(var(--space) * 0.6);
}

.marce-content .img_box img {
    display: block;
    width: 100%;
    height: auto;
}

.marce-content .description {
    margin-bottom: var(--space);
}

.marce-content h4 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.marce-content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.marce-content li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: var(--list_item_mih);
    background-color: #fff;
    color: #0B0B0D;
    padding: 30px;
    border-radius: 8px;
}

.marce-content.small-text li {
    border-radius: 0;
}

.marce-content li strong,
.marce-content li b {
    color: inherit;
}

/* Responsive styles */
@media (max-width: 768px) {
    .marce-content {
        --space: 64px;
        --text_fz: 14px !important;
        --list_item_mih: 115px !important;
    }

    .marce-content .content {
        margin-top: var(--space);
    }

    .marce-content .img_box {
        margin-bottom: var(--space);
    }

    .marce-content h4 {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .marce-content ul {
        gap: 8px;
    }

    .marce-content li {
        padding: 10px;
        gap: 10px;
    }

    .marce-content.small-text ul,
    .marce-content.small-text .img_box {
        margin-left: -25px;
        margin-right: -25px;
    }

    .marce-content.small-text li {
        padding: 30px;
    }

    .marce-content .content p,
    .marce-content .content li {
        line-height: 1.6 !important;
    }

    .marce-content .content li {
        border-radius: 4px;
    }

    .marce-content.small-text .content li {
        border: 1px solid #E5B035;
    }
}
/*end marce-content*/

/*marce-misja*/
.marce-misja {
    position: relative;
    overflow: hidden;
    --space: 200px;
}

.marce-misja .text_box {
    max-width: 1090px;
    padding: 0 15px;
    margin: var(--space) auto;
    display: flex;
    flex-direction: column;
    gap: var(--space) 0;
    text-align: center;
}

.marce-misja .text_box p {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
}

.marce-misja .text_box .notice_text p {
    font-weight: 700;
}

.marce-misja .middle_text h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.marce-misja .middle_text h3 sup {
    font-size: 65%;
}

.marce-misja .middle_text span {
    font-size: 18px;
    font-weight: 500;
}

.marce-misja .img_box {
    aspect-ratio: 16 / 10;
    margin-bottom: var(--space);
}

.marce-misja .img_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles */
@media (max-width: 768px) {
    .marce-misja {
        --space: 64px;
    }

    .marce-misja .text_box {
        gap: 80px;
    }

    .marce-misja .text_box p {
        font-size: 14px;
    }

    .marce-misja .middle_text h3 {
        font-size: 20px;
        line-height: 2;
    }

    .marce-misja .middle_text span {
        font-size: 12px;
    }
}
/*end marce-misja*/

/*marce-prize*/
.marce-prize {
    --space: 200px;

    position: relative;
    margin-bottom: var(--space);
    overflow: hidden;
}

.marce-prize .content {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
}

.marce-prize .flex_wrap {
    display: flex;
    align-items: center;
    gap: 7%;
}

.marce-prize .block_gold_title {
    width: 57%;
    text-align: center;
}

.marce-prize .block_gold_title h2 {
    padding: 40px;
}

.marce-prize .img_box {
    width: 35%;
}

.marce-prize .img_box img {
    display: block;
    width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media (max-width: 1024px) {
    .marce-prize .content {
        padding-left: 32px;
    }

    .marce-prize .block_gold_title h2 {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .marce-prize {
        --space: 64px;
    }

    .marce-prize .content {
        padding-left: 0;
    }

    .marce-prize .flex_wrap {
        flex-direction: column;
        gap: 0;
    }

    .marce-prize .block_gold_title {
        width: 100%;
    }

    .marce-prize .img_box {
        width: 72%;
        margin-left: auto;
    }

    .o_marce-news__textBlock {
        border-radius: 4px;
    }
}
/*end marce-prize*/

/*cennik-banner*/
.cennik-banner {
    position: relative;
    padding: 235px 0 125px;
    overflow: hidden;
}

.cennik-banner .content {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cennik-banner h1 {
    font-size: 42px;
    line-height: 1.33;
    margin-bottom: 40px;
}

.cennik-banner .content_box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
}

.cennik-banner .content_box strong,
.cennik-banner .content_box b {
    color: inherit;
}

.cennik-banner .page__call {
    position: absolute;
    right: 6.7%;
    bottom: 4.3%;
}

/* Media Queries */
@media (max-width: 768px) {
    .cennik-banner {
        padding: 215px 0 150px;
    }

    .cennik-banner h1 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .cennik-banner .content_box {
        font-size: 14px;
        gap: 24px;
    }
}
/*end cennik-banner*/

/*cennik-product*/
.cennik-product {
    --space: 100px;

    position: relative;
    overflow: hidden;
}

.cennik-product:has(.title_box) {
    --space: 200px;
}

.cennik-product + .cennik-product {
    margin-top: var(--space);
}

.cennik-product .title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6%;
    background-image: url("https://eilionoirgrabov.com/wp-content/themes/eleonoir-theme/assets/public/img/page-butelka/blockColor.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 80px;
    color: #0B0B0D;
    text-align: center;
}

.cennik-product .title_box h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.75;
    text-transform: uppercase;
}

.cennik-product .title_box a {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.66;
    color: inherit;
    white-space: nowrap;
}

.cennik-product .title_box a:hover {
    text-decoration: underline;
}

.cennik-product .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.cennik-product .grid_box {
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: #FCFCFA;
}

.cennik-product .img_box {
    aspect-ratio: 1 / 0.9;
}

.cennik-product .img_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cennik-product .content_box {
    padding: 2%;
}

.cennik-product .content_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 630px;
    margin: 0 auto;
}

.cennik-product h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 2.33;
    margin-bottom: 16px;
    color: #0B0B0D;
    text-transform: uppercase;
    text-align: center;
}

.cennik-product .flex_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cennik-product .item {
    position: relative;
    width: calc(50% - 8px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #9D9D9E;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
}

.cennik-product .item:has(input:checked) {
    border: 2px solid #EDCC58;
}

.cennik-product .item.horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cennik-product .item.quantity_picker {
    width: calc(75% - 8px);
    border: 2px solid #EDCC58;
}

.cennik-product .item.quantity {
    width: calc(25% - 8px);
}

.cennik-product .item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cennik-product .item .top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cennik-product .item .top_row span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    text-transform: uppercase;
}

.cennik-product .item .top_row .label {
    font-size: 12px;
    background-color: #EDCC58;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: none;
}

.cennik-product .item h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.66;
}

.cennik-product .btns_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.cennik-product .btns_box button {
    width: 100%;
    background-image: url("https://eilionoirgrabov.com/wp-content/themes/eleonoir-theme/assets/public/img/formButtonColor.png");
    text-transform: uppercase;
}

.cennik-product .counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.cennik-product .counter-button {
    font-size: 24px;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.cennik-product .counter-value {
    font-size: 20px;
    margin: 0 20px;
    min-width: 20px;
    text-align: center;
}

@media(max-width: 1024px) {
    .cennik-product .title_box {
        padding: 40px;
    }
}

@media(max-width: 768px) {
    .cennik-product {
        --space: 64px !important;
    }

    .cennik-product .title_box {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .cennik-product .title_box h2 {
        font-size: 18px;
    }

    .cennik-product .title_box a {
        font-size: 16px;
    }

    .cennik-product .grid_box {
        grid-template-columns: 100%;
    }

    .cennik-product.mob-img-position-mod .img_box img {
        object-position: center 85%;
    }

    .cennik-product .content_box {
        padding: 40px 20px;
    }

    .cennik-product h3 {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.33;
        text-align: center;
    }

    .cennik-product .flex_wrap {
        flex-direction: column;
    }

    .cennik-product .item {
        position: relative;
        width: 100%;
        padding: 8px;
    }

    .cennik-product .item h4 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.33;
    }

    .cennik-product .btns_box {
        max-width: 190px;
        margin-inline: auto;
        gap: 16px;
    }

    .cennik-product .item.quantity_picker {
        width: 100%;
        padding: 20px 16px;
    }

    .cennik-product .item.quantity {
        width: 100%;
        max-width: 190px;
        margin: 0 auto;
        padding: 2px 20px;
        border-radius: 4px;
    }
}
/*end cennik-product*/

/*cennik-boxed-list*/
.cennik-boxed-list {
    --space: 200px;

    position: relative;
    margin: var(--space) 0;
    padding: 0 20px;
    overflow: hidden;
}

.cennik-boxed-list .content {
    max-width: 1010px;
    margin: 0 auto;
    padding: 55px;
    background-color: #222222;
    border: 1px solid #FFC94B;
    border-radius: 8px;
}

.cennik-boxed-list h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 48px;
    text-align: center;
    text-transform: uppercase;
}

.cennik-boxed-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-gap: 8px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.66;
    margin-bottom: 14px;
}

.cennik-boxed-list li:last-child {
    margin-bottom: 0;
}

@media(max-width: 768px) {
    .cennik-boxed-list {
        --space: 64px;
    }

    .cennik-boxed-list .content {
        padding: 30px 10px;
    }

    .cennik-boxed-list h2 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .cennik-boxed-list li {
        font-size: 14px;
    }

    .hiperbaryczne-intrauceuticals.service-page {
        padding: 40px 0;
    }
}
/*end cennik-boxed-list*/

.hiperbaryczne-intrauceuticals__textBlock strong {
    color: inherit;
}

.hiperbaryczne-popap--rejuvenate .hiperbaryczne-popap__imageWrapper--rightBlock {
    aspect-ratio: unset;
}

.hiperbaryczne-popap__title,
.hiperbaryczne-etap__title,
.hiperbaryczne-lifting__title,
.hiperbaryczne-kategorie__title,
.hiperbaryczne-tlen__title {
    background-image: url(./assets/public/img/page-butelka/blockColor.png);
}

.microneedling-zabiegi .hiperbaryczne-lifting__imageBlock {
    aspect-ratio: unset;
    padding: 0;
}

.hiperbaryczne-lifting__content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hiperbaryczne-lifting__content > div {
    flex: unset;
    width: calc(50% - 8px);
}

.hiperbaryczne-lifting__content .text-center {
    text-align: center;
}

.hiperbaryczne-lifting.custom-list ol {
    list-style: none;
}

.hiperbaryczne-tlen__textInner .no-gap {
    margin-top: -40px;
}

.hiperbaryczne-polaczenie__content ul {
    display: flex;
    justify-content: center;
}

.hiperbaryczne-polaczenie__content ul li {
    width: calc(100% / 3 - 64px / 3);
}

.hiperbaryczne-polaczenie__content ul p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.hiperbaryczne-lifting__content p {
    font-size: 16px;
}

@media(max-width: 768px) {
    .hiperbaryczne-polaczenie__content ul p {
        font-size: 14px;
        padding: 0 20px;
    }

    .hiperbaryczne-lifting__content div {
        width: 100%;
    }

    .hiperbaryczne-lifting__content p {
        font-size: 12px;
    }

    .microneedling-zabiegi .hiperbaryczne-lifting__content div {
        gap: 24px;
    }

    .hiperbaryczne-polaczenie__content ul {
        flex-direction: column;
    }

    .hiperbaryczne-polaczenie__content ul li {
        width: 100%;
    }

    .hiperbaryczne-tlen__textInner .no-gap {
        margin-top: -24px;
    }
}

/*inhalacja-wodor*/
.inhalacja-wodor {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.inhalacja-wodor .block_gold_title {
    margin-bottom: var(--space);
}

.inhalacja-wodor .content_wrapper {
    max-width: 1285px;
    margin: 0 auto;
}

.inhalacja-wodor .notice_wrapper {
    max-width: 1110px;
    margin: 0 auto var(--space);
    padding: 0 20px;
}

.inhalacja-wodor .notice_text {
    font-size: 32px;
    line-height: 1.5;
    padding: 25px 32px;
    text-align: center;
}

.inhalacja-wodor .grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px 16px;
    text-align: center;
}

.inhalacja-wodor .box {
    display: flex;
    flex-direction: column;

    --gap: 24px;
}

.inhalacja-wodor .box .img_box {
    position: relative;
    padding-top: 38.6%;
    overflow: hidden;
    margin-bottom: var(--gap);
}

.inhalacja-wodor .box .img_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.inhalacja-wodor .box h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: var(--gap);
    text-transform: uppercase;
}

.inhalacja-wodor .box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
}

@media(max-width: 768px) {
    .inhalacja-wodor {
        --space: 64px;
    }

    .inhalacja-wodor .grid_box {
        grid-template-columns: 100%;
        grid-gap: var(--space);
    }

    .inhalacja-wodor .box .img_box {
        padding-top: 72%;
        margin-bottom: 0;
    }

    .inhalacja-wodor .box .text_box {
        padding: 56px 20px 0;
    }

    .inhalacja-wodor .box h4 {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .inhalacja-wodor .box p {
        font-size: 14px;
    }

    .inhalacja-wodor .notice_text {
        font-size: 18px;
    }
}
/*end inhalacja-wodor*/

/*inhalacja-terapie*/
.inhalacja-terapie {
    --space: 200px;

    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space);
    margin-bottom: var(--space);
}

.inhalacja-terapie .notice_box {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.inhalacja-terapie .notice_box h3 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 80px;
}

.inhalacja-terapie .notice_box p {
    font-size: 24px;
    line-height: 1.66;
}

.inhalacja-terapie .button_box {
    margin-top: 80px;
}

.inhalacja-terapie .content_box {
    background-color: #fff;
}

.inhalacja-terapie .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding-block: 70px;
    color: #0B0B0D;
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
}

.inhalacja-terapie .content :is(b, strong, a) {
    color: inherit;
}

.inhalacja-terapie .content a {
    text-decoration: underline;
}

@media(max-width: 768px) {
    .inhalacja-terapie {
        --space: 64px;
    }

    .inhalacja-terapie .notice_box h3 {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .inhalacja-terapie .notice_box p {
        font-size: 16px;
    }

    .inhalacja-terapie .button_box {
        margin-top: 32px;
    }

    .inhalacja-terapie .content {
        font-size: 14px;
        padding-block: 24px;
    }
}
/*end inhalacja-terapie*/

/*inhalacja-content-image*/
.inhalacja-content-image {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.inhalacja-content-image .content_wrapper {
    background-color: #fff;
    padding: 80px 0;
}

.inhalacja-content-image .content_box {
    padding: 0 20px;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    color: #0B0B0D;
}

.inhalacja-content-image h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
}

.inhalacja-content-image p {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.66;
}

.inhalacja-content-image .img_box {
    position: relative;
    padding-top: 55.55%;
    overflow: hidden;
}

.inhalacja-content-image .img_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inhalacja-content-image .odmłodzenie-woda__buttonBlock {
    text-align: center;
}

.inhalacja-content-image .odmłodzenie-woda__buttonBlock :is(a, button) {
    width: auto;
    max-width: 100%;
}

.inhalacja-content-image .odmłodzenie-woda__buttonBlock button {
    padding: 12px 30px;
}

.inhalacja-content-image .odmłodzenie-woda__button--white {
    color: #F9FAFB;
    background-color: #0B0B0D;
}


@media(max-width: 768px) {
    .inhalacja-content-image {
        --space: 64px;
    }

    .inhalacja-content-image .content_wrapper {
        padding: 40px 0;
    }

    .inhalacja-content-image h3 {
        font-size: 14px;
    }

    .inhalacja-content-image p {
        font-size: 16px;
    }

    .inhalacja-content-image .img_box {
        padding-top: 116%;
    }

    .inhalacja-content-image .img_box img {
        object-position: right;
    }
}
/*end inhalacja-content-image*/

/*inhalacja-zalety*/
.inhalacja-zalety {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: 125px;
}

.inhalacja-zalety .block_gold_title {
    text-align: center;
}

.inhalacja-zalety .block_gold_title h2 {
    padding: 41px 0;
}

.inhalacja-zalety .container_wrapper {
    max-width: 1320px;
    margin: 56px auto 0;
    padding: 0 29px;
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.inhalacja-zalety .list_wrapper {
    display: grid;
    grid-template-columns: 39% 1fr;
    grid-gap: 10%;
}

.inhalacja-zalety .list_wrapper ul {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 16px;
    text-align: center;
}

.inhalacja-zalety .list_wrapper ul:has(+ a) {
    margin-bottom: 24px;
}

.inhalacja-zalety .list_wrapper li {
    padding: 23px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33;
    background-color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
    color: #0B0B0D;
    min-height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inhalacja-zalety .odmłodzenie-woda__button {
    width: 100%;
}

.inhalacja-zalety .list_wrapper .img_box {
    aspect-ratio: 1 / .94;
}

.inhalacja-zalety.page-microneedling .list_wrapper .img_box {
    aspect-ratio: unset;
}

.inhalacja-zalety .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inhalacja-zalety .content_wrapper {
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-gap: 5%;
    align-items: center;
}

.inhalacja-zalety .content_wrapper .img_box {
    aspect-ratio: 1 / .84;
}

.inhalacja-zalety .content_box {
    font-size: 24px;
    line-height: 1.66;
}

.inhalacja-zalety .content_box h4 {
    font-size: 32px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.inhalacja-zalety .content_box p:not(:last-child) {
    margin-bottom: 8px;
}

.inhalacja-zalety .quotes_wrapper {
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.inhalacja-zalety .quote {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 24px;
    line-height: 1.66;
}

.inhalacja-zalety .quote:nth-child(odd) {
    padding-left: 16px;
    border-left: 3px solid #EDCC58;
}

.inhalacja-zalety .quote:nth-child(even) {
    padding-right: 16px;
    border-right: 3px solid #EDCC58;
}

.inhalacja-zalety .quote h4 {
    font-size: 32px;
    line-height: 1.5;
}

.inhalacja-zalety :is(i, em) {
    font-weight: 400;
}

@media(max-width: 768px) {
    .inhalacja-zalety {
        --space: 64px;

        margin-bottom: var(--space);
    }

    .inhalacja-zalety .list_wrapper {
        grid-template-columns: 100%;
        grid-gap: var(--space);
    }

    .inhalacja-zalety .content_wrapper .img_box,
    .inhalacja-zalety .list_wrapper .img_box {
        order: -1;
        margin: 0 -29px;
    }

    .inhalacja-zalety.page-microneedling .list_wrapper .img_box {
        order: 1;
    }

    .inhalacja-zalety .container_wrapper {
        margin-top: var(--space);
    }

    .inhalacja-zalety .list_wrapper li {
        font-size: 14px;
        padding-inline: 12px;
        min-height: 70px;
    }

    .inhalacja-zalety .list_wrapper a {
        display: block;
        max-width: 190px;
        margin: 0 auto;
    }

    .inhalacja-zalety .quote {
        font-size: 14px;
    }

    .inhalacja-zalety .quote i,
    .inhalacja-zalety .quote h4 {
        font-size: 18px;
    }

    .inhalacja-zalety .content_wrapper {
        grid-template-columns: 100%;
        grid-gap: var(--space);
    }

    .inhalacja-zalety .content_box {
        text-align: center;
        font-size: 14px;
    }

    .inhalacja-zalety .content_box i,
    .inhalacja-zalety .content_box h4 {
        font-size: 18px;
    }

}
/*end inhalacja-zalety*/

/*mitochondrialne-komorkach*/
.mitochondrialne-komorkach {
    --space: 200px;
    --gap: 80px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
    background-color: #fff;
}

.mitochondrialne-komorkach .content_title_box {
    max-width: 1180px;
    margin: var(--gap) auto;
    padding: 0 20px;
    text-align: center;
}

.mitochondrialne-komorkach .content_title_box h3 {
    font-size: 34px;
    text-transform: uppercase;
    color: #0B0B0D;
}

.mitochondrialne-komorkach .img_box {
    width: 100%;
}

.mitochondrialne-komorkach .img_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.mitochondrialne-komorkach .content_wrapper {
    max-width: 1180px;
    padding: 0 20px;
    margin: var(--gap) auto;
    text-align: center;
}

.mitochondrialne-komorkach .content_box {
    margin-bottom: 40px;
    color: #0B0B0D;
    font-size: 32px;
    line-height: 1.25;
}

.mitochondrialne-komorkach.page-ile .content_box {
    line-height: 1.66;
}

.mitochondrialne-komorkach.page-microneedling .content_box {
    font-size: 24px;
    line-height: 1.66;
}

.mitochondrialne-komorkach .content_box[data-box="expand_text_box"] {
    font-size: 24px;
    line-height: 1.66;
}

.mitochondrialne-komorkach .content_box > div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mitochondrialne-komorkach .content_box :is(b, strong) {
    color: inherit;
}

@media(min-width: 769px) {
    .mitochondrialne-komorkach.page-ile .content_box > div {
        gap: 40px;
    }
}

@media(max-width: 768px) {
    .mitochondrialne-komorkach {
        --space: 64px;
        --gap: 32px;
    }

    .mitochondrialne-komorkach .content_title_box h3 {
        font-size: 18px;
    }

    .mitochondrialne-komorkach .content_wrapper {
        min-height: 356px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mitochondrialne-komorkach .content_box {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .mitochondrialne-komorkach .title__button {
        max-width: 190px;
        margin: 0 auto;
    }
}
/*end mitochondrialne-komorkach*/

/*mitochondrialne-komorkowy*/
.mitochondrialne-komorkowy {
    --space: 200px;
    --gap: 80px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.mitochondrialne-komorkowy .content_box {
    max-width: 1130px;
    padding: 0 20px;
    margin: var(--gap) auto 0;
}

.mitochondrialne-komorkowy .top_text {
    background-color: #fff;
    padding: 32px;
    margin-bottom: var(--gap);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.66;
    text-align: center;
    color: #0B0B0D;
}

.mitochondrialne-komorkowy h3 {
    font-size: 34px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.mitochondrialne-komorkowy .flex_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 24px;
    margin: var(--gap) 0 var(--space);
}

.mitochondrialne-komorkowy .box {
    display: flex;
    flex-direction: column;
    width: calc(33.3334% - 48px / 3);
    background-color: #fff;
}

.mitochondrialne-komorkowy .box .img_box {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
}

.mitochondrialne-komorkowy .box .img_box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
}

.mitochondrialne-komorkowy .box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mitochondrialne-komorkowy .box p {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #0B0B0D;
    text-align: center;
}

.mitochondrialne-komorkowy .notice_text {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

@media(max-width: 768px) {
    .mitochondrialne-komorkowy {
        --space: 64px;
        --gap: 64px;
    }

    .mitochondrialne-komorkowy .top_text {
        font-size: 14px;
        padding: 32px 13px;
    }

    .mitochondrialne-komorkowy h3 {
        font-size: 18px;
    }

    .mitochondrialne-komorkowy .flex_wrap {
        gap: 16px;
    }

    .mitochondrialne-komorkowy .box {
        width: 100%;
    }

    .mitochondrialne-komorkowy .box p {
        font-size: 16px;
    }

    .mitochondrialne-komorkowy .box .img_box {
        aspect-ratio: 1 / .63;
    }

    .mitochondrialne-komorkowy .box img {
        object-position: center 30%;
    }

    .mitochondrialne-komorkowy .notice_text {
        font-size: 18px;
    }
}
/*end mitochondrialne-komorkowy*/

/*mitochondrialne-title-image*/
.mitochondrialne-title-image {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.mitochondrialne-title-image .block_gold_title {
    margin-bottom: var(--space);
}

.mitochondrialne-title-image.no-gap .block_gold_title {
    margin-bottom: 0;
}

.mitochondrialne-title-image .title_box {
    max-width: 1110px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.mitochondrialne-title-image .title_box h2 {
    font-size: 32px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
}

.mitochondrialne-title-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media(max-width: 768px) {
    .mitochondrialne-title-image {
        --space: 64px;
    }

    .mitochondrialne-title-image .title_box {
        margin-bottom: 56px;
    }

    .mitochondrialne-title-image .title_box h2 {
        font-size: 18px;
    }
}

@media(max-width: 400px) {
    .mitochondrialne-title-image.no-br h2 br {
        display: none;
    }
}
/*end mitochondrialne-title-image*/

/*mitochondrialne-hipoksja*/
.mitochondrialne-hipoksja {
    --space: 200px;
    --gap: 80px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.mitochondrialne-hipoksja .content_wrapper {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.mitochondrialne-hipoksja .top_text_box {
    max-width: 970px;
    margin: 0 auto var(--gap);
    text-align: center;
}

.mitochondrialne-hipoksja .top_text_box h3 {
    font-size: 34px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: var(--gap);
}

.mitochondrialne-hipoksja .top_text_box p {
    font-size: 24px;
    line-height: 1.66;
}

.mitochondrialne-hipoksja .img_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media(max-width: 768px) {
    .mitochondrialne-hipoksja {
        --space: 64px;
        --gap: 24px;
    }

    .mitochondrialne-hipoksja .top_text_box h3 {
        font-size: 18px;
    }

    .mitochondrialne-hipoksja .top_text_box p {
        font-size: 14px;
    }

    .mitochondrialne-hipoksja .img_box {
        margin: 0 -20px;
        aspect-ratio: 1 / .87;
    }

    .mitochondrialne-hipoksja .img_box img {
        height: 100%;
    }
}
/*end mitochondrialne-hipoksja*/

/*mitochondrialne-ihht*/
.mitochondrialne-ihht {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.mitochondrialne-ihht .content_wrapper {
    max-width: 1280px;
    margin: var(--space) auto 0;
}

.mitochondrialne-ihht .flex_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space);
}

.mitochondrialne-ihht .flex_row:nth-child(even) {
    flex-direction: row-reverse;
}

.mitochondrialne-ihht .flex_row:last-child {
    margin-bottom: 0;
}

.mitochondrialne-ihht .img_box {
    width: 45%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.mitochondrialne-ihht .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mitochondrialne-ihht .text_box {
    width: 49%;
    text-align: center;
}

.mitochondrialne-ihht .text_box h3 {
    font-size: 32px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.mitochondrialne-ihht .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 24px;
    line-height: 1.66;
}

.mitochondrialne-ihht .text_box li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23px;
    margin-bottom: 16px;
    min-height: 94px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.33;
    color: #0B0B0D;
    background-color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
}

.mitochondrialne-ihht .text_box li:last-child {
    margin-bottom: 0;
}

.mitochondrialne-ihht .text_box .button_box {
    margin-top: 24px;
}

@media(max-width: 768px) {
    .mitochondrialne-ihht {
        --space: 64px;
    }

    .mitochondrialne-ihht .flex_row {
        flex-direction: column !important;
        gap: 54px;
    }

    .mitochondrialne-ihht .text_box {
        width: 100%;
        padding: 0 20px;
        order: -1;
    }

    .mitochondrialne-ihht .content {
        font-size: 14px;
    }

    .mitochondrialne-ihht .text_box h3 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .mitochondrialne-ihht .text_box li {
        font-size: 14px;
        padding: 11px;
        min-height: 70px;
    }

    .mitochondrialne-ihht .img_box {
        width: 100%;
    }

    .mitochondrialne-ihht .page__button {
        width: auto;
    }
}
/*end mitochondrialne-ihht*/

/*rejuvenation-imageBlock*/
.rejuvenation-imageBlock {
    --space: 200px;

    width: 100%;
    margin: 0 auto var(--space);
    overflow: hidden;
    max-width: 1440px;
    display: flex;
    justify-content: flex-end;
}

.rejuvenation-imageBlock__imageWrapper {
    width: 65%;
    aspect-ratio: 1.28;
    top: 0;
    right: 0;
}

.rejuvenation-imageBlock__imageWrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media (max-width: 768px) {
    .rejuvenation-imageBlock {
        --space: 64px;
    }
}
/*end rejuvenation-imageBlock*/

.woocommerce-checkout .select2-search--dropdown .select2-search__field {
    color: inherit;
}

.woocommerce-wrapper {
    margin-top: 186px;
    margin-bottom: 160px;
}

.woocommerce-wrapper .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.woocommerce-wrapper h1 {
    grid-column: 1 / -1;
    font-size: 56px;
    line-height: 1.3;
    margin-bottom: 35px;
    text-transform: uppercase;
    text-align: center;
}

.woocommerce-wrapper .woocommerce-notices-wrapper {
    display: none;
}

.woocommerce-cart-form .shop_table tbody .product-thumbnail {
    align-self: flex-start;
    flex-shrink: 0;
    height: 70px;
}

.woocommerce-cart-form .shop_table tbody tr :is(td.product-price, td.product-subtotal) {
    white-space: nowrap;
}

@media(max-width: 768px) {
    .woocommerce-wrapper .woocommerce {
        display: block;
    }

    .woocommerce-wrapper {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .woocommerce-wrapper h1 {
        font-size: 36px;
    }

    .woocommerce .checkout-steps {
        display: none;
    }

    .woocommerce .cart-collaterals {
        max-width: 100%;
        padding: 25px;
    }

    .woocommerce-cart-form .shop_table tbody tr.gratisText td:before {
        display: none;
    }

    .woocommerce-cart-form .shop_table tbody tr td.product-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .woocommerce-cart-form .shop_table tbody .product-thumbnail {
        display: block;
    }

    .woocommerce-cart-form .shop_table tbody tr td.product-name .product-nameWrapper {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
        text-align: left;
        margin-top: 8px;
    }

    .woocommerce-cart-form .shop_table tbody tr td.product-quantity {
        position: relative;
        margin: 16px 0;
    }

    .woocommerce-cart-form .shop_table tbody tr td.product-quantity:before {
        display: none;
    }
}

/*woocommerce-checkout*/
.woocommerce .woocommerce-checkout {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce .woocommerce-checkout .woocommerce-NoticeGroup {
    display: none;
}

.woocommerce .woocommerce-checkout .fields-box {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.woocommerce .woocommerce-checkout .fields-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.woocommerce .woocommerce-checkout #ship-to-different-address {
    margin: 24px 0;
    font-size: 16px;
    font-weight: 500;
    color: #9D9D9E;
}

.woocommerce .woocommerce-checkout #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce .woocommerce-checkout #ship-to-different-address input {
    width: 24px;
    height: 24px;
}

.woocommerce .woocommerce-checkout #place_order {
    display: none;
    order: 1;
}

.woocommerce .woocommerce-checkout #place_order ~ #place_order:last-of-type {
    display: block;
}

.woocommerce table.shop_table {
    margin: 0;
}

.woocommerce .fields-box:has(.shipping-methods-box) {
    margin-top: 48px;
}

.woocommerce .shipping-methods-box h3 {
    margin-bottom: 16px;
}

.woocommerce #customer_details .bordered-radio-picker {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 16px;
    border: 1px solid #E5B035;
    border-radius: 4px;
    cursor: pointer;
}

.woocommerce #customer_details li:not(:last-child):has(.bordered-radio-picker) {
    margin-bottom: 12px;
}

.woocommerce .shipping-methods-box ul#shipping_method input {
    margin: 0;
}

.woocommerce ul#shipping_method p {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce .order-total th {
    vertical-align: top;
}

.woocommerce table.shop_table .order-total small {
    display: block;
    position: relative;
    top: -5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 58%);
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    border-bottom: 0;
    display: flex;
    flex-direction: column;
}

.woocommerce-checkout #payment ul.payment_methods + .place-order {
    position: absolute;
    width: 0;
    left: 0;
    pointer-events: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    order: -1;
    color: #F9FAFB;
}

#payment .payment_method_woocommerce_payments .testmode-info {
    color: #F9FAFB;
}

.woocommerce-checkout #payment ul.payment_methods li:last-of-type {
    margin-bottom: 55px;
}

.woocommerce-checkout #payment .payment_method_bacs.payment_box {
    margin: 0 !important;
}

.woocommerce-checkout #payment .payment_method_bacs li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0 !important;
    font-size: 16px;
    font-weight: 500 !important;
}

.woocommerce-checkout #payment .payment_method_bacs li:before,
.woocommerce-checkout #payment .payment_method_bacs li:after {
    display: none !important;
}

.woocommerce-checkout #payment .payment_method_bacs .name {
    display: inline-block;
    white-space: nowrap;
}

.woocommerce-checkout #payment .payment_method_bacs .name + span {
    text-align: right;
}

.woocommerce .cart-collaterals .cart_totals .cart-subtotal-product .name {
    max-width: 180px;
}

.woocommerce-checkout #payment div.payment_box::before,
#payment .payment_methods li[class*=payment_method_woocommerce_payments] label img {
    display: none;
}

.woocommerce-checkout #payment div.payment_box {
    background-color: transparent;
    padding: 0;
}

.woocommerce-checkout #payment .wc-payment-form {
    padding: 0 !important;
    border: 0;
}

.woocommerce-checkout #payment .wc-payment-form div {
    padding: 0;
}

.woocommerce-checkout #payment .wc-payment-form .woocommerce-validated {
    flex-direction: row;
    margin-top: 16px !important;
    gap: 12px;
}

.woocommerce-checkout #payment .wc-payment-form .woocommerce-validated label {
    line-height: 1.4;
}

.woocommerce-wrapper .woocommerce-order {
    grid-column: 1 / -1;
}

.woocommerce .woocommerce-checkout #order_review .woocommerce-Price-amount bdi,
.woocommerce .cart-collaterals .cart_totals .cart-subtotal-products span.line-total > span {
    display: inline;
    white-space: nowrap;
}

.woocommerce .woocommerce-checkout #order_review .product-name {
    display: table-cell;
}

.woocommerce .woocommerce-checkout #order_review .product-row:before,
.woocommerce .woocommerce-checkout #order_review .product-row:after {
    content: '';
    display: table;
    clear: both;
}

.woocommerce .woocommerce-checkout #order_review .product-thumbnail {
    margin-right: 16px;
    float: left;
}

.woocommerce .woocommerce-checkout #order_review .name__wrapper {
    word-break: break-word;
}

.woocommerce .woocommerce-checkout #order_review .product-total {
    white-space: nowrap;
    padding-right: 0;
}

.woocommerce table.shop_table tfoot td {
    font-weight: 500;
}

.woocommerce .woocommerce-checkout #order_review h3 {
    max-width: 350px;
}

.woocommerce .coupon__code {
    position: relative;
    border: 1px solid #E5B035;
    background-color: #222222;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
}

.woocommerce .coupon__code .input-text {
    background-color: transparent;
    border: none;
    color: #F9FAFB;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    outline: none;
}

.woocommerce .coupon__code .input-text::-moz-placeholder {
    color: #9D9D9E;
}

.woocommerce .coupon__code .input-text::placeholder {
    color: #9D9D9E;
}

.woocommerce .coupon__code button {
    background-color: transparent;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #F9FAFB;
    padding: 0;
}

.woocommerce .coupon__code button[name=update_cart] {
    display: none;
}

@media(max-width: 768px) {
    .woocommerce .coupon__code button {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
    }

    .woocommerce .woocommerce-checkout {
        display: block;
    }

    .woocommerce .woocommerce-checkout #order_review {
        margin-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .woocommerce .woocommerce-checkout #order_review .product-thumbnail {
        width: 65px;
        margin-right: 8px;
    }

    .woocommerce .woocommerce-checkout #order_review .name__wrapper {
        font-size: 12px;
    }

    .woocommerce-checkout #payment .payment_method_bacs li {
        font-size: 14px;
    }
}

.thankyou_wrapper {
    max-width: 630px;
    margin: 0 auto;
}

.thankyou_content {
    padding: 40px;
    background-color: #222222;
    border: 1px solid #E5B035;
    border-radius: 8px;
    text-align: center;
}

.thankyou_content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.thankyou_content h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.thankyou_content ul {
    max-width: 330px;
    margin: 0 auto 40px;
    text-align: left;
}

.thankyou_content li {
    display: grid;
    grid-template-columns: 45% 45%;
    grid-gap: 10%;
    align-items: center;
    margin-bottom: 20px;
}

.thankyou_content li:last-child {
    margin-bottom: 0;
}

.thankyou_content li span {
    font-size: 14px;
    color: #9D9D9E;
}

.thankyou_content li .name {
    color: #F9FAFB;
}

@media(max-width: 768px) {
    .thankyou_content {
        padding: 25px 16px;
    }

    .thankyou_content h3 {
        font-size: 18px;
    }

    .thankyou_content h2 {
        font-size: 24px;
    }
}



/* start pakiety page*/
.pakiety-gold-banner{
    width: 100%;
    background-image: url(./assets/public/img/page-butelka/blockColor.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 200px;
}
.pakiety-gold-banner__title h2{
    padding-top: 48px;
    font-size: 32px;
    line-height: 56px;
    font-weight: 700;
    color: #0B0B0D;
    text-transform: uppercase;
    text-align: center;
}
.pakiety-gold-banner__middletitle p{
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: #0B0B0D;
}
.pakiety-gold-banner__subtitle p{
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: #0B0B0D;
    padding-bottom: 48px;

}
.pakiety-gold-banner__middletitle p sup {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    top: 1px;
    left: 0;
}
.pakiety-gold-banner__subtitle p sup {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    top: 1px;
    left: 0;
}

@media (max-width: 768px) {
    .pakiety-gold-banner{
        margin-bottom: 64px;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pakiety-gold-banner__title h2{
        padding-top: 33px;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 16px;
    }
    .pakiety-gold-banner__subtitle p{
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 33px;
    }
    .pakiety-gold-banner__middletitle p{
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 8px;
    }
    .pakiety-gold-banner__middletitle p sup {
        position: relative;
        font-weight: 700;
        font-size: 9px;
        top: 1px;
        left: 0;
    }
    .pakiety-gold-banner__subtitle p sup {
        position: relative;
        font-weight: 700;
        font-size: 9px;
        top: 1px;
        left: 0;
    }

}

.pakiety-hero{
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.pakiety-hero__container {
    width: 100%;
    padding-inline: 80px;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}
.pakiety-hero__titleBlock{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    row-gap: 40px;
    margin-top: 295px;
    margin-bottom: 232px;
    max-width: 899px;
}
.pakiety-hero__titleBlock h1{
    color: #F9FAFB;
    text-align: center;
    font-size: 42px;
    line-height: 56px;
    text-transform: uppercase;

}
.pakiety-hero__titleBlock h1 sup {
    position: relative;
    font-weight: 700;
    font-size: 22px;
    top: 1px;
    left: 0;
}
.pakiety-hero__titleBlock span {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    line-height: 32px;
}
.page__call{
    width: 100px;
    aspect-ratio: 1;
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    background-image: url(./assets/public/img/callColor.png);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page__call:hover{
    filter: brightness(1.1);
}
.pakiety-hero__call{
    position: absolute;
    transform: translate(0, 40%);
    right: 2%;
}
@media (max-width: 1024px) {
    .pakiety-hero__titleBlock h1{
        max-width: 480px;
    }
    .page__call{
        width: 40px;
    }
    .page__call svg {
        width: 17.5px;
        height: 17.5px;
    }
}
@media (max-width: 768px){
    .pakiety-hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 24px;
    }
    .pakiety-hero__container{
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pakiety-hero__titleBlock{
        align-items: center;
        align-self: center;
        row-gap: 24px;
        margin-top: 252px;
        margin-bottom: 227px;
    }
    .pakiety-hero__titleBlock h1{
        justify-content: center;
        justify-self: center;
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        text-transform: uppercase;
    }
    .pakiety-hero__titleBlock h1 sup{
        font-size: 10px;
        top: 1px;
        left: 1px;
    }
    .pakiety-hero__titleBlock span{
        font-weight: 700;
        font-size: 14px;
        line-height: 22px;
        text-align: center;

    }
    .pakiety-hero__call{
        display: none;
    }

}


.container {
    width: 100%;
    padding-inline: 80px;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 200px;
}
.pakiety-offer__content {
    width: 100%;
    max-width: 632px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}
.pakiety-offer__cena{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /*row-gap: 24px;*/
    width: 100%;
    margin-bottom: 56px;
    margin-top: 80px;
}
.pakiety-offer__cenaTitle{
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
}
.pakiety-offer__cenaCost{
    font-size: 24px;
    line-height: 40px;
}
.pakiety-offer__cenaCost b {
    color: inherit;
    font-weight: 700;
}
.pakiety-offer__button{
    width: 632px;
    background-image: url(./assets/public/img/formButtonColor.png);
    text-transform: uppercase;
    margin-top: 24px;
}
@media (max-width: 768px){
    .container{
        padding-inline: 20px;
        margin-bottom: 64px;
    }
    .pakiety-offer__cena{
        margin-bottom: 48px;
        margin-top: 64px;
        /*row-gap: 24px;*/
    }
    .pakiety-offer__cenaTitle, .pakiety-offer__cenaCost{
        font-size: 18px;
        line-height: 24px;
    }
    .pakiety-offer__cenaCost span{
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        text-transform: lowercase;
    }
    .pakiety-offer__button{
        font-weight: 500;
        width: 190px;
        margin-top: 16px;
    }
}
.pakiety-offer__list{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    order: 0;
    row-gap: 40px;
}
.pakiety-offer__list p{
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: center;

}
.pakiety-offer__list ul{
    row-gap: 16px;
    align-items: start;
}
.butelka-nobel__lastBlock ul li{
    align-items: start;
}
@media (max-width: 768px){
    .pakiety-offer__list{
        font-size: 14px;
        line-height: 22px;
        order: 0;
        row-gap: 24px;
    }
    .pakiety-offer__list ul{
        margin-bottom: 0;
    }
    .pakiety-offer__list p{
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        text-align: center;

    }
    .butelka-nobel__lastBlock ul li a{
        height: 24px;
    }
    .butelka-nobel__lastBlock ul li{
        min-height: 24px;
    }
    .butelka-nobel__lastBlock ul li img{
        width: 24px;
        height: 24px;
    }
}
/* finish pakiety page*/

/* start kriostymulacia page*/

.kriostymulacja-oferte{
    margin-bottom: 0;
}
.image_hide_bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none !important;
    z-index: 2;
    pointer-events: none;
}
.reverse-block{
    column-gap: 58px;
    padding-top: 106px;
}
.reverse-image{
    grid-column: 6 / -1;
    transform: none;
    width: 100%;
    aspect-ratio: auto;
    grid-row: 1;
}
.reverse-text{
    grid-column: 1 / span 5;
    grid-row: 1;
}
.kriostymulacja-lifting__main{
    row-gap: 56px;
}
.kriostymulacja-efekty_fixTitle h2{
    padding-block: 56px;
}
.kriostymulacja-listBlock.page-ile .kriostymulacja-listBlock__imageWrapper {
    aspect-ratio: unset;
}

.kriostymulacja-terapia.page-ile .kriostymulacja-terapia__whiteBlock {
    margin-top: 200px;
}

.kriostymulacja-terapia__textBlock a {
    color: inherit;
}

@media (max-width: 1024px) {
    .kriostymulacja-oferte{
        margin-bottom: 64px;
    }
    .reverse-block{
        row-gap: 56px;
    }
    .reverse-text{
        grid-row: 1;
    }
    .reverse-image{
        grid-row: 2;
        grid-column: 1 / -1;
        width: calc(100% + 120px);
        transform: translateX(-32px);
        /*aspect-ratio: 1.78;*/
    }
    .reverse-textBlock{
        flex-direction: column;
    }
    .reverse-textBlock span{
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
    .reverse-text p{
        text-align: center !important;
    }
}
/*new*/
.kriostymulacja-efekty_itemImageWrapper__mobile{
	display: none;
}
@media (max-width: 768px){
    .kriostymulacja-terapia.page-ile .kriostymulacja-terapia__whiteBlock {
        margin-top: 64px;
    }
    .kriostymulacja-lifting__title{
        margin-top: 64px;
    }
    .kriostymulacja-lifting__imageBlock img{
        object-position: center right;
    }
    .reverse-text p{
        margin-bottom: 0;
    }
    .kriostymulacja-efekty_fixTitle{
        margin-bottom: 64px;
    }
    .kriostymulacja-efekty_topText{
        padding: 0 40px;
        margin-bottom: 24px;
    }
    .kriostymulacja-efekty_list__list{
        row-gap: 32px;
    }
    .kriostymulacja-efekty_itemImageWrapper{
        margin-top: 32px;
		aspect-ratio: 0;
		display: none;
    }
	.kriostymulacja-efekty_itemImageWrapper__mobile{
		 margin-top: 32px;
		display: block;
		aspect-ratio: 0;
	}
	 .kriostymulacja-efekty_itemImageWrapper__mobile img{
       height: auto;
		 
    }
    .kriostymulacja-lifting__main{
        row-gap: 54px;
    }
    .kriostymulacja-efekty_fixTitle h2{
        padding-block: 21px;
    }
}
/* 24.06.25 */
@media (max-width: 768px) {
    .kriostymulacja-lifting__imageBlock img {
        object-position: center center;
    }
}
/* finish kriostymulacia page*/

/*ile-disclaimer*/
.ile-disclaimer {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.ile-disclaimer .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    text-align: center;
}

.ile-disclaimer h3 {
    font-size: 32px;
    font-weight: 600;
}

.ile-disclaimer h2 {
    font-size: 40px;
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .ile-disclaimer {
        --space: 64px;
    }

    .ile-disclaimer .container {
        gap: 64px;
    }

    .ile-disclaimer h3 {
        font-size: 16px;
    }

    .ile-disclaimer h2 {
        font-size: 14px;
        line-height: 1.7;
    }
}
/*end ile-disclaimer*/

/*ile-confij*/
.ile-confij {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.ile-confij .content_wrapper {
    max-width: 1440px;
    margin: var(--space) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space);
}

.ile-confij .text_box {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ile-confij .top_text p {
    font-size: 24px;
    line-height: 1.66;
}

.ile-confij .notice_text {
    font-size: 32px;
}

.ile-confij .img_box img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width: 768px) {
    .ile-confij {
        --space: 64px;
    }

    .ile-confij .text_box {
        gap: var(--space);
    }

    .ile-confij .top_text p {
        font-size: 14px;
    }

    .ile-confij .notice_text {
        font-size: 14px;
    }
}
/*end ile-confij*/

/*ile-wiek*/
.ile-wiek {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.ile-wiek .content_wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space);
    max-width: 1320px;
    margin: var(--space) auto 0;
    padding: 0 20px;
}

.ile-wiek .boxes_wrapper h3 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 32px;
    margin-bottom: var(--space);
    text-align: center;
    text-transform: uppercase;
}

.ile-wiek .boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.ile-wiek .box {
    padding: 32px;
    background-color: #222222;
    border: 1px solid #FFC94B;
    border-radius: 8px;
    text-align: center;
}

.ile-wiek .box h4 {
    font-size: 32px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.ile-wiek .box p {
    font-size: 24px;
    line-height: 1.66;
}

.ile-wiek .img_box img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.ile-wiek .text_wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.ile-wiek .text_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 24px;
}

@media(max-width: 768px) {
    .ile-wiek {
        --space: 64px;
    }

    .ile-wiek .boxes_wrapper h3 {
        font-size: 14px;
        gap: 24px;
    }

    .ile-wiek .boxes {
        grid-template-columns: 100%;
        grid-gap: var(--space);
    }

    .ile-wiek .box {
        padding: 16px 8px;
    }

    .ile-wiek .box h4 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .ile-wiek .box p {
        font-size: 14px;
    }

    .ile-wiek .text_box {
        font-size: 14px;
    }

    .ile-wiek .img_box {
        margin: 0 -20px;
    }
}
/*end ile-wiek*/

/*page_not_found*/
.page_not_found {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.page_not_found .content_wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 37px 0;
    text-align: center;
}

.page_not_found h1 {
    font-size: 56px;
    text-transform: uppercase;
}

.page_not_found p {
    max-width: 380px;
    margin: 32px auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77;
    color: #9D9D9E;
}

.page_not_found .bg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.page_not_found .bg svg {
    width: 100%;
    height: auto;
}

.page_not_found .page__call {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
}

@media(max-width: 768px) {
    .page_not_found h1 {
        font-size: 24px;
        line-height: 1.66;
        max-width: 300px;
        margin: 0 auto;
    }

    .page_not_found p {
        font-size: 14px;
        max-width: 280px;
    }

    .page_not_found .bg {
        position: static;
        transform: none;
        padding: 0 8px;
        margin-bottom: 40px;
        pointer-events: auto;
    }

    .page_not_found .page__call {
        display: none;
    }
}
/*end page_not_found*/

/*white-boxed-list*/
.white_boxed_list {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.white_boxed_list .block_gold_title {
    margin-bottom: var(--space);
}

.white_boxed_list .content_wrapper {
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}

.white_boxed_list ul {
    padding: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 24px;
}

.white_boxed_list li {
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 1.66;
    color: #0B0B0D;
    padding: 40px 32px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    min-height: 194px;
}

@media(max-width: 768px) {
    .white_boxed_list {
        --space: 64px;
    }

    .white_boxed_list li {
        font-size: 14px;
        padding: 24px 8px;
        min-height: 92px;
        border-radius: 4px;
    }
}
/*end white-boxed-list*/

/*microneedling-terapii*/
.microneedling-terapii {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.microneedling-terapii .content_wrapper {
    max-width: 1440px;
    margin: var(--space) auto 0;
}

.microneedling-terapii .notice_wrapper {
    max-width: 1110px;
    padding: 0 20px;
    margin: 0 auto var(--space);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.microneedling-terapii .flex_row {
    display: flex;
    background-color: #fff;
}

.microneedling-terapii .img_box {
    width: 45%;
}

.microneedling-terapii .img_box div {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.microneedling-terapii .img_box img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.microneedling-terapii .text_box {
    display: flex;
    align-items: center;
    width: 55%;
}

.microneedling-terapii .table_box {
    width: 100%;
    padding: 0 17%;
}

.microneedling-terapii .text_box ul {
    padding: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 8px;
}

.microneedling-terapii .text_box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #0B0B0D;
}

.microneedling-terapii .text_box .name {
    text-transform: uppercase;
    line-height: 2.66;
    font-size: 18px;
    font-weight: 700;
}

@media(max-width: 768px) {
    .microneedling-terapii {
        --space: 64px;
    }

    .microneedling-terapii .notice_wrapper {
        font-size: 14px;
    }

    .microneedling-terapii .flex_row {
        flex-direction: column;
    }

    .microneedling-terapii .img_box,
    .microneedling-terapii .text_box {
        width: 100%;
    }

    .microneedling-terapii .img_box div {
        padding-top: 56.25%;
    }

    .microneedling-terapii .table_box {
        padding: 45px 0;
    }

    .microneedling-terapii .text_box ul {
        grid-gap: 32px;
    }

    .microneedling-terapii .text_box li {
        flex-direction: column;
        font-size: 14px;
        font-weight: 500;
        gap: 8px;
        text-align: center;
    }

    .microneedling-terapii .text_box .name {
        line-height: 1.33;
    }
}
/*end microneedling-terapii*/

/*simple-title-block*/
.simple-title-block {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

@media(max-width: 768px) {
    .simple-title-block {
        --space: 64px;
    }
}
/*end simple-title-block*/

/*microneedling-cennik*/
.microneedling-cennik {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
    background-color: #FCFCFA;
}

.microneedling-cennik .block_gold_title h2 {
    font-size: 32px;
}

.microneedling-cennik .block_gold_title p {
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
    text-transform: none;
}

.microneedling-cennik .content_wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.microneedling-cennik .grid_box {
    display: grid;
    grid-template-columns: 45% 55%;
}

.microneedling-cennik .img_box {
    position: relative;
    padding-top: 71.5%;
    overflow: hidden;
}

.microneedling-cennik .img_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 80%;
    object-fit: contain;
}

.microneedling-cennik .content_box {
    padding: 2%;
}

.microneedling-cennik.page-inne .content_box {
    padding-top: 100px;
    padding-bottom: 100px;
}

.microneedling-cennik .content_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 630px;
    margin: 0 auto;
}

.microneedling-cennik h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 2.33;
    margin-bottom: 16px;
    color: #0B0B0D;
    text-transform: uppercase;
    text-align: center;
}

.microneedling-cennik .flex_wrap + h3 {
    margin-top: 40px;
}

.microneedling-cennik p {
    font-size: 18px;
    color: #0B0B0D;
    text-align: center;
}

.microneedling-cennik.page-inne h3:has(p) {
    line-height: 1.6;
}

.microneedling-cennik.page-inne h3 p {
    font-weight: 600;
    text-transform: none;
}

.microneedling-cennik h3 + p {
    margin-bottom: 40px;
}

.microneedling-cennik .flex_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.microneedling-cennik .item {
    position: relative;
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #9D9D9E;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
}

.microneedling-cennik .item:has(input:checked) {
    border: 2px solid #EDCC58;
}

.microneedling-cennik .item.horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.microneedling-cennik .item input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.microneedling-cennik .item .top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.microneedling-cennik .item .top_row span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    text-transform: uppercase;
}

.microneedling-cennik .item .top_row .label {
    font-size: 14px;
    text-transform: uppercase;
}

.microneedling-cennik .item h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.66;
}

.microneedling-cennik .btns_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.microneedling-cennik .btns_box button {
    width: 100%;
    background-image: url("https://eilionoirgrabov.com/wp-content/themes/eleonoir-theme/assets/public/img/formButtonColor.png");
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .microneedling-cennik {
        --space: 64px !important;
    }

    .microneedling-cennik:has(+ .microneedling-cennik) {
        margin-bottom: 0;
    }

    .microneedling-cennik .block_gold_title h2 {
        font-size: 18px;
    }

    .microneedling-cennik .block_gold_title p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        margin-top: 8px;
    }

    .microneedling-cennik .grid_box {
        grid-template-columns: 100%;
    }

    .microneedling-cennik .content_box {
        padding: 40px 20px !important;
    }

    .microneedling-cennik h3 {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.33;
        text-align: center;
    }

    .microneedling-cennik .flex_wrap {
        flex-direction: column;
    }

    .microneedling-cennik .item {
        position: relative;
        width: 100%;
        padding: 8px;
    }

    .microneedling-cennik .item h4 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.33;
    }

    .microneedling-cennik .btns_box {
        max-width: 190px;
        margin-inline: auto;
        gap: 16px;
    }

    .microneedling-cennik + .microneedling-cennik .img_box {
        display: none;
    }

    .microneedling-cennik .img_box {
        padding: 40px 0 20px;
    }

    .microneedling-cennik .img_box img {
        position: static;
        transform: none;
        max-width: 175px;
        width: 100%;
        margin: 0 auto;
    }

    .microneedling-cennik .btns_box button {
        text-transform: none;
        font-weight: 500;
    }

    .microneedling-cennik p {
        font-size: 14px;
    }

    .microneedling-cennik.page-inne h3 p {
        font-weight: 500;
        font-size: 14px;
    }
}
/*end microneedling-cennik*/

/*inne-content-block*/
.inne-content-block {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.inne-content-block .container_wrapper {
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
}

.inne-content-block .content_box {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.inne-content-block.smaller-text .content_box {
    font-size: 24px;
    font-weight: 500;
}

.inne-content-block.lighter-text .content_box {
    font-weight: 400;
}

.inne-content-block .content_box h4 {
    text-transform: uppercase;
    margin-bottom: 24px;
}

.inne-content-block .content_box p:not(:last-child) {
    margin-bottom: 24px;
}

.inne-content-block .content_box button {
    margin-top: 16px;
}

.inne-content-block ul {
    max-width: 975px;
    margin: 100px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 50px;
}

.inne-content-block ul.grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.inne-content-block ul li {
    padding: 40px 32px;
    background-color: #222222;
    border: 1px solid #FFC94B;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.inne-content-block ul h4 {
    font-size: 32px;
    text-transform: uppercase;
}

.inne-content-block ul.grid h4 {
    font-size: 24px;
    line-height: 2;
}

.inne-content-block ul p {
    font-size: 24px;
}

@media(max-width: 768px) {
    .inne-content-block {
        --space: 64px;
    }

    .inne-content-block .content_box {
        font-size: 16px;
    }

    .inne-content-block.smaller-text .content_box {
        font-size: 14px;
    }

    .inne-content-block ul {
        margin-top: 64px;
        grid-gap: 16px;
    }

    .inne-content-block ul.grid {
        grid-template-columns: 100%;
    }

    .inne-content-block ul li {
        padding: 32px;
    }

    .inne-content-block ul h4 {
        font-size: 18px;
    }

    .inne-content-block ul.grid h4 {
        font-size: 16px;
        line-height: 2;
    }

    .inne-content-block ul p {
        font-size: 18px;
    }
}
/*end inne-content-block*/

/*inne-numer*/
.inne-numer {
    --space: 200px;

    position: relative;
    overflow: hidden;
    margin-bottom: var(--space);
}

.inne-numer .container_wrapper {
    max-width: 1210px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.inne-numer h2 {
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
}

.inne-numer h3 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.inne-numer .mobile_content {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.inne-numer .mobile_content button {
    margin-top: 8px;
}

.inne-numer .grid_box {
    display: grid;
    grid-template-columns: 1fr 47%;
    grid-gap: 10%;
    align-items: end;
}

.inne-numer ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inne-numer li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #0B0B0D;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    min-height: 80px;
}

.inne-numer .img_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inne-numer .bottom_content {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.inne-numer .bottom_content_box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inne-numer .bottom_content h4 {
    text-transform: uppercase;
    font-weight: 600;
}

.inne-numer .bottom_content button {
    margin-top: 16px;
}

@media(max-width: 768px) {
    .inne-numer {
        --space: 64px;
    }

    .inne-numer .container_wrapper {
        gap: 32px;
    }

    .inne-numer h2 {
        font-size: 18px;
    }

    .inne-numer h3 {
        font-size: 16px;
    }

    .inne-numer .grid_box {
        grid-template-columns: 100%;
        grid-gap: 0;
    }

    .inne-numer li {
        font-size: 16px;
    }

    .inne-numer .bottom_content {
        font-size: 16px;
        margin-top: 32px;
    }

    .inne-numer .bottom_content h4 {
        font-size: 18px;
    }
}
/* New style for block */
.hide_title_mobile_block{
	display: none;
}
@media(max-width: 768px){
	.hide_title_block{
		display: none;
	}
	.hide_title_mobile_block{
		display: flex;
	}
		.hiperbaryczne-hero .hiperbaryczne-hero__title-mobile{
/* 			flex-direction: row; */
    		justify-content: space-between;
	}
	.hiperbaryczne-hero .hiperbaryczne-hero__title-mobile h1, .hiperbaryczne-hero .hiperbaryczne-hero__title-mobile p{
		max-width: 100%;
	}
	.hiperbaryczne-hero .hiperbaryczne-hero__title-mobile h1{
		display: inline-flex;
		text-align: center;

	}
	.hiperbaryczne-hero .hiperbaryczne-hero__title-mobile p{
/* 		margin-left: 0; */
		display: inline-flex;
		text-align: center;
		justify-content: end;
	}
}

/*end inne-numer*/