:root {
    --cr-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --tov-main-color: #149cc7;
    --tov-secondary_color: #ffd800;
}


/* Box sizing rules */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */

html,
body {
    scroll-behavior: smooth;
    /* overscroll-behavior: none; */
}

/* Set core body defaults */

body {
    min-height: 100vh;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture,
video,
object {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}

*::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

*:-moz-placeholder {
    color: inherit;
    opacity: 1;
}

*::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background: linear-gradient(90deg, white 21px, transparent 1%) center, linear-gradient(white 21px, transparent 1%) center, black;
    background-size: 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: rgb(33, 36, 38);
}

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
    font-weight: 300;
}

.site-header {
    background: #1c385f;
    color: #fff;
    box-shadow: var(--cr-shadow);
    width: 100%;
}

.site-header a {
    color: #fff;
}

.site-header .container {
    width: 990px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 10px auto 10px;
}

.site-branding a {
    text-decoration: none;
}

.site-branding h1 {
    margin-bottom: 0;
}

.main-navigation {
    margin: auto;
}

.main-navigation .contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.main-navigation .contact a {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    align-items: center;
    align-content: center;
}

.contact img {
    width: 32px;
    margin-right: 15px;
}

.main-navigation .description {
    font-weight: 500;
    font-size: 14px;
}

.main-navigation .number {
    font-weight: 700;
}

.title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.title:before,
.title:after {
    content: "";
    height: 3px;
    border-radius: 5px;
    display: inline-block;
    background: #007aff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.title:before {
    width: 20px;
}

.title:after {
    left: 30px;
    width: 80px;
}

/* General button style (reset) */

.btn {
    display: flex;
    flex: 1 0 100%;
    align-items: center;
    justify-content: center;
    background: #00a046;
    border-radius: 5px;
    min-height: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
    text-decoration: none;
    box-shadow: var(--cr-shadow);
    border: none;
    text-transform: uppercase;
    width: 90%;
    margin: 15px auto;
    cursor: pointer;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn.btn-disabled {
    background: #ffb73b;
    cursor: inherit;
    color: #222;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}

.content-wrap {
    background: #fff;
    border-radius: 5px;
    width: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--cr-shadow);
    position: relative;
}

.margin20 {
    margin: 20px;
}

.margin30 {
    margin: 30px;
}

.margin40 {
    margin: 40px;
}

.single .footer {
    max-width: 480px;
    padding-top: 20px;
}

.footer .images img {
    border-radius: 5px;
    box-shadow: var(--cr-shadow);
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
}

.footer p {
    font-size: 15px;
}

.footer {
    font-size: 12px;
    padding: 20px 0 0;
    text-align: center;
    background: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0 40px 20px;
    margin: 0;
}

.footer-menu li {
    display: block;
	line-height: 1.5em;
    padding: 0 5px;
    white-space: nowrap;
}

.footer-menu li a {
    white-space: nowrap;
}

.footer-subscribe-messenger {
    border-top: 1px dashed #ccc;
    background: #fcfcfc;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
}

.footer-subscribe-messenger.on-thanks {
    border-bottom: 1px dashed #ccc;
    background: #dbeaec;
    padding: 20px;
}

.footer-subscribe-messenger.on-thanks p {
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.footer-subscribe-messenger.on-thanks .text {
    font-size: 18px;
    text-transform: uppercase;
}

.footer-subscribe-messenger.on-thanks .icon {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.single .footer-subscribe-messenger {
    width: 480px;
}

.footer-subscribe-messenger a {
    text-decoration: none;
}

.footer-subscribe-messenger p {
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
    margin: 0;
}

.footer-subscribe-messenger .subscribe-button {
    all: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.footer-subscribe-messenger .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-subscribe-messenger .text {
    padding: 7px 20px;
    border-radius: 5px;
    background: #0d47a1;
    color: #fff;
    font-size: 12px;
}

.viber-bg {
    background-color: #7360F2 !important;
}

.telegram-bg {
    background-color: #2AABEE !important;
}

/* Media
    --------------------------------------------- */

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */

.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */

#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */

.alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* Pages */

.page #page {
    background: #fff;
    box-shadow: var(--cr-shadow);
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    margin-right: auto;
    margin-left: auto;
    width: 1024px;
    max-width: 100%;
    flex-direction: column;
}

#page .page-content {
    padding: 30px;
}

.page-content .entry-header {
    margin-bottom: 40px;
    text-align: center;
}

.goods-catalog {
    padding: 40px 10px 20px 10px;
    display: flex;
    justify-content: space-around;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    flex-wrap: wrap;
}

.goods-catalog .card {
    display: flex;
    flex-direction: column;
    flex-basis: 480px;
    max-width: 480px;
    margin-bottom: 30px;
    font-weight: 300;
    border-radius: 5px;
    box-shadow: var(--cr-shadow);
    text-align: center;
}

.goods-catalog .card img {
    width: 100%
}

@media (min-width:600px) {
    .goods-catalog .card {
        flex-basis: 320px;
        max-width: 320px;
    }
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
}

.card-title a {
    text-decoration: none;
    color: inherit;
}

.card-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-price del {
    font-weight: 400;
    margin-right: 10px;
}

.card-price span {
    color: #FF2525;
}

.wpcf7-form.submitting {
    position: relative;
}

.wpcf7-form.submitting:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #1c385f;
    z-index: 10;
}

.wpcf7-form.submitting:after {
    content: 'Зачекайте будь-ласка. Ваше замовлення обробляється';
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .6);
    z-index: 20;
    text-align: center;
    line-height: 2;
}

