.loader-ajax {
    position: absolute;
    z-index: 9999999;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px;
}
.custom-loader__text {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #FC6A5D;
}
.loader-ajax img {
    width: 100px;
}

.profile-main-loader .loader-holder:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}

.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    0% {
        stroke: #0F4F1E;
    }
    40% {
        stroke: #0F4F1E;
    }
    66% {
        stroke: #0F4F1E;
    }
    80%, 90% {
        stroke: #0F4F1E;
    }
}

@keyframes color {
    0% {
        stroke: #0F4F1E;
    }
    40% {
        stroke: #0F4F1E;
    }
    66% {
        stroke: #0F4F1E;
    }
    80%, 90% {
        stroke: #0F4F1E;
    }
}

a:has(.customizer-green-cta ) {
    margin-top: 20px;
    display: inline-block;
}

.customizer-green-cta {
    border-radius: 12px;
    border: 1px solid #2CBC63;
    background: #EEF9F1;
    padding: 20px;
    display: flex;
    flex-flow: column;
    gap: 12px;
}

.customizer-green-cta__title {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.customizer-green-cta__description {
    color: #333;
    font-family: 'Figtree';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.71;
}

.customizer-green-cta__button {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #2CBC63;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;
}

.digital-download-new {
    margin-top: 60px;
    margin-bottom: 60px;
}

.digital-download-new .digital-download {
    padding: 20px;
    border-radius: 32px;
    background: #FAFAFA;
}

.digital-download-new__title {
    margin-bottom: 20px;
    text-align: center;
}

.digital-download-new__title h2 {
    color: #333;
    font-family: 'Literata';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.14;
}

.about-plant {
    margin-bottom: 60px;
}

.about-plant__title-holder {
    text-align: center;
}

.about-plant__title {
    color: #333;
    font-family: 'Literata';
    font-size: 28px;
    font-weight: 400;
    line-height: 1.71;
    margin-bottom: 20px;
}

.about-plant__tab {
    padding: 20px;
    border-radius: 20px;
    background: #F5F5F5;
    max-width: 720px;
    margin: 0 auto 12px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

.about-plant__tab p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.about-plant__tab-title {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #888;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
    text-transform: uppercase;
}

.about-plant__tab-value {
    color: #333;
    text-align: right;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 700;
    line-height: 1.85;
}

.stock.out-of-stock.plant-product {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #FC6A5D;
    background: #FDF3F2;
    padding: 20px;
    color: #333 !important;
    font-family: 'Figtree';
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.33;
}

.stock.in-stock {
    display: none;
}

@media only screen and (min-width: 992px) {
    .stock.out-of-stock.plant-product {
        font-size: 18px !important;
    }

    a:has(.customizer-green-cta ) {
        margin-top: 45px;
    }

    .customizer-green-cta__description {
        font-size: 12px;
    }

    .digital-download-new .digital-download {
        padding: 52px 56px;
    }

    .digital-download-new__title {
        margin-bottom: 60px;
    }

    .digital-download-new__title h2 {
        font-size: 44px;
    }

    .featured-plants__top {
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
    }

    .about-plant {
        margin-bottom: 100px;
    }

    .about-plant__title {
        font-size: 44px;
        margin-bottom: 60px;
    }

    .about-plant__tab-title {
        font-size: 16px;
    }

    .about-plant__tab-value {
        font-size: 18px;
    }

}

.woocommerce-breadcrumb {
    display: none !important;
}

.single-product {
    padding-top: 20px;
}

.woocommerce div.product form.cart {
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
}

.hero-single-product {
    margin-top: 130px;
    margin-bottom: 0;
}

.hero-single-product .course-information-wrapper {
    width: 100%;
    gap: 24px;
}

.hero-single-product .course-information-wrapper span svg {
    margin: 0 4px;
}

.hero-single-product .course-information-wrapper span {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-single-product .course-information-wrapper span strong {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.single-product .woocommerce-message {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: left;
}

.single-product .woocommerce-message::before {
    top: unset;
    left: 20px;
}

.woocommerce div.product {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.woocommerce div.product form.cart {
    margin-bottom: 0;
    float: left;
    margin-top: 16px;
}

.woocommerce div.product .product-gallery {
    width: 48%;
}

span.price::before {
    content: '' !important;
}

span.price {
    display: flex;
    flex-flow: row;
}

span.price ins {
    order: 1;
}

span.price del {
    order: 2;
    margin-left: 16px;
}

span.price ins,
span.price del {
    text-decoration: none;
}

span.price ins bdi {
    color: #FC6A5D;
    font-family: 'Figtree';
    font-size: 32px;
    font-weight: 700;
    line-height: 0.75;
    text-decoration: none;
}

span.price del bdi {
    color: #888;
    font-family: 'Figtree';
    font-size: 24px;
    font-weight: 700;
    line-height: 1; /* 100% */
    text-decoration: line-through;
}

span.price bdi {
    color: #333;
    font-family: 'Figtree';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.price-plants-num-row {
    margin-bottom: 24px;
}

.selectRow0 {
    margin-bottom: 16px;
}

.woocommerce div.product form.cart .variations .selectRow1 .variation-radios label:last-of-type {
    margin-right: 0;
}

.woocommerce div.product form.cart .variations .selectRow1 .variation-radios label {
    border-radius: 40px;
    background: #F5F5F5;
    padding: 12px;
    color: #888;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    margin: 0 4px 8px;
    position: relative;
    display: inline-block;
}

.design-price .price .price .regular-price .woocommerce-Price-amount {
    display: inline-block;
}

.design-price .price .woocommerce-Price-amount {
    display: none;
}

.woocommerce div.product form.cart .variations .selectRow1 label:has(input:checked) {
    border: 2px solid #2CBC63;
    background: rgba(44, 188, 99, 0.05);
    color: #2CBC63;
}

.woocommerce-variation-custom_field .woocommerce_custom_field p svg {
    margin-left: 8px;
    margin-right: 4px;
}

.woocommerce-variation-custom_field .woocommerce_custom_field p.mobile-text {
    display: none;
}

.woocommerce-variation-custom_field .woocommerce_custom_field p strong {
    color: #333;
    font-family: 'Figtree';
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.woocommerce-variation-custom_field .woocommerce_custom_field p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.woocommerce div.product form.cart .variations .selectRow1 label input {
    position: absolute;
    opacity: 0;
}

.single_variation_wrap .woocommerce-variation-price {
    display: none !important;
}

.single-product .woocommerce-message a {
    margin-left: auto;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 0 24px;
    border-radius: 8px;
    background: #0F4F1E;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 48px;
    transition: 300ms;
}

.single-product .woocommerce-message a:hover {
    background: #043910;
}

.breadcrumbs-mobile {
    display: none;
}

.breadcrumbs {
    margin: 24px 0;
}

.woocommerce .woocommerce-breadcrumb a:first-of-type {
    margin-left: 0;
}

.woocommerce .woocommerce-breadcrumb a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration-line: underline;
    color: #888;
    display: inline-block;
    margin: 0 4px;
}

.woocommerce .woocommerce-breadcrumb {
    margin-top: 24px;
}

.breadcrumbs span,
.woocommerce .woocommerce-breadcrumb {
    margin-left: 4px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #333;
}

.images.nickx_product_images_with_video .slider.nickx-slider-for .zoom.nslick-slide img {
    border-radius: 16px;
}

.nickx-slider-nav .nslick-slide {
    margin: 0 10px !important;
}

.nickx-slider-nav .nslick-slide img {
    height: 79px !important;
    min-height: auto !important;
    opacity: 1 !important;
    object-fit: cover !important;
    border-radius: 8px;
}

.nickx-slider-for .btn-prev {
    margin-left: 16px !important;
}

.nickx-slider-for .btn-next {
    margin-right: 16px !important;
}

.nickx-slider-for .btn-next::before,
.nickx-slider-for .btn-prev::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 40px;
    height: 40px;
    display: inline-block;
}

.nickx-slider-for .btn-next::before {
    content: '' !important;
    background-image: url('../images/slider-next.svg');
}

.nickx-slider-for .btn-prev::before {
    content: '' !important;
    background-image: url('../images/slider-prev.svg');
}

.nickx-slider-for .btn-prev, .nickx-slider-for .btn-next {
    opacity: 1 !important;
    background: transparent !important;
    width: 40px;
    height: 40px;
}

.nickx-slider-for .nslick-list.draggable .nslick-slide:first-child {
    min-height: auto !important;
}

/*.nickx-slider-nav .nslick-list {*/
/*    margin: 0 -10px !important;*/
/*    display: none;*/
/*}*/
.fa-expand:before {
    color: #fff;
}

span.nickx-popup {
    padding: 0 !important;
}


.nickx-slider-for {
    margin-bottom: 20px !important;
}

.hero-wrapper {
    margin-bottom: 120px;
    margin-top: 84px;
}

.placemats_delivery_information,
.garden_maps_delivery_information {
    display: none;
}

.woocommerce div.product div.summary > .product_title,
.woocommerce div.product div.summary div.product-title-size > .product_title {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 8px;
}

.woocommerce div.product div.summary > .design-size,
.woocommerce div.product div.summary div.product-title-size > .design-size {
    color: #888;
    font-family: 'Figtree';
    font-size: 20px;;
    font-weight: 400;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 24px;
}

.woocommerce div.product form.cart .variations tbody {
    display: flex;
    flex-flow: row wrap;
}

.woocommerce div.product form.cart .variations tr {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex: 0 0 100%;
}

.woocommerce div.product form.cart .variations tr th {
    flex: 0 0 100%;
    margin-bottom: 12px;
    line-height: 1 !important;
}

.woocommerce div.product form.cart .variations th label {
    color: #888;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.44;
}

.woocommerce div.product form.cart .variations .selectRow0 {
    order: 1;
}

.woocommerce div.product form.cart .variations .selectRow1 {
    order: 2;
}

.woocommerce div.product form.cart .variations .selectRow0 .variation-radios {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -4px;
}

.woocommerce div.product form.cart .variations .selectRow1 .variation-radios {
    margin: 0 -4px;
}

.woocommerce div.product form.cart .variations .selectRow0 td label input {
    opacity: 0;
}

.woocommerce div.product form.cart .variations .selectRow0 td label {
    position: relative;
}

.woocommerce div.product form.cart .variations .selectRow0 td label::before {
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    border: 2px solid #C8C8C8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.woocommerce div.product form.cart .variations .selectRow0 label:has(input:checked)::after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    right: 15px;
    background: #2CBC63;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.woocommerce div.product form.cart .variations .selectRow0 label:has(input:checked)::before {
    border: 2px solid #2CBC63;
}

.woocommerce div.product form.cart .variations .selectRow0 label:has(input:checked) {
    border-radius: 8px;
    border: 2px solid #2CBC63;
    background: rgba(44, 188, 99, 0.05);
}

.woocommerce div.product form.cart .variations .selectRow0 td label {
    border-radius: 8px;
    border: 1px solid #C8C8C8;
    background: #FFF;
    padding: 12px 12px 12px 16px;
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0 4px 8px;
    cursor: pointer;
}

.woocommerce-variation-custom_field {
    display: none;
}

.woocommerce div.product form.cart .woocommerce-variation-description {
    display: none !important;
}

.product-description,
.woocommerce div.product form.cart .variations .description-holder {
    margin-bottom: 24px;
    order: 3;
    margin-top: 24px;
}

.woocommerce div.product form.cart .variations .description-holder .scroll-to-plants {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.product-description ul li,
.product-description p,
.woocommerce div.product form.cart .variations .description-holder td ul li,
.woocommerce div.product form.cart .variations .description-holder td p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button::before {
    content: '';
    background-image: url('../images/add_to_cart_plus.png');
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    margin-right: 4px;
}

.price-plants-num-row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-top: -20px;
}

.price-plants-num-row .price-holder {
    margin-right: 24px;
    margin-top: 20px;
}

.price-plants-num-row .number-of-plants {
    margin-right: 24px;
    margin-top: 20px;
}

.price-plants-num-row .number-of-plants span {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    align-content: center;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.price-plants-num-row .number-of-plants span svg {
    margin-right: 8px;
}

.price-plants-num-row .save-on {
    border-radius: 8px;
    background: #CCEDFF;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding: 8px 16px;
    margin: 20px 0 0;
    font-size: 14px;
}

.price-plants-num-row .save-on p {
    color: #0092E3;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.price-plants-num-row .save-on-mobile {
    display: none;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
    border-radius: 8px !important;
    background: #0F4F1E;
    padding: 18px 24px !important;
    color: #FFF;
    font-family: 'Figtree';
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    width: auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

.woocommerce div.product div.summary .woocommerce-variation-add-to-cart {
    display: flex;
    width: 100%;
}

.woocommerce div.product form.cart .variations label input {
    margin-left: 35px;
}

.single-product.woocommerce span.onsale {
    display: none;
}

.woocommerce div.product form.cart div.quantity {
    display: none !important;
}

.gallery-holder .main-image {
    margin-bottom: 20px;
    position: relative;
}

.gallery-holder .main-image .info-tooltip {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;

    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    width: 100%;
}

.gallery-holder .main-image .info-tooltip svg {
    flex: 0 0 20%;
    max-width: 36px;
    cursor: pointer;
}

.gallery-holder .main-image .single-product-card-left-arrow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
    display: flex;
    justify-content: right;
}

.gallery-holder .main-image .single-product-card-right-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 1;
    display: flex;
    justify-content: left;
}

.gallery-holder .main-image .single-product-card-right-arrow svg,
.gallery-holder .main-image .single-product-card-left-arrow svg {
    cursor: pointer;
}

.gallery-holder .main-image .info-tooltip .info-tooltip-text {
    flex: 0 0 100%;
    max-width: 85%;
    margin-left: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    padding: 20px;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: none;
    transition: 300ms;
}

.gallery-holder .main-image .info-tooltip svg:hover + .info-tooltip-text {
    display: flex;
}

.gallery-holder .main-image .slider-for {
    height: 445px;
}

.gallery-holder .main-image .slider-for img {
    height: 445px;
    border-radius: 16px;
    object-fit: cover;
}

.gallery-holder .gallery-nav img {
    margin: 0 10px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-info {
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    height: 100%;
}

.product-info .first-part {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #c8c8c8;
}

.blueprint .sale-price {
    display: none;
}

.blueprint .sale-tag {
    display: none !important;
}

.product-info .first-part .name {
    margin-bottom: 8px;
    flex: 0 0 100%;
}

.product-info .first-part .description {
    margin-bottom: 20px;
    flex: 0 0 100%;
    display: flex;
    flex-flow: row wrap;
}

.product-info .first-part .bottom-row {
    display: none;
}

.product-info .first-part .description span:first-of-type {
    padding-left: 0;
}

.product-info .first-part .description span:last-of-type {
    padding-right: 0;
    border-right: 0;
}

.product-info .first-part .description span a {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

.product-info .first-part .description span {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 8px;
    border-right: 1px solid #888;
}

.product-info .first-part .price {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
}

.product-info .first-part .price .price-percentage,
.product-info .first-part .price .price-regular,
.hero-wrapper .bottom-btn-mobile .price-percentage,
.hero-wrapper .bottom-btn-mobile .price-regular {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.product-info .first-part .price .price-percentage .sale-tag {
    background: #0F4F1E;
    width: 82px;
    color: #EEF9F1;
}

.product-info .first-part .price .new-product {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-left: 16px;
    border-radius: 40px;
    padding: 8px 12px;
    line-height: 1;
    background-color: #e8ffee;
    color: #2CBC63;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info .first-part .price .sale-price.regularPriceCss {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.product-info .first-part .price .regular-price {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.single-product.product-sale .top-information .first-part .product-info .first-part .price .price-percentage .regular-price,
.product-info .first-part .price .regular-price.activeSale {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-decoration-line: line-through;
}

.product-info .first-part .price .sale-price {
    color: #FC6A5D;
    font-family: 'Figtree', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 24px;
    padding-right: 16px;
}

.product-info .first-part .price .sale-tag {
    font-family: Figtree;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FC6A5D;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 40px;
    background: #FEE1DF;
    padding: 8px 12px;
    margin-left: 16px;
}

.product-info .first-part .price .sold-product {
    border-radius: 32px;
    background: #FC6A5D;
    padding: 8px 12px;
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    margin-left: 16px;
}

.product-info .second-part {
    padding: 20px 0 0;
    border-bottom: 1px solid #c8c8c8;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}

.product-info .second-part span svg {
    margin-right: 4px;
    width: 24px;
    height: 24px;
}

.product-info .second-part span:last-of-type {
    margin-right: 0;
}

.product-info .second-part span {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 8px 20px;
}

.product-info .third-part {
    padding-top: 20px;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-info .third-part .flower-info {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.product-info .third-part .flower-info,
.product-info .third-part .flower-price {
    position: relative;
}

.product-info .third-part .flower-info svg,
.product-info .third-part .flower-price svg {
    cursor: pointer;
}

.product-info .third-part .flower-info .time .flower-info_tooltip,
.product-info .third-part .flower-info .flower-price .flower-price__tooltip {
    position: absolute;
    top: -40px;
    left: -20px;
    width: max-content;
    border-radius: 8px;
    background: #F5F5F5;
    backdrop-filter: blur(4px);
    padding: 8px 12px;
    display: none;
    transition: 300ms;
}

.product-info .third-part .flower-info .time svg:hover + .flower-info_tooltip {
    display: flex;
}

.product-info .third-part .flower-info .flower-price svg:hover + .flower-price__tooltip {
    display: flex;
}

.product-info .third-part .flower-info a svg,
.product-info .third-part .flower-info span svg {
    margin-right: 4px;
}

.product-info .third-part .flower-info span:first-of-type {
    margin-left: 0;
}

.product-info .third-part .flower-info span:last-of-type {
    margin-right: 0;
}

.product-info .third-part .flower-info a,
.product-info .third-part .flower-info span {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    color: #888;
    margin: 0 8px;
}

.product-info .third-part .includes {
    margin-bottom: 32px;
}

.product-info .third-part .includes p {
    margin: 0 0 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #888;
}

.product-info .third-part .includes ul {
    padding-left: 30px;
    margin: 0;
}

.product-info .third-part .includes li {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.product-info .fourth-path p {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 12px;
}

.product-info .fourth-path .fourth-path-included {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 8px;
}

.product-info .fourth-path .fourth-path-included .fourth-path-included-tag {
    padding: 8px 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    border-radius: 40px;
    background: #F5F5F5;
    color: #888;
    margin-bottom: 0;
}

.product-info .fourth-path .fourth-path-included .fourth-path-included-tag.green {
    background: #EEF9F1;
    color: #0F4F1E;
    cursor: pointer;
    text-decoration: none;
}

.product-info .bottom-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex: 0 0 100%;
}

.product-info .bottom-row-mobile {
    display: none;
}

.product-info .bottom-row .buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.product-info .bottom-row .add-to-cart svg {
    margin-right: 4px;
}

.product-info .bottom-row .add-to-cart {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 0 24px;
    border-radius: 8px;
    background: #0F4F1E;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 48px;
    margin-right: 16px;
}

.product-info .bottom-row .add-to-cart.disabled-btn {
    cursor: auto;
    background: #C8C8C8;
}

.product-info .bottom-row .counter {
    display: none;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    width: 64px;
    padding: 8px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 8px;
}

.product-info .bottom-row .counter input:focus {
    outline: none;
}

.product-info .bottom-row .counter input::-webkit-inner-spin-button,
.product-info .bottom-row .counter input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.product-info .bottom-row .counter input {
    border: 0;
    width: 25px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
    background-color: #fff;
}

.product-info .bottom-row .counter .counter-buttons {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-between;
}

.product-info .bottom-row .counter .counter-buttons .button {
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    cursor: pointer;
}

.product-info .bottom-row .counter .counter-buttons .button.plus,
.product-info .bottom-row .counter .counter-buttons .button.minus {
    width: unset;
    margin: 0;
    padding: 0 !important;
}

.product-info .bottom-row .blueprint-only {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}

.product-info .bottom-row .blueprint-only input {
    margin: 0 8px 2px 0;
}

.product-info .bottom-row .blueprint-only label {
    color: #888;
    text-align: right;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.product-info .bottom-row .blueprint-only span {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
}

.product-info .bottom-row .blueprint-only .select_variation_class .selectize-input {
    border-radius: 8px;
    border: 1px solid #C8C8C8;
    background: #FFF;
    padding: 12px;

    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.woocommerce div.product div.summary {
    margin-bottom: 0 !important;
}

.product-info .bottom-row .blueprint-only .select_variation_class .selectize-input #select_variation_mobile-selectized {
    display: none !important;
}

.product-info .bottom-row .blueprint-only .select_variation_class .selectize-dropdown .selectize-dropdown-content .option {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.product-info .bottom-row .blueprint-only .select_variation_class .selectize-dropdown .selectize-dropdown-content .option:active {
    color: #888;
}

.product-info .bottom-row .blueprint-only .select_variation_class .selectize-dropdown .selectize-dropdown-content .option.selected {
    color: #fff;
}

.how-it-works-wrapper {
    margin-bottom: 120px;
}

.how-it-works-holder .headline-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 80px;
}

.how-it-works-holder .headline-row h2 {
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #333;
    margin: 0;
}

.how-it-works-holder .headline-row a svg {
    margin-left: 8px;
}

.how-it-works-holder .headline-row a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;

    display: flex;
    align-items: center;
}

.how-it-works-holder .steps-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

.how-it-works-holder .steps-row .single-step:nth-of-type(2n) {
    margin-top: 24px;
}

.how-it-works-holder .steps-row .single-step {
    flex: 0 0 23%;
    position: relative;
}

.how-it-works-holder .steps-row .single-step span {
    font-family: 'Literata', sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 21px;
    font-style: normal;
    line-height: 28px;
}

.how-it-works-holder .steps-row .single-step span.number {
    color: #FC6A5D;
}

.how-it-works-holder .steps-row .single-step img {
    margin-top: 24px;
    border-radius: 16px;
}

.featured-plants {
    margin-bottom: 120px;
}

.featured-plants .featured-plants-holder {
    border-radius: 32px;
    background: #FAFAFA;
    padding: 80px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top h2 {
    flex: 0 0 100%;
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content p {
    text-align: center;
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content p:last-of-type {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content p:last-of-type svg {
    margin: 0 4px 0 8px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: left;
    gap: 2%;
}

.single-featured-plant.last-card .featured-plant-info {
    padding-left: 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant {
    flex: 0 0 32%;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 20px;
    position: relative;
    height: 180px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all {
    flex: 0 0 32%;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 20px;
    position: relative;
    height: 180px;
    background: #0F4F1E;
    overflow: hidden;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all .featured-plant-info {
    padding: 0;
    flex: 0 0 80%;
    display: flex;
    flex-flow: row wrap;
    align-content: space-between;
    height: 100%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all .featured-plant-info .featured-plant-info__top {
    flex: 0 0 100%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all .featured-plant-info .featured-plant-info__top h3 {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
    width: 80%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all .featured-plant-info .featured-plant-info__top p {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all .featured-plant-info a {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring {
    flex: 0 0 32%;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-bottom: 20px;
    position: relative;
    height: 180px;
    background: #FDF3F2;
    overflow: hidden;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring .featured-plant-info {
    padding: 0;
    flex: 0 0 57%;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    height: 100%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring .featured-plant-info .featured-plant-info__top p {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring img {
    flex: 0 0 40%;
    width: 180px;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all img {
    width: 140px;
    height: 100%;
    object-fit: cover;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all img {
    position: absolute;
    right: 0;
    top: 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .image-side {
    flex: 0 0 80px;
    height: 140px;
    display: flex;
    position: relative;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .image-side p {
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    border-radius: 0 0 8px 0;
    background: #FFF;
    padding: 0 13px 9px 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .image-side img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .top-side {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .top-side .name,
.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .top-side .description {
    flex: 0 0 100%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .top-side .name h3 {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .top-side .name p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #888;
    margin: 5px 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .bottom-side {
    display: none;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .bottom-side a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .bottom-side a svg {
    margin-left: 8px;
    transition: 300ms;
}

.featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant .featured-plant-info .bottom-side a:hover svg {
    transform: translateX(8px);
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple {
    display: flex;
    border-radius: 24px;
    background: #FFF;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left {
    flex: 0 0 65%;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left span {
    border-radius: 40px;
    background: #EEF9F1;
    padding: 8px 12px;
    color: #0F4F1E;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left h4 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin: 8px 0;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left h5 {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 24px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left p {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.featured-plants .featured-plants-holder .featured-plants-holder__multiple img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.product-details-wrapper .accordion-holder {
    display: none;
}

.product-details-garden-center-wrapper .headline-row,
.product-details-wrapper .headline-row {
    margin-bottom: 60px;
    text-align: center;
}

.product-details-garden-center-wrapper .headline-row h2,
.product-details-wrapper .headline-row h2 {
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #333;
}

.product-details-wrapper .details-holder {
    background: #EEF9F1;
    padding: 52px 56px 52px 56px;
    border-radius: 32px;
}

.product-details-wrapper .details-menu {
    margin-bottom: 40px;
    display: none;
}

.product-details-wrapper .details-menu .tab-navigation {
    display: none;
}

.digital-layout-content ul,
.digital-download-text-side ul {
    padding-left: 32px;
    list-style-type: none;
}

.digital-download-text-side h3 {
    color: #333;
    font-family: 'Literata';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.digital-layout-content ul li,
.digital-download-text-side ul li,
.digital-download-text-side p {
    position: relative;
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.digital-layout-content ul li:before,
.digital-download-text-side ul li:before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url('../images/checkmark-list.svg');
    position: absolute;
    left: -32px;
    top: 0;
}

.product-details-wrapper .details-menu ul {
    display: flex;
    flex-flow: row wrap;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.product-details-wrapper .details-menu ul li:first-of-type {
    margin-left: 0;
}

.product-details-wrapper .details-menu ul li.active {
    background: #0F4F1E;
    border-radius: 8px;
    color: #fff;
}

.product-details-wrapper .details-menu ul li {
    padding: 20px;
    margin: 0 4px;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.product-details-garden-center-wrapper {
    margin-bottom: 74px;
}

.product-details-garden-center__holder {
    border-radius: 16px;
    background: #FAFAFA;
    padding: 40px 60px;
}

.product-details-garden-center__holder .product-details-garden-center__details {
    gap: 32px;
    border-radius: 8px;
    background: #FFF;
    padding: 16px 24px;
    width: fit-content;
    margin: auto auto 24px;
}

.product-details-garden-center__holder .product-details-garden-center__details span {
    color: #333;
    font-family: 'Figtree';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.product-details-garden-center__holder .product-details-garden-center__details span strong {
    color: #333;
    font-family: 'Figtree';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 4px;
}

.product-details-garden-center__holder .product-details-garden-center__details span svg {
    margin: 0 4px;
}

.product-details-garden-center__buttons {
    margin-bottom: 24px;
    gap: 16px;
}

.product-details-garden-center__buttons .tab-button {
    padding: 16px 20px;
    border-radius: 8px;
    background: transparent;
    color: #333;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.11;
    cursor: pointer;
}

.product-details-garden-center__buttons .tab-button.active {
    background: #0092E3;
    font-weight: 600;
    color: #fff;
}

.product-details-garden-center__images-holder img {
    display: none;
}

.product-details-garden-center__images-holder img.front-page-image {
    display: block;
}

.details-tabs .single-tab {
    display: none;
    flex-flow: row wrap;
    justify-content: space-between;
    overflow: hidden;
}

.details-tabs .single-tab.description {
    justify-content: space-between;
}

.details-tabs .single-tab.featured-plants {
    margin-bottom: 0;
}

.details-tabs .single-tab.description .digital-layout-content {
    flex: 0 0 55%;
}

.digital-layout-image {
    flex: 0 0 40%;
    border-radius: 16px;
}

.active {
    display: flex;
    flex-flow: row wrap;
}

.details-tabs .single-tab.active {
    display: flex;
    flex-flow: row wrap;
}

.shipping .shipping__left {
    flex: 0 0 61%;
}

.shipping .shipping__left h3 {
    color: #333;
    font-family: 'Literata';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.shipping .shipping__left ul {
    padding-left: 32px;
    list-style-type: none;
}

.shipping .shipping__left ul li {
    position: relative;
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.shipping .shipping__left ul li::before {
    content: '';
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url('../images/checkmark-list.svg');
    position: absolute;
    left: -32px;
    top: 0;
}

.shipping .shipping__left p {
    position: relative;
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 0;
}

.shipping .shipping__left p img {
    margin-right: 8px !important;
    margin-left: 4px !important;
}

.shipping .shipping__right {
    flex: 0 0 35%;
    max-width: 35%;
    position: relative;
}

.shipping .shipping__right .single-product-card-left-arrow {
    position: absolute;
    top: 45%;
    z-index: 9;
    left: 13px;
    cursor: pointer;
}

.shipping .shipping__right .single-product-card-right-arrow {
    position: absolute;
    top: 45%;
    right: 24px;
    cursor: pointer;
}

.shipping .shipping__right .slick-list .slick-track .shipping__right-img img {
    border-radius: 16px;
    max-height: 440px;
}

.shipping .shipping__right img {
    width: 100%;
}

.shipping__right img {
    visibility: hidden;
}


.product-details-wrapper {
    margin-bottom: 74px;
}

.product-details-wrapper .single-featured-plant {
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    flex: 0 0 calc(33% - 10px);
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 20px;
}


/*.product-details-wrapper .single-featured-plant:first-of-type .featured-plant-info .bottom-side a {*/
/*    display: none;*/
/*}*/

.single-featured-last-card {
    border-radius: 16px;
    background: #0F4F1E;
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    position: relative;
    flex: 0 0 calc(33% - 10px);
}

.single-featured-last-card h3 {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
    flex: 0 0 100%;
    max-width: 50%;

    z-index: 1;
}

.single-featured-last-card p {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 45px !important;

    flex: 0 0 100%;
    max-width: 100%;

    z-index: 1;
}

.single-featured-last-card a {
    color: #FFF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    z-index: 1;
    text-decoration: none;
    transition: 300ms;

    flex: 0 0 100%;
    max-width: 83%;
}

.single-featured-last-card a svg {
    margin-left: 8px;
    transition: 300ms;
}

.single-featured-last-card a:hover svg {
    transform: translateX(8px);
}

.single-featured-last-card img {
    position: absolute;
    right: -1px;
    top: -1px;
    width: 159px;
    height: 101%;
    border-radius: 0 16px 16px 0;
}

.single-product .how-it-works-wrapper .how-it-works-holder {
    border-radius: 32px;
    background: #fff;
    padding: 100px;
}

.image-content {
    margin: 120px auto;
}

.image-content .image-content-holder {
    border-radius: 32px;
    background: #FAFAFA;
    padding: 64px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.image-content .image-content-holder .image-content-holder__left {
    flex: 0 0 100%;
    max-width: 60%;
    display: flex;
}

.image-content .image-content-holder .image-content-holder__left img {
    width: 100%;
    max-height: 422px;
    object-fit: cover;
    border-radius: 16px;
}

.image-content .image-content-holder .image-content-holder__right {
    flex: 0 0 100%;
    max-width: 34%;
}

.image-content .image-content-holder .image-content-holder__right h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 16px;
}

.image-content .image-content-holder .image-content-holder__right p {
    color: #888;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 17px;
}

.image-content .image-content-holder .image-content-holder__right p:last-of-type {
    margin-bottom: 0;
}


.single-featured-plant .image-side {
    flex: 0 0 80px;
    height: 120px;
    display: flex;

    position: relative;
}

.single-featured-plant .image-side p {
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    border-radius: 0 0 8px 0;
    background: #FFF;
    padding: 0 13px 9px 0;
}

.single-featured-plant .image-side img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.single-featured-plant .featured-plant-info {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.single-featured-plant .featured-plant-info .top-side {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.single-featured-plant .featured-plant-info .top-side .name,
.single-featured-plant .featured-plant-info .top-side .description {
    flex: 0 0 100%;
}

.single-featured-plant .featured-plant-info h3 {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
}

.single-featured-plant.last-card .image-side {
    margin-right: -20%;
}

.single-featured-plant.last-card .featured-plant-info p {
    color: #333;
    font-size: 16px;
}

.single-featured-plant .featured-plant-info span,
.single-featured-plant .featured-plant-info p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #888;
    margin: 5px 0;
}

.single-featured-plant .featured-plant-info span {
    font-weight: 700;
}

.single-featured-plant .featured-plant-info p {
    font-weight: 400;
}

.single-featured-plant .featured-plant-info a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;

}

.single-featured-plant .featured-plant-info a svg {
    margin-left: 8px;
    transition: 300ms;
}

.single-featured-plant .featured-plant-info a:hover svg {
    transform: translateX(8px);
}

.digital-download {
    display: flex;
    flex-flow: row wrap;
}

.digital-download .digital-download-text-side {
    flex: 0 0 60%;
}

.digital-download .digital-download-text-side p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.digital-download .digital-download-image-side {
    flex: 0 0 40%;
    display: flex;
    padding-left: 0;
    align-items: flex-start;
    justify-content: right;
}

.digital-download .digital-download-image-side img {
    max-width: 100%;
    object-fit: contain;
    max-height: 340px;
    width: auto;
    border-radius: 16px;
}

.featured-plants__top {
    margin-bottom: 24px;
}

.featured-plants-categories {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0 -4px;
    flex: 1;
}

.featured-plants-categories .title {
    color: #333;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.44;
    display: inline-block;
    margin-right: 12px;
    margin-left: 4px;
}

.plant-combination-description {
    margin-bottom: 24px;
}

.plant-combination-description p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.featured-plants-categories .variation-tab-name.selected {
    background: #FC6A5D;
    color: #fff;
}

.featured-plants-categories .variation-tab-name {
    border-radius: 40px;
    background: #EBEBEB;
    padding: 12px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0 4px 8px;
    cursor: pointer;
    width: fit-content;

    color: #333;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.featured-plants-content-tabs .plants-by-plant-type:first-of-type {
    display: block;
}

.featured-plants-content-tabs .plants-by-plant-type .plants-by-plant-type__top {
    display: flex;
    flex-flow: row wrap;
}

.featured-plants-content-tabs .plants-by-plant-type .plants-by-plant-type__top .hardness-zone-for-plant-type {
    margin-right: 32px;
    margin-bottom: 0;
}

.featured-plants-content-tabs .plants-by-plant-type .plants-by-plant-type__top .hardness-zone-for-plant-type:last-of-type {
    margin-right: 0;
}

.featured-plants-content-tabs .plants-by-plant-type {
    display: none;
}

.hardness-zone-for-plant-type p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;

    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.hardness-zone-for-plant-type p svg {
    margin-left: 8px;
    margin-right: 2px;
}

.hardness-zone-for-plant-type p strong {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.nursery {
    flex: 0 0 100%;
    margin-top: 10px;
    display: none !important;
}

.nursery p {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.nursery svg {
    margin-left: 8px;
}

.nursery p span {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.more-about {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 24px;
    display: flex;
    flex: 0 0 100%;
    margin-top: 24px;
}

.more-about svg {
    margin-top: 2px;
    margin-left: 8px;
    transition: 300ms;
}

.more-about:hover svg {
    transform: translateX(8px);
}

.featured-plants__plants-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0 -10px;
    margin-top: 24px;
}

.featured-plants__plants-holder .single-featured-plant-spring {
    width: 360px;
    padding: 0 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    border-radius: 16px;
    background: #FFF;
    margin: 0 10px 20px;
}

.featured-plants__plants-holder .single-featured-plant-spring .featured-plant-info {
    padding-right: 10px;
    flex: 1;
}

.featured-plants__plants-holder .single-featured-plant-spring .featured-plant-info p {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.featured-plants__plants-holder .single-featured-plant {
    flex: 0 0 calc(33.33% - 20px);
    margin: 0 10px 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-image {
    flex: 0 0 100px;
    display: flex;
    position: relative;
    z-index: 1;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-image img {
    object-fit: cover;
    min-height: 110px;
    height: 110px;
    border-radius: 8px;
    z-index: 1;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-image .numbering {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 0 13px 9px 0;
    border-radius: 0 0 8px 0;
    background: #FFF;
    z-index: 2;
    text-decoration: none;

    position: absolute;
    top: 0;
    left: 0;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-info h3 {
    color: #333;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 5px;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-info .qty-size {
    display: flex;
    flex-flow: row wrap;
}

.featured-plants__plants-holder .single-featured-plant .featured-plant-info .qty-size p:first-of-type {
    margin-right: 20px;
}

.single-featured-plant .single-featured-plant__bottom {
    flex: 0 0 100%;
    display: none;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.single-featured-plant .single-featured-plant__bottom .nursery-price {
    color: #00A3FF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.single-featured-plant .single-featured-plant__bottom .nursery-price span {
    font-weight: 600;

}

.single-featured-plant .single-featured-plant__bottom .our-price {
    border-radius: 8px;
    background: #CCEDFF;
    padding: 4px 8px;
    color: #00A3FF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.featured-plants__customizer-link {
    flex: 0 0 250px;
}

.featured-plants__customizer-button {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 12px;
    background: #2CBC63;
    text-decoration: none;
    color: #FFF;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.featured-plants__customizer-button:hover {
    background: #0F4F1E;
}

.featured-plants__plants-holder .single-featured-plant.first-card {
    align-items: center;
}

.featured-plants__plants-holder .single-featured-plant.first-card .first-card-info {
    flex: 0 0 45%;
}

.featured-plants__plants-holder .single-featured-plant.first-card .first-card-info p {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.featured-plants__plants-holder .single-featured-plant.first-card .first-card-img {
    flex: 0 0 55%;
    display: flex;
}

.featured-plants__plants-holder .single-featured-plant.first-card .first-card-img img {
    width: 100%;
}

.relevant-resources {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

.relevant-resources .single-relevant-resource {
    flex: 0 0 calc(33.33% - 20px);
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    min-height: 340px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.relevant-resources .single-relevant-resource h3 {
    font-family: 'Literata', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

.relevant-resources .single-relevant-resource a svg {
    margin-left: 8px;
    transition: 300ms;
}

.relevant-resources .single-relevant-resource a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    text-decoration: none;
    transition: 300ms;
}

.relevant-resources .single-relevant-resource a:hover svg {
    transform: translateX(8px);
}

.description.single-tab p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}

/*.testimonials {*/
/*    display: none;*/
/*}*/

.testimonials-wrapper {
    padding: 100px 0;
    background: #FAFAFA;
    margin-bottom: 112px;
}

.testimonials-wrapper .testimonials-content {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-wrapper .testimonials-content h2 {
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #333;
    margin: 0 0 24px;
}

.testimonials-wrapper .testimonials-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #888;
    max-width: 60%;
    margin: auto;
}

.testimonials-wrapper .testimonials-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

.testimonials-wrapper .testimonials-holder .single-testimonial {
    flex: 0 0 calc(33.33% - 16px);
    padding: 24px;
    background: #fff;
    border-radius: 16px;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .image-box {
    display: flex;
    margin-bottom: 20px;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .image-box img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content .stars-box {
    flex: 0 0 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 12px;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content .text-box {
    margin-bottom: 12px;
    text-align: center;
    flex: 0 0 100%;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content .text-box p {
    margin: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content .author-box {
    text-align: center;
    flex: 0 0 100%;
}

.testimonials-wrapper .testimonials-holder .single-testimonial .single-testimonial-content .author-box h3 {
    margin: 0;
    font-family: 'Literata', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
}

.similar-products-wrapper {
    margin-bottom: 100px;
    padding-top: 100px;
}

.similar-products-wrapper .headline-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 56px;
}

.similar-products-wrapper .headline-row h2 {
    font-family: 'Literata', sans-serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    color: #333;
    margin: 0;
}

.similar-products-wrapper .headline-row a svg {
    margin-left: 8px;
    margin-bottom: 3px;
}

.similar-products-wrapper .headline-row a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    margin-top: 10px;
}

.similar-products-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}

.similar-products-holder .single-similar-product {
    flex: 0 0 calc(33.33% - 16px);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    border-radius: 16px;
    /*border: 1px solid #C8C8C8;*/
    background: #FFF;
    /*padding: 20px;*/

    padding: 0;
    border: none;
}

.similar-products-holder .single-similar-product .image-box {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 16px;
}

.similar-products-holder .single-similar-product .image-box .new {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2CBC63;
    border-radius: 40px;
    background: #E8FFEE;
    width: 55px;
    height: 24px;
    top: 12px;
    left: 12px;
    position: absolute;
    padding: 8px 12px 6px;
    z-index: 9;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.similar-products-holder .single-similar-product .image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform ease-in-out 300ms;
}

.similar-products-holder .single-similar-product .image-box img:hover {
    transform: scale(1.2);
    transition: ease-in-out 300ms;
}


.similar-products-holder .single-similar-product .icons-box {
    position: absolute;
    top: 12px;
    right: 12px;

}

.similar-products-holder .single-similar-product .icons-box span {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(2px);
    width: 28px;
    height: 28px;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.similar-products-holder .single-similar-product .image-box p {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #FFF;
    padding: 16px 16px 16px 8px;
    border-radius: 0 12px 0 0;
    color: #FC6A5D;
    text-align: center;
    font-size: 20px;
    font-family: Figtree, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    width: auto;
}

.similar-products-holder .single-similar-product .image-box p::after {
    content: url("data:image/svg+xml,%3Csvg class='small-angle-two' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M4,0V4H0A4,4,0,0,0,4,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    left: 93px;
    bottom: 0;
    width: 8px;
    height: 8px;
    rotate: 90deg;
}

.similar-products-holder .single-similar-product .image-box p::before {
    content: url("data:image/svg+xml,%3Csvg class='small-angle-two' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M4,0V4H0A4,4,0,0,0,4,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    left: 11px;
    bottom: 56px;
    width: 8px;
    height: 8px;
    rotate: 90deg;
}

.similar-products-holder .single-similar-product .card-information .design-name {
    margin-bottom: 10px;
}

.similar-products-holder .single-similar-product .card-information .design-name h3 a {
    margin: 0;
    font-family: 'Literata', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
}

.similar-products-holder .single-similar-product .card-information .design-category {
    margin-bottom: 16px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.similar-products-holder .single-similar-product .card-information .design-category .variations-count,
.similar-products-holder .single-similar-product .card-information .design-category a {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
    text-decoration: none;
}

.similar-products-holder .single-similar-product .card-information .design-category p {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #888;
    margin: 0 8px;
}

.similar-products-holder .single-similar-product .card-information .design-price {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.similar-products-holder .single-similar-product .card-information .design-price .price {
    display: flex;
    flex-flow: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.similar-products-holder .single-similar-product .card-information .design-price .price .price-percentage {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.similar-products-holder .single-similar-product .card-information .design-price .price .price-percentage .sale-price {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #FC6A5D;
    margin-right: 8px;
}

.similar-products-holder .single-similar-product .card-information .design-price .price .price-percentage .regular-price {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration-line: line-through;
    color: #888;
    font-family: 'Figtree', sans-serif;
}

.similar-products-holder .single-similar-product .card-information .design-price .price .price-percentage .sale-tag {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    margin-left: 8px;
    background: #0F4F1E;
    width: 80px;
    color: #EEF9F1;
}

.similar-products-holder .single-similar-product .card-information .design-price .price .price-regular .regular-price-sec {
    color: #333;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.similar-products-holder .single-similar-product .single-similar-product-info {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}

.similar-products-holder .single-similar-product .single-similar-product-info .category {
    flex: 0 0 100%;
    margin-bottom: 12px;
}

.similar-products-holder .single-similar-product .single-similar-product-info .category a {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    border-radius: 40px;
    background: #F5F5F5;
    padding: 8px 12px;
    text-decoration: none;
}

.similar-products-holder .single-similar-product .single-similar-product-info .title {
    flex: 0 0 100%;
    margin-bottom: 48px;
}

.similar-products-holder .single-similar-product .single-similar-product-info .title h3 {
    font-family: 'Literata', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

.similar-products-holder .single-similar-product .single-similar-product-info .view-design {
    border-radius: 8px;
    background: #0F4F1E;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 48px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.newsletter-tag-wrapper {
    margin-bottom: 100px;
}

.newsletter-tag-wrapper .newsletter-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 64px;
    border-radius: 32px;
    background: #FEE1DF;
    position: relative;
}

.newsletter-tag-wrapper .newsletter-holder .newsletter-content {
    max-width: 100%;
    width: 50%;
}

.newsletter-tag-wrapper .newsletter-holder h2 {
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    color: #333;
    margin: 0 0 32px;
}

.newsletter-tag-wrapper .newsletter-holder p {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #333;
    margin: 0 0 32px;
}

.newsletter-tag-wrapper .newsletter-holder img {
    position: absolute;
    right: -10%;
    top: 0;
}

.newsletter-tag-wrapper .newsletter-holder .newsletter-content .form,
.newsletter-tag-wrapper .newsletter-holder .newsletter-content .form label {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.newsletter-content .form .wpcf7-form {
    display: flex;
    flex-flow: row wrap;
}

.newsletter-content .form .wpcf7-form p {
    margin: 0;
}

.newsletter-content .form .wpcf7-form .wpcf7-form-control-wrap input {
    border-radius: 8px;
    border: 1px solid #C8C8C8;
    background: #FFF;
    padding: 9px 12px;
    margin-right: 16px;
    width: 268px;
    max-width: 100%;
    height: 48px;
}

.newsletter-content .form .wpcf7-form-control-wrap svg {
    margin-right: 4px;
}

.newsletter-content .form .wpcf7-form-control-wrap input:focus {
    outline: none;
}

.newsletter-content .form .wpcf7-form-control-wrap input::placeholder,
.newsletter-content .form .wpcf7-form-control-wrap input {
    border: 0;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #888;
}

.newsletter-content .form button {
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 48px;
    width: 167px;
    border: 0;
    border-radius: 8px;
    background: #FC6A5D;
}

.newsletter-content .form button:hover {
    background: #DD4C40 !important;
}

.customize-email {
    margin-bottom: 24px !important;
}

.customize-form-side .wpcf7-form {
    flex-flow: row wrap !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    flex: 0 0 100%;
    margin-top: 16px !important;
}

.selectRow1 .woocommerce_custom_field:first-of-type {
    margin-right: 32px;
}

.selectRow1 .woocommerce_custom_field {
    margin-top: 24px;
    width: fit-content;
}

.selectRow1 .woocommerce_custom_field .mobile-text {
    display: none;
}

.selectRow1 .woocommerce_custom_field .desktop-text svg {
    margin: 0 8px;
}

.selectRow1 .woocommerce_custom_field .desktop-text {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.selectRow1 .woocommerce_custom_field .desktop-text strong {
    color: #333;
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.woocommerce div.product form.cart .variations td {
    width: 100%;
}

.how-it-works-wrapper .how-it-works-desk {
    position: absolute;
    bottom: 0;
    border-radius: 16px;
    background: #EEF9F1;
    width: 100%;
    padding: 16px;
}

.how-it-works-wrapper .how-it-works-desk p {
    width: 60%;
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 8px;
}

.how-it-works-wrapper .how-it-works-desk a {
    color: #0F4F1E;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: right;
    transition: 300ms;
}

.how-it-works-wrapper .how-it-works-desk a svg {
    margin-left: 8px;
    margin-bottom: 3px;
    transition: 300ms;
}

.how-it-works-wrapper .how-it-works-desk a:hover svg {
    transform: translateX(5px);
}

.ppc-button-wrapper {
    display: none !important;
}

/*.shipping .shipping__right .slick-track{*/
/*    width: 338px !important;*/
/*}*/

/*.shipping__right-img {*/
/*    display: block;*/
/*    width: 338px !important;*/
/*    height: auto;*/
/*}*/

@media only screen and (max-width: 1399px) {
    .newsletter-tag-wrapper .newsletter-holder .newsletter-content {
        width: 65%;
    }

    .single-featured-plant .featured-plant-info a {
        font-size: 13px;
    }

    .newsletter-tag-wrapper .newsletter-holder img {
        width: 50%;
    }

    .single-featured-last-card {
        overflow: hidden;
    }

    .single-featured-last-card h3 {
        max-width: 60%;
    }

    .single-featured-last-card img {
        right: -31px;
    }

    .image-content .image-content-holder .image-content-holder__left {
        max-width: 59%;
        height: 100%;
    }

    .image-content .image-content-holder .image-content-holder__left img {
        height: 100%;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring img {
        width: 140px;
    }

    .product-details-wrapper .details-box {
        margin-left: 0;
        width: 100%;
    }

    .featured-plants__plants-holder .single-featured-plant.first-card .first-card-info {
        height: 100%;
        display: flex;
        align-items: center;
    }
}

@media only screen and (max-width: 1440px) {
    .price-plants-num-row .save-on {
        flex: 0 0 auto;
        width: fit-content;
        margin: 20px 0 0 0;
    }
}

@media only screen and (max-width: 1399px) {
    .featured-plants__plants-holder .single-featured-plant .featured-plant-image {
        flex: 0 0 90px;
    }

    .single-featured-plant .featured-plant-info {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 1199px) {
    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant {
        flex: 0 0 49%;
    }

    .featured-plants__plants-holder .single-featured-plant {
        flex: 0 0 calc(50% - 20px);
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple img {
        right: -60px;
    }

    .newsletter-tag-wrapper .newsletter-holder {
        padding: 40px;
    }

    .newsletter-tag-wrapper .newsletter-holder .newsletter-content {
        width: 75%;
    }

    .newsletter-tag-wrapper .newsletter-holder img {
        max-width: 350px;
    }

    .product-info .third-part .flower-info a, .product-info .third-part .flower-info span {
        margin: 0 4px;
    }

    .product-info .bottom-row .blueprint-only {
        margin-top: 16px;
    }

    .product-details-wrapper .single-featured-plant,
    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring,
    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all {
        flex: 0 0 calc(48% - 10px);
    }

    .product-details-wrapper .details-holder ul li {
        padding: 0 10px 10px;
    }

    .shipping .shipping__right {
        height: fit-content;
    }

    .similar-products-holder .single-similar-product {
        flex: 0 0 calc(33.33% - 10px);
    }

    .similar-products-wrapper .headline-row,
    .similar-products-holder {
        margin-left: 0;
        width: 100%;
    }

    .single-featured-last-card {
        flex: 0 0 calc(50% - 10px);
    }

    .single-featured-last-card img {
        right: -1px;
    }

    .image-content .image-content-holder {
        gap: 30px;
        padding: 34px;
    }

    .image-content .image-content-holder .image-content-holder__left,
    .image-content .image-content-holder .image-content-holder__left img {
        height: inherit;
    }

    .image-content .image-content-holder .image-content-holder__left {
        max-width: 50%;
    }

    .image-content .image-content-holder .image-content-holder__right {
        max-width: 46%;
    }
}

@media only screen and (max-width: 1092px) {
    .featured-plants .featured-plants-holder {
        padding: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-wrapper {
        margin-bottom: 20px;
    }

    .woocommerce div.product {
        margin-bottom: 32px;
    }

    .product-details-wrapper .headline-row {
        display: none;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left {
        flex: 0 0 100%;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple img {
        display: none;
    }

    .featured-plants-categories .title {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .featured-plants-categories {
        margin-bottom: 16px;
    }

    .hardness-zone-for-plant-type p {
        padding: 0;
        text-align: left;
        justify-content: flex-start;
    }

    .hardness-zone-for-plant-type p strong {
        font-weight: 600;
        font-size: 16px;
    }

    .hardness-zone-for-plant-type p svg {
        margin: 0 4px;
    }

    .product-details-wrapper .single-featured-plant {
        padding: 20px;
    }

    .single-featured-plant.last-card .featured-plant-info {
        padding-right: 15px;
    }

    .featured-plants__plants-holder {
        margin: 0;
    }

    .single-featured-plant .image-side {
        height: auto;
    }

    .featured-plants__plants-holder .single-featured-plant {
        flex: 0 0 100%;
        margin: 0 0 20px;
        border-radius: 16px;
        border: 1px solid #DBE6DE;
        background: #FFF;
    }

    .featured-plants__plants-holder .single-featured-plant-spring {
        flex: 0 0 100%;
        margin: 0;
        padding: 20px;
    }

    .featured-plants__plants-holder .single-featured-plant.first-card .first-card-img {
        justify-content: right;
    }

    .featured-plants__plants-holder .single-featured-plant.first-card .first-card-img img {
        height: 110px;
        width: auto;
    }

    .single-featured-plant .featured-plant-info {
        padding-left: 20px;
    }

    .product-details-wrapper .digital-download-text-side p {
        font-size: 14px;
    }

    .digital-download-image-side {
        margin-top: 8px;
    }

    .gallery-holder .gallery-nav,
    .breadcrumbs {
        display: none;
    }

    .product-info .first-part .price {
        margin-bottom: 17px;
    }

    .gallery-holder {
        margin-bottom: 20px;
    }

    .top-information {
        margin-bottom: 30px;
    }

    /*.how-it-works-holder {*/
    /*    padding: 50px 8%;*/
    /*}*/
    .how-it-works-holder .headline-row {
        margin-bottom: 50px;
    }

    .how-it-works-holder .steps-row .single-step {
        flex: 0 0 49%;
    }

    .how-it-works-holder .steps-row .single-step:nth-of-type(2n) {
        margin-top: 0;
    }

    .how-it-works-holder .steps-row .single-step:nth-of-type(-n+2) {
        margin-bottom: 32px;
    }

    .how-it-works-holder .steps-row .single-step img {
        width: 100%;
    }

    .product-info .first-part .name h1 {
        line-height: 32px;
    }

    .product-info .bottom-row .blueprint-only {
        margin-top: 0;
    }

    .product-info .bottom-row .blueprint-only label {
        font-size: 14px;
    }


    .product-details-wrapper .details-box {
        display: none;
    }

    .product-details-wrapper .accordion-holder {
        display: flex;
        flex-flow: row wrap;
    }

    .modal-button-holder {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        margin-bottom: 16px;
    }

    .modal-button-holder .modal-button svg {
        margin-left: 8px;
    }

    .modal-button-holder .modal-button {
        color: #333;
        font-family: 'Figtree';
        font-size: 14px;
        font-weight: 600;
        line-height: 0.85;
        letter-spacing: 1.12px;
        text-transform: uppercase;

        display: flex;
        flex-flow: row wrap;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
    }

    .product-details-wrapper {
        background: #EEF9F1;
    }

    .accordion-holder .single-accordion:first-of-type .accordion-body {
        display: block;
    }

    .accordion-holder .single-accordion {
        flex: 0 0 100%;
        width: 100%;
        padding-top: 24px;
        padding-bottom: 17px;
        background: #EEF9F1;
    }

    .accordion-holder .single-accordion .accordion-body {
        margin-top: 20px;
        display: none;
        background: #EEF9F1;
    }

    .accordion-holder .single-accordion .accordion-body .digital-layout-content h3 {
        color: #333;
        font-family: 'Literata';
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .accordion-holder .single-accordion .accordion-head {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        transition: all 500ms ease;
    }

    .modal-plant-description {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-flow: row wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.36);
        z-index: 99999;

        display: none;
    }

    .modal-plant-description .modal-box {
        background: #fff;
        width: 335px;
        max-width: 100%;
        border-radius: 16px;
        padding: 32px 24px;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .modal-plant-description .modal-box .headline {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 16px;
    }

    .modal-plant-description .modal-box .content {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 32px;
    }

    .modal-plant-description .modal-box .content .modal_title {
        width: 100%;
        display: inline-block;
        margin-bottom: 10px;

        color: #333;
        font-family: 'Literata';
        font-size: 22px;
        font-weight: 400;
        line-height: 1.2;
    }

    .modal-plant-description .modal-box .content p {
        color: #333;
        text-align: center;
        font-family: 'Figtree';
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
    }

    .modal-plant-description .modal-box .button {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        flex: 0 0 100%;
        padding: 0 !important;
    }

    .modal-plant-description .modal-box .button button {
        border-radius: 8px;
        background: #0F4F1E;
        width: 100%;
        padding: 18px 24px;
        border: 0;

        color: #FFF;
        font-family: 'Figtree';
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 1.12px;
        text-transform: uppercase;
    }

    .accordion-holder .single-accordion .accordion-head svg {
        transition: all 500ms ease;
    }

    .accordion-holder .single-accordion .accordion-head.active svg {
        transform: rotate(180deg);
    }

    .single-accordion .accordion-head .accordion-title {
        color: #333;
        font-family: 'Literata';
        font-size: 22px;
        font-weight: 400;
        line-height: 1.2;
    }

    .how-it-works-holder .headline-row h2,
    .product-details-wrapper .headline-row h2 {
        font-size: 36px;
    }

    .product-details-wrapper .details-menu {
        display: none;
        align-items: center;
        margin-bottom: 20px;
    }

    .product-details-wrapper .tabs-menu {
        display: none;
        flex-flow: row;
        overflow: hidden;
        width: 100%;
    }

    .product-details-wrapper .tabs-menu li {
        width: 100%;
    }

    .product-details-wrapper .details-menu ul li.active {
        margin: 0;

        background: transparent;
        color: #333;
        font-weight: 600;
    }

    .product-details-wrapper .tabs-menu .disabled {
        display: none;
    }

    .product-details-wrapper .details-menu .tab-navigation {
        display: flex;
        cursor: pointer;
    }

    .tab-prev svg g,
    .tab-next svg g {
        -webkit-opacity: 1;
        opacity: 1;
    }

    .single-tab {
        -webkit-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

    .digital-download .digital-download-text-side {
        flex: 0 0 100%;
    }

    .digital-download .digital-download-image-side {
        flex: 0 0 100%;
        padding: 0;
        margin-top: 32px;
    }

    .relevant-resources .single-relevant-resource {
        flex: 0 0 100%;
        margin-bottom: 32px;
    }

    .relevant-resources .single-relevant-resource:last-of-type {
        margin-bottom: 0;
    }

    .product-info .bottom-row-desk {
        display: none;
    }

    .product-info .first-part .bottom-row-mobile {
        display: flex;
    }

    .product-info .second-part span {
        margin-left: 0;
    }

    .similar-products-holder .single-similar-product {
        flex: 0 0 49%;
    }

    .similar-products-holder .single-similar-product:last-of-type {
        display: none;
    }

    .newsletter-tag-wrapper .newsletter-holder img {
        max-width: 280px;
    }

    .single-featured-last-card img {
        right: -20px;
    }

    .image-content-holder__left,
    .image-content-holder__right {
        max-width: 100%;
    }

    .shipping__right-img {
        border-radius: 16px;
    }

    .shipping__right img {
        width: 100%;
        border-radius: 16px;
    }

    .digital-layout-image .shipping__right .single-product-card-left-arrow {
        position: absolute;
        top: 50%;
        z-index: 9;
        left: 13px;
    }

    .digital-layout-image .shipping__right .single-product-card-right-arrow {
        position: absolute;
        top: 50%;
        z-index: 9;
        right: 13px;
        display: flex;
        justify-content: right;
    }

    .single-featured-plant .single-featured-plant__bottom .nursery-price {
        margin-bottom: 0;
    }

    .single-featured-plant.last-card .image-side {
        margin-right: 0;
    }

    .accordion-holder .single-accordion .accordion-body .digital-layout-content h3 {
        display: none;
    }
}

@media only screen and (max-width: 990px) {
    .digital-layout-content p {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 800px) {

    .hero-wrapper .bottom-btn-mobile {
        background: #F5F5F5;
        padding: 16px 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        align-items: flex-end;
        justify-content: space-between;
        z-index: 2;
    }

    .hero-wrapper .bottom-btn-mobile .left-holder {
        flex: 0 0 80%;
        max-width: 70%;
    }

    .hero-wrapper .bottom-btn-mobile .left-holder h1 {
        color: #333;
        font-family: 'Literata', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: 12px;
    }

    .hero-wrapper .bottom-btn-mobile .left-holder .regular-price,
    .hero-wrapper .bottom-btn-mobile .price .sale-price.regularPriceCss {
        color: #333;
        font-family: 'Figtree', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    .hero-wrapper .bottom-btn-mobile .price {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }

    .hero-wrapper .bottom-btn-mobile .price .sale-price {
        color: #FC6A5D;
        font-family: 'Figtree', sans-serif;
        font-weight: 700;
        line-height: 24px;
        margin-right: 8px;
    }

    .hero-wrapper .bottom-btn-mobile .price .regular-price {
        color: #333;
        font-family: 'Figtree', sans-serif;
        font-weight: 700;
        line-height: 1;
    }

    .single-product.product-sale .hero-wrapper .bottom-btn-mobile .price .regular-price {
        color: #888;
        font-family: 'Figtree', sans-serif;
        font-weight: 700;
        line-height: 1;
        text-decoration-line: line-through;
    }

    .hero-wrapper .bottom-btn-mobile .price .sale-tag {
        font-family: Figtree;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #FC6A5D;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        border-radius: 40px;
        background: #FEE1DF;
        padding: 8px 12px;
        margin-left: 16px;
        width: fit-content;
    }

    .bottom-btn-mobile .price-percentage .sale-tag {
        background: #0F4F1E !important;
        width: 82px !important;
        color: #EEF9F1 !important;
    }

    .hero-wrapper .bottom-btn-mobile .buttons {
        flex: 0 0 30%;
        max-width: 80px;
        background: #0F4F1E;
        max-height: 32px;
        padding: 6px 12px;
        border-radius: 8px;
    }


    .hero-wrapper .bottom-btn-mobile .buttons .add-to-cart {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
        color: #FFF;
        font-family: 'Figtree', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 1.12px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .hero-wrapper .bottom-btn-mobile .buttons.disabled-btn {
        background: #C8C8C8;
    }

    .hero-wrapper .bottom-btn-mobile .buttons.disabled-btn .add-to-cart {
        background: transparent;
        border: none;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant,
    .product-details-wrapper .single-featured-plant,
    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring,
    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-all {
        flex: 0 0 100%;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring img {
        width: 190px;
    }

    .image-content .image-content-holder .image-content-holder__right {
        max-width: 100% !important;
    }

    .image-content .image-content-holder .image-content-holder__left {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 768px) {
    .wcpay-payment-request-wrapper {
        max-width: 250px;
        display: inline-block;
    }

    .ppcp-messages {
        display: none !important;
    }

    .ppc-button-wrapper .paypal-buttons {
        height: 48px;
    }

    .ppc-button-wrapper {
        max-width: 300px;
        height: 48px;
        display: inline-block;
        margin-top: 0;
        width: 100%;
    }

    .product-title-size .product_title {
        color: #333;
        font-family: 'Literata', sans-serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .product-title-size .design-size {
        color: #888;
        font-family: 'Figtree';
        font-size: 20px;
        font-weight: 400;
        line-height: 1.2;
        display: inline-block;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-wrapper {
        padding-top: 40px;
    }

    .hero-single-product .course-information-wrapper {
        gap: 12px;
        flex-flow: column;
        align-items: flex-start;
    }

    .selectRow1 .woocommerce_custom_field {
        width: 100%;
    }

    .selectRow1 .woocommerce_custom_field:last-of-type {
        margin-top: 8px;
    }

    .selectRow1 .woocommerce_custom_field:first-of-type {
        margin-right: 0;
    }

    .product-details-wrapper {
        margin-bottom: 48px;
    }

    .woocommerce div.product .product-gallery {
        width: 100%;
    }

    .how-it-works-holder .steps-row .single-step {
        flex: 0 0 48%;
    }

    .digital-layout-content,
    .digital-layout-image {
        flex: 0 0 100%;
    }

    .digital-layout-image .shipping__right .single-product-card-left-arrow {
        position: absolute;
        top: 50%;
        z-index: 9;
        left: 13px;
    }

    .digital-layout-image .shipping__right .single-product-card-right-arrow {
        position: absolute;
        top: 50%;
        z-index: 9;
        right: 21px;
        width: 40px;
        height: 40px;
    }

    .digital-layout-image .shipping__right .slick-list .slick-track .shipping__right-img img {
        border-radius: 16px;
    }

    .product-details-wrapper .details-holder {
        padding: 50px 8%;
    }

    .product-details-wrapper .details-holder ul {
        display: block;
    }

    .single-featured-plant {
        flex: 0 0 100%;
    }

    .price-plants-num-row .number-of-plants {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 12px;
        margin-left: 0;
        margin-right: 0;
    }

    .price-plants-num-row .number-of-plants span {
        font-size: 16px;
    }

    .woocommerce div.product form.cart .variations tbody {
        display: flex;
        flex-flow: row wrap;
    }

    .selectRow1 {
        margin-bottom: 12px;
    }

    .selectRow1 .woocommerce_custom_field {
        margin-top: 4px;
    }

    .selectRow1 .woocommerce_custom_field .mobile-text {
        color: #333;
        font-family: 'Figtree';
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
    }

    .selectRow1 .woocommerce_custom_field .mobile-text strong {
        color: #333;
        font-family: 'Figtree';
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.5;
    }

    .selectRow1 .woocommerce_custom_field .mobile-text svg {
        margin: 0 4px;
    }

    .selectRow1 .woocommerce_custom_field .desktop-text {
        display: none;
    }

    .woocommerce div.product form.cart .variations .selectRow0 {
        order: 2;
    }

    .woocommerce div.product form.cart .variations .selectRow0 td label {
        width: 100%;
        margin-right: 0;
    }

    .woocommerce-variation-custom_field .woocommerce_custom_field p {
        flex-flow: row wrap;
        justify-content: flex-start;
        text-align: left;
    }

    .woocommerce-variation-custom_field .woocommerce_custom_field p.desktop-text {
        display: none;
    }

    .woocommerce-variation-custom_field .woocommerce_custom_field p.mobile-text {
        display: flex;
    }

    .woocommerce div.product div.summary .woocommerce-variation-add-to-cart {
        margin-top: 12px;
    }

    .images.nickx_product_images_with_video .slider.nickx-slider-for .zoom.nslick-slide img {
        height: 328px;
        object-fit: cover;
    }

    .woocommerce-variation-custom_field .woocommerce_custom_field p strong {
        font-size: 16px;
    }

    .woocommerce div.product form.cart .button {
        margin-top: 0 !important;
    }

    .slider.nickx-slider-nav {
        display: none;
    }

    .price-holder {
        margin-bottom: 12px;
        margin-right: 32px;
    }

    .woocommerce div.product form.cart .button.single_add_to_cart_button {
        width: 100%;
    }

    .woocommerce div.product form.cart .variations .selectRow0 {
        margin-bottom: 4px;
    }

    .woocommerce div.product form.cart .variations .selectRow0 td label {
        font-size: 18px;
    }

    .woocommerce div.product form.cart .variations {
        margin-bottom: 4px;
    }

    .woocommerce div.product form.cart .woocommerce-variation-description p {
        margin-bottom: 12px;
    }

    .woocommerce div.product form.cart .variations th label {
        font-size: 16px;
    }

    .how-it-works-holder .headline-row .headline-row__content {
        margin-bottom: 24px;
        flex: 0 0 100%;
    }

    .newsletter-tag-wrapper .newsletter-holder .newsletter-content {
        max-width: 100%;
        width: 100% !important;
    }

    .newsletter-tag-wrapper .newsletter-holder img {
        display: none;
    }

    .newsletter-content .form .wpcf7-form {
        justify-content: space-between;
    }

    .newsletter-content .form .wpcf7-form p:first-of-type {
        width: 68%;
    }

    .newsletter-content .form .wpcf7-form p:last-of-type {
        width: 30%;
    }

    .newsletter-content .form button {
        width: 100%;
    }

    .woocommerce-notices-wrapper {
        padding: 20px 30px;
    }

    .single-product .woocommerce-message {
        height: 160px;
        align-content: flex-start;
        position: relative;
        margin-bottom: 0;
    }

    .single-product .woocommerce-message a {
        position: absolute;
        bottom: 30px;
        left: 20px;
        right: 20px;
        width: 88% !important;
    }

    .single-product .woocommerce-message::before {
        top: 20px;
    }

    .single-product .hero-wrapper .container .woocommerce-notices-wrapper .woocommerce-message .wc-forward {
        order: 2;
        width: 100%;
        margin-top: 20px;
    }

    .single-featured-last-card {
        flex: 0 0 100%;
    }

    .single-featured-plant.last-card .image-side {
        margin: auto;
    }

    .single-featured-last-card img {
        right: -1px;
    }

    .product-title-size .product_title {
        color: #333;
        font-family: 'Literata', sans-serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .product-title-size .design-size {
        color: #888;
        font-family: 'Figtree';
        font-size: 20px;
        font-weight: 400;
        line-height: 1.2;
        display: inline-block;
    }

    .product-details-garden-center-wrapper .container {
        max-width: 100%;
    }

    .product-details-garden-center__holder {
        padding: 24px 16px;
    }

    .product-details-garden-center__holder .product-details-garden-center__details {
        width: 100%;
        flex-flow: column;
        column-gap: 0;
        row-gap: 8px;
    }

    .product-details-garden-center-wrapper {
        margin-top: 80px;
    }

    .product-details-garden-center-wrapper .headline-row {
        margin-bottom: 32px;
    }

    .product-details-garden-center-wrapper .headline-row h2 {
        font-size: 32px;
    }

    .product-details-garden-center__buttons {
        gap: 16px;
    }

    .product-details-garden-center__buttons .tab-button {
        padding: 12px 20px;
    }

    .product-details-garden-center__holder .product-details-garden-center__details span,
    .product-details-garden-center__holder .product-details-garden-center__details span strong,
    .product-details-garden-center__buttons .tab-button {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .single-product, .hero-wrapper {
        padding-top: 22px;
    }

    .product-title-size {
        margin-bottom: 12px;
        padding: 0 17px;
    }

    .woocommerce div.product form.cart .variations .selectRow1 {
        order: 1;
    }

    .product-title-size .product_title {
        color: #333;
        font-family: 'Literata', sans-serif;
        font-size: 26px;
        font-weight: 400;
        line-height: 1.23;
        margin-bottom: 2px;
    }

    .product-title-size .design-size {
        color: #888;
        font-family: 'Figtree';
        font-size: 18px;
        font-weight: 400;
        line-height: 1.33;
    }

    .price-plants-num-row .save-on {
        margin: 0;
        width: 100%;
        justify-content: center;
    }

    .price-plants-num-row .save-on p {
        font-size: 16px;
    }

    .price-plants-num-row .save-on svg {
        width: 20px;
        height: 20px;
    }

    .price-plants-num-row .save-on-desk {
        display: none;
    }

    .price-plants-num-row .save-on-mobile {
        display: block;
    }

    .nursery {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        margin-top: 0;
    }

    .nursery p:first-of-type {
        flex: 0 0 40%;
        line-height: 20px;
    }

    .featured-plants-content-tabs .plants-by-plant-type .plants-by-plant-type__top .hardness-zone-for-plant-type {
        margin-bottom: 8px;
    }

    .more-about {
        margin: 20px 0;
    }

    .woocommerce div.product form.cart .variations .description-holder {
        display: none;
    }

    .woocommerce div.product form.cart .woocommerce-variation-description {
        display: inline-block !important;
    }


    .woocommerce-variation-description p,
    .woocommerce-variation-description li {
        color: #333;
        font-family: 'Figtree';
        font-size: 14px;
        font-weight: 400;
        line-height: 1.58;
    }

    .nickx-slider-for .btn-next, .btn-next {
        right: 12px;
    }

    .nickx-slider-for .btn-prev, .btn-prev {
        left: 12px;
    }

    .nickx-slider-for .btn-prev,
    .nickx-slider-for .btn-next {
        margin: 0;
    }

    .dashicons-arrow-right-alt2:before {
        opacity: 1;
    }


    .woocommerce-notices-wrapper {
        padding: 12px 0 0;
    }

    .hero-wrapper {
        margin-bottom: 48px;
        margin-top: 50px;
    }

    .hero-single-product {
        padding: 0;
        margin-top: 98px;
    }

    .nickx-slider-for .nslick-list.draggable .nslick-track,
    .nickx-slider-for .nslick-list.draggable .nslick-slide:first-child {
        width: 100%;
    }

    .images.nickx_product_images_with_video .slider.nickx-slider-for .zoom.nslick-slide img {
        border-radius: 0;
    }

    .woocommerce div.product div.summary {
        padding: 0 20px;
    }

    .featured-plants {
        /*background: #FAFAFA;*/
        padding-top: 48px;
        padding-bottom: 48px;
        margin-bottom: 40px;
    }

    .featured-plants .featured-plants-holder {
        padding: 0;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__top {
        margin-bottom: 32px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__top h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__top p {
        font-size: 14px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content {
        justify-content: center;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__top .featured-plants-holder__top-content p {
        font-size: 14px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant:last-of-type .featured-plant-info .featured-plant-info__top h3 {
        width: 79%;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant {
        margin-bottom: 16px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant:last-of-type {
        margin-bottom: 0;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom {
        margin-bottom: 32px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple {
        padding: 32px 24px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple {
        padding: 32px 24px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__multiple .featured-plants-holder__multiple-left h5 {
        font-size: 16px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .featured-plants__plants-holder .single-featured-plant {
        flex: 0 0 100%;
    }

    .single-product .hero-wrapper .container {
        padding: 0;
    }

    .single-product .hero-wrapper .container .about-product {
        padding: 0 40px;
    }

    .gallery-holder .main-image .info-tooltip .info-tooltip-text {
        max-width: 75%;
    }

    .product-info .first-part {
        padding-bottom: 52px;
    }

    .product-info .first-part .price .sale-price {
        font-size: 24px;
    }

    .single-product.product-sale .product-info .first-part .price .regular-price {
        font-size: 18px;
    }

    .hero-wrapper .bottom-btn-mobile {
        padding: 12px 20px 20px 20px;
    }

    .gallery-holder .main-image .single-product-card-left-arrow {
        left: 24px;
    }

    .gallery-holder .main-image .single-product-card-right-arrow {
        right: 24px;
    }

    .gallery-holder .main-image .slider-for,
    .gallery-holder .main-image .slider-for img {
        height: 328px;
    }

    .breadcrumbs-mobile {
        display: flex;
        flex-flow: row wrap;
        width: 100%;
        flex-flow: unset;
        overflow: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;

        font-size: 11px;
        align-items: baseline;
        color: #888;
    }

    .breadcrumbs-mobile a {
        flex: 0 0 40%;
        max-width: fit-content;
    }

    .breadcrumbs-mobile .swiper-slide {
        flex: 0 0 100%;
        max-width: fit-content;
    }

    .breadcrumbs-container {
        width: 100%;
        padding-bottom: 12px;
        max-width: 100%;
        white-space: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .breadcrumbs-container a,
    .breadcrumbs-container span {
        display: inline-block;
        padding: 0;
        white-space: nowrap;
    }

    .product-info .first-part .description {
        display: initial;
        margin-bottom: 35px;
    }

    .product-info .first-part h1,
    .product-info .first-part .price .regular-price {
        font-size: 24px;
    }

    .product-info .first-part .description span a,
    .product-info .bottom-row .blueprint-only span {
        font-size: 14px;
    }

    .product-info .first-part .description span a {
        font-size: 16px;
    }

    .single-product .product-gallery {
        padding: 0;
    }

    .gallery-holder .main-image .slider-for img {
        border-radius: 0;
    }

    .product-info .bottom-row .blueprint-only {
        order: 1;
        flex: 0 0 100%;
        justify-content: flex-start;
        margin-bottom: 18px;
        margin-top: 0;
    }

    .product-info .bottom-row .buttons {
        order: 2;
        flex: 0 0 100%;
    }

    .product-info .bottom-row {
        display: none;
    }

    .product-info .top-information {
        margin-bottom: 0 !important;
    }

    .product-info .first-part .bottom-row {
        display: flex !important;
    }

    .product-info .third-part {
        margin-bottom: 17px;
    }

    .product-info .third-part .flower-info {
        margin-bottom: 15px;
    }

    .product-info .second-part span,
    .product-info .third-part .flower-info span,
    .product-info .third-part .flower-info a {
        display: flex;
        align-items: center;
    }

    .product-info .second-part span,
    .product-info .third-part .flower-info a,
    .product-info .third-part .flower-info span {
        flex: 0 0 100%;
        margin: 0 0 20px;
    }

    .product-info .third-part .flower-info a {
        margin-bottom: 0;
    }

    .product-info .third-part .includes {
        margin-bottom: 0;
    }

    .how-it-works-holder .steps-row {
        flex-flow: unset;
        overflow: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }

    .how-it-works-holder .steps-row .single-step {
        scroll-snap-align: center;
    }

    .how-it-works-holder .steps-row .single-step {
        flex: 0 0 100%;
        display: flex;
        flex-flow: row wrap;
        margin: 0 10px 32px;
    }

    .how-it-works-holder .steps-row .single-step span {
        flex: 0 0 100%;
    }

    .how-it-works-holder .steps-row .single-step img {
        width: 100%;
        max-height: 392px;
        object-fit: cover;
        border-radius: 12px;
    }

    .how-it-works-holder .steps-row .single-step:nth-of-type(2n) {
        margin-top: 0;
    }

    .product-details-wrapper .details-holder {
        padding: 32px 20px;
    }

    .single-product .how-it-works-wrapper .how-it-works-holder {
        padding: 32px 20px;
        border-radius: 0;
    }

    .how-it-works-wrapper {
        margin-bottom: 40px;
    }

    .how-it-works-wrapper .col-lg-12 {
        padding: 0;
    }

    .how-it-works-holder .headline-row {
        justify-content: flex-start;
        margin-bottom: 32px;
    }

    .how-it-works-holder .headline-row h2, .product-details-wrapper .headline-row h2 {
        font-size: 32px;
    }

    .similar-products-wrapper {
        margin-bottom: 40px;
        padding-top: 48px;
    }

    .product-details-wrapper {
        margin-bottom: 40px;
    }

    .product-details-wrapper .details-tabs {
        height: 450px;
        overflow: auto;
    }

    .product-details-wrapper .headline-row h2 {
        margin-bottom: 32px;
    }

    .product-details-wrapper .details-menu {
        margin-bottom: 20px;
    }

    .product-details-wrapper .details-holder ul {
        margin-bottom: 0;
    }


    .how-it-works-holder .steps-row .single-step span {
        font-size: 21px;
    }

    .product-details-wrapper .headline-row {
        margin-bottom: 0;
    }

    .similar-products-wrapper .headline-row {
        margin-bottom: 32px;
    }

    .similar-products-wrapper .headline-row h2 {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .similar-products-wrapper .headline-row a {
        margin-top: 0;
    }

    .similar-products-holder .single-similar-product {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .similar-products-holder .single-similar-product:last-of-type {
        display: flex;
        margin-bottom: 0;
    }

    .newsletter-tag-wrapper {
        margin-bottom: 40px;
    }

    .newsletter-content .form .wpcf7-form p:first-of-type,
    .newsletter-content .form .wpcf7-form p:last-of-type {
        width: 100%;
    }

    .newsletter-content .form .wpcf7-form p .wpcf7-form-control-wrap input {
        width: 100%;
        margin-right: 0 !important;
    }

    .newsletter-content .form .wpcf7-form p button {
        width: 100%;
        margin: 16px 0 0;
    }

    .newsletter-tag-wrapper .newsletter-holder {
        padding: 24px;
    }

    .newsletter-tag-wrapper .newsletter-holder h2 {
        font-size: 32px;
    }

    .newsletter-tag-wrapper .newsletter-holder p {
        font-size: 16px;
    }

    .image-content {
        margin: 40px auto;
    }

    .image-content .image-content-holder .image-content-holder__right p {
        font-size: 14px;
        line-height: 20px;
    }

    .details-tabs .single-tab {
        border-radius: 16px;
        flex: 1 0 100%;
        margin-bottom: 20px;
    }

    .featured-plants__plants-holder .single-featured-plant.first-card .first-card-img img {
        height: 130px;
    }
}

@media only screen and (max-width: 408px) {
    .nursery p:first-of-type {
        flex: 0 0 42%;
    }
}

@media only screen and (max-width: 390px) {
    .nursery p:first-of-type {
        flex: 0 0 44%;
    }
}

@media only screen and (max-width: 375px) {
    .product-info .first-part .price {
        flex-flow: row wrap;
    }

    .product-info .first-part .price .price-percentage {
        order: 2;
        flex: 0 0 100%;
    }

    .product-info .first-part .price .new-product {
        order: 1;
        margin-left: 0;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 345px) {
    .single-featured-plant .featured-plant-info a svg {
        display: none;
    }

    .featured-plants .featured-plants-holder .featured-plants-holder__bottom .feature-plants .single-featured-plant-spring img {
        width: 140px;
    }
}

@media only screen and (max-width: 320px) {
    .hero-wrapper .bottom-btn-mobile .left-holder h1 {
        margin-bottom: 8px;
    }

    .hero-wrapper .bottom-btn-mobile .price .sale-tag {
        margin-top: 4px;
        margin-left: 0;
    }
}