/**
Шрифты
 */
@font-face {
    font-family: Manrope-Regular;
    src: url(../fonts/Manrope/Manrope-Regular.ttf);
}

@font-face {
    font-family: Manrope-Bold;
    src: url(../fonts/Manrope/Manrope-Bold.ttf);
}

@font-face {
    font-family: Manrope-Light;
    src: url(../fonts/Manrope/Manrope-Light.ttf);
}

body {
    padding: 0px 16px;
    margin: 0px;
}

/**
Хедер
 */
header.container > div {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-bottom: 1px solid #E8E8E8;
    padding: 16px 0px;
}

header .logo {
    max-width: 204px;
    max-height: 44px;
    width: auto;
}

header .logo img {
    width: 100%;
}

header .compare-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font: 12px/16px Manrope-Regular;
    margin-right: 32px;
    cursor: pointer;
    text-decoration: unset;
    position: relative;
}

header .compare-button .items-count {
    display: none;
}

header .compare-button.has-items .items-count {
    content: '2';
    position: absolute;
    top: 0px;
    right: 0px;
    background: #F21A1A;
    border-radius: 600px;
    width: 14px;
    color: white;
    height: 14px;
    font: 10px/12px Manrope-Bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .compare-button svg {
    width: 15px;
    height: 17px;
    padding-bottom: 5px;
}

header .contact-phone {
    font: 16px/24px Manrope-Bold;
    margin-right: 16px;
    color: #2C2C2C;
    text-decoration: none;
}

@media (max-width: 1000px) {
    header {
        margin-bottom: 64px !important;
    }

    header.container .desktop {
        display: none !important;
    }

    header.container .mobile {
        display: block !important;
    }

    header.container > div {
        padding: 0px;
    }

    header.container .fixed-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        margin-left: -16px;
        height: 65px;
        z-index: 5;
        background: white;
        padding: 0px 16px;
        box-sizing: border-box;
    }

    header .logo {
        width: 110px;
        height: 24px;
    }

    header .sidebar-menu {
        outline: unset;
        background: unset;
        border: unset;
        width: 32px;
        height: 32px;
        padding: 0px;
        cursor: pointer;
    }

    header .search-button {
        outline: unset;
        background: unset;
        border: unset;
        padding: 0px;
        cursor: pointer;
    }

    header .search-button:before {
        content: '';
        display: block;
        background: url("../images/header/zoom-icon-black.svg") no-repeat center;
        width: 32px;
        height: 32px;
    }
}

/**
Боковое меню:
 */
.sidenav {
    width: 100%;
    position: fixed;
    z-index: 6;
    background-color: #0000004D;
    overflow-x: hidden;
    margin: 0px -16px;
    visibility: hidden;
    opacity: 0;
    top: 0px;
    height: 100%;
}

.sidenav.open {
    visibility: visible;
    opacity: 1;
}

.sidenav .sidenav-container {
    transition: left 0.4s ease-in-out;
    max-width: 320px;
    height: 100%;
    background: #FFFFFF;
    padding: 18px 16px 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
}

.sidenav.open .sidenav-container {
    left: 0;
}

.sidenav .sidenav-container .sidenav-close {
    height: 32px;
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}

.sidenav .sidenav-container .sidenav-navigation {
    flex: 0 0 173px;
}

.sidenav .sidenav-container .sidenav-close-button {
    border: unset;
    background: unset;
    outline: unset;
    cursor: pointer;
}

.sidenav .sidenav-container .default-button {
    width: 100%;
    font: 14px/20px Manrope-Bold;
    padding: 12px 0px;
}

.sidenav .sidenav-container .compare-button {
    display: flex;
    border-bottom: 1px solid #9C9C9C3D;
    padding: 24px 0px;
    align-items: center;
    font: 16px / 24px Manrope-Bold;
    cursor: pointer;
    text-decoration: unset;
    position: relative;
}

.sidenav .sidenav-container .compare-button .items-count {
    display: none;
}