.grecaptcha-badge {
    visibility: hidden;
}

.anchor-buttons {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.anchor-buttons .btn-scroll {
    width: auto;
    flex: auto;
    background: #00a6ff;
    white-space: nowrap;
    padding: 0 20px;
    margin: 0;
}

.section-title {
    text-align: center;
    margin: 20px 0;
}

h5.card-title {
    min-height: 75px;
    font-size: 22px;
    font-weight: 400;
}

.gallery-images {
    margin-bottom: 10px;
}

.gallery-images img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.gallery-thumbs img {
    opacity: 0.4;
    cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active img {
    opacity: 1;
}

.card-upsell .card-price {
    font-size: 30px;
    font-weight: normal;
    color: #ee1562;
}

.card-upsell .card-price strong {
    font-weight: normal;
    color: #00a046;
    font-size: 36px;
}

.card-gallery {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    position: relative;
}

.card-description {
    text-align: left;
    padding: 0 20px;
}

.card-description p {
    margin-bottom: 10px;
}

.card-description ul {
    padding-left: 15px;
    margin: 10px 0 22px;
    font-size: 14px;
    list-style: none;
}

.card-description li:before {
    height: 16px;
    width: 16px;
    display: inline-block;
    margin-right: 10px;
    background-image: url("./img/check.svg");
    background-size: contain;
    content: '';
    list-style: none;
}

.show-description svg {
    transform: rotate(-90deg);
    margin-left: 10px;
    transition: transform 0.3s ease-in;
}

.show-description.opened svg {
    transform: rotate(90deg);
}

.card-description .show-description {
    margin: 0 0 10px 0;
    width: 100%;
    background: #b3ced9;
}

.collapse {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none
    }
}
.wtsp_item {
    min-height: 710px;
    margin: 0 auto;
    background: url(../img/ADhTyuE4T3ar.jpg) 50% 0% repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px;
    background: #fff;
}

.wtsp_item .info {
    background: #ffffff url(../img/XS6fbttaUIgm.png) 3px 50% no-repeat;
    padding: 16px 110px 13px 50px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0px 0px;
    text-align: left;
}

.new-reviews .wtsp_item .info {
    background-size: contain;
}

.new-reviews .wtsp_item .info>img {
    width: 30px;
    height: 30px;
}

.new-reviews .wtsp_item .info .text>p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 6px;
}

.new-reviews .wtsp_item .info .text>small {
    font-size: 12px;
    line-height: 16px;
}

.wtsp_item .info>img {
    float: left;
    border-radius: 50%;
    width: 42px;
    border: 1px solid #0f3a33;
    height: 42px;
    background: #0f3a33;
}

