/*
Theme Name: Healthy&Happy
Version: 1.0
Author: Lonch
Author URI: https://lonch.digital
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital@0;1&display=swap'); */

:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: normal;
    overflow-x: hidden;
    color: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

ins {
    text-decoration: none;
    font-weight: normal;
}

button,
input,
input::placeholder,
select,
textarea,
textarea::placeholder {
    outline: none;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    opacity: 1;
    color: #000;
    background: none;
    border: none;
}

input {
    border-radius: 0;
    -webkit-border-radius: 0;
}

button,
input,
select,
textarea {
    outline: none;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

a {
    text-decoration: none;
    outline: none;
    color: #000;
}

ul,
ol {
    list-style-position: outside;
    margin-left: 0;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 2.5% 0 2.5%;
    margin: 0 auto;
}

.header-top {
    background: #009bd8;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
}

.header-top-right {
    gap: 30px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.admin-bar header {
    top: 32px;
}

.logo {
    margin-right: 30px;
    position: relative;
    width: 100px;
}

.logo img {
    display: block;
    width: 100px;
    position: absolute;
    top: -30px;
    left: 0;
}

.ark-white-btn a,
.ark-white-btn button {
    color: #fff;
    background: #f47d20;
    padding: 12px 25px 12px 25px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.header-top-right nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-right nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.header-tel svg {
    width: 20px;
}


.header-tel span {
    font-weight: 700;
    color: #fff;
	display: none;
}

.header-s0cial {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-s0cial a {
    flex-shrink: 0;
}

.header-s0cial a img {
    width: 18px;
    height: 18px;
}

section {
    margin-bottom: 50px;
}

.lang {
    color: #FFFFFF;
    position: relative;
    margin-right: 25px;
}

.lang-current {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 20px;
}

.lang-current::after {
    content: '';
    display: block;
    width: 10px;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    right: -10px;
    margin-right: -50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='%2359bfe7'%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E") no-repeat right center;
    transition: all .3s ease-in-out;
    transform: rotate(0deg) translate(-50%, -50%);
}

.lang-current.click::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 0;
    right: -5px;
}

.langs-list {
    display: none;
    position: absolute;
    top: 25px;
    left: -3px;
    background: #FFFFFF;
    box-shadow: 0px 2px 13px rgb(221 221 221);
    padding: 10px;
    width: 200%;
    z-index: 9;
    list-style: none;
}

.langs-list-item,
.lang-item {
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
}

.langs-list-item:last-child,
.lang-item:last-child {
    margin-bottom: 0;
}

.header-search-btn,
.tel-menu-btn {
    background-color: rgba(255, 255, 255, 1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.header-search-btn>svg {
    width: 22px;
    height: 22px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.search-form-visible {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    display: flex;
    padding: 15px;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 9;
}

.search-form-visible>svg {
    width: 22px;
    height: 22px;
}

.search-form-visible.show-search {
    visibility: visible;
    opacity: 1;
}

.head-search-form {
    display: block !important;
}

.header-bottom {
    background-color: #83b81a;
}

.header-bottom-wrapper {
    margin-left: 130px;
}

.header-bottom-wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-bottom-wrapper ul li {
    position: relative;
}

.header-bottom-wrapper ul li::after {
    content: '';
    transition: all .3s ease-in-out;
}

.header-bottom-wrapper ul li:hover::after {
    content: '';
    width: calc(100% + 20px);
    height: 3px;
    background: #fff;
    position: absolute;
    left: -10px;
    bottom: 0;
}

.header-bottom-wrapper ul li a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 10.7px 0;
    display: inline-block;
}

header ul li {
    position: relative;
}

header ul li.menu-item-has-children {
    margin-right: 20px;
}

header ul li.menu-item-has-children a {
    position: relative;
    z-index: 9;
}

header ul.sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 225px;
    position: absolute;
    left: 0;
    top: 30px;
    background: #fff;
    padding: 15px;
    list-style: none;
    transition: all .27s ease-in-out;
    z-index: 99;
}

header ul.sub-menu>li {
    margin-bottom: 30px;
}

header ul.sub-menu>li:last-child {
    margin-bottom: 0;
}

header ul.sub-menu a {
    color: #000 !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
}

header ul.sub-menu a:hover {
    color: rgb(104 104 104) !important;
}

header ul.sub-menu.show-sub {
    visibility: visible;
    opacity: 1;
}

header .menu-item-has-children::before {
    content: "";
    position: absolute;
    display: block;
    width: 130%;
    height: 200%;
    z-index: 5;
}

header .menu-item-has-children::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23eee'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    position: absolute;
    right: -20px;
    top: 0px;
    width: 12px;
    transition: all 0.3s ease-in-out 0s;
}

.front-slider-txt {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10%;
    margin-right: -50%;
    transform: translate(0%, -50%);
    /* 
    position: relative;
    z-index: 9;
    padding: 130px 0px;
    margin-left: 8%;
    max-width: 45%;
 */
}

.front-slider-txt span {
    font-family: "Open Sans", sans-serif;
    display: block;
    color: rgb(52, 60, 150);
    letter-spacing: 0.9921px;
    font-weight: 500;
    font-size: 96px;
    text-transform: uppercase;
}

.front-slider-txt p {
    font-family: "Open Sans", sans-serif;
    color: rgb(255, 255, 255);
    white-space: normal;
    font-size: 55px;
    margin-top: 5px;
    padding-right: 80px;
}

.front-slider-txt i {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: rgb(255, 58, 45);
    font-style: normal;
    white-space: nowrap;
    font-size: 55px;
    margin-top: 60px;
}

.front-slider-txt a {
    display: inline-block;
    background-color: rgb(255, 255, 255);
    font-family: "Open Sans", sans-serif;
    color: rgb(52, 60, 150);
    font-weight: 500;
    font-size: 40px;
    padding-left: 50px;
    border-radius: 3px;
    padding-right: 50px;
    text-transform: uppercase;
    margin-top: 35px;
}

.front-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
}

/* .front-slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
} */

/* .front-slider .swiper-slide {
    min-height: 750px;
} */

.swiper-pagination-bullets {
    z-index: 9;
    margin: 0;
    position: absolute;
    bottom: 0 !important;
    left: 50% !important;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #e5e5e5;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.front-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 3%;
}

.front-categories a {
    padding: 10px 5px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAeCAMAAABHRo19AAAABlBMVEUAnNoTpN3UEeCOAAAAT0lEQVR42u3TsQ2AMAwAwb/9l2YCQLJFFdJeiij2R7eHZy3mWsy1mGsx12KuxUAHt9/f6VH3/7ef3H5n9ttazLV2+hd6cqF9VqijCo1pg1xYcgDtvkCpIQAAAABJRU5ErkJggg==");
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 0px 0px rgba(10.878969218909527, 226.4400207519531, 51.83555184914111, 0.5);
}

.front-categories a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.front-categories a img {
    width: 60px;
    height: 60px;
}

.front-categories a span {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.doctor-appointment-sect {
    /*     background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAeCAMAAABHRo19AAAABlBMVEUAnNoTpN3UEeCOAAAAT0lEQVR42u3TsQ2AMAwAwb/9l2YCQLJFFdJeiij2R7eHZy3mWsy1mGsx12KuxUAHt9/f6VH3/7ef3H5n9ttazLV2+hd6cqF9VqijCo1pg1xYcgDtvkCpIQAAAABJRU5ErkJggg=="); */
    background: #009cda;
    padding: 30px 100px 80px 100px;
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(0, 156, 218);
}

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

.section-title.middle {
    font-size: 60px;
}

.section-title.big {
    font-size: 95px;
}

.section-title span {
    color: #82b73d;
}

.doctor-appointment-form>p {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;

}

.doctor-appointment-form form {
    max-width: 1130px;
    margin: 0 auto;
}

.doctor-appointment-form-inputs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.popup-appointment-form-inputs {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;

}

.contact-form.column .doctor-appointment-form-inputs {
    flex-direction: column;
    align-items: flex-start;
}

.doctor-appointment-form-inputs label {
    width: 100%;
}

.doctor-appointment-form-inputs label span {
    display: block;
    margin-bottom: 10px;

    font-weight: 700;
}

.popup-appointment-form-inputs label {
    display: block;
    margin-bottom: 10px;
    align-self: center;
    font-weight: 400;
    width: 100%;
}

.doctor-appointment-form-inputs label b {
    color: red;
}

.popup-appointment-form-inputs label b {
    color: red;
}

.doctor-appointment-form-inputs input,
.doctor-appointment-form-inputs textarea {
    background: transparent;
    border: 2px solid #f3f3f3;
    color: #f3f3f3;
    font-size: 16px;
    padding: 14px;
    width: 100%;
}

.popup-appointment-form-inputs input,
.popup-appointment-form-inputs textarea {
    align-self: center;
    background: white;
    border: 2px solid #f3f3f3;
    border-radius: 20px;
    color: #000;
    font-size: 14px;
    padding: 5px;
    width: 100%;

}
.doctor-appointment-form-inputs textarea {
    resize: none;
    height: 100px;
}

.doctor-appointment-form-inputs input::placeholder,
.doctor-appointment-form-inputs textarea::placeholder {
    color: #dad9d9;
}

.doctor-appointment-form-inputs button {
    background: #83b81a !important;
    color: #009cda;
    padding: 8px 28px;
    text-transform: uppercase;
    border: 2px solid #f3f3f3;
    color: #f3f3f3;
    flex-shrink: 0;
    font-weight: 700;
    max-width: 330px;
    width: 100%;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block !important;
}

input[type="checkbox"]::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #b7b7b7;
    cursor: pointer;
    background: #f7f7f7;
}

input[type="checkbox"]:checked::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #b7b7b7;
    background: #f7f7f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center center;
}

.doctor-appointment-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.doctor-appointment-form-checkbox span {}

.doctor-appointment-form-checkbox span b {
    color: red;
}

.doctor-appointment-form-bottom i {

    font-style: normal;
    display: block;
}

.front-about-sect {
    background: #ECECEC;
    padding: 40px 0;
}

.front-about {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 2%;
}

.front-about-slider-img img {
    width: 100%;
}

.front-about-title {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 20px;
}

.section-title.white {
    color: #fff;
}

.section-title.green {
    color: rgb(130, 183, 61);
}

.front-about-title p {
    color: #5C5C5C;

}

.front-about-left .ark-block-content {
    margin-bottom: 50px;
}

.ark-block-content {
    line-height: 1.7;
}

.ark-block-content *:not(li, button, label, input, span, em, b, strong, i, a, svg) {
    margin-bottom: 25px;
}

.ark-block-content>*:last-child {
    margin-bottom: 0;
}

.ark-block-content a {
    color: rgb(0, 156, 218);
}

.ark-block-content a:hover {
    color: #000;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    padding-right: 35px;
}

.alignright {
    float: right;
    padding-left: 15px;
}

.ark-green-btn.center {
    text-align: center;
}

.ark-green-btn a,
.ark-green-btn button,
.ark-green-btn em {
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #83B81A;
    font-weight: 700;
    display: inline-block;
    padding: 10px 20px;
	font-style: normal;
    transition: all 0.3s ease-in-out 0s;
}

.ark-green-btn a:hover,
.ark-green-btn button:hover,
.ark-green-btn em:hover{
    background-color: #9edd1f;
}

.front-about-slider-txt {
    max-width: 60%;
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;

    z-index: 9;
}

.front-about-slider-txt span {
    display: block;
    color: #fff;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
}

.front-about-right .swiper-slide,
.front-about-right .swiper-slide img {
    height: 400px;
    object-fit: cover;
}

.front-about-right .swiper-slide::after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.front-about-slider-txt a {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 24px;
    border-radius: 3px;
}

.package-services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 1.5%;
}

.package-services-list a img {
    display: block;
    width: 100%;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    gap: 15px;
}

.ark-gray-btn {
    flex-shrink: 0;
}

.ark-gray-btn a,
.ark-gray-btn button {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #009CDA;
    background-color: #F3F3F3;
    padding: 15px 30px;
    border-radius: 4px;

    transition: all 0.3s ease-in-out 0s;
}

.ark-gray-btn a:hover,
.ark-gray-btn button:hover {
    color: #F3F3F3;
    background-color: #009CDA;
}

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

.promotions-proposals-sect {
    margin-bottom: 80px;
}

.promotions-proposals-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
}

.promotions-proposals-item-img img {
    display: block;
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.promotions-proposals-item-txt {
    padding: 35px;
    display: grid;
    grid-template-columns: 25% 70%;
    gap: 5%;
    background: #f3f3f3;
}

.promotions-proposals-item-txt span {
    font-weight: 700;
    color: rgb(0, 156, 218);
    font-size: 21px;

}

.promotions-proposals-item-txt span:hover {
    color: rgb(51, 51, 51);
}

.mobile-app-sect {
    padding: 40px 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAeCAMAAABHRo19AAAABlBMVEUAnNoTpN3UEeCOAAAAT0lEQVR42u3TsQ2AMAwAwb/9l2YCQLJFFdJeiij2R7eHZy3mWsy1mGsx12KuxUAHt9/f6VH3/7ef3H5n9ttazLV2+hd6cqF9VqijCo1pg1xYcgDtvkCpIQAAAABJRU5ErkJggg==");
}

.mobile-app {
    display: grid;
    grid-template-columns: 66% 30%;
    gap: 4%;
    align-items: center;
}

.mobile-app-left h2 {
    margin-bottom: 50px;
}

.mobile-app-left {
    padding-right: 35px;
    color: #fff;
}

.mobile-app-left .ark-block-content {
    margin-bottom: 40px;
}

.mobile-app-right {
    text-align: center;
}

.mobile-app-right>img {
    margin-bottom: 30px;
}

.mobile-apps-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.our-doctors-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2%;
}

.our-doctors-list>div {
    position: relative;
    overflow: hidden;
}

.our-doctors-img img,
.our-doctors-img {
    width: 100%;
    height: 100%;
    display: block;
}

.our-doctors-splash {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: #fff;
}

.our-doctors-splash div {
    display: flex;
    align-items: center;
    gap: 15px;

}

.our-doctors-list>div:hover>.our-doctors-splash {
    bottom: 0;
}