.sidenav .sidenav-container .compare-button.has-items .items-count {
    content: '2';
    position: absolute;
    top: 17px;
    left: 17px;
    background: #F21A1A;
    border-radius: 600px;
    width: 14px;
    color: white;
    height: 14px;
    font: 10px/12px Manrope-Bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidenav .sidenav-container .compare-button svg {
    margin-right: 16px;
    width: 20px;
    height: 20px;
}

.sidenav .sidenav-container .contact-phone {
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
    text-decoration: unset;
    flex: 0 0 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/**
Футер
 */
footer {
    background: #FAF9FB;
    margin: 0px -16px;
    padding: 60px 16px;
}

footer .logos {
    display: flex;
    height: 36px;
    margin-bottom: 32px;
}

footer .logos .logo {
    margin-right: 16px;
}

footer .logos .logo:last-child {
    margin-right: 0px;
}

footer .logos .logo img {
    height: 100%;
    width: auto;
}

footer .info section {
    margin-bottom: 24px;
}

footer .info section:last-child {
    margin-bottom: 0px;
}

footer .info h3 {
    margin: 0px 0px 16px 0px;
    font: 16px/24px Manrope-Bold;
}

footer .info {
    font: 16px/22px Manrope-Regular;
    color: #2C2C2C;
}

footer .info a {
    display: block;
    margin: 0px;
    margin-bottom: 16px;
}

footer .info a:last-child {
    margin-bottom: 0px;
}

footer .info a {
    text-decoration: unset;
}

footer .info.grid-container {
    grid-template-columns: calc(25% - 10px) calc(75% - 10px);
}

@media (max-width: 950px) {
    footer .info {
        grid-template-columns: 40% 60%;
    }
}

.scroll-to-top {
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: url(../images/footer/scroll-to-top-button.svg) no-repeat center;
    position: fixed;
    right: 130px;
    bottom: 98px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 150px;
    display: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.scroll-to-top.show {
    display: block;
    opacity: 1;
}

@media (max-width: 750px) {
    footer {
        padding: 32px 16px;
    }

    footer .logos {
        flex-direction: column;
        height: auto;
    }

    footer .logos .logo {
        margin-right: 0px;
        margin-bottom: 16px;
    }

    footer .logos .logo:last-child {
        margin-bottom: 0px;
    }

    footer .logos .logo img {
        height: 36px;
    }

    footer .info.grid-container {
        grid-template-columns: 100%;
    }

    .scroll-to-top {
        bottom: 16px;
        right: 16px;
    }
}

/**
Модалки:
 */
.modal {
    display: none;
    position: fixed;
    z-index: 6;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 24px;
    background-color: white;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
    transform: translate(-50%, -50%);
}

.modal .modal-content .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    align-items: flex-start;
}

.modal .modal-content h2 {
    margin: 0px;
    font: 24px/32px Manrope-Bold;
}

.modal .modal-content .title .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    flex: 0 0 16px;
    padding: 8px;
    margin-top: 2px;
}

.modal .modal-content .title .close:hover,
.modal .modal-content .title .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal .modal-content .description {
    font: 16px/22px Manrope-Regular;
    margin-bottom: 24px;
}

.modal .modal-content form label {
    display: block;
    font: 12px/16px Manrope-Light;
    margin-bottom: 8px;
}

.modal .modal-content form label.checkbox {
    display: flex;
    align-items: center;
    margin: 0px;
}

.modal .modal-content form label.checkbox input[type="checkbox"] {
    display: none !important;;
}

.modal .modal-content form label.checkbox:before {
    content: '';
    width: 18px;
    height: 18px;
    margin: 11px 21px 11px 11px;
    border: 2px solid #888888;
    box-sizing: content-box;
    flex: 0 0 18px;
    box-sizing: border-box;
}

.modal .modal-content form label.checkbox span {
    max-width: 275px;
}

.modal .modal-content form label.checkbox a {
    color: #2C2C2C;
}

.modal form input[type="text"],
.modal form input[type="tel"],
.modal form input[type="date"],
.modal form input[type="number"] {
    border-radius: 12px;
    width: 100%;
    padding: 12px;
    border: unset;
    box-sizing: border-box;
    outline: unset;
    height: 48px;
    background: #0000000A;
    font: 16px/22px Manrope-Regular;
}

.modal form textarea {
    background: #0000000A;
    border: unset;
    outline: unset;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    resize: unset;
    padding: 12px;
    box-sizing: border-box;
    font: 16px / 22px Manrope-Regular;
    color: #000000DE;
}

.modal form textarea.error,
.modal form input[type="text"].error,
.modal form input[type="tel"].error,
.modal form input[type="date"].error,
.modal form input[type="number"].error {
    border: 1px solid #F44336;
}

.modal form input[type="text"]::placeholder,
.modal form input[type="tel"]::placeholder,
.modal form input[type="date"]::placeholder,
.modal form input[type="number"]::placeholder,
.modal form textarea::placeholder {
    color: #C4C4C4;
}

.modal form .field {
    position: relative;
    padding-bottom: 24px;
}

.modal form .field.radio-buttons .title {
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.modal form .field.radio-buttons input[type="radio"] {
    display: none;
}

.modal form .field.radio-buttons label {
    font: 14px / 20px Manrope-Light;
    margin-bottom: 0px;
    padding: 10px 0px 10px 50px;
    position: relative;
}

.modal form .field.radio-buttons label.error {
    padding: 0px;
}

.modal form .field.radio-buttons label.error:before {
    content: unset;
}

.modal form .field.radio-buttons label:before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #00000080;
    border-radius: 200px;
    position: absolute;
    left: 0;
    top: 0;
    margin: 10px;
    box-sizing: border-box;
}

.modal form .field.radio-buttons input:checked ~ label:before {
    border: 2px solid #6900CF;
}

.modal form .field.radio-buttons input:checked ~ label:after {
    content: '';
    background: #6900CF;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 200px;
    position: absolute;
    left: 4px;
    top: 4px;
    margin: 10px;
}

.modal form .field.checkbox-buttons input {
    display: none;
}

.modal form .field.checkbox-buttons input:checked ~ label:before {
    border: 2px solid #6900CF;
}

.modal form .field.checkbox-buttons input:checked ~ label:after {
    content: '';
    background: #6900CF;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    left: 5px;
    top: 5px;
    margin: 10px;
}

.modal form .field.date:before {
    content: '';
    position: absolute;
    background: url("../images/common/date-input-icon.svg") no-repeat center;
    width: 18px;
    height: 18px;
    display: block;
    right: 15px;
    top: 40px;
    cursor: pointer;
}

.modal form input.error ~ .error,
.modal form textarea.error ~ .error {
    font: 12px / 16px Manrope-Regular;
    color: #F44336;
    position: absolute;
    bottom: 5px;
    left: 0;
    margin: 0px;
}

.modal button {
    width: 100%;
}

.modal button.default-button {
    padding: 10px 16px;
}

.modal .choose {
    font: 16px/24px Manrope-Bold;
    color: #888888;
    padding: 8px 0px;
    width: 100%;
    text-align: center;
}

.modal .link-to-wa {
    display: block;
    width: 100%;
    text-align: center;
    color: #6900CF;
    font: 18px/24px Manrope-Bold;
    text-decoration: unset;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 750px) {
    .modal .modal-content {
        max-width: 343px;
        width: calc(100% - 32px);
    }

    .modal .modal-content h2 {
        font: 18px/24px Manrope-Bold;
        max-width: 240px;
    }

    .modal .modal-content .title {
        margin-bottom: 18px;
    }

    .modal .modal-content .title .close {
        margin-top: -2px;
    }
}

/**
Общие универсальные стили:
 */
h2 {
    margin: 0px;
}

a {
    color: #2C2C2C;
}

a:hover {
    color: #6900CF;
}

p {
    font: 16px/22px Manrope-Regular;
    color: #2C2C2C;
    margin: 0px 0px 16px 0px;
    position: relative;
    z-index: 1;
}

p:last-child {
    margin-bottom: 0px;
}

.text ul {
    padding: 0px;
    margin: 0px;
}

.text ul li {
    position: relative;
    padding-left: 25px;
    list-style: none;
    font: 16px / 22px Manrope-Regular;
    color: #2C2C2C;
    margin: 0px 0px 18px 0px;
    z-index: 1;
}

.text ul li:before {
    content: "•";
    background: unset;
    top: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    font-size: 25px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-container.three-row {
    display: grid;
    grid-template-columns: repeat(3, 28%);
    justify-items: end;
    justify-content: end;
}

.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.default-button {
    background: #6900CF;
    font: 18px/24px Manrope-Bold;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    border: unset;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: unset;
    display: inline-block;
}

.main-header {
    font: 64px/74px Manrope-Bold;
    margin-bottom: 64px;
    color: #175D54;
}

.small-header {
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
}

.hidden {
    display: none !important;
}

.mb32 {
    margin-bottom: 32px;
}

.mb64 {
    margin-bottom: 64px !important;
}

.mb32 {
    margin-bottom: 32px !important;
}

.mb24 {
    margin-bottom: 24px !important;
}

.mb16 {
    margin-bottom: 16px !important;
}

.header {
    color: #175D54;
    font: 38px/44px Manrope-Bold;
    margin: 0px 0px 32px 0px;
}

.mobile {
    display: none !important;
}

.table-block {
    background: #F9F9F9;
    border-radius: 16px;
    padding: 24px;
}

.table-block .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #9C9C9C3D;
    padding-bottom: 16px;
    margin-top: 16px;
    font: 16px/24px Manrope-Regular;
    color: #2C2C2C;
}

.table-block .item .title {
    font-family: Manrope-Bold;
    flex: 0 1 400px;
}

.table-block .item .title ~ div {
    flex: 0 1 620px;
    text-align: right;
}

.table-block .item:first-child {
    margin-top: 0px;
}

.table-block .item:last-child {
    border-bottom: unset;
    padding-bottom: 0px;
}

.table-block.with-headers .item .row-header {
    width: 100%;
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.table-block.with-headers .item {
    flex-wrap: wrap;
    align-items: flex-start;
}

.table-block.with-headers .item .title {
    font-family: Manrope-Regular;
}

.audio {
    display: flex;
    align-items: center;
}

.audio .audio-play {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url("../images/common/audio-pause-icon.svg") no-repeat center;
    box-sizing: content-box;
    flex: 0 0 20px;
}

.audio .audio-play.pause {
    background: url("../images/common/audio-play-icon.svg") no-repeat center;
}

.audio .audio-progress {
    width: 240px;
    height: 4px;
    border-radius: 16px;
    background: #00000029;
    border: none !important;
    cursor: pointer;
}

.audio .audio-time {
    color: #2C2C2C;
    font: 14px/20px Manrope-Regular;
    margin-left: 8px;
    width: 38px;
    flex: 0 0 39px;
}

.audio .audio-btn {
    width: 20px;
    height: 20px;
    margin-left: 18px;
    margin-right: 10px;
    background: url("../images/common/audio-volume.svg") no-repeat center;
    flex: 0 0 20px;
}

.audio .audio-btn.empty {
    background: url("../images/common/audio-volume-empty.svg") no-repeat center;
}

.audio .audio-bar {
    width: 60px;
    height: 4px;
    border-radius: 16px;
    background: #00000029;
    border: none !important;
    cursor: pointer;
    flex: 0 0 60px;
}

.audio .ui-slider-handle {
    display: none !important;
}

.audio .ui-widget-header {
    background: #279B8C;
}

@media (max-width: 750px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

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

    .grid-container.three-row {
        display: grid;
        grid-template-columns: repeat(1, max-content);
        justify-items: start;
        justify-content: start;
    }

    .main-header {
        font: 32px/40px Manrope-Bold;
        margin-bottom: 32px;
    }

    .table-block .item .title,
    .table-block .item .title ~ div {
        flex: 0 1 50%;
    }

    .table-block .item {
        align-items: flex-start;
    }

    .audio .audio-bar {
        width: 40px;
        flex: 0 0 40px;
    }

    .hidden-mobile {
        display: none !important;
    }

    .mb64-mobile {
        margin-bottom: 64px !important;
    }

    .mb32-mobile {
        margin-bottom: 32px !important;
    }

    .mb24-mobile {
        margin-bottom: 24px !important;
    }

    .mb16-mobile {
        margin-bottom: 16px !important;
    }
}

/**
Блоки на главной (Наше стремление к качеству):
 */
.dignity-block {
    margin-bottom: 64px;
}

@media (max-width: 750px) {
    .header {
        margin-bottom: 24px;
        font: 24px/32px Manrope-Bold
    }

    .dignity-block {
        margin-bottom: 32px;
    }
}

/**
Блок "О клинике на главной"
 */
.about-block {
    margin-bottom: 64px;
}

.about-block .description {
    display: block;
    margin: 0px;
    font: 16px/22px Manrope-Light;
    color: #2C2C2C;
}

@media (max-width: 750px) {
    .about-block {
        margin-bottom: 32px;
    }
}

/**
Блок "Доноры га главной"
 */
.donors-block {
    margin-bottom: 64px;
}

@media (max-width: 750px) {
    .donors-block {
        margin-bottom: 32px;
    }
}

/**
Блок "Как заказать на главной"
 */
.instructions-block {
    margin-bottom: 64px;
}

@media (max-width: 750px) {
    .instructions-block {
        margin-bottom: 32px;
    }
}

/**
Блок "Помощь консультанта на главной"
 */
.consultant-help-block {
    position: relative;
    background: #EEF7F6;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 64px;
    overflow: hidden;
    text-decoration: unset;
}

.consultant-help-block.small-block {
    margin: 40px 0px;
}

.consultant-help-block .text {
    font: 24px/32px Manrope-Bold;
    color: #175D54;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.consultant-help-block:after {
    content: "";
    background: url(../images/main/consultant-help-background.png) no-repeat right;
    background-size: contain !important;
    display: block;
    position: absolute;
    right: 0;
    z-index: 0;
    height: 100%;
    width: 200px;
    top: 0;
}

@media (max-width: 750px) {
    .consultant-help-block {
        margin-bottom: 32px;
    }

    .consultant-help-block {
        padding: 16px;
    }

    .consultant-help-block .text {
        font: 18px / 24px Manrope-Bold;
        max-width: 220px;
    }

    .consultant-help-block:after {
        background: url(../images/main/consultant-help-background-mobile.png) no-repeat right;
        width: 160px;
    }

    .consultant-help-block.small-block {
        margin: 16px 0px;
    }
}

/**
Раздел "О криобанке" - Криоцит
 */
.about-section .small-block {
    margin-bottom: 32px;
}

.about-section .with-button .description {
    margin-bottom: 32px;
}

.about-section .with-quote .description {
    margin-bottom: 24px;
}

.about-section .description {
    font: 16px/22px Manrope-Regular
}

.about-section .readmore-link {
    cursor: pointer;
    margin-top: 22px;
    color: #888888;
    font: 14px/20px Manrope-Bold;
}

.about-section .description p {
    transition: visibility 0s, opacity 0.5s linear;
}

.about-section .description p:nth-child(n + 3) {
    display: none;
}

.about-section .description p:nth-child(n + 3).show {
    animation-name: readMore;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.dropdown-block {
    margin-bottom: 64px;
}

.dropdown-block.small-block {
    margin-bottom: 32px;
}

.about-section .has-description {
    margin-bottom: 32px;
}

.about-section .has-description .header {
    margin-bottom: 24px;
}

@keyframes readMore {
    0% {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    100% {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 750px) {
    .about-section .readmore-link {
        margin-top: 24px;
    }

    .dropdown-block {
        margin-bottom: 32px;
    }

    .dropdown-block.small-block {
        margin-bottom: 24px;
    }

    .about-section .has-description {
        margin-bottom: 24px;
    }

    .about-section .has-description .header {
        margin-bottom: 16px;
    }

    .about-section .small-block .header {
        margin-bottom: 16px;
    }
}

/**
Раздел "О криобанке" - Данные об организации
 */
.organization-section .certificates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.organization-section .certificates .certificate img {
    width: 100%;
    height: auto;
}

.organization-section .consultant-help-block:after {
    background: url(../images/organization/return-money-background.png) no-repeat right;
    width: 300px;
}

.organization-section .consultant-help-block p {
    margin-top: -8px;
}

@media (max-width: 750px) {
    .organization-section {
        margin-bottom: 64px;
    }

    .organization-section .consultant-help-block:after {
        background: url(../images/organization/return-money-background-mobile.png) no-repeat right;
        width: 300px;
    }

    .organization-section .consultant-help-block .text,
    .organization-section .consultant-help-block p {
        max-width: 311px;
    }

    .organization-section .certificates {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 10px;
    }

    .organization-section .certificates .certificate img {
        height: 100%;
        width: auto;
        max-height: 300px;
    }
}

/**
Раздел "Банк спермы" - О банке:
 */
.sperm-bank-section .info-block {
    text-decoration: unset;
}

.sperm-bank-section .info-block .consultant-help-block {
    background: #F5F7FF;
}

.sperm-bank-section .info-block .consultant-help-block .text {
    color: #2C2C2C;
}

.sperm-bank-section .info-block .consultant-help-block:after {
    background: url(../images/sperm-bank/get-donor-background.png) no-repeat right;
    width: 400px;
}

@media (max-width: 750px) {
    .sperm-bank-section .info-block .consultant-help-block:after {
        background: url(../images/sperm-bank/get-donor-background-mobile.png) no-repeat right;
    }

    .sperm-bank-section .info-block .consultant-help-block .text {
        max-width: 311px;
    }
}

/**
Раздел "Банк ооцитов" - О банке:
 */
.oocyte-bank-section .info-block {
    text-decoration: unset;
}

.oocyte-bank-section .info-block .consultant-help-block {
    background: #FFF8F5;
}

.oocyte-bank-section .info-block .consultant-help-block .text {
    color: #2C2C2C;
}

.oocyte-bank-section .info-block .consultant-help-block:after {
    background: url(../images/oocyte-bank/form-background.png) no-repeat right;
    width: 470px;
    height: 140px;
}

@media (max-width: 750px) {
    .oocyte-bank-section .info-block .consultant-help-block .text {
        max-width: 311px;
    }

    .oocyte-bank-section .info-block .consultant-help-block:after {
        background: url(../images/oocyte-bank/form-background-mobile.png) no-repeat right;
        width: 190px;
        height: 136px;
    }
}

/**
Раздел "Банк спермы" - Кто наши доноры:
 */

.quote {
    background: #F9F9F9;
    border-radius: 16px;
    padding: 16px;
}

.quote p {
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
}

.quote h2 {
    font: 14px/20px Manrope-Regular;
    margin-top: 10px;
    text-align: right;
}


/**
Раздел "Банк спермы" - Как отправляем:
 */

.shipment-section .documents-list {
    margin-top: 24px;
}

.shipment-section .documents-list .title {
    margin-bottom: 16px;
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
}

.shipment-section .documents-list ul {
    margin: 0px;
    padding-left: 32px;
}

.shipment-section .documents-list ul li {
    list-style: none;
    margin-bottom: 18px;
    position: relative;
}

.shipment-section .documents-list ul li:last-child {
    margin-bottom: 0px;
}

.shipment-section .documents-list ul li:before {
    content: "";
    background: url(../images/common/document-icon.svg) no-repeat right;
    background-size: contain !important;
    display: block;
    position: absolute;
    z-index: 0;
    width: 24px;
    height: 24px;
    top: 0;
    left: -32px;
}

.shipment-section .consultant-help-block:after {
    background: url(../images/shipment/background.png) no-repeat right;
    width: 300px;
}

.shipment-section .consultant-help-block .text {
    margin: 0px;
}

@media (max-width: 750px) {
    .shipment-section .consultant-help-block .text {
        max-width: 310px;
    }
}


/**
Раздел "Банк спермы" - Как выводим из карантина:
 */
.conclusion-section .consultant-help-block:after {
    background: url(../images/conclusion/background.png) no-repeat right;
    width: 300px;
}

@media (max-width: 750px) {
    .conclusion-section .consultant-help-block:after {
        background: url(../images/conclusion/background-mobile.png) no-repeat right;
        width: 200px;
    }

    .conclusion-section .consultant-help-block .text {
        max-width: 310px;
    }
}

/**
Раздел "Банк спермы" - Регулярный контроль доноров:
 */
.control-section .consultant-help-block:after {
    background: url(../images/shipment/background.png) no-repeat right;
    width: 300px;
}

.control-section .consultant-help-block .text {
    margin: 0px;
}

.small-block p a {
    text-decoration: unset;
    color: #6900CF;
}

@media (max-width: 750px) {
    .control-section .consultant-help-block .text {
        max-width: 310px;
    }
}


/**
Раздел "Банк спермы" - Как отбираем кандидатов в доноры спермы:
 */
.selection-section .title {
    font: 16px/24px Manrope-Bold;
    color: #2C2C2C;
}

.selection-section .consultant-help-block .text {
    margin: 0px;
}


.selection-section .consultant-help-block:after {
    background: url(../images/shipment/background.png) no-repeat right;
    width: 300px;
}

@media (max-width: 750px) {
    .selection-section .consultant-help-block .text {
        max-width: 300px;
    }
}


/**
Раздел "Банк спермы" - Заморозка и хранение спермы:
 */
.freeze-section .consultant-help-block:after {
    background: url(../images/shipment/background.png) no-repeat right;
    width: 300px;
}

.freeze-section .consultant-help-block .text {
    margin: 0px;
    max-width: 900px;
}

@media (max-width: 750px) {
    .freeze-section .consultant-help-block .text {
        max-width: 300px;
    }
}


.label {
    border-radius: 8px;
    padding: 4px 6px;
    width: fit-content;
    font: 16px/24px Manrope-Bold;
}

.label.in-stock {
    color: #279B8C;
    background: #279B8C14;
}

.label.not-available {
    color: #888888;
    background: #00000014;
}

.controls-summary {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.controls-summary .compare-button {
    background: url("../images/common/compare-icon.svg") no-repeat center;
    width: 20px;
    height: 20px;
    padding: 10px;
    box-sizing: content-box;
    cursor: pointer;
}

.controls-summary .compare-button:hover,
.controls-summary .compare-button.added {
    background: url("../images/common/compare-icon-selected.svg") no-repeat center;
}

.controls-summary .detail-link {
    flex: 1;
    text-align: center;
    padding: 8px;
}

.controls-summary .detail-link:hover {
    color: white;
}

@media (max-width: 750px) {
    .controls-summary {
        margin-top: 20px;
    }

    .controls-summary .detail-link {
        font: 14px / 20px Manrope-Bold;
        padding: 10px;
    }

    .controls-summary .compare-button {
        background: url("../images/common/compare-icon.svg") no-repeat center !important;
    }

    .controls-summary .compare-button.added {
        background: url("../images/common/compare-icon-selected.svg") no-repeat center !important;
    }
}

/**
Всплывающие подсказки:
 */

[data-tooltip] {
    position: relative; /* Относительное позиционирование */
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    background: #FFFFFF;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
    padding: 4px 6px;
    color: #2C2C2C;
    font: 12px/16px Manrope-Regular;
    border-radius: 4px;
}

[data-tooltip]:hover::after {
    opacity: 1;
    bottom: -25px;
}

@media (max-width: 1180px) {
    [data-tooltip]::after {
        right: 0;
        left: unset;
        transform: unset;
    }
}

@media (max-width: 750px) {
    [data-tooltip]::after {
        content: unset;
    }
}

ul.criteria {
    margin-bottom: 32px;
}

ul.criteria li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 40px;
}

ul.criteria li:last-child {
    margin-bottom: 0px;
}

ul.criteria li:before {
    content: "";
    background: url("../images/common/checkbox-icon.svg") no-repeat center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0px;
}