.wtsp_item .info .text {
    overflow: hidden;
    padding-left: 8px;
    color: #333;
}

.wtsp_item .info .text>p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.wtsp_item .info .text>small {
    font-size: 13px;
    line-height: 18px;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.wtsp_item .date {
    text-align: center;
    margin-top: 10px;
}

.wtsp_item .date>span {
    display: inline-block;
    vertical-align: top;
    background: #d4ebf3;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
    color: #3f5250;
    padding: 0 8px;
    border-radius: 7px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.wtsp_item .message_container {
    margin-top: 10px;
    padding: 0 12px;
    padding-bottom: 78px;
}

.wtsp_item .message {
    display: inline-block;
    max-width: 295px;
    min-width: 230px;
    padding: 6px 10px;
    position: relative;
    font-size: 18px;
    line-height: 22px;
    color: #212121;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.new-reviews .wtsp_item .message {
    font-size: 14px;
    line-height: 1.4;
}

.wtsp_item .message.client {
    background: #fff;
    border-radius: 0 6px 6px 6px;
}

.wtsp_item .message.client:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 0;
    left: -6px;
}

.wtsp_item .message>p {
    margin-bottom: 5px;
    text-align: left;
}

.wtsp_item .message>img {
    display: block;
    margin: 6px auto;
    border-radius: 4px;
}

.wtsp_item .message .time {
    text-align: right;
    font-size: 14px;
    line-height: 15px;
    color: #989898;
    padding: 0 5px;
}

.wtsp_item .message:last-child {
    margin-bottom: 0;
}

.wtsp_item .message.author {
    background: #c8e2fd;
    border-radius: 10px 0 10px 10px;
    padding: 6px 10px;
    float: right;
}

.wtsp_item .message.author:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #c8e2fd transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -6px;
}

.wtsp_item .message.author .time {
    padding: 0;
}

.wtsp_item .message.author .time:after {
    content: "";
    width: 18px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 4px;
}

.wtsp_item:after {
    content: "";
    width: 404px;
    height: 57px;
    background: url(../img/LKvurt5AgpH6.png) 50% 50% no-repeat;
    position: absolute;
    left: 50%;
    margin-left: -202px;
    bottom: 7px;
}

.new-reviews .wtsp_item:after {
    width: 290px;
    left: 50%;
    margin-left: -144px;
    background-size: contain;
}

.swiper-viber {
    max-width: 100%;
}