.our-doctors-splash div a {
    display: flex;
    padding: 15px;
    border-radius: 100%;
    background: #009CDA;
}

.our-doctors-splash div a:hover {
    background: #83B81A;
}

.our-doctors-splash div a svg {
    width: 20px;
}

.our-doctors-splash span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.our-doctors-splash p {
    font-size: 14px;
    line-height: 25px;

    margin-bottom: 15px;
}

.doctor-appointment-form-big-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "doctor-appointment-form-big-username doctor-appointment-form-big-usertel doctor-appointment-form-big-usermail"
        "doctor-appointment-form-big-usertext doctor-appointment-form-big-usertext doctor-appointment-form-big-usertext"
        "submit-btn submit-btn submit-btn";
}

.doctor-appointment-form-big-username {
    grid-area: doctor-appointment-form-big-username;
}

.doctor-appointment-form-big-usertel {
    grid-area: doctor-appointment-form-big-usertel;
}

.doctor-appointment-form-big-usermail {
    grid-area: doctor-appointment-form-big-usermail;
}

.doctor-appointment-form-big-usertext {
    grid-area: doctor-appointment-form-big-usertext;
}

.doctor-appointment-form-big-inputs button {
    grid-area: submit-btn;
    max-width: 100%;
}

.reviews-block-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.reviews-block-list div {
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 60px 50px 60px 50px;
    border-bottom: none;

}

.reviews-sect {
    margin-bottom: 110px;
}

.partner-companies .swiper-wrapper {
    padding-bottom: 50px;
}

.partner-companies .swiper-pagination-bullet-active {
    background: #000;
}

.partner-companies .swiper-slide {
    text-align: center;
}

.footer-top {
    padding: 60px 0;
    background-color: #f3f3f3;
}

.footer-top-wrapper {
    display: grid;
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15% 20%;
    gap: 30px 1%;
    grid-auto-flow: row;
    grid-template-areas:
        "footer-logo footer-menu-1 footer-menu-2 footer-menu-3 footer-menu-4 footer-contact-block"
        "footer-logo footer-address-block-1 footer-address-block-2 footer-address-block-3 footer-address-block-4 footer-quality-control"
        "footer-logo footer-address-block-5 footer-address-block-6 footer-address-block-7 footer-address-block-8 footer-req";
}

.footer-logo {
    grid-area: footer-logo;
}

.footer-menu-block a:hover {
    color: rgba(0, 0, 0, 0.5);
}

.footer-menu-1 {
    grid-area: footer-menu-1;
}

.footer-menu-2 {
    grid-area: footer-menu-2;
}

.footer-menu-3 {
    grid-area: footer-menu-3;
}

.footer-menu-4 {
    grid-area: footer-menu-4;
}

.footer-contact-block {
    grid-area: footer-contact-block;

}

.footer-address-block-1 {
    grid-area: footer-address-block-1;
}

.footer-address-block-2 {
    grid-area: footer-address-block-2;
}

.footer-address-block-3 {
    grid-area: footer-address-block-3;
}

.footer-address-block-4 {
    grid-area: footer-address-block-4;
}

.footer-quality-control {
    grid-area: footer-quality-control;

}

.footer-address-block-5 {
    grid-area: footer-address-block-5;
}

.footer-address-block-6 {
    grid-area: footer-address-block-6;
}

.footer-address-block-7 {
    grid-area: footer-address-block-7;
}

.footer-address-block-8 {
    grid-area: footer-address-block-8;
}

.footer-req {
    grid-area: footer-req;
}


.footer-menus {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px 20px;
}

.footer-menu-block span {
    color: #009cda;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
	text-transform: uppercase;
    line-height: 24px;
}

.footer-menu-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-tel svg {
    width: 45px;
}

.footer-contact-tel a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-tel a span {
    color: #83b81a;
    font-size: 24px;
    font-weight: 700;
}

.footer-contact-tel {
    margin-bottom: 10px;
}

.footer-contact-call-center {
    margin-bottom: 20px;
}

.footer-green-title {
    display: block;
    color: #83b81a;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;

}

.footer-icons-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icons-list a {
    display: flex;
}

.footer-contact-app .footer-icons-list a img {
    width: 90px;
    height: 30px;
}

.footer-contact-app {
    margin-bottom: 30px;
}

.footer-contact-s0cial .footer-icons-list a img {
    width: 40px;
    height: 40px;
}

.footer-address-block {

    line-height: 1.7;
}

.footer-address-block>a,
.footer-address-block>span {
    color: rgb(0, 156, 218);
    line-height: 26px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    padding-right: 15px;
}

.footer-address-block div a {
    color: rgb(0, 156, 218);
}

.footer-address-block a:hover {
    color: rgb(51, 51, 51);
}

.footer-quality-control div {
    line-height: 1.7;
}

.footer-quality-control div a {
    text-decoration: underline;
    color: #333333;
}

.footer-req .footer-icons-list a img {
    width: 50px;
    max-width: 50px;
}


.footer-docs {
    padding: 30px 0;
}

.footer-docs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto; 
    justify-content: center; 
}
.footer-docs-wrapper div a,
.footer-docs-wrapper div span {
    display: block;
    color: #009cda;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer-docs-wrapper div a:hover {
    color: #000;
}

.footer-docs-wrapper div i {
    line-height: 1.4;
    font-style: normal;
}

.footer-bottom {
    background-color: #009cda;
    padding: 30px 0;
    color: rgb(255, 255, 255);

}

.footer-bottom-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.footer-bottom-wrapper div {
    margin-top: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center
}




.footer-bottom-wrapper>div>* {
    margin-bottom: 0 !important;
}

.footer-bottom-wrapper div p,
.footer-bottom-wrapper div p span {
    display: flex;
    align-items: center;
}

.footer-bottom-wrapper div p span {
    margin: 0 10px;
}

.footer-bottom-wrapper div p span svg {
    width: 15px;
}

.rmp-rating-widget__results__rating.js-rmp-avg-rating {
    margin-right: 3px;
}

.rmp-rating-widget__results__votes.js-rmp-vote-count {
    margin-left: 3px;
}

#ark-to-top {
    width: 45px;
    border: 2px solid #aeaeae;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    cursor: pointer;
    display: none;
    border-radius: 100%;
    z-index: 99;
}

#ark-to-top svg {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) scale(.7);
}

.custom-page-head-sect {
    padding: 240px 0 70px 0;
    position: relative;
}

.custom-page-head-sect.toner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.ark-breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ark-breadcrumbs ul li a,
.ark-breadcrumbs ul li span {
    color: #fff;

    font-size: 16px;
}

.ark-breadcrumbs.fs-14 ul li a,
.ark-breadcrumbs.fs-14 ul li span {
    font-size: 14px;
}

.ark-breadcrumbs.dark ul li a,
.ark-breadcrumbs.dark ul li a span {
    color: rgb(0, 156, 218);
}

.ark-breadcrumbs.dark ul li.active span,
.ark-breadcrumbs.dark ul li .ark-bc-divider {
    color: #000;
}

.ark-bc-divider {
    padding: 0 4px;
}

.custom-page-head {
    position: relative;
    z-index: 9;
}

.directions-page-list-sect {
    margin-bottom: 80px;
}

.directions-page-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.directions-page-list a {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAeCAMAAABHRo19AAAABlBMVEUAnNoTpN3UEeCOAAAAT0lEQVR42u3TsQ2AMAwAwb/9l2YCQLJFFdJeiij2R7eHZy3mWsy1mGsx12KuxUAHt9/f6VH3/7ef3H5n9ttazLV2+hd6cqF9VqijCo1pg1xYcgDtvkCpIQAAAABJRU5ErkJggg==");
    border-radius: 10px 10px 10px 10px;
    padding: 9px 10px 9px 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.directions-page-list a img {
    width: 45px;
    height: 45px;
}

.directions-page-list a span {
    font-size: 20px;
    color: #fff;
}

.section-title.divider {
    margin-bottom: 40px;
}

.section-title.divider::after {
    content: '';
    display: block;
    width: 15%;
    height: 3px;
    margin: 0 auto;
    background: #009CDA;
    margin-top: 35px;
}

.custom-page-head-wrapper {
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 10%;
}

.single-nashi-tsentri .custom-page-head-wrapper {
    align-items: center;
}

.custom-page-head-right {
    text-align: center;
    color: #fff;
    line-height: 1.7;
}

.custom-page-head-right span {
    display: block;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
}

.center-worktime {

    font-size: 18px;
    margin-bottom: 20px;
}

.single-center-title {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 15px 12px 15px;
    background-color: #83B81A;
    text-align: center;
}

.single-center-directions-sect {
    background-color: #F2F2F2;
    padding: 70px 0;
}

.single-center-directions ul {
    list-style: none;
    columns: 3;
    border: 2px solid #fff;
    padding: 40px 80px 40px 80px;
    line-height: 26px;
}

.single-center-directions ul li {
    position: relative;
    padding-left: 1em;
    padding-right: 10px;
    margin-bottom: 10px;
}

.single-center-directions ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' fill='%2383B81A'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin: 0;
    position: absolute;
    top: 41%;
    left: 0;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.single-center-directions ul li a {
    font-size: 18px;
}

.single-center-directions ul li a:hover {
    color: #83B81A;
}

.single-center-txt {
    padding: 0 50px;
    padding-bottom: 50px;
}

.single-center-txt.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.single-center-txt-item span {
    display: block;
    color: #00AFE1;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-center-txt-item span.green {
    color: #83B81A;
}

.ark-block-content ul,
.ark-block-content ol,
.contacts-tab-content-right ul {
    list-style-position: outside;
    margin-left: 1em;
}

.ark-block-content.list-check ul,
.ark-block-content.list-arrow ul,
.ark-block-content ul.list-triangle,
.ark-block-content.list-triangle ul,
.contacts-tab-content-right ul {
    list-style: none;
}

.ark-block-content.list-check ul li,
.ark-block-content.list-arrow ul li,
.ark-block-content ul.list-triangle li,
.ark-block-content.list-triangle ul li,
.contacts-tab-content-right ul li {
    position: relative;
    padding-left: 1em;
}

.page-template-page-nashi-partneri .ark-block-content ul.list-triangle li {
    padding-right: 5px;
}

.ark-block-content.list-check ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%2383B81A'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.ark-block-content.list-arrow ul li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' fill='%23009CDA'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.ark-block-content ul.list-triangle li::before,
.ark-block-content.list-triangle ul li::before,
.contacts-tab-content-right ul li::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%23009CDA'%3E%3Cpath d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.single-center-contacts-wrapper {
    display: grid;
    grid-template-columns: 23% 74%;
    gap: 3%;
    padding: 60px 60px 45px 60px;
    border: 2px solid #F3F3F3;
}

.single-center-contacts-item {
    display: flex;
    gap: 25px;

    line-height: 1.7;
    margin-bottom: 30px;
}

.single-center-contacts-item:last-child {
    margin-bottom: 0;
}

.single-center-contacts-item span {
    font-size: 19px;
    font-weight: 700;
    color: #414247;
}

.single-center-contacts-item-icon {
    border-radius: 50%;
    background: #83B81A;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-center-contacts-right iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.single-center-title.blue {
    background: #009CDA;
}

.single-center-gallery-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding-top: 20px;
}

.single-center-gallery-list a img {
    display: block;
    width: 100%;
}

.doctor-appointment-form.list .doctor-appointment-form-big-inputs {
    display: flex;
    flex-direction: column;
}

.doctor-appointment-form.list .doctor-appointment-form-big-inputs textarea {
    height: 200px;
}

.prices-page-table .ark-block-content {
    text-align: center;

}

.package-of-services-descr {
    line-height: 1.7;
    font-size: 20px;
}

.promo-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 2%;
}

.promo-list a,
.promo-blog-list a {
    background: #f3f3f3;
    overflow: hidden;
}

.promo-list a img {
    display: block;
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.promo-item-txt {
    padding: 30px;
}

.promo-list a span {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 21px;
    display: block;
    margin-bottom: 10px;
}

.promo-list a p {
    font-size: 14px;
    color: #777;

    line-height: 1.5;
}

.promo-item-img {
    position: relative;
}

.promo-item-img:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    border-bottom: 70px solid #ee8fb7;
    border-left: 280px solid transparent;
}

.promo-item-img small {
    position: absolute;
    bottom: 15px;
    right: 15px;

    font-size: 14px;
    margin: 0px;
    font-weight: 600;
    color: #fff;
    z-index: 9;
}

.promo-blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 1.5%;
    margin-bottom: 40px;
}

.promo-blog-list a img {
    display: block;
    width: 100%;
    height: 385px;
    object-fit: cover;
}

.promo-blog-list a>div>span {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 21px;
    display: block;
    margin-bottom: 10px;

}

.promo-item-txt div {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #777;

}

.doctors-page-sect,
.ark-default-page-sect {
    padding-top: 50px;
}

.doctors-page-wrapper {
    margin-top: 80px;
}

.doctors-page-categories {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 35px;
}

.doctors-page-categories li a {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e5e5e5;
    background-color: #aeca78;
    color: #fff;
    padding: 12px 15px;
    font-family: "Open Sans", sans-serif;
}

.doctors-page-categories li.active a {
    background-color: #8cb33e;
}

.doctors-page-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 2%;
}

.doctors-page-list a,
.doctors-page-list>div {
    background: #f3f3f3;
}

.doctors-page-list a img,
.doctors-page-list>div img {
    display: block;
    width: 100%;
}

.doctors-page-list a img:hover {
    opacity: .5;
}

.doctor-item-txt {
    padding: 30px 25px 30px 25px;
    text-align: center;
}

.doctor-item-txt span {
    font-size: 24px;
    line-height: 26px;
    color: #299bd7;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.doctor-item-txt span:hover,
.promo-blog-list a>div>span:hover {
    color: #414141;
}

.doctor-item-txt p {
    font-size: 16px;
    line-height: 22px;
    color: #333333;
}

.wp-pagenavi {
    text-align: center;
    margin: 50px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    list-style: none;
}

.wp-pagenavi .next,
.wp-pagenavi .prev,
.wp-pagenavi .next-no-active,
.wp-pagenavi .prev-no-active {
    display: none;
}

.wp-pagenavi span,
.wp-pagenavi a {
    background-color: #c6daa0;
    color: white;
    line-height: 38px;
    font-size: 12px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    padding: 0px 16px;
    height: 40px;
    display: block;
}

.wp-pagenavi .active span {
    background-color: #aeca78;
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);
}

.doctors-page-text {
    margin-top: 100px;
}

.custom-page-head-right ul {
    margin-top: -50px;
}

.custom-page-head.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-contents {
    list-style: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.blog-contents a {
    color: #fff;

    line-height: 1.7;
}

.select {
    position: relative;
    cursor: pointer;
}

.new-select {
    color: #009cd9;
    border: 3px solid #009cd9;
    padding: 15px 20px;
    position: relative;
    font-style: 18px;
    font-weight: 600;
}

.new-select__list {
    background: #FFFFFF;
    border: 3px solid #009cd9;
    position: absolute;
    width: 100%;
    top: 60px;
    z-index: 99;
}

.new-select__item {
    padding: 15px 20px;
    cursor: pointer;
    font-style: 18px;
    font-weight: 600;
    color: #009cd9;
}

.new-select__item:last-child {
    border: none;
}

.new-select__item:hover {
    background: #f7f7f7;
    color: #414141;
}

.new-select__item:last-child:hover {
    border-radius: 0px 0px 10px 10px;
}

.new-select:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23009cd9'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E") no-repeat right center;
    -webkit-transition: all .27s ease-in-out;
    -o-transition: all .27s ease-in-out;
    transition: all .27s ease-in-out;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.new-select.on:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.blog-page-cat {
    max-width: 350px;
    margin: 0 0 35px auto;
}

.promo-item-txt div svg {
    width: 15px;
    height: 15px;
    margin-top: -3px;
}

.promo-item-txt div p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-item-txt i {
    font-style: normal;
    font-size: 17px;
    color: #000000;
    font-weight: 300;
    display: block;
    margin-bottom: 20px;

}

.blog .promo-item-img:after,
.promo-blog-list .promo-item-img:after {
    border-bottom: 80px solid #80ba26;
}

.blog .promo-blog-list a>div>span {
    font-family: "Roboto Condensed", sans-serif;
}

.blog .doctors-page-list,
.category .doctors-page-list {
    grid-template-columns: repeat(4, 1fr);
}

.doctor-rating p,
.doctor-rating p span {
    display: flex;
}

.doctor-rating span {
    margin: 0 10px;
}

.doctor-rating p span svg {
    width: 15px;
}

.single-doctor-sect {
    margin-bottom: 100px;
}

.single-doctor-page {
    display: grid;
    grid-template-columns: 30% 66%;
    gap: 4%
}

.single-doctor-page-left img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.single-doctor-page-left>span,
.single-doctor-page-left>h1,
.single-doctor-page-left>h2 {
    color: #80BA26;
    font-size: 29px;
	font-weight: 400;
    display: block;
    margin-bottom: 20px;
}

.single-doctor-page-left p {

    margin-bottom: 20px;
}

.single-doctor-page-left b {
    color: #83b81a;
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.single-doctor-page-left small {
    display: block;
    font-size: 13px;
    margin-bottom: 15px;

}

.single-doctor-page-left>a {
    font-size: 14px;
    color: #83B81A;
    display: block;
    margin-bottom: 20px;
}

.doctor-rating {
    font-size: 14px;
}

.single-doctor-page-left .ark-green-btn {
    margin-bottom: 20px;
}

.single-doctor-page-right .ark-block-content {
    margin-bottom: 40px;
}

.single-doctor-page-right>* {
    margin-bottom: 0;
}

.single-doctor-info-block-title {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px !important;
    line-height: 32px !important;
    margin-bottom: 15px;
}

.single-doctor-certificates ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3%;
    align-items: center;
    list-style: none;
}

.leadership-head {
    margin-bottom: 50px;
}

.kerivnitstvo .doctors-page-list a {
    cursor: auto;
}

.ark-block-content h1 {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px !important;
}

.ark-block-content h2 {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px !important;
}

.ark-block-content h3 {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px !important;
}

.ark-block-content h4 {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 29px;
    line-height: 39px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px !important;
}

.ark-block-content h5 {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px !important;
}

.pharmacies-map-sect {
    background-color: rgb(242, 242, 242);
    padding: 70px 0;
}

.pharmacies-page .ark-block-content {
    font-size: 17px;
}

.pharmacies-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4%;
}

.pharmacies-map iframe {
    width: 100%;
}

.partners-page .ark-block-content {
    font-size: 20px;
}

.page-template-page-nashi-partneri .ark-block-content ul.list-triangle {
    columns: 4;
}

.partners-page .ark-block-content>* {
    margin-bottom: 40px !important;
}

.partners-page .ark-block-content>*:last-child {
    margin-bottom: 0 !important;
}

.partners-page .ark-block-content h1,
.partners-page .ark-block-content h2,
.partners-page .ark-block-content h3,
.partners-page .ark-block-content h4,
.partners-page .ark-block-content h5,
.partners-page .ark-block-content h6 {
    margin-bottom: 10px !important;
}

.career-page .ark-block-content {
    margin-bottom: 50px;
}

.career-page .ark-block-content:last-child {
    margin-bottom: 0;
}

.career-page .faq-item {
    padding: 20px 0 20px 20px;
    font-weight: 600;
    color: #009CDA;
}

.career-page .tab-content p,
.career-page .tab-content {
    line-height: 1.7;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.career-page .tab-btn-dwn {
    font-size: 24px;
    line-height: 29px;
    position: relative;
    cursor: pointer;
    padding-right: 15px;
}

.career-page .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%23009CDA'%3E%3Cpath d='M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z'/%3E%3C/svg%3E");
    position: absolute;
    left: -20px;
    top: 0;
    width: 10px;
    transition: all .27s ease-in-out;
    transform: rotate(0deg);
}

.career-page .tab-btn-dwn.active::before {
    transform: rotate(90deg);
}

.career-page .tab-content {
    display: none;
    margin-top: 30px;
}

.career-page .tab-content.current {
    display: block;
    margin-top: 20px;
}

.career-page .tab-content ul {
    line-height: 28px;
}

.career-page .faq-right {
    padding: 32px 32px 40px 32px;
    border-radius: 10px;
    background: #896CFF;
}

.career-page .faq-right h3 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #FFFFFF;
}

.career-page .faq-right p {
    line-height: 21px;
    color: #F5F5F5;
    margin-bottom: 20px;
}

.career-page .faq-right div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.career-page .faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.contacts-big-map iframe {
    width: 100%;
    height: 600px;
}

.contacts-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5%;
}

.contacts-advantages div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 20px 20px;
}

.contacts-advantages span {
    display: block;
    color: #80BA26;
    font-size: 25px;

}

.contacts-tabs ul {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 2px;
    list-style: none;
}

.contacts-tabs-wrapper .ark-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px 20px 35px 20px;
    font-size: 24px;
    color: #009CDA;
    background: #F2F2F2;
    cursor: pointer;

}

.contacts-tabs-wrapper .ark-tab-btn:hover {
    background-color: #E3E3E3;
}

.contacts-tabs-wrapper .ark-tab-btn._active {
    color: #FFFFFF;
    background: #009CDA;
    position: relative;
}

.contacts-tabs-wrapper .ark-tab-btn._active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    z-index: 1;
    width: 0px;
    height: 0px;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #444;
    border-bottom: 0px;
    border-width: 10px;
    bottom: -10px;
    border-top-color: #00AFE1;
}

.contacts-tabs-wrapper .ark-tab-content {
    display: none;
    padding: 50px;
}

.contacts-tabs-wrapper .ark-tab-content._current {
    display: grid;
}

.contacts-tabs-wrapper .contacts-tab-content>span {
    font-size: 29px;
    color: rgb(0, 156, 218);
    font-weight: 700;
    display: block;
    margin-bottom: 35px;
}

.contacts-tabs-wrapper .contacts-tab-content-grid {
    display: grid;
    grid-template-columns: 25% 70%;
    gap: 5%;
}

.contacts-tabs-wrapper .contacts-tab-content>span,
.contacts-tabs-wrapper .contacts-tab-content-right>span {
    font-size: 25px;
    color: rgb(0, 156, 218);
    font-weight: 700;
    display: block;
    margin-bottom: 35px;
}

.contacts-tabs-wrapper .contacts-tab-content-right>p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;

}

.contacts-tabs-wrapper .contacts-tab-content-right ul li {
    margin-bottom: 30px;
}

.contacts-tabs-wrapper .contacts-tab-content-right ul li span {
    font-size: 20px;
    color: 009CDA;
    display: block;
    margin-bottom: 15px;
    color: rgb(0, 156, 218);

}

.contacts-tabs-wrapper .contacts-tab-content-right ul li p {
    font-size: 14px;
    line-height: 1.5em;
    color: #333;

}

.contacts-tabs-wrapper .contacts-tab-content-right ul li::before {
    top: 12px;
    width: 12px;
    height: 12px;
}

.contacts-tabs-wrapper .contacts-tab-contents {
    border: 1px solid #F3F3F3;
}

.ark-green-btn.flex a {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    font-size: 16px;
    text-transform: none;
}

.ark-green-btn.flex a svg {
    width: 16px;
    height: 16px;
}

.contacts-departments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1%;

}

.contacts-departments span {
    color: #009cda;
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 35px;
}

.contacts-departments p {
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 18px;
}

.contacts-departments a {
    color: rgb(0, 156, 218);
    font-size: 18px;
}

.single-service-advantage {
    display: grid;
    grid-template-columns: 59% 39%;
    gap: 2%;
    border: 2px solid #F3F3F3;
}

.single-service-advantage-left {
    padding: 60px 0 20px 60px;
}

.single-service-advantage-left .ark-block-content {
    font-size: 18px;
}

.single-service-advantage-left .ark-block-content ul li,
.single-service-advantage-left .ark-block-content ol li {
    margin-bottom: 10px;
}

.single-service-advantage-left .ark-block-content ul li::before {
    top: 15px;
    width: 12px;
    height: 12px;
}

.single-service-advantage-left .section-title {
    margin-bottom: 50px;
}

.single-service-advantage-card {
    padding: 30px 30px 30px 30px;
    background-color: #83B81A;
    text-align: center;
    margin-top: -27px;
    position: relative;
}

.single-service-advantage-card::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 2px;
    z-index: -1;
    border-left: 12px solid transparent;
    border-right: 12px solid #cfdf99;
    border-bottom: 12px solid transparent;
    border-top: 12px solid #cfdf99;
    transform: rotate(90deg);
}

.single-service-advantage-card-img {
    margin-bottom: 20px;
}

.single-service-advantage-card-img img {
    background-color: #FFFFFF;
    padding: 20px 20px 20px 20px;
    border-radius: 50%;
}

.single-service-advantage-card span {
    color: #FFFFFF;
    font-size: 35px;
    font-weight: normal;
    line-height: 1.1em;
    display: block;
    margin-bottom: 20px;
}

.single-service-advantage-card p {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;

}

.single-service-advantage-right {
    padding-right: 60px;

}