.fitem {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.fitem__img {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    object-fit: cover;
    display: block;
}

.fitem__content {
    position: relative;
    min-width: 196px;
}

.fitem__message {
    padding: 8px;
    background: #f0f2f5;
    min-width: 280px;
    border-radius: 14px;
}

.fitem__message img {
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
    margin-top: 6px;
    display: block;
    border-radius: 14px;
}

.new-reviews .fitem__message {
    min-width: 100px;
}

.fitem__name {
    font-size: 13px;
    font-weight: 600;
    display: block;
    color: #080809;
}

.fitem__text {
    margin-top: 2px;
    font-size: 15px;
    line-height: 1.3;
    color: #080809;
}

.fitem__bottom {
    display: flex;
    gap: 14px;
    margin-top: 4px;
    align-items: center;
    padding-left: 12px;
}

.fitem__bottom span {
    display: block;
    font-size: 12px;
    color: #65686c;
    font-weight: 600;
}

.new-reviews span:nth-child(3) {
    display: none;
}

.fitem__smile {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 0;
    right: 8px;
    color: #65686c;
    font-size: 13px;
}

.viber-reviews,
.face-reviews {
    padding: 20px 16px;
}

.new-reviews .viber-reviews,
.new-reviews .face-reviews {
    padding: 20px 0px;
}

.viber-reviews h3,
.face-reviews h3 {
    text-align: center;
    padding-bottom: 16px;
}

.review-pagination {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
body {
    min-width: 480px;
    background: #eee;
    font-family: 'AvenirNextCyr', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    cursor: default;
}

.content-wrap {
    background: #fff;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
}

h1,
h2,
h3,
h4 {
    text-transform: none;
}

h1 strong,
h2 strong,
h3 strong,
.products_count strong {
    color: var(--tov-secondary_color, #ffd800);
}

p {
    margin-bottom: 1em;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
    color: #42aaef;
}

.header {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: var(--tov-main-color, #149cc7);
    display: flex;
    flex-direction: column-reverse;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding: 10px 0 5px;
}

.product-subtitle {
    font-size: inherit;
    letter-spacing: 2px;
    font-weight: 400;
    padding-bottom: 15px;
}

.featured-media {
    position: relative;
    overflow: hidden;
}

.featured-media .discount {
    position: absolute;
    right: 0;
    top: 0;
    background: rgb(255, 41, 51);
    color: #fff;
    padding: 4px 30px;
    transform: rotate(45deg) translate(45px, -8px);
}

/* Benefits List */

.benefits_list {
    padding: 12px 0 12px 18px;
    background: var(--tov-main-color, #149cc7);
    color: #fff;
    display: flex;
    flex-direction: row;
}

.benefits_list .benefit_item {
    padding: 0 0 0 44px;
    font-size: 14px;
    line-height: 16px;
    position: relative;
}

.benefits_list .benefit_item:last-of-type {
    width: 150px;
}

.benefits_list .benefit_item:before {
    display: block;
    content: '';
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1) center no-repeat;
    position: absolute;
    top: -2px;
    left: 0;
}

.benefits_list .benefit_item:nth-child(1):before {
    background-image: url("../img/offer3__benefit1_icon.png");
}

.benefits_list .benefit_item:nth-child(2):before {
    background-image: url("../img/offer3__benefit2_icon.png");
}

.benefits_list .benefit_item:nth-child(3):before {
    background-image: url("../img/offer3__benefit3_icon.png");
}

/*   price   */

.pricing-block {
    border-bottom: 1px solid #e6e6e6;
}

.pricing-block {
    display: flex;
    line-height: 1;
    align-items: center;
}

.pricing-block>* {
    width: 50%;
    text-align: center;
    height: 90px;
}

.old-price {
    border-right: 1px solid #e6e6e6;
}

.pricing-block span {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 14px;
}

.pricing-block strong:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
}

.pricing-block strong {
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-block small {
    font-size: 30px;
}

.old-price strong {
    text-decoration: line-through;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.new-price span {
    padding: 2px 5px 3px;
    border-radius: 4px;
    background: #ee3737;
    color: #fff;
}

.new-price strong {
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
}

.top-features {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.top-features li {
    margin: 0 40px 12px;
    padding: 0 0 0 32px;
    background: url("../img/offer__tick_icon.png") left 1px no-repeat;
}

.top-features li:last-child {
    margin: 0 40px;
}

.big-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-height: 80px;
    border: none;
    border-radius: 4px;
    background: var(--tov-secondary_color, #ffd800);
    font-weight: 700;
    font-size: 24px;
    line-height: 80px;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.big-button svg {
    fill: currentColor;
    margin-right: 12px;
    width: 24px;
    height: 24px;
}

.products_count {
    margin: 20px 0 0;
    text-align: center;
}

.products_count strong {
    margin: 0 3px;
    padding: 3px 5px;
    border-radius: 4px;
    background: var(--tov-main-color, #149cc7);
    color: #fff;
}

.block-title {
    text-align: center;
}

.title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
}

.title:before,
.title:after {
    display: none;
}

.number-discount {
    background: var(--tov-secondary_color, #ffd800);
    padding: 20px 0;
    margin: 20px 0;
    text-align: center;
}

.discount-list {
    margin: 10px 0 0 20px;
    padding: 0;
    font-size: 24px;
}

.discount-list li {
    padding: 5px 20px;
    font-weight: 200;
}

.discount-list strong {
    font-weight: 700;
}

.countdown {
    text-align: center;
    box-shadow: var(--cr-shadow);
    padding: 0 20px 30px 30px;
}

.countdown h4 {
    margin-bottom: 20px;
}

.countdown__timer {
    display: flex;
    justify-content: center;
}

.countdown__item {
    padding: 10px 15px;
    margin: 0 15px;
    background: var(--tov-main-color, #149cc7);
    color: #fff;
    border-radius: 3px;
}

.countdown__value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown__label {
    display: block;
    font-size: 14px;
}

.countdown-text {
    padding-top: 20px;
    font-size: 15px;
}

.product-description {
    margin: 40px 10px 10px;
}

.presentation-wrap {
    display: flex;
    flex-direction: column-reverse;
}

.presentation-wrap>* {
    margin-bottom: 15px;
}

.presentation {
    padding: 15px 0px;
    font-size: 17px;
    line-height: 1.5;
    background: #fff;
    border-radius: 10px;
}

.presentation p {
    padding: 0 15px;
}

.features-block {
    color: #fff;
    background: #333;
    padding: 30px 10px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    min-height: 150px;
    flex-direction: row;
    margin: 0 20px 20px 20px;
}

.feature-item:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.feature-image {
    min-width: 150px;
    max-width: 150px;
    border-radius: 4px;
    border: 3px solid #fff;
    background: #fff;
}

.feature-text {
    padding: 10px;
}

.feature-title {
    padding-bottom: 3px;
    text-transform: none;
    font-size: 15px;
    font-weight: bold;
}

.feature-description {
    font-size: 15px;
    margin: 0;
}

.steps-block {
    padding: 30px 0 30px 0;
}

.steps-list {
    padding: 0 30px;
}

.steps-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
    position: relative;
}

.steps-item:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.steps-item:not(:last-child):after {
    content: '';
    width: 180px;
    height: 3px;
    background: url(../img/benef2_item.png) 0 50% repeat;
    transform: rotate(30deg);
    position: absolute;
    bottom: -20px;
    left: 120px;
    z-index: 1;
}

.steps-item:nth-child(2n):after {
    transform: rotate(-30deg);
    right: 120px;
}

.steps-item:last-child {
    margin-bottom: 0;
}

.steps-item .img {
    min-width: 166px;
    width: 166px
}

.steps-item .img>img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.steps-item>p {
    padding: 0 0 0 26px;
    margin: 1em 0;
}

.steps-item>p>span {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
}

.steps-item:nth-child(2n)>p {
    padding: 0 26px 0 0;
    text-align: right;
}

.specifications {
    background: var(--tov-main-color, #149cc7);
    color: #fff;
}

.specifications .title {
    margin: 30px 10px 10px;
}

.video-presentation,
.rev_item_image {
    border-radius: 15px;
    box-shadow: var(--cr-shadow);
    overflow: hidden;
}

.characteristics__list {
    padding: 5px 0;
    background: var(--tov-main-color, #149cc7);
}

.characteristics-icon {
    margin-right: 12px;
    height: 41px;
    width: 41px;
    display: inline-block;
}

.characteristics__list li {
    margin: 0 0 12px;
    padding: 0 20px 16px 50px;
    background: url("../img/yellow_tick_icon.png") 20px 2px no-repeat;
    color: #fff;
    position: relative;
}

.characteristics__list li:last-child {
    margin: 0;
    padding: 0 20px 0 50px;
}

.characteristics__list li.custom-icon {
    padding-left: 0;
    background: none;
}

.characteristics__list li:before {
    display: block;
    content: '';
    width: 100%;
    height: 4px;
    background: url("../img/list1__separator.png") center no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}

.characteristics__list li:last-child:before {
    display: none;
}

.reviews {
    background: var(--tov-main-color, #149cc7);
    color: #fff;
    padding: 30px 0;
}

.reviews .title {
    margin-bottom: 30px;
}

.reviews>.swiper-slide {
    margin-bottom: 30px;
}

.reviews>.swiper-slide:last-of-type {
    margin-bottom: 0;
}

.rev_item {
    background: #fff;
    box-shadow: 0 -3px 0 #1185a9 inset;
    border-radius: 4px;
    color: #333;
    margin: 0 20px;
}

.rev_item_image {
    min-width: 100%;
    border-radius: 4px 4px 0 0;
    object-fit: cover;
}

.rev-text {
    text-align: center;
    padding: 20px 20px 40px;
    display: flex;
    flex-direction: column-reverse;
}

.rev-name {
    margin-bottom: 20px;
}

.rev-author {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--tov-main-color, #149cc7);
}

/*   order info   */

.order_info2_section {
    padding: 30px 0 0;
}

.order_info2_section h2.title {
    padding: 0 20px;
}

.order_info_list2 .info_item {
    display: table;
    width: 100%;
    height: 204px;
    border-top: 4px solid #d9d9d9;
    position: relative;
}

.order_info_list2 .info_item img {
    display: block;
    width: 220px;
    position: absolute;
    top: 0;
    right: 0;
}

.order_info_list2 .info_item:nth-child(even) img {
    right: auto;
    left: 0;
}

.order_info_list2 .info_item .text_block {
    display: table-cell;
    vertical-align: middle;
    padding: 0 240px 0 20px;
    text-align: center;
}

.order_info_list2 .info_item:nth-child(even) .text_block {
    padding: 0 20px 0 240px;
}

.order_info_list2 .info_item h4 {
    margin: 0 0 5px;
    font-weight: 700;
    color: var(--tov-main-color, #149cc7);
}

.contact-form {
    padding: 0 0 10px;
}

.form-txt {
    text-align: center;
    padding-bottom: 20px;
}

.wpcf7-form {
    margin: 30px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.wpcf7-form select,
.wpcf7-form input {
    display: block;
    margin: 0 auto 20px;
    padding: 0 20px 0 80px;
    width: 400px;
    height: 66px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background-color: #f5f5f5;
    font-family: 'AvenirNextCyr', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.wpcf7-form input[name="name"] {
    background-image: url(../img/offer__name_icon.png);
    background-position: 23px center;
    background-repeat: no-repeat;
}

.wpcf7-form input[name="phone"] {
    background-image: url(../img/offer__phone_icon.png);
    background-position: 20px center;
    background-repeat: no-repeat;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.footer {
    padding: 0;
}

/* ////////////////////////////////// */

.recomended__container {
    padding: 0 16px;
}

.recomended__wrapper {
    margin-bottom: 48px;
    margin-top: 48px;
    overflow: hidden;
}

.recomended__title {
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    line-height: 19.2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #474747;
}

.recomended__blocks {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.recomended__blocks::-webkit-scrollbar {
    display: none;
}

.recomended__block {
    border: 1px solid #F2F2F2;
    border-radius: 16px;
    display: flex;
    padding: 16px;
    flex-direction: column;
}

.recomended__block img {
    display: block;
    width: 185px;
    max-width: 185px;
    height: 185px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.recomended__block-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
    word-break: break-word;
    margin: 0 12px;
    margin-bottom: 8px;
}

.recomended__block-prices {
    margin: 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.recomended__block-prices span:first-child {
    font-weight: 800;
    font-size: 16px;
    line-height: 19.2px;
    color: #C02A2A;
}

.recomended__block-prices span:last-child {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-decoration: line-through;
    color: #BDBDBD;
    margin-top: 4px;
}

.recomended__block-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd800;
    padding: 0 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    line-height: 19.2px;
    color: #333;
    text-transform: uppercase;
    height: 44px;
    text-decoration: none;
    margin-top: auto;
}

/* ////////////////////////////////////// */

.fixed__btn {
    position: fixed;
    bottom: -60px;
    transition: all .5s;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 50px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    width: max-content;
    color: #333;
    background: #ffd800;
    border-radius: 4px;
}

.fixed__btn.active {
    bottom: 16px;
}

.order-form__form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.order-form__form-radios input[type="radio"] {
    display: none;
}

.order-form__form-radios label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 9px 7px;
    border: 1px solid #ffd800;
    width: calc(25% - 9px);
    border-radius: 16px;
    color: #ffd800;
    font-weight: 800;
    font-size: 20px;
    line-height: 22px;
    max-height: 52px;
}

.order-form__form-radios label i {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
}

.order-form__form-radios input[type="radio"]:checked {
    display: none;
    /* Це для того, щоб інпут залишався прихованим */
}

.order-form__form-radios input[type="radio"]:checked+label {
    background-color: #ffd800;
    color: #333;
    /* Зміна фону при виборі */
}