.single-service-advantage-right-tel-block {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-service-advantage-right-tel-block a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-service-advantage-right-tel-block a svg {
    width: 40px;
    height: 40px;
}

.single-service-advantage-right-tel-block a span {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #83B81A;

}

.single-service-price-and-subservices-left ul {
    list-style-position: outside;
    list-style: none;
    padding: 20px;
}

.single-service-price-and-subservices.v6 .single-service-price-and-subservices-left ul {
    columns: 3
}

.single-service-price-and-subservices-left svg {
    width: 13px;
    height: 16px;
}

.single-service-price-and-subservices-left ul li {
    margin-bottom: 10px;
}

.single-service-price-and-subservices-left.v2 ul li {
    margin-bottom: 0;
}

.single-service-price-and-subservices-left ul li a {
    color: #222;
    line-height: 26px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-service-price-and-subservices-left ul li a:hover {
    color: #83B81A;
}

.single-service-price-and-subservices {
    display: grid;
    grid-template-columns: 32% 67%;
    gap: 1%;
}

.single-service-price-and-subservices.v5 {
    align-items: center;
}

.single-service-price-and-subservices.table-only {
    display: block;
}

.single-service-price-and-subservices-right {
    background: #009cda;
    padding: 10px 10px 10px 10px;
    color: #fff;
    width: 100%;
}

.single-service-price-and-subservices.table-only .single-service-price-and-subservices-right {
    padding: 30px 50px;
}

table.dataTable {
    border-collapse: collapse;
}

table.dataTable tbody tr {
    background: #009cda;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 10px !important;
}

.single-service-price-and-subservices-right .section-title {
    margin-bottom: 60px;
    text-align: center;
    display: block;
}

.single-service-price-and-subservices-left .single-center-title {
    display: block;

}

.single-service-price-and-subservices-left.v2 ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-service-price-and-subservices-left.v2 li a {
    padding: 5px 0px 5px 30px;
    background: #009CDA;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #fff;
}

.single-service-price-and-subservices-left.v2 li a img {
    width: 42px;
    height: 42px;
}

.single-service-price-and-subservices-left.v2 ul li a:hover {
    background: #83B81A;
    color: #fff;
}

.single-service-doctors-link a {
    color: rgb(0, 156, 218);
    font-weight: 700;
    font-size: 18px;
}

.single-service-doctors .section-title-wrapper {
    margin-bottom: 0;
    padding-bottom: 25px;
    border-bottom: 5px solid #009CDA;
    position: relative;
    margin-bottom: 25px;
}

.single-service-doctors .section-title-wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #009CDA;
    position: absolute;
    left: 0;
    bottom: 1px;
}

.single-service-doctors-sect .doctors-page-list {
    display: flex;
    gap: 0;
}

.single-service-doctors-sect .doctors-page-list .swiper-slide {
    height: 100%;
}

.doctors-slider-arrows-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.doctors-slider-arrows-wrapper div {
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}

.doctors-slider-arrows-wrapper svg {
    width: 12px;
    height: 12px;
}

.section-title-big-green {
    text-transform: uppercase;
    color: rgb(130, 183, 61);
    font-size: 90px;
    line-height: 1.4;
    letter-spacing: 0em;
}

.collective-page-slider-sect {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.collective-page-slider-sect:nth-child(odd) .section-title-big-green,
.collective-page-slider-sect:nth-child(odd) .collective-page-slider-btn {
    text-align: right;
}

.doctors-page-list.collective-list {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
}

.page-template-page-kolektiv .doctors-page-list a {
    height: auto;
}

.collective-page-slider-sect .swiper {
    position: static;
}

.collective-page-slider-sect .container {
    position: relative;
}

.collective-slider-arrows-wrapper .swiper-button-next,
.collective-slider-arrows-wrapper .swiper-button-prev {
    transform: scale(0.7);
    padding: 70px;
    border: 1px solid;
    border-radius: 100%;
}

.collective-slider-arrows-wrapper .swiper-button-next {
    right: -40px;
}

.collective-slider-arrows-wrapper .swiper-button-prev {
    left: -40px;
}

.collective-page-slider-btn a {
    display: inline-block;
    font-size: 30px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background-color: rgb(211, 214, 53);
    padding: 15px 65px;
    transition: all .3s ease-in-out;
}

.collective-page-slider-btn a:hover {
    background-color: rgb(34, 156, 216);
}

.single-blog-post-info {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.single-blog-post-info>div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-blog-post-info>div svg {
    position: relative;
    top: -2px;
}

.single-blog-post-info>div span {
    color: #fff;
    font-size: 15px;

}

.single-post .custom-page-head .section-title {
    color: #fff;
    letter-spacing: 0em;
    font-weight: 700;
    font-size: 65px;
}

.single-blog {
    display: grid;
    grid-template-columns: 30% 65%;
    gap: 5%;
}

.single-paketi-poslug .single-blog,
.single-promotions .single-blog {
    padding-top: 50px;

}

.single-blog-author img {
    display: block;
    margin-bottom: 25px;
}

.single-blog-author span {
    color: #83B81A;
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.single-blog-author p {
    margin-top: 5px;
    font-size: 13px;
    margin-bottom: 35px;
}

.single-blog-author>a {
    font-size: 14px;
    color: #83B81A;
    display: block;
    margin-bottom: 30px;
}

.ark-green-btn.small a {
    font-size: 13px;
}

.single-blog-author {
    margin-bottom: 40px;
}

.single-blog-related h2 {
    color: #009CDA;
    font-size: 29px;

    margin-bottom: 25px;
}

.single-blog-related .promo-blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.single-blog-right .faq-wrapper {
    max-width: 100%;
    padding-left: 30px;
    margin-bottom: 30px;
}

.single-blog-right .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' heigh='16'%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    position: absolute;
    right: 20px;
    left: auto;
    transform: rotate(180deg);
}

.single-blog-right .tab-btn-dwn.active::before {
    transform: rotate(0);
}

.single-blog-right .tab-btn-dwn {
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 20px;
    font-size: 18px;
    color: #000;
    position: relative;
    cursor: pointer;
    font-weight: 700;
}

.single-blog-right .faq-item {
    padding: 0;
}

.single-blog-right .tab-content ul {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.single-blog-right .tab-content a {
    color: #009CDA;
}

.single-blog-right .tab-content a:hover {
    color: #000;
}

.single-blog-content.ark-block-content h1,
.single-blog-content.ark-block-content h2,
.single-blog-content.ark-block-content h3,
.single-blog-content.ark-block-content h4,
.single-blog-content.ark-block-content h5,
.single-blog-content.ark-block-content h6 {
    font-size: 25px;
}

.single-blog-share {
    margin-top: 50px;
}

.single-blog-share>span {
    display: block;

    margin-bottom: 20px;
}

.ark-share-s0cial {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ark-share-s0cial button {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #414141;
    gap: 5px;
}

.ark-share-s0cial button span {
    font-weight: 700;
    font-size: 13px;
    color: #fff;

}

.ark-share-s0cial button.ark-xfb {
    background: #3b5998;
}

.ark-share-s0cial button.ark-xfb:hover {
    background: #366cdd;
}

.ark-share-s0cial button.ark-xtw {
    background: #1da1f2;
}

.ark-share-s0cial button.ark-xtw:hover {
    background: #00cfff;
}

.single-blog-related .ark-green-btn {
    text-align: center;
}

.ark-no-posts {
    padding: 20px 0;
}

.index-page-posts-wrapper .ark-no-posts {
    padding-top: 65px;
}

.post-type-archive-nashi-tsentri .custom-page-head {
    width: 50%;
}

.post-type-archive-nashi-tsentri .custom-page-head p {
    line-height: 1.7;
    margin-bottom: 35px;

}

.archive-our-centers-head-list {
    text-align: right;
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.archive-our-centers-head-list a {
    color: rgb(0, 156, 218);

    text-decoration: underline;
}

.archive-our-centers-head-list a span {
    color: #000;
}

.archive-centers-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.archive-centers-list>div {
    display: grid;
    grid-template-columns: 33% 66%;
    gap: 1%;
}

.archive-centers-list>div img {
    display: block;
    width: 100%;
}

.archive-centers-item-right iframe {
    width: 100%;
}

.archive-centers-item-title {
    background: #F3F3F3;
    padding: 35px;
}

.archive-centers-item-title .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(0, 156, 218);
    display: block;
    margin-bottom: 30px;
}

.archive-centers-item-img {
    position: relative;
}

.archive-centers-item-img::after {
    content: '';
    transition: all .3s ease-in-out;
}

.archive-centers-item-img:hover::after {
    content: '';
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ark-blue-btn {
    text-align: center;
}

.ark-blue-btn a,
.ark-blue-btn button {
    display: inline-block;
    padding: 15px 20px;
    background: #f47d20;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;

}

.single-promotions .promo-item-txt {
    text-transform: uppercase;
}

.single-promotions .single-blog-related h2 {
    color: #84B91C;
}

.single-promotion-title {
    color: rgb(0, 156, 218);
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

.single table,
.page-template-page-single-service table {
    width: 100%;
}

.single table th,
.single table td,
.page-template-page-single-service .single table th,
.page-template-page-single-service .single table td {
    padding: 10px;
}

.single-paketi-poslug table td {
    border-top: 1px solid #ddd !important;
}

.single table td {
    line-height: 1.4;
}

.single-promotions table td,
.page-template-page-single-service table td {
    border-top: 1px solid #ddd;
    padding: 10px;
}

.popup-main-div {
  width: 800px;
  height: 400px;
  background-image: url("https://hh.com.ua/wp-content/uploads/2024/12/popupback-2.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 20px;
}

.popup-mobile-div {
  /*min-width: 320px;*/
  width: 80vw;
  height: 80vh;
  /*min-height: 640px;*/
  background-image: url("https://hh.com.ua/wp-content/uploads/2024/12/popupback2.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 20px;
}

.column-popup {
  float: left;
  display: block;
  align-items: center;
  width: 50%;
  padding: 20px;
}

.row-popup:after {
  content: "";
  display: table;
  clear: both;
}

.shortcode-form {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.shortcode-form .doctor-appointment-form-inputs input,
.shortcode-form .doctor-appointment-form-inputs textarea {
    background: #f5f5f5;
    color: #000;
}

.promo-item-short-descr {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-packages-types-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-packages-types-list li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.service-packages-types-list li a {
    font-size: 20px;

    color: #fff;
}

.taxonomy-package-of-services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 3%;
}

.taxonomy-package-of-services-list a {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}

.taxonomy-package-of-services-list-item-img {
    position: relative;
}

.taxonomy-package-of-services-list-item-img img {
    display: block;
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.taxonomy-package-of-services-list-item-img span {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #69727d;
    color: #fff;
    font-size: 12px;
    border-radius: 999px;
    padding: 5px 15px;

}

.taxonomy-package-of-services-list-item-title {
    padding: 45px 20px 30px 20px;
    position: relative;
}

.taxonomy-package-of-services-list-item-title span {
    display: block;
    color: rgb(0, 156, 218);
    font-size: 21px;
    font-weight: 700;
}

.taxonomy-package-of-services-list-item-title img {
    position: absolute;
    top: -30px;
    left: 20px;
    border-radius: 100%;
}

.single-package-service-pricing {
    display: block;
    text-align: right;
    color: #83b81a;
    letter-spacing: 0em;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 10px;
}

.adult-child-service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 5%;
}

.adult-child-service-list a {
    border-radius: 40px;
     /* height: 300px;*/
    background: rgb(1 155 217);
    font-size: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.adult-child-service-list a:hover {
    background-color: rgb(164, 203, 234);
}

.adult-child-service-list-item-top {
    padding: 20px;
}

.adult-child-service-list-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding: 20px;
}

.adult-child-service-list-item-bottom img {
    width: 30%;
}

.form-thank {
    display: none;
    text-align: center;
    font-size: 28px;
    color: #71ff71;
    font-weight: 700;
    padding: 10px 0 10px 0;
}

.popup-thank {
    display: none;
    text-align: center;
    font-size: 26px;
    color: #71ff71;
    font-weight: 600;
    padding: 0 0 0 0;
}


.single-promotions .ark-block-content {
    padding: 0;
}

#search-page {
    padding-top: 50px;
}

.search-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 2%;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 7px 7px 20px -10px rgba(0, 0, 0, 0.75);
    padding: 20px;
}

.search-item-img img {
    width: 50px;
}

.search-item-title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(0, 156, 218);
}

.reviews-page-sect {
    padding-top: 50px;
}

.reviews-page-count {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-page-wrapper>div {
    padding: 10px;
    border-bottom: 1px solid #ddd;

}

.reviews-page-wrapper>div span {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.reviews-page-wrapper>div i {
    display: block;
    margin-bottom: 5px;
}

.review-item-answer {
    margin: 15px 0 0 40px;
    color: #333;
    background-color: #e6e6e6;
    padding: 10px;
    border-left: 1px solid #ddd;
}

.reviews-page form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reviews-page form input,
.reviews-page form textarea {
    display: inline-block;
    margin-bottom: 9px;
    border: 1px solid #ddd;
    padding: 0 0.65em;
    font-size: 13px;
    line-height: normal;
    color: #555;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px #00000013;
    padding: 10px;
    width: 45%;
}

.reviews-page form textarea {
    height: 150px;
}

.reviews-page form label {
    display: grid;
    grid-template-columns: 5% 65%;
    gap: 30%;
}

.reviews-page-form {
    display: none;
}

.reviews-page-form-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
}

.reviews-page-form-wrapper button:not(.show-review-form-btn) {
    margin-top: 20px;
}

.show-review-form-btn svg {
    width: 20px;
}

.rmp-heading--title {
    display: none !important;
}

.rmp-rating-widget__msg {
    display: none !important;
}

.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__icons {
    display: inline-block;
}

.rmp-rating-widget.js-rmp-rating-widget.rmp-rating-widget {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-in-popup-review-form input,
.form-in-popup-review-form textarea,
.modal-recording-reception-form input,
.modal-recording-reception-form textarea,
.modal-promotions-order-form input,
.modal-promotions-order-form textarea {
    color: #000;
    font-size: 14px;
}

.ark-overlay-review-form,
.ark-overlay-recording-reception-form,
.ark-overlay-promotions-order-form {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.ark-overlay-review-form .popup-review-form,
.ark-overlay-recording-reception-form .popup-recording-reception-form,
.ark-overlay-promotions-order-form .popup-promotions-order-form {
    position: fixed;
    width: 900px;
    z-index: 4;
    margin: 0;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
}

.ark-overlay-recording-reception-form .popup-recording-reception-form,
.ark-overlay-promotions-order-form .popup-promotions-order-form {
    width: 600px;
}

.form-in-popup-review-form .doctor-appointment-form-inputs input,
.form-in-popup-review-form .doctor-appointment-form-inputs textarea,
.modal-recording-reception-form .doctor-appointment-form-inputs input,
.modal-recording-reception-form .doctor-appointment-form-inputs textarea,
.modal-promotions-order-form .doctor-appointment-form-inputs input,
.modal-promotions-order-form .doctor-appointment-form-inputs textarea {
    border: 2px solid #dbdbdb;
}

.form-in-popup-review-form .doctor-appointment-form-inputs input::placeholder,
.form-in-popup-review-form .doctor-appointment-form-inputs textarea::placeholder,
.modal-recording-reception-form .doctor-appointment-form-inputs input::placeholder,
.modal-recording-reception-form .doctor-appointment-form-inputs textarea::placeholder,
.modal-promotions-order-form .doctor-appointment-form-inputs input::placeholder,
.modal-promotions-order-form .doctor-appointment-form-inputs textarea::placeholder {
    color: #787575;
    font-size: 14px;
}

.popup-close-review-form,
.popup-close-recording-reception-form,
.popup-close-promotions-order-form {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 0;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 29px;
    fill: #fff;
    border-radius: 50px;
    background-color: rgb(0, 0, 0);
    border: 3px solid #fff;
}

.no-scroll {
    overflow: hidden;
}

.reviews-page-wrapper.single-doctor-reviews-list,
.tel-menu-btn {
    display: none;
}

.posts-table-controls input[type=search] {
    background: #fff;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px #00000013;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable.no-footer,
table.dataTable tbody td {
    border-bottom: 1px solid #ddd !important;
}

.page-template-page-single-service table.dataTable thead th,
table.dataTable thead td,
.page-template-page-single-service table.dataTable.no-footer,
.page-template-page-single-service table.dataTable tbody td {
    border-bottom: 1px solid #fff !important;
}

.posts-table-reset a {
    display: none;
}

.page-template-page-analizi .tab-btn-dwn {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 45px;
    background-color: #f1f1f1;
    text-transform: uppercase;
    color: #111111;
}

.page-template-page-analizi .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
    margin: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    margin-right: -50%;
    transform: translate(0, -50%);
    transition: all .27s ease-in-out;
}

.page-template-page-analizi .tab-btn-dwn.active::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

.page-template-page-analizi .tab-btn-dwn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='15' height='15' fill='%2380BA26'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: -50%;
    transition: all .27s ease-in-out;
    transform: rotate(0deg) translate(0, -50%);
}

.page-template-page-analizi .tab-btn-dwn.active::after {
    transform: rotate(90deg) translate(-75%, -50%);
    right: 25px;
}

.page-template-page-analizi .tab-content {
    display: none;
    margin-top: 30px;
}

.col-cost {
    width: 10% !important; 
}

.page-template-page-analizi .tab-content.current {
    display: block;
    margin-top: 20px;
}

.page-template-page-analizi .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 5%;
    margin: 50px 100px 100px 100px;
}

.page-template-page-analizi .posts-table-above.posts-table-controls {
    margin: 0 !important;
}

.page-template-page-analizi .single-center-contacts-item {
    margin: 25px 0;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #80BA26;
    gap: 15px;
}

.single-service-price-and-subservices-left.banner {
    background-image: url("data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAcHBwcIBwgJCQgMDAsMDBEQDg4QERoSFBIUEhonGB0YGB0YJyMqIiAiKiM+MSsrMT5IPDk8SFdOTldtaG2Pj8ABBwcHBwgHCAkJCAwMCwwMERAODhARGhIUEhQSGicYHRgYHRgnIyoiICIqIz4xKysxPkg8OTxIV05OV21obY+PwP/CABEIAk8BoQMBIgACEQEDEQH/xAAYAAEBAQEBAAAAAAAAAAAAAAAAAgEDB//aAAgBAQAAAAD0pk0MoZG2DIqoy0bcZeiZvWQF7msis2jNY1mnMAbh0MgvWQbbntTlJ24y9EZVMgLRVTN6MgvWQVXMNwqW2ZBVMg2wCd3IFUyG3zG2itnLDIKpkFUBMqkF6ybZBtgEVuQKpkKoCZDdlegZBVARipBVMygCZNtjQDIXoEyFbC9ABk7jL0TNUZrGgEybW41mgCNzWZ0HMvQADJqWXojKoARQ0Mi9DNAEaMWZB0AmkjLTuhk3GVQBk1mtDIvQyFJazdlemQuG2DMpGtm07oSpkAuG7K9Mh0ybBkNY3GsXpMqpkC9ybSoJnoEbTIBcKSvTIKpkFUAyL2MvSMVTIHRmUndCZKpkF6DIB0GQVTINsBM2gKpkbYCZGdWamSqZBegyAbhes0Acw6RlbAVTIqgEyNvIvQAI3Z2bgG4dAAMgXoSoAyLZs3kCqya0ADnWzs3pMqoAyams1LFUEqAMmmbNaZC9BG1kWnLitnZvSZVQBkXNNZrGs0jG4C5oZumQvQyNuZrZXM3oyKpkBWw6ZFzTWaxrNIwA3DoOZVMg2yajK2NuMqhM1TIC0bWTejIKpkFUcxuKk6GQVTINsAxqMKpkHQ5lp2si9GQVTINsDIXOBVMmtObbAJVkCqZDbAmQ3ZVQDmbYEyqQVTJsAmTbZlM0GQqgMgNqF6ABG4y9GRVAzKAJk22NZoAgqWXpzL0AAyallUJmqAMmg0ZFUGaAI0Zl6cy9BNJzSmNZrGue2AZNBoyL0EZtQrM2oXpkKrmvQzKTlJtO6GZTIBUlSqjIG1oZDdluN2VUZCqZAqsmtlQZB0JUyAXDahemQVTINsBkXsydEy22QL3MpjQyCqZBVAczcNtkG2czbAZFVGCqZC9AmQvc1kG2yCqA5gC9ZoAjCqc62A22RtgMgbSKoACcqdm95huF6zQBGFUzWZQA50bO1zG3kXoAEazZqjIVQBk1NNQxVBKgBFM2a0yFUCcvIrcytllRVGQqgDJqaaGZTNJluG43dGbpkL0ELyK2V5FUMiqZAbcZexU01msazSMbgNwvTmVTINtjXOtlWTVDI22QFbOWiqGQVTINsObcbh0HM22QbbGs1jUYVTIL0c72F5F6Mg22QbYGQrMCqZF6EWAZlIw2zmdAMgFS2wBz2wMhWYFUya0BkC9ybADntgZALhVAATjFUHOqAiwDIHRmUABObs7N6Ri9AAEbjKoZFUAZNBoyNsAATm7OzenMvQTTJ0pjWazKJoARQaMiqBM7UKzNqFUOaqM0E0nNZbMoMyjmDWKltmQVQCM3ZazahVGQ22QNvJrcmwyCqZNnMFZipVRkG2yDbAZO1kBcNs5iqRW5lBkG2yDbAjG4C4NtkG2AyKqZG2yF6BkBaHTINtkFUBzNwF6xoBMm2xsYNs5r0DIC0bYAGTU7NUcwL1jQCMKoE0AI0Ys5tpFUABCp2aoyG2AZNZrTIbYZNgCNNxRkNsGTaN1NoKiqMhtgCNymhk2DIawNYtijIVQIXkbWZaNoZG2yA2pythtNZrMoEy3AaxekY22QL3GsJUiqGRtsgNuMtG2Mg22QbYHM3C9IxtsgdGNZrGpkqmQXoEZaKoOZtsg2wMhWwG2yKoD/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQIF/9oACAECEAAAAO6AFWCLFuVBCxqQFuVS3IGpGsirLkKg1BAKgAFQAAsAAWAqWFlhZRCxpmyw1lYtkBUayFXJrKoKqQDRmqyBbIAFluQAFQCwGshYAahc2ALWbLFRqRqCGsqgLZFjUgs0ysDTNgAWyACwsACxYAAWAAFC5VA1LBGsrcgaZqNSAtyqDSQ1IsFrNgFRpEAVAAFhYAAWUgLChLFi2QohY0yBrKoAKjWRRcgsGpYgFuQAKQABYAAsBUsALKQWNIlhrIWyWCo1ILNGdSW5FLIBblVZAakACxrIABYAA1kAA1LC5AWolio1IKQ1JbkDUiwf/8QAFwEBAQEBAAAAAAAAAAAAAAAAAAECBv/aAAgBAxAAAADnIUlMhZpm3M1chNWTUzdQXM1ctZmlljN1M6plLNWVlomaNSiRVlAMrUoQWTSKIKzahFmklmjNgtk1MtSzSZ2zbmWistTOqSJtM6uWhlK1FGCiasozLqUEJZNLKGaXLRLmy2LM6qBZUszSaiqi5TUs0y1M3TFFszq5WkSXUmmLokuWrm0mbZoIozLVBEtk0AiNM2iFJTOiWFSyyC51cqLiyjUzq5mlljLeVZupUuZq5aJmqZtS0zFaBItwq0EjSKILlazaIVFSWFFZ0ZCzTNuZauRbJWWllTOrlogsuVZ1TImrKZ0TNlalEirKJRk0iiCyaASVWbUIs0iymbLKrNZVZbM6JrMtlVlWbokuTWbrK0yGoozNITVlEzdSyiCsaWUM0uWiWAmmbUCywuKE0FlylWaZVm6JC2ZuszVIZtTQ/8QAIRABAAMBAQEBAQEBAQEBAAAAAQAQESAwITECEkFAUWH/2gAIAQEAAT8Av8Zu1hWHKbQb2uUNLQxYwaWh5WhtN6DK3g/YkBi8DtpvG8N7YTL+5Zw8DabwcDS0JFoaXaHlaG03kNpiQKSB0m8DabwPYRMvPlhw8DabwPksHbXgbSw6C0gUkDpN4G03gfBb2LvQ2mwLTgfJYO0vI2m2HgnQRLDPBOB8Fv8A12NpsDyTgLSBl72m2GeCb0ETaDfbZ9WYRIFDytDwNsDPL+uC02F75s/mO7GfzGH/AKFmbMIkCh5Wh8k2fkGaTTtNoM63zYTPsYRPsB4bPAbWESBkH7awd6XJrS7Q+f0YOzYPabMd72LtDFv/AFFoYtjvC2/bDe1yDaz+Yk+BBtYPSwbTe8iZQRLDOE4TYHa5Yxb1sYtjwtjabyFMC0gZ0nawbToNmRKCJQQ4TeBtOB8VyhpdoeFsbfALTeNt4G03g7eF7TeBtOB8VoYsXeRtKDxTw23gbeDt4Ww7TzeloYvQ2lB4pyFJMgZ7LsPhN2J9ifKe8sN9/wBZljvSwfJiZP0gZErKTkKTZj7MXZ+EHZ82JQ8LY+TPpX+mtpcmLMbHpYPkxMn7An+ayBnCbYZ2sGlopaWn4Qdn/YlDwtj6O5NY9psDO1veHhMmjWFf5hwlBAztdg0tDS7BpaHlcobTegjE5Z9j8420he8N7wlm55jabwWzCloZpFg5S0PK0Np0FJkCkoM5TeBtN4HjbDYlg5YcPA2m8D5LkG13gbTbDeg20yBSbM6TgbTeB8FsYu9DabMd7HyWDTF3gbSw8E6DYlh4plj4LYxd6G02B5JwWmwPJiZQeCb0ESwz2XZ/mJA2h3lcofAPJ4C02Bl75/1P5/Y7H8hP6o4bP/D9WYRIG0PK0Pn+ME8U2g63zZ/MR2MJ/Xid/wCrWfzEgTftrkHpcg8D5/kHZs07TaDO12hi3/qLQxbHhbHy2bawibACb9tcg9LkG2JnQRMoNiWHCbxrM7WLtDFvWLQxbHhbG3kLy0gdJvaweHrIlBEsM4TeBtOB8VmwaXpbG2JnAXlpsDOk4G37x/L5rZ9mNpwN5Eyx8VoaXeRtoN8U5IGVtvA2xLPNbDeC083g4Gl3keEyB4pyG0m0HssCCMZnyh7Dg9l1mNj0uQfNIfkCJCZA6Ck2ZA9l2Hwg7H9ifKHhbHz+kPyf6hC/2Y2PSwfNIfSZkSBP8wM4TbDtYNLF2DMiwb/CDH9j9KHhbHzTJ/ya0dJAveFsYt/bGb/+QZhMr/MDOE2wztdg0uUNLBylyh5WLBt6CkoMpn/J9n4QvbSBl7w2PGNkbOHbG04OA4GbFg5Ni0PK5Q8JnIUmQNpKDlN4G03gfBMs3g7G2JlnkuQbXgbeDoKTIFJtBnKcDbEyx8FsYvQ2kyB0OeSwbXgeEyg3wTeiZYeg+C5Yxd6HjPJN5DKTYHqHgm9BMsPZZkSx6XYPhnknBabAvfNh+xn/ACEaOHds/wDCuwIkCMHlcofP8glfKw5TaD/w/wBQ/Yk/5CNHDZ3tsP2JAim3sG29g8Y+aZBmzTtKDtaGLFrYtDNi7Q8rtDwd/wCrWH7EgRftrkHpcg8JnQRMvPlhw/eB8V2hyLf+otDFseFsbYmcBeQMpIHSbwNrkHhM6CJQTLDhOB4TLHyWDS9LY8JnAXlpA6TeBtiZY+C3vbEyx4TLHxWhpeRtiZQZ4JvQRN4eB4TLPB29s+8FsDPL+uC0mH/yl3keEgb4pvJAyNB7LA2fIkD5Q8bYRLPZeB7HzSEz7EYRIHQbTEyB7LAg7GZ8oeNi7Q+f5B2bB3wHpcg+aZD8mRNhEYHCbYdrBtdgzCOEG1mxmaUPC5Y+aZCbCHSbA7Wxi7etjFtIfIkDhiZQdrBpYsGlg5NpYPS7BtiZyG0mUES9YQveAveFsYvQxbOGx4TOwtNmFLBybFyh5WLB4TkKTKDIm0HKbwNsTLHwyzY2cNjwmWcAWhewbeBtiZZ4JA2k2g6Sx4TLHxXaGL0PCQPD/8QAHREBAAIDAQEBAQAAAAAAAAAAAREgABAwQFAhQf/aAAgBAgEBPwC80MihjwdxjYq3Kuis/BbnhmkfAaxSNTWNp5DEounB4tYumi8VnidDTxNz4jGkUjqXiw2ikVmxVo4YvAumFV6pcaTd+D/KvuNtjUcjGianocoompxuuTkczc+Ceyd46NIyNRiXmhiZFzE0abPOamku9GhV7TxnwT8SNO4o2jUZ+5Gk4jk2TQYlp07GqdE0NgyO05ORt1NSk3PKc49ByjRWeLUccKpou8//xAAcEQEAAgMBAQEAAAAAAAAAAAABESAAEDBAMVD/2gAIAQMBAT8AvFGq1Lrho0abxV0OzSaOh2TkXbTzjyHCOBk0mk6Ck5NTjGRkbaLg6TRkYYnacWw6S89m8VdHSLzYq4Umk+GdzZLTSfAUDEwsOks4Y1DlOx1FWkXD8t9Lss6m00cKDpLzV5TQdJhcMjB7RyhsnL5Qe82+WKTk6nhFFwdTZcHSaLHONRt0NzwNTpOzhFZ/KcOM0LTk7nQ7myZFh0u0pGJgeZLLk94ydmoq0jvHM04cp5vOaPCdO45lXThZLjz/AP/Z");
    background-position: center;
    background-size: cover;
    padding: 95px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.single-service-price-and-subservices-left.banner .ark-green-btn {
    margin-top: 80px;
}

.single-service-price-and-subservices-left.banner span {
    color: #ffffff;
    font-size: 40px;
}

.single-service-price-and-subservices-left.banner p {
    color: #ffffff;
    font-size: 44px;
    font-weight: bold;
    text-transform: lowercase;
}

.single-service-price-and-subservices-left.banner small {
    color: #FFFFFF;
    font-size: 13px;
}

.single-paketi-poslug .single-service-doctors-sect {
    margin-top: 50px;
}

.single-paketi-poslug .single-service-doctors-link,
.single-paketi-poslug .single-service-doctors .section-title-wrapper::after {
    display: none;
}

.single-paketi-poslug .single-service-doctors .section-title-wrapper {
    border-bottom: none;
    padding-bottom: 0;
    justify-content: center;
}

.single-paketi-poslug .single-service-doctors .section-title-wrapper h2 {
    font-size: 20px;
}

.mob-record-btn,
.footer-req.mobile,
.footer-contact-tel.mobile {
    display: none;
}

.mobile-all-btn {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.tel-menu {
    background-color: #0099d6;
    width: 50%;
    height: 100vh;
    position: relative;
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
    transform: translateX(200%);
    transition: all 0.2s ease;
}

.showNav {
    transform: translateX(0);
    top: 0;
    opacity: 1;
    z-index: 99999;
}

.admin-bar .showNav {
    top: 32px;
}

.tel-menu-wrapper .head-search-form {
    padding: 10px 5px;
    position: relative;
}

.tel-menu-wrapper .head-search-form input {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 100px;
    padding: 10px 15px;
    padding-left: 35px;
}

.tel-menu-wrapper .head-search-form input::placeholder {
    color: #7f7f7f;
}

.tel-menu-wrapper .head-search-form svg {
    width: 15px;
    height: 15px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
}

.tel-menu-tabs-wrapper .ark-tab-content-mm {
    display: none;
}

.tel-menu-tabs-wrapper .ark-tab-content-mm._current {
    display: block;
}

.tel-menu-tabs ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 15px;
    background: #0081b5;
    margin-bottom: 10px;
}

.tel-menu-tabs ul li {
    text-decoration: underline;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
}

.tel-menu-tabs ul li._active {
    color: #fff;
}

.tel-menu-tabs-contents {
    padding: 10px 15px;
}

.tel-menu-tab-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tel-menu-tab-content ul li a {
    font-size: 16px;
    color: #fff;
}

.tel-menu-tabs-wrapper ul .sub-menu {
    display: none;
    margin-top: 10px;
    margin-bottom: 5px;
}

.tel-menu-tabs-wrapper ul .sub-menu.show-sub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0083b7;
    padding: 10px 30px;
    margin: 10px -15px;
}

.tel-menu-tabs-wrapper ul .sub-menu.show-sub li a {
    font-size: 14px;
}

.tel-menu-tabs-wrapper .menu-item-has-children,
.tel-menu-tabs-wrapper .menu-item-has-children a {
    position: relative;
}

/* .tel-menu-tabs-wrapper .menu-item-has-children a::before {
    content: "";
    position: absolute;
    display: block;
    width: 1000%;
    height: 100%;
    z-index: 5;
} */

.tel-menu-tabs-wrapper .menu-item-has-children::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23fff' width='13' height='13'%3E%3Cpath d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 2px;
    transition: all 0.3s ease-in-out 0s;
}

.tel-menu-tabs-wrapper .menu-item-has-children.hovered::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%23fff' width='13' height='13'%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 2px;
    transition: all 0.3s ease-in-out 0s;
}

.tel-menu-close {
    padding: 15px;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    margin-top: 30px;
}

footer .rmp-widgets-container.rmp-wp-plugin.rmp-main-container {
    margin: 0 !important;
}

.page-404-wrapper {
    max-width: 750px;
    padding: 120px 0;
    font-size: 25px;
	line-height: 1.7;
    margin: 0 auto;
    text-align: center;
}

.page-404-wrapper p {
	margin-bottom: 30px;
}

.page-404-wrapper form {
	display: flex !important;
    align-items: center;
    gap: 10px;
	padding: 10px 10px 10px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.page-404-wrapper form svg {
	padding-left: 10px;
	width: 30px;
}

.page-404-wrapper form input::placeholder {
	color: #ddd;
}

.error404 section {
	margin-bottom: 0;
}

.error-page-btns {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.doctor-networks {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ark-paragraph {
	margin: 0 !important;
}

.contacts-tab-txt-media {
	margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.columns-2 {
	columns: 2;
}

.columns-3 {
	columns: 3;
}

/* Ark Media */

@media (max-width: 1551px) {
    .header-tel span {
        display: none;
    }

    .header-bottom-wrapper ul {
        gap: 15px;
    }

    .front-slider-txt {
        margin-left: 0;
    }

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

    .collective-page-slider-sect {
        max-width: 90%;
    }

    .search-page {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1417px) and (max-width: 1551px) {
    .header-top-right {
    gap: 15px;
}

    .header-top-right nav ul {
        list-style: none;
        align-items: center;
        gap: 15px;
    }

}
@media (max-width: 1417px) {

    .header-top-right nav,
    .header-bottom,
    .header-search-btn {
        display: none;
    }

    .logo img,
    .logo {
        width: 60px;
        position: relative;
    }

    .logo img {
        top: 0;
    }

    .header-top .container {
        padding: 0;
    }

    .tel-menu-btn {
        display: flex;
    }

    .front-slider .swiper-slide {
        min-height: auto;
    }

    .directions-page-list a {
        padding: 9px 10px 9px 30px;
    }

    .single-center-contacts-wrapper {
        padding: 30px 15px;
        gap: 2%;
    }
}

@media (max-width: 1280px) {}

@media (max-width: 1200px) {
    .admin-bar .tel-menu.showNav.scroll {
        top: 0 !important;
    }

    .front-slider-img {
        position: static;
    }

    .front-slider-txt {
        padding: 0;
        position: absolute;
        left: 2.5%;
        top: 50%;
        margin-right: -50%;
        transform: translate(0, -50%);
    }

    .front-slider-txt span {
        font-size: 6vw;
    }

    .front-slider-txt p,
    .front-slider-txt i {
        padding-right: 0;
        font-size: 3.5vw;
    }

    .front-slider-txt i {
        margin-top: 8vh;
    }

    .front-slider-txt a {
        font-size: 3.5vw;
        margin-top: 5vh;
    }

    .doctor-appointment-sect {
        padding: 30px 0 80px 0;
    }

    .promotions-proposals-item-txt {
        grid-template-columns: 15% 80%;
        padding: 20px;
    }

    .promotions-proposals-item-txt span {
        font-size: 18px;
    }

    .footer-menu-block,
    .footer-contact-call-center,
    .footer-address-block.footer-address-block-7,
    .footer-address-block.footer-address-block-8,
    .footer-req.desk,
    .footer-contact-tel.desk {
        display: none;
    }

    .footer-req.mobile,
    .footer-contact-tel.mobile {
        display: block;
        margin-top: 30px;
    }

    .footer-contact-tel a span {
        font-size: 20px;
    }

    .footer-contact-tel svg {
        width: 30px;
    }

    .footer-top-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        grid-auto-flow: row;
        gap: 30px 3%;
        grid-template-areas:
            "footer-logo footer-contact-block footer-quality-control"
            "footer-address-block-1 footer-address-block-2 footer-address-block-3"
            "footer-address-block-4 footer-address-block-5 footer-address-block-6";
    }

    .footer-logo {
        grid-area: footer-logo;
    }

    .footer-contact-block {
        grid-area: footer-contact-block;
    }

    .footer-quality-control {
        grid-area: footer-quality-control;
    }

    .footer-address-block-1 {
        grid-area: footer-address-block-1;
    }

    .footer-address-block-2 {
        grid-area: footer-address-block-2;
    }

    .footer-address-block-3 {
        grid-area: footer-address-block-3;
    }

    .footer-address-block-4 {
        grid-area: footer-address-block-4;
    }

    .footer-address-block-5 {
        grid-area: footer-address-block-5;
    }

    .footer-address-block-6 {
        grid-area: footer-address-block-6;
    }

    .footer-docs-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: center;
    }

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

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

    .reviews-page form input,
    .reviews-page form textarea {
        width: 80%;
    }

    .reviews-page form label {
        grid-template-columns: 5% 75%;
        gap: 20%;
    }

    .page-template-page-analizi .faq-wrapper {
        margin: 50px 0 100px 0;
    }
    .page-template-page-price .faq-wrapper {
        margin: 50px 0 100px 0;
    }
    .page-template-page-tsini .faq-wrapper {
        margin: 50px 0 100px 0;
    }    
    .page-template-page-vsi-tsini .faq-wrapper {
        margin: 50px 0 100px 0;
    }   


    .contacts-tabs ul {
        grid-template-columns: repeat(2, auto);
        gap: 20px 1%;
    }

    .contacts-tabs-wrapper .ark-tab-btn._active::after {
        display: none;
    }

    .single-center-contacts-item {
        gap: 15px;
    }

    .contacts-tabs-wrapper .contacts-tab-content-grid {
        grid-template-columns: 25% 72%;
        gap: 3%;
    }

    .contacts-tabs-wrapper .contacts-tab-contents {
        border: none;
    }

    .contacts-tabs-wrapper .ark-tab-content {
        padding: 50px 0;
    }

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

    .directions-page-list a {
        padding: 9px 10px 9px 10px;
    }

    .page-template-page-nashi-partneri .ark-block-content ul.list-triangle {
        columns: 3;
    }

    .page-template-page-nashi-partneri .ark-block-content ul.list-triangle li {
        padding-right: 10px;
    }

    .adult-child-service-list {
        gap: 30px 1%;
    }

    .single-service-advantage-left {
        padding: 20px 0 15px 20px;
    }

    .single-service-advantage-right {
        padding-right: 20px;
    }

    .single-service-advantage-left .section-title {
        margin-bottom: 30px;
    }

    .single-service-advantage-right-tel-block>img {
        width: 80px;
    }

    .single-center-directions ul {
        padding: 20px 40px;
    }

    .rmp-rating-widget.js-rmp-rating-widget.rmp-rating-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .single-center-txt {
        padding: 0;
    }

    .single-center-gallery-list {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    .single-blog {
        grid-template-columns: 33% 65%;
        gap: 2%;
    }
	
	.ark-overlay-review-form .popup-review-form {
		width: 95%;
	}
}

@media (max-width: 992px) {
    .front-slider-txt span {
        font-size: 5vw;
    }

    .front-slider-txt p,
    .front-slider-txt i {
        font-size: 3vw;
    }

    .front-slider-txt i {
        margin-top: 7vh;
        font-size: 3vw;
    }

    .front-slider-txt a {
        font-size: 3vw;
        margin-top: 4vh;
    }

    .doctor-appointment-form-inputs {
        display: grid;
        grid-auto-columns: 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "l1 l2"
            "button button";
    }

    .doctor-appointment-form-inputs label:first-child {
        grid-area: l1;
    }

    .doctor-appointment-form-inputs label:last-child {
        grid-area: l2;
    }

    .doctor-appointment-form-inputs button {
        grid-area: button;
    }

    .doctor-appointment-form-inputs button {
        max-width: 100%;
    }

    .popup-appointment-form-inputs button {
        margin-top: 10px;
        align-self: center;
        max-width: 100%;
    }    

    .front-about {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .front-about-left .ark-block-content {
        margin-bottom: 30px;
    }

    .promotions-proposals-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-app {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .our-doctors-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 2%;
    }

    .doctor-appointment-form-inputs.doctor-appointment-form-big-inputs {
        display: flex;
        flex-direction: column;
    }

    .reviews-block-list div {
        padding: 30px 25px 30px 25px;
    }

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

    .archive-centers-item-title {
        padding: 20px;
    }

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

    .promo-blog-list {
        display: flex;
        flex-direction: column;
    }

    .reviews-page form label {
        grid-template-columns: 10% 80%;
        gap: 10%;
    }

    .page-template-page-analizi .faq-wrapper {
        display: flex;
        flex-direction: column;
        margin: 25px 0 50px 0;
    }
    .page-template-page-price .faq-wrapper {
        display: flex;
        flex-direction: column;
        margin: 25px 0 50px 0;
    }
    .page-template-page-tsini .faq-wrapper {
        display: flex;
        flex-direction: column;
        margin: 25px 0 50px 0;
    }
        .page-template-page-vsi-tsini .faq-wrapper {
        display: flex;
        flex-direction: column;
        margin: 25px 0 50px 0;
    }


    .contacts-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 1%;
    }

    .contacts-tabs-wrapper .contacts-tab-content-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .single-center-contacts-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 4%;
        align-items: center;
    }

    .single-center-contacts-item {
        align-items: center;
    }

    .contacts-departments {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .contacts-departments span,
    .contacts-departments p {
        margin-bottom: 15px;
    }

    .section-title.big,
    .section-title-big-green {
        font-size: 80px;
    }

    .page-template-page-nashi-partneri .ark-block-content ul.list-triangle {
        columns: 2;
    }

    .adult-child-service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-service-advantage {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .single-service-advantage-card {
        margin-top: 0;
    }

    .single-service-advantage-card::before {
        display: none;
    }

    .single-service-advantage-right-tel-block>img {
        width: auto;
    }

    .single-service-advantage-right-tel-block {
        margin: 30px 0;
        padding: 0 15px;
    }

    .single-service-advantage-right {
        padding-right: 0;
    }

    .single-service-advantage-left {
        padding: 20px 15px;
    }

    .single-center-directions ul {
        columns: 2;
    }

    .single-service-price-and-subservices {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .single-service-price-and-subservices-left ul {
        columns: 3;
    }

    .single-service-price-and-subservices-left.banner {
        display: none;
    }

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

    .single-doctor-page {
        display: flex;
        flex-direction: column;
    }

    .single-center-txt.grid {
        gap: 30px;
    }

    .single-center-contacts-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

    .single-paketi-poslug .single-blog,
    .single-promotions .single-blog,
    .single-post .single-blog {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .single-promotion-title {
        margin-bottom: 25px;
    }

    .single-post .custom-page-head .section-title {
        font-size: 55px;
        line-height: 65px;
    }

    .taxonomy-package-of-services-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .pharmacies-map {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 783px) {

    .admin-bar header,
    .admin-bar .tel-menu.showNav {
        top: 46px;
    }


}

@media (max-width: 768px) {
    .admin-bar header {
        top: 46px;
    }

    .tel-menu {
        width: 70%;
    }

    .front-categories a span {
        font-size: 16px;
    }

    .front-categories {
        gap: 20px 1%;
    }

    .package-services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 3%;
    }

    .mobile-all-btn {
        display: block;
    }

    .desk-all-btn {
        display: none;
    }

    .reviews-block-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ark-overlay-recording-reception-form .popup-recording-reception-form,
    .ark-overlay-promotions-order-form .popup-promotions-order-form {
        width: 90%;
    }

    .doctors-page-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 2%;
    }

    .post-type-archive-nashi-tsentri .custom-page-head-sect,
    .page-template-page-nashi-partneri .custom-page-head-sect,
    .page-template-page-naprjamki .custom-page-head-sect,
    .page-template-page-rekvizyty .custom-page-head-sect,
    .page-template-page-services .custom-page-head-sect,
    .page-template-page-single-service .custom-page-head-sect,
    .page-template-page-tsini .custom-page-head-sect,
    .page-template-page-vsi-tsini .custom-page-head-sect,
    .single-nashi-tsentri .custom-page-head-sect,
    .single-post .custom-page-head-sect,
    .term-skriningovi-paketi .custom-page-head-sect,
	.single-doctor .custom-page-head-sect{
        padding: 70px 0 70px 0;
        margin-bottom: 25px;
    }

    .post-type-archive-nashi-tsentri .custom-page-head {
        width: 100%;
    }

    .archive-centers-list>div {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .archive-centers-list {
        gap: 50px;
    }

    .promo-list,
    .promo-blog-list {
        gap: 20px 2%;
    }

    .promo-item-txt {
        padding: 20px;
    }

    .promo-blog-list {
        margin-top: 30px;
    }

    .blog .custom-page-head-sect,
    .category .custom-page-head-sect,
    .term-skriningovi-paketi .custom-page-head-sect {
        padding: 70px 0 70px 0;
        background-position: left !important;
    }

    .blog .custom-page-head.flex,
    .category .custom-page-head.flex,
    .custom-page-head-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .term-skriningovi-paketi .custom-page-head-wrapper {
        display: flex;
        flex-direction: column;
    }

    .blog .custom-page-head-right ul.blog-contents,
    .category .custom-page-head-right ul.blog-contents,
    .term-skriningovi-paketi .custom-page-head-right ul {
        margin-top: 0;
    }

    .blog .custom-page-head-right,
    .category .custom-page-head-right {
        width: 100%;
    }

    .ark-block-content h2 {
        font-size: 35px;
        line-height: 35px;
    }

    .contacts-tabs ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contacts-tabs-wrapper .ark-tab-btn {
        padding: 20px 10px 20px 10px;
        font-size: 20px;
    }

    .section-title.big,
    .section-title-big-green {
        font-size: 60px;
    }

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

    .section-title {
        font-size: 30px;
    }

    .single-service-price-and-subservices-left ul {
        columns: 2;
    }

    .single-center-txt.grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

    .single-post .custom-page-head .section-title {
        font-size: 45px;
        line-height: 55px;
    }

    .taxonomy-package-of-services-list {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.aligncenter,
	.alignleft,
	.alignright {
    display: block;
    margin: 0 auto;
	padding: 0;
	width: 100%;
	margin-bottom: 20px;
}
}

@media (max-width: 600px) {
    .admin-bar header.scroll {
        top: 0;
    }
}

@media (max-width: 720px) {

    .front-slider-sect {
        margin-bottom: 25px;
    }

    .lang-current {
        font-size: 16px;
    }

    .ark-gray-btn a,
    .ark-gray-btn button,
    .ark-green-btn a,
    .ark-green-btn button {
        font-size: 16px;
        padding: 10px 20px;
    }
        .ark-bl-btn a,
    .ark-bl-btn button,
    .ark-bl-btn a,
    .ark-bl-btn button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .tel-menu {
        width: 100%;
    }

    .mob-record-btn,
    .header-bottom {
        display: block;
        text-align: center;
    }

    .header-bottom-wrapper,
    .header-top-left .recording-reception-form-btn {
        display: none;
    }

    .front-slider-txt {
        width: 50%;
    }


    .front-slider-txt span {
        font-size: 6vw;
        font-weight: 700;
    }

    .front-slider-txt p {
        font-size: 3.5vw;
    }

    .front-slider-txt i {
        margin-top: 2vh;
        font-size: 3.5vw;
    }

    .front-slider-txt a {
        font-size: 3vw;
        margin-top: 1vh;
    }

    .front-slider-img {
        height: calc(100% + 500px);
    }

    .front-categories {
        display: flex;
        flex-direction: column;
    }

    .header-s0cial,
    .header-top-right {
        gap: 10px;
    }

    .logo,
    .lang {
        margin-right: 15px;
    }

    .doctor-appointment-form-inputs {
        display: flex;
        flex-direction: column;
    }
    
    .popup-appointment-form-inputs {
        display: flex;
        flex-direction: column;
    }

    .doctor-appointment-sect {
        padding-top: 50px;
    }

    .doctor-appointment-form>p {
        font-size: 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .front-about-title {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .front-about-slider-txt {
        max-width: 60%;
        padding: 30px 30px 30px 15px;
    }

    .front-about-slider-txt span {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-title-wrapper {
        margin-bottom: 15px;
    }

    .package-services-list {
        display: flex;
        flex-direction: column;
    }

    .promotions-proposals-sect {
        margin-bottom: 50px;
    }

    .our-doctors-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .footer-top-wrapper,
    .footer-docs-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-template-page-likari .doctors-page-list,
    .tax-specialnist .doctors-page-list,
    .post-type-archive-doctor .doctors-page-list,
    .page-template-page-spetsialisti .doctors-page-list,
    .page-template-page-kerivnitstvo .doctors-page-list {
        display: flex;
        flex-direction: column;
    }

    .page-template-page-kolektiv .doctors-page-list.collective-list {
        margin-bottom: 30px;
    }

    .collective-page-slider-btn a {
        font-size: 20px;
        padding: 10px 50px;
    }

    .section-title {
        font-size: 25px;
    }

    .section-title.middle {
        font-size: 45px;
    }

    /* .post-type-archive-nashi-tsentri .custom-page-head-sect,
    .blog .custom-page-head-sect, .category .custom-page-head-sect,
    .page-template-page-naprjamki .custom-page-head-sect,
    .page-template-page-nashi-partneri .custom-page-head-sect {
        padding: 50px 0 50px 0;
    } */

    .archive-centers-item-title .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .promo-list {
        display: flex;
        flex-direction: column;
    }

    .reviews-page form label {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .reviews-page form input,
    .reviews-page form textarea {
        width: 100%;
        margin-bottom: 20px;
    }

    .reviews-page-form-wrapper button {
        margin-top: 0;
    }

    .reviews-page-count {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 25px;
    }

    .review-item-answer {
        margin: 15px 0 0 20px;
    }

    .ark-block-content h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .contacts-advantages {
        display: flex;
        flex-direction: column;
    }


    .single-center-contacts-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title.big,
    .section-title-big-green {
        font-size: 40px;
    }

    .collective-page-slider-sect {
        margin-bottom: 50px;
    }

    .doctors-page-wrapper {
        margin-top: 50px;
    }

    .directions-page-list {
        display: flex;
        flex-direction: column;
    }

    .section-title.divider {
        margin-bottom: 25px;
    }

    .directions-page-list-sect {
        margin-bottom: 50px;
    }

    .section-title.divider::after {
        margin-top: 15px;
    }

    .page-template-page-nashi-partneri .ark-block-content ul.list-triangle {
        columns: 1;
    }

    .page-template-page-nashi-partneri .ark-block-content ul.list-triangle li {
        padding-right: 0;
    }

    .ark-block-content h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .ark-block-content h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .ark-block-content h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .ark-block-content h4 {
        font-size: 22px;
        line-height: 32px;
    }

    .ark-block-content h5 {
        font-size: 16px;
        line-height: 26px;
    }

    .partners-page .ark-block-content {
        font-size: 16px;
    }

    .partners-page .ark-block-content>* {
        margin-bottom: 25px !important;
    }

    .adult-child-service-list {
        display: flex;
        flex-direction: column;
    }

    .single-service-advantage-left .ark-block-content {
        font-size: 16px;
        line-height: 26px;
    }

    .ark-block-content *:not(li, button, label, input, span, em, b, strong, i, a) {
        margin-bottom: 20px;
    }

    .single-service-advantage {
        gap: 10px;
    }

    .single-service-advantage-right-tel-block {
        flex-direction: column;
        gap: 15px;
    }

    .single-service-advantage-right-tel-block>img {
        width: 50px;
    }

    .single-service-advantage-card {
        padding: 15;
    }

    .single-service-advantage-card span {
        font-size: 25px;
        line-height: 35px;
    }

    .single-service-advantage-card p {
        font-size: 25px;
    }

    .single-service-advantage-card-img {
        margin-bottom: 10px;
    }

    .single-service-advantage-right-tel-block a span {
        font-size: 25px;
    }

    .single-center-directions ul {
        columns: 1;
    }

    .single-center-directions-sect {
        padding: 30px 0;
    }

    .single-center-directions ul {
        padding: 20px;
    }

    .single-service-doctors .section-title-wrapper {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

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

    .single-center-title {
        font-size: 20px;
        padding: 10px;
    }

    .single-service-price-and-subservices-right .section-title {
        margin-bottom: 30px;
    }

    .single-service-price-and-subservices.table-only .single-service-price-and-subservices-right {
        padding: 15px 25px;
    }

    .page-template-page-single-service .posts-table-wrapper {
        margin-bottom: 0 !important;
    }

    .single-service-price-and-subservices-left ul {
        columns: 1;
    }

    .single-service-price-and-subservices-left ul {
        padding: 20px 0;
    }

    .page-template-page-tsini .paginate_button.previous,
    .page-template-page-tsini .paginate_button.next {
        display: none !important;
    }
        .page-template-page-vsi-tsini .paginate_button.previous,
    .page-template-page-vsi-tsini .paginate_button.next {
        display: none !important;
    }

    .page-template-page-tsini .posts-table-controls .dataTables_paginate {
        width: 100%;
        margin: 20px 0 0 0 !important;
    }
        .page-template-page-vsi-tsini .posts-table-controls .dataTables_paginate {
        width: 100%;
        margin: 20px 0 0 0 !important;
    }

    .page-template-page-tsini .posts-table-controls .dataTables_paginate>span {
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .page-template-page-vsi-tsini .posts-table-controls .dataTables_paginate>span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-template-page-tsini .dataTables_info {
        text-align: center !important;
        margin: 20px 0 0 0 !important;
        width: 100% !important;
    }
        .page-template-page-vsi-tsini .dataTables_info {
        text-align: center !important;
        margin: 20px 0 0 0 !important;
        width: 100% !important;
    }

    .search-page {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .single-doctor-certificates ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10%;
    }

    .single-doctor-page-left>span {
        text-align: center;
        font-size: 25px;
    }

    .single-doctor-sect {
        margin-bottom: 50px;
    }

    .single-nashi-tsentri .custom-page-head-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .single-nashi-tsentri .custom-page-head-right {
        text-align: left;
    }

    .custom-page-head-right span {
        margin-bottom: 10px;
    }

    .single-center-txt-item span {
        font-size: 20px;
        line-height: 30px;
    }

    .single-center-contacts-wrapper {
        padding: 0;
        border: none;
    }

    .single-center-contacts-left {
        margin-top: 30px;
    }

    .single-center-contacts-item {
        margin-bottom: 0;
    }

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

    .single-blog-related .promo-blog-list {
        gap: 20px;
    }

    .single-paketi-poslug .single-blog,
    .single-promotions .single-blog {
        padding-top: 30px;
    }

    .single-promotion-title {
        margin-bottom: 20px;
    }

    .single-package-service-pricing {
        text-align: center;
    }

    .footer-top {
        padding: 30px 0;
    }

    .single-blog-content.ark-block-content h1,
    .single-blog-content.ark-block-content h2,
    .single-blog-content.ark-block-content h3,
    .single-blog-content.ark-block-content h4,
    .single-blog-content.ark-block-content h5,
    .single-blog-content.ark-block-content h6 {
        font-size: 22px;
        line-height: 32px;
    }

    .single-post .custom-page-head .section-title {
        font-size: 35px;
        line-height: 45px;
    }

    .single-blog-post-info {
        margin-bottom: 10px;
    }

    .taxonomy-package-of-services-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .pharmacies-map-sect {
        padding: 30px 0;
    }

    .leadership-head {
        margin-bottom: 30px;
    }
	
	.page-404-wrapper {
    padding: 60px 0;
    font-size: 18px;
	line-height: 28px;
}
	
	.error-page-btns {
		flex-direction: column;
}
	
	.error-page-btns > div {
		width: 100%;
	}
	
	.error-page-btns a {
		display: block;
	}
	
	.front-about-right .swiper-slide, .front-about-right .swiper-slide img {
		height: auto;
	}

.columns-2,
.columns-3 {
	columns: 1;
}
}


@media (max-width: 350px) {
    .front-about-slider-txt {
        text-align: left;
    }

    .mobile-apps-links {
        flex-direction: column;
    }

    footer .rmp-rating-widget__not-rated.js-rmp-not-rated,
    footer .rmp-rating-widget__results.js-rmp-results {
        display: none;
    }

    .single-center-gallery-list {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .header-tel {
        font-size: 13px !important;
    }
}	

img[alt="<b>ПРАВИЛА ПІДГОТОВКИ</b>"] {
    display: none;
}

img[alt="<b>ПРАВИЛА ПОДГОТОВКИ</b>"] {
    display: none; 
}


.page-template-page-price .tab-btn-dwn {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 45px;
    background-color: #f1f1f1;
    text-transform: uppercase;
    color: #111111;
}

.page-template-page-price .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
    margin: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    margin-right: -50%;
    transform: translate(0, -50%);
    transition: all .27s ease-in-out;
}

.page-template-page-price .tab-btn-dwn.active::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

.page-template-page-price .tab-btn-dwn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='15' height='15' fill='%2380BA26'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: -50%;
    transition: all .27s ease-in-out;
    transform: rotate(0deg) translate(0, -50%);
}

.page-template-page-price .tab-btn-dwn.active::after {
    transform: rotate(90deg) translate(-75%, -50%);
    right: 25px;
}

.page-template-page-price .tab-content {
    display: none;
    margin-top: 30px;
}

.page-template-page-price .tab-content.current {
    display: block;
    margin-top: 20px;
}

.page-template-page-price .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 5%;
    margin: 50px 100px 100px 100px;
}

.page-template-page-price .posts-table-above.posts-table-controls {
    margin: 0 !important;
}

.page-template-page-price .single-center-contacts-item {
    margin: 25px 0;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #80BA26;
    gap: 15px;
}


.page-template-page-price .col-cost {
      text-align: left;
}

.page-template-page-tsini .tab-btn-dwn {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 45px;
    background-color: #f1f1f1;
    text-transform: uppercase;
    color: #111111;
}
.page-template-page-vsi-tsini .tab-btn-dwn {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 45px;
    background-color: #f1f1f1;
    text-transform: uppercase;
    color: #111111;
}

.page-template-page-tsini .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
    margin: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    margin-right: -50%;
    transform: translate(0, -50%);
    transition: all .27s ease-in-out;
}
.page-template-page-vsi-tsini .tab-btn-dwn::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
    margin: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    margin-right: -50%;
    transform: translate(0, -50%);
    transition: all .27s ease-in-out;
}

.page-template-page-tsini .tab-btn-dwn.active::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}
.page-template-page-vsi-tsini .tab-btn-dwn.active::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' width='20' height='20' fill='%2380BA26'%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

.page-template-page-tsini .tab-btn-dwn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='15' height='15' fill='%2380BA26'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: -50%;
    transition: all .27s ease-in-out;
    transform: rotate(0deg) translate(0, -50%);
}
.page-template-page-vsi-tsini .tab-btn-dwn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='15' height='15' fill='%2380BA26'%3E%3Cpath d='M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: -50%;
    transition: all .27s ease-in-out;
    transform: rotate(0deg) translate(0, -50%);
}

.page-template-page-tsini .tab-btn-dwn.active::after {
    transform: rotate(90deg) translate(-75%, -50%);
    right: 25px;
}
.page-template-page-vsi-tsini .tab-btn-dwn.active::after {
    transform: rotate(90deg) translate(-75%, -50%);
    right: 25px;
}

.page-template-page-tsini .tab-content {
    display: none;
    margin-top: 30px;
}
.page-template-page-vsi-tsini .tab-content {
    display: none;
    margin-top: 30px;
}

.page-template-page-tsini .tab-content.current {
    display: block;
    margin-top: 20px;
}
.page-template-page-vsi-tsini .tab-content.current {
    display: block;
    margin-top: 20px;
}

.page-template-page-tsini .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 5%;
    margin: 50px 100px 100px 100px;
}
.page-template-page-vsi-tsini .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 5%;
    margin: 50px 100px 100px 100px;
}

.page-template-page-tsini .posts-table-above.posts-table-controls {
    margin: 0 !important;
}
.page-template-page-vsi-tsini .posts-table-above.posts-table-controls {
    margin: 0 !important;
}

.page-template-page-tsini .single-center-contacts-item {
    margin: 25px 0;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #80BA26;
    gap: 15px;
}
.page-template-page-vsi-tsini .single-center-contacts-item {
    margin: 25px 0;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #80BA26;
    gap: 15px;
}



.page-template-page-tsini .col-cost {
      text-align: left;
}
.page-template-page-vsi-tsini .col-cost {
      text-align: left;
}

.page-template-page-tsini.dataTables_info {
    display: none;
}
.page-template-page-vsi-tsini.dataTables_info {
    display: none;
}

.post-row:nth-child(odd) {
    background-color: #f9f9f9; /* Серый фон для нечетных строк */
}

.post-row:nth-child(even) {
    background-color: #ffffff; /* Белый фон для четных строк */
}

.col-title {
    color: #000000 !important;
}

.col-cost {
    color: #000000 !important;
}
        .privat24-button {
            display: inline-flex;
            align-items: center;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 3px;
            padding: 8px 12px;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            height: 50px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)
        }
        .privat24-button:hover {
            background-color: #f9f9f9;
        }
.icon-privat {
width: 24px;
height: 24px; 
margin-right: 8px;
display: flex;
align-items: center;
margin-top: 24px;

}


    .video-likar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: -10px;
    }
    .video-likar-item {
        width: calc(33.33% - 20px);
        margin: 10px; 
    }
    iframe {
        width: 100%;
        height: 200px; 
    }
    @media (max-width: 768px) {
        .video-likar-item {
            width: 100%;
        }
    }



.footer-bottom-wrapper-new p {
    text-align: center; 
    margin: 0 auto;     
}



  .benefits {
    padding: 50px 20px;
    background-color: #f9f9f9;
  }
  .benefits__title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
  }
  .benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .benefit-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  .benefit-item__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: inline-block;
  }
  .benefit-item__title {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #2296c4 !important;
  }
  .benefit-item__description {
    font-size: 1em;
    color: #555;
  }

  @media (max-width: 768px) {
    .benefit-item {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 480px) {
    .benefit-item {
      width: 100%;
    }
  }

@media (min-width: 1450px) and (max-width: 1550px) 
      and (min-height: 680px) and (max-height: 760px) {
    .doctor-item-txt {
    padding: 15px 8px 15px 8px ;
  }
}

@media (min-width: 1417px) and (max-width: 1540px) {
    .ark-white-btn a, .ark-white-btn button {
        padding: 12px 12px 12px 12px;
    }
}


.ark-block-content, .custom-page-head, .single-center-directions-sect, .single-center-directions, .section-title {
    max-width: 1400px;
    margin: 0 auto;
}

.container1400 {
    max-width: 1400px;
    margin: 0 auto;
}

/* Контейнер для услуг */
.services-calculator {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* Стили для блоков с услугами */
.available-services, .selected-services {
    width: 48%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}

/* Заголовки */
.available-services h3, .selected-services h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Стили для списка услуг */
#service-list, #selected-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Стили для li внутри доступных и выбранных услуг */
.services-calculator li {
    margin: 10px 0; /* Только внутри services-calculator */
}

/* Контейнер для кнопок внутри списка */
li .buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Стили для кнопок "+" и "-" */
button.add-service-btn, button.remove-service-btn {
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    margin: 5px 0;
}

button.add-service-btn {
    background-color: #4CAF50; /* Зеленая кнопка для плюса */
    color: white;
}

button.add-service-btn:hover {
    background-color: #45a049;
}

button.remove-service-btn {
    background-color: #F44336; /* Красная кнопка для минуса */
    color: white;
}

button.remove-service-btn:hover {
    background-color: #e53935;
}

/* Центрирование блоков */
.available-services, .selected-services {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Стиль для итоговой суммы и других параметров */
.selected-services p {
    font-size: 1rem;
    margin: 10px 0;
}

#total-price, #discount, #final-price {
    font-weight: bold;
    font-size: 1.1rem;
}


#selected-table th, #selected-table td {
    padding: 10px;
    text-align: left; /* Все ячейки таблицы по умолчанию выровнены по левому краю */
    border: 1px solid #ddd;
}

#selected-table th {
    background-color: #f4f4f4;
}

#selected-table td:nth-child(1) {
    text-align: left; /* Услуга выравнивается по левому краю */
}

#selected-table td:nth-child(2) {
    text-align: center; /* Цена выравнивается по правому краю */
}

#selected-table td:nth-child(3) {
    text-align: center; /* Кнопка удаления по центру */
}

#service-table th, #service-table td {
    padding: 10px;
    text-align: left; /* Все ячейки таблицы по умолчанию выровнены по левому краю */
    border: 1px solid #ddd;
}

#service-table th {
    background-color: #f4f4f4;
}

#service-table td:nth-child(1) {
    text-align: left; /* Услуга выравнивается по левому краю */
}

#service-table td:nth-child(2) {
    text-align: center; /* Цена выравнивается по правому краю */
}

#service-table td:nth-child(3) {
    text-align: center; /* Кнопка удаления по центру */
}
#service-table th:nth-child(2), #service-table td:nth-child(2) {
    display: none; /* Скрываем второй столбец (Ціна, грн.) */
}

/* Мобильная адаптация */
@media (max-width: 1128px) {
    .services-calculator {
        flex-direction: column; /* Размещаем блоки вертикально */
        align-items: stretch; /* Растягиваем по ширине */
    }

    .available-services, .selected-services {
        width: 100%; /* Занимают всю доступную ширину */
        margin-bottom: 20px; /* Отступ снизу для разделения */
    }

    /* Стили для заголовков */
    .available-services h3, .selected-services h3 {
        font-size: 1rem;
    }

    /* Настройки таблиц для мобильных */
    #service-table, #selected-table {
        width: 100%;
        table-layout: fixed; /* Устанавливаем фиксированную ширину для ячеек */
        max-width: 100%; /* Ограничиваем максимальную ширину */
    }

    #service-table th, #service-table td, #selected-table th, #selected-table td {
        padding: 8px; /* Уменьшаем отступы в ячейках */
        word-wrap: break-word; /* Перенос слов в ячейках */
        text-overflow: ellipsis; /* Обрезка текста, если он не помещается */
        overflow: hidden; /* Прячет переполненный текст */
    }

    /* Мобильная адаптация для кнопок */
    button.add-service-btn, button.remove-service-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem; /* Подгонка размера шрифта */
    }

    /* Для вывода итогов */
    .selected-services p {
        font-size: 1rem; /* Уменьшаем размер текста */
    }
}

/* Изменение ширины третьего столбца таблицы */
#service-table th:nth-child(3), #service-table td:nth-child(3) {
    width: 25%; 
}
#selected-table th:nth-child(2), #selected-table td:nth-child(2) {
    width: 29%; 
}
#selected-table th:nth-child(3), #selected-table td:nth-child(3) {
    width: 15%; 
}



    .ark-bl-btn a,
    .ark-bl-btn button,
    .ark-green-btn a,
    .ark-green-btn button {
        font-size: 16px;
        padding: 10px 20px;
    }
	
	
	.ark-bl-btn a,
.ark-bl-btn button {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
	color: #009CDA;
    background-color: #FFFFFF;

    padding: 15px 30px;
    border-radius: 4px;

    transition: all 0.3s ease-in-out 0s;
}


/* Акардеон пластика */

    .custom-accordion-button {
      background-color: #eee;
      color: rgb(0, 156, 218);
      font-weight: bold;
      cursor: pointer;
      padding: 14px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 18px;
      transition: background-color 0.3s ease;
      position: relative;
      margin-bottom: 4px;
    }

    .custom-accordion-button::after {
      content: '+';
      color: rgb(0, 156, 218);
      font-weight: bold;
      position: absolute;
      right: 20px;
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .custom-accordion-button.active::after {
      transform: rotate(45deg); 
    }

    .custom-accordion-button:hover {
      background-color: #ccc;
    }

    .custom-accordion-panel {
      padding: 16px 14px 16px 24px;
      display: none;
      background-color: white;
      overflow: hidden;
      border: 1px solid #ddd;
	  transition: all 0.3s ease;
	  padding-left: 50px!important;
      
    }
    .custom-accordion-panel p + ul,
    .custom-accordion-panel ul + p {
       margin-top: 1em;
    }
	.custom-accordion-panel.open {
	  display: block;
	}
	@media (max-width: 1024px) {
  .custom-accordion-button {
    font-size: 17px;
    padding: 13px;
  }

  .custom-accordion-button::after {
    font-size: 22px;
    right: 18px;
  }

  .custom-accordion-panel {
    padding: 12px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .custom-accordion-button {
    font-size: 16px;
    padding: 12px;
  }

  .custom-accordion-button::after {
    font-size: 20px;
    right: 16px;
  }

  .custom-accordion-panel {
    padding: 10px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .custom-accordion-button {
    font-size: 15px;
    padding: 10px;
  }

  .custom-accordion-button::after {
    font-size: 18px;
    right: 12px;
  }

  .custom-accordion-panel {
    padding: 8px;
    font-size: 14px;
  }
}


@media (max-width: 700px) {
    .doctors-slider-arrows-wrapper {
        position: absolute;
        top: 180px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10; /* Чтобы стрелки были поверх содержимого */
    }

    .doctors-page-list-wrapper {
        padding-top: 40px; /* Добавьте пространство для стрелок */
    }
.doctors-slider-arrows-wrapper div {
  margin-right: 150px; 
  margin-left: 150px; /* увеличивает расстояние между элементами */
}
}

@media (max-width: 365px) {
    .doctors-slider-arrows-wrapper {
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10; /* Чтобы стрелки были поверх содержимого */
    }

    .doctors-page-list-wrapper {
        padding-top: 40px; /* Добавьте пространство для стрелок */
    }
.doctors-slider-arrows-wrapper div {
  margin-right: 120px; 
  margin-left: 120px; /* увеличивает расстояние между элементами */
}
}

@media (max-width: 768px) {
  .faq-tab-btn.tab-btn-dwn {
    margin-left: -50px;
    margin-right: -50px;
  }
  .faq-tab-btn.tab-btn-dwn.active {
    margin-left: -50px;
    margin-right: -50px;
  }

  .faq-item.active {
    margin-left: -100px;
    margin-right: -50px;
  }

}


.custom-accordion-panel {
  padding-left: 20px;
  list-style-position: inside;
}



.custom-accordion-panel li {
  list-style-position: inside;
  padding-left: 20px;
}


/* Swiper врачи сертификаты */

.single-doctor-certificates {
    margin-top: 20px;
}

.doctor-certificates-slider .swiper-slide {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    border-radius: 8px;
    padding: 10px;
}

.doctor-certificates-slider .swiper-slide img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

/* галееря блюр */
.gallery-blur ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    align-items: center;
    list-style: none;
}

  .shock-gallery {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .shock-item {
    width: 400px;
    padding: 10px;
    border-radius: 10px;
    background: #f8f8f8;
    text-align: center;
  }

  .shock-warning {
    background-color: #009cd9;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
  }

  .confirm-button {
    background-color: white;
    color: #3398db;
    border: 2px solid #fff;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
  }

  .shock-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: zoom-in;
    transition: transform 0.2s ease;
    
    
    
  }

  /* Модальное окно */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-overlay.active {
    display: flex;
  }

  .modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px black;
    cursor: zoom-out;
  }
  
  .bold {
  font-weight: bold!important;
}
.italic {
  font-style: italic!important;
}

img[src="https://hh.com.ua/wp-content/uploads/2025/06/none.svg"] {
  display: none!important;
}

.custom-page-head p {
  color: #ffffff!important;
}

.archive-our-centers-head-list li a,
.archive-our-centers-head-list li a span {
  color: #ffffff !important;
}