/* Reset and base styles  */
* {
    padding: 0;
    margin: 0;
    border: none;
    font-family: var(--main-family);
    letter-spacing: -0.02em;
}

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

/* Links */

a, a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* Form */

input, textarea, button, select {
    font-family: var(--main-family);
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
    transition: .15s ease-out;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button:hover, input[type="submit"]:hover {
    background-color: var(--main-color);
}

legend {
    display: block;
}

.btn-default {
    border-radius: 38px;
    gap: 10px;
    padding: 18px 20px;
    font-weight: 600;
    font-size: var(--p1-size);
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
}

.btn-default--black {
    background-color: var(--gray-black);
    color: var(--white-color);
}

.btn-default--main {
    background-color: var(--main-color);
    color: var(--white-color);
}

.form-group {
    position: relative;
}

.form-group__group {
    position: relative;
    flex: 1;
    background-color: var(--white-color);
    padding: 21px 24px;
    border-radius: 33px;
    transition: background-color .15s ease-out;
    overflow: hidden;
}

.form-group__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: var(--gray-1);
    font-weight: 600;
    line-height: 150%;
    transition: .15s ease-out;
    padding: 20px 24px;
    pointer-events: none;
    white-space: nowrap;
}

.form-group__group.focused,
.form-group__group.filled {
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-group__group.focused .form-group__label,
.form-group__group.filled .form-group__label  {
    top: -4px;
    padding-top: 19px;
    font-size: 12px;
    padding-bottom: 0;

}

.form-group__group.focused input,
.form-group__group.filled input {
    margin-top: 19px;
}

.form-group__group.is-error {
    background-color: var(--crimson);
}

.form-group__group.is-error .form-group__label {
    color: var(--red);
}

/* region custom-checkbox */
.checkbox-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
input.custom-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
    margin: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    gap: 10px;
    font-size: var(--p2-size);
    font-weight: 600;
    cursor: pointer;
    transition: .1s ease-out;
}

.custom-checkbox + label::before {
    content: '';
    display: flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1.5px solid var(--gray-1);
    border-radius: 5px;
    background-image: url("./assets/img/checkbox-main.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0;
    transition: .1s ease-out;
}

input.custom-checkbox + label:hover::before {
    border-color: var(--active-color);
}

.custom-checkbox:checked:not(:disabled) + label::before {
    border-color: var(--main-color);
    background-size: 110%;
}

input.custom-checkbox:disabled + label::before {
    background-color: var(--gray-1);
}
/* endregion */

/* region start custom-input-toggle */
.custom-input-toggle {
    display: none;
}
.custom-input-toggle, .custom-input-toggle:after, .custom-input-toggle:before, .custom-input-toggle *, .custom-input-toggle *:after, .custom-input-toggle *:before, .custom-input-toggle + label {
    box-sizing: border-box;
}
.custom-input-toggle::-moz-selection, .custom-input-toggle:after::-moz-selection, .custom-input-toggle:before::-moz-selection, .custom-input-toggle *::-moz-selection, .custom-input-toggle *:after::-moz-selection, .custom-input-toggle *:before::-moz-selection, .custom-input-toggle + label::-moz-selection {
    background: none;
}
.custom-input-toggle::selection, .custom-input-toggle:after::selection, .custom-input-toggle:before::selection, .custom-input-toggle *::selection, .custom-input-toggle *:after::selection, .custom-input-toggle *:before::selection, .custom-input-toggle + label::selection {
    background: none;
}
.custom-input-toggle + label {
    outline: 0;
    display: block;
    width: 44px;
    height: 28px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-input-toggle + label:after, .custom-input-toggle + label:before {
    position: relative;
    display: block;
    content: "";
    width: 24px;
    height: 100%;
}
.custom-input-toggle + label:after {
    left: 0;
}
.custom-input-toggle + label:before {
    display: none;
}
.custom-input-toggle:checked + label:after {
    left: 40%;
}
.custom-input-toggle + label {
    background: var(--gray-1);
    border-radius: 2em;
    padding: 2px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.custom-input-toggle + label:after {
    border-radius: 50%;
    background: var(--white-color);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.custom-input-toggle:checked + label {
    background: var(--main-color);
}

/* region end custom-input-toggle */

/* region start multiselect-checkbox */

.multiselect {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 18px;
    width: 100%;
    height: 46px;
    border-radius: 23px;
    border: 1px solid var(--gray-1);
    cursor: pointer;
}

.select-box svg {
    fill: none;
}

.dropdown-text {
    overflow: hidden;
    max-width: 100%;
    vertical-align: middle;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 46px;
    font-size: var(--p1-size);
    font-weight: 600;
}

.dropdown-arrow {
    position: absolute;
    right: 0;
    width: 18px;
    height: 18px;
    margin-right: 18px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-top: 4px;
    padding: 8px;
    width: 100%;
    border-radius: 12px;
    background-color: var(--white-color);
    box-shadow: 0 5px 30px 0 #0000001F;
    z-index: 1;
}

.dropdown-content.show {
    display: flex;
    flex-direction: column;
}

.dropdown-content .checkbox-wrapper label {
    padding: 9px 10px;
}

/* region end multiselect-checkbox */

[class*="--scroll"] {
    overflow-y: auto;
}

/* Устанавливаем размеры и цвет фона для скроллбара */
[class*="--scroll"]::-webkit-scrollbar {
    width: var(--scrollbarWidth);
}

/* Стилизуем ползунок скроллбара */
[class*="--scroll"]::-webkit-scrollbar-thumb {
    background: var(--scrollbarThumb);
    border-radius: var(--scrollbarBorderRadius);
}

[class*="--scroll"]::-webkit-scrollbar-track {
    background: var(--scrollbarBg);
    border-radius: var(--scrollbarBorderRadius);
}

/* Стили для ползунка при наведении курсора */
[class*="--scroll"]::-webkit-scrollbar-thumb:hover {
    background: #F0437898;
}

@media screen and (max-width: 769px) {
    .btn-default {
        padding: 14px 20px;
    }
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: var(--main-family);
    background-color: #FAFAFB;
}

h1 {
    font-weight: 700;
    font-size: var(--h1-size);
    line-height: 100%;
}

h2 {
    font-weight: 700;
    font-size: var(--h2-size);
    line-height: 100%;
}

h3 {
    font-weight: 700;
    font-size: var(--h3-size);
    line-height: 100%;
}

h4 {
    font-weight: 700;
    font-size: var(--h4-size);
    line-height: 100%;
}

h5 {
    font-weight: 600;
    font-size: var(--h5-size);
    line-height: 125%;
}

h6 {
    font-weight: 600;
    font-size: var(--h6-size);
    line-height: 120%;
}

.btn {
    border: none;
    outline: none;
    transition: .15s ease-out;
}

@media screen and (min-width: 769px) {
    .btn.black:hover {
        background-color: var(--gray-1);
        color: var(--gray-black);
    }

    .btn.pink:hover {
        background-color: var(--gray-black);
        color: var(--white-color);
    }
}

.container {
    max-width: calc(var(--container-width) + (var(--container-padding) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
}

.is_relative {
    position: relative;
}

.section-title {
    margin-bottom: 60px;
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 100%;
    color: var(--gray-black);
}

@media screen and (max-width: 768px) {
    .section-title {
        margin-bottom: 24px;
    }
}

.section-title.link {
    display: flex;
    align-items: center;
}

.section-title.link a {
    color: var(--gray-black);
}

@media screen and (min-width: 769px) {
    .section-title.link:after {
        content: '';
        display: block;
        width: 36px;
        height: 36px;
        background: url('./assets/img/arr-right-dark.svg') center / contain no-repeat;
        margin-left: 16px;
    }
}

header {
    height: 153px;
}

header .nav-wrapper {
    position: fixed;
    background-color: var(--white-color);
    border-radius: 0 0 var(--radius-32) var(--radius-32);
    box-shadow: 0 14px 32px 0 rgba(0, 0, 0, 0.04);
    padding: 24px 0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

header .nav-wrapper.reset {
    background-color: transparent;
    box-shadow: none;
}

.header-holder {
    display: flex;
    flex-direction: column;
}

.header-holder .header-top {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    transition: .15s ease-out;
}

.header-top .logo-header {
    max-width: 120px;
    width: 100%;
    margin-right: 60px;
}

.header-top .logo-header img {
    object-fit: contain;
}

.header-top .open-catalog {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 23px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 129%;
    cursor: pointer;
}

.header-top .open-catalog svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--white-color);
}

.header-top .search {
    display: flex;
    align-items: center;
    border-radius: 24px;
    background-color: var(--gray-3);
    max-width: 620px;
    width: 100%;
    margin: 0 40px 0 16px;
}

.header-top .search .search-btn {
    display: flex;
    cursor: pointer;
    height: 100%;
    padding: 13px 13px 13px 22px;
}

.header-top .search .search-btn:hover {
    background-color: transparent;
}

.header-top .search .search-btn svg {
    flex-shrink: 0;
    stroke: var(--gray-black);
}

.header-top form {
    width: 100%;
}

.header-top form .search input {
    width: 100%;
    color: var(--gray-black);
    font-size: var(--p2-size);
    font-weight: 600;
    padding-right: 13px;
}

.header-top .search form input::placeholder {
    color: var(--gray-1);
}

.header-top .buttons-wrapper {
    display: flex;
    gap: 16px;
}

.header-top .buttons-wrapper .header-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 2px;
}

.header-top .buttons-wrapper .header-button.header-button--mobile {
    display: none;
}

.header-top .buttons-wrapper .header-button svg {
    fill: var(--gray-black);
}

.header-top .buttons-wrapper .header-button .btn-img--search svg {
    stroke: var(--gray-black);
}

.header-top .buttons-wrapper img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0 auto;
}

.header-top .buttons-wrapper .btn-img {
    text-align: center;
}

.header-top .buttons-wrapper .btn-img svg {
    transition: .15s ease-out;
}

.header-top .buttons-wrapper span {
    color: var(--gray-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 129%;
    transition: .15s ease-out;
}

.header-holder .header-bottom {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--gray-2);
    opacity: 1;
    transition: .15s ease-out;
}

header.scroll .header-holder .header-bottom {
    height: 0px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

header.scroll .header-holder .header-top {
    padding: 0;
}

.header-holder .header-bottom nav {
    width: 100%;
}

.header-bottom .header-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-menu .menu-item.has-child a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-menu .menu-item a {
    color: var(--gray-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 129%;
    white-space: nowrap;
}

.header-menu .menu-item a:hover {
    color: var(--main-color);
}

.header-menu .menu-item.has-child a::after {
    content: '';
    display: block;
    background: url('./assets/img/header-arrow-bottom.svg') center / contain no-repeat;
    width: 18px;
    height: 18px;
}

.header-menu .menu-item.selected a {
    color: var(--main-color);
}

.header-top .buttons-wrapper .header-button:hover svg {
    fill: var(--main-color)
}

.header-top .buttons-wrapper .header-button:hover .btn-img--search svg {
    stroke: var(--main-color);
}

.header-top .buttons-wrapper .header-button:hover span {
    color: var(--main-color)
}


@media screen and (max-width: 991px) {
    .header-top .logo-header {
        margin-right: 12px;
    }

    .header-top .buttons-wrapper {
        position: fixed;
        bottom: 0;
        left: 50%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
        grid-template-rows: 64px;
        gap: 4px;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transform: translateX(-50%);
        background: white;
        box-shadow: 0px 4px 32px 0px #00000014;
        z-index: 10;
    }

    .header-top {
        padding-bottom: 12px;
    }

    .header-holder .header-bottom {
        padding-top: 11px;
    }

    .header-top .buttons-wrapper .header-button.header-button--mobile {
        display: flex;
    }

    .header-top .buttons-wrapper span {
        text-align: center;
    }

    .header-top .open-catalog {
        display: none;
    }

    .header-top .search {
        margin: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    .header-top .logo-header {
        max-width: 90px;
    }

    .header-top .search .search-btn {
        padding: 11px 11px 11px 16px;
    }

    .header-top .buttons-wrapper span {
        font-size: 12px;
    }

    .header-top .search {
        margin: 0;
    }
}

@media screen and (max-width: 578px) {
    .header-bottom .header-menu {
        margin-right: calc(-1 * var(--container-padding));
        overflow-y: auto;
    }
}

.main {
    margin-bottom: 120px;
}

@media screen and (max-width: 769px) {
    .main {
        margin-bottom: 32px;
    }
}

.main-services {
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .main-services {
        margin-bottom: 32px;
    }
}

.main .services {
    margin: 60px 0 100px;
}

@media screen and (max-width: 767px) {
    .main .services {
        margin: 16px 0 32px;
    }
}

.main.faq .faq-holder {
    margin: 60px 0;
}

@media screen and (max-width: 768px) {
    .main.faq .faq-holder {
        margin: 32px 0;
    }
}

@media screen and (max-width: 578px) {
    .main.faq .faq-holder {
        margin: 24px 0;
    }
}

.catalog-holder {
    padding: 60px 0;
}

@media screen and (max-width: 767px) {
    .catalog-holder {
        padding: 16px 0;
    }
}

main.not-found-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background: var(--main-color) url('/local/templates/radar-gift/assets/img/404-banner.svg') right / cover no-repeat;
    min-height: 600px;
    overflow: hidden;
}

main.not-found-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(250, 250, 251, 0) 40%, #fafafb 175%);
    z-index: 2;
}

.not-found-page .not-found-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    z-index: 3;
}

.not-found-page .not-found-content h1 {
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
}

.not-found-page .not-found-content p {
    margin-bottom: 24px;
    font-size: var(--p2-size);
    line-height: 125%;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
}

.not-found-page .btn {
    margin: 0 auto;
    width: fit-content;
    background-color: var(--gray-black);
    padding: 16px 20px;
    border-radius: 38px;
    font-size: var(--p2-size);
    font-weight: 600;
    line-height: 129%;
    color: var(--white-color);
}

.not-found-page .not-found-img {
    position: absolute;
    bottom: -200px;
    margin: 0 auto;
    animation: imageAnimation 1.5s forwards;
    animation-delay: 1.5s;
    padding: var(--container-padding);
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .not-found-page {
        padding: 60px 0;
        min-height: 500px;
    }
}

@media screen and (max-width: 578px) {
    .not-found-page {
        min-height: 400px;
    }

    .not-found-page .not-found-content h1 {
        margin-bottom: 12px;
    }

    .not-found-page .not-found-img {
        bottom: -100px;
        animation: imageAnimationMobile 1.5s forwards;
    }
}

@keyframes imageAnimation {
    0% {
        bottom: -200px;
    }
    45% {
        bottom: 50px;
    }
    60% {
        bottom: 50px;
    }
    100% {
        bottom: -200px;
    }
}

@keyframes imageAnimationMobile {
    0% {
        bottom: -100px;
    }
    45% {
        bottom: 50px;
    }
    60% {
        bottom: 50px;
    }
    100% {
        bottom: -100px;
    }
}

.privacy-page {
    margin-bottom: 100px;
    color: var(--gray-black);
}

.privacy-page .container {
    max-width: calc(592px + (2 * var(--container-padding)));
}

.privacy-page h1 {
    padding-top: 74px;
    margin-bottom: 40px;
}

.privacy-page h4 {
    margin: 40px 0 24px;
}

.privacy-page ul li {
    list-style-type: disc;
}

.privacy-page ul,
.privacy-page ol {
    margin-left: 16px;
}

.privacy-page ol li,
.privacy-page ul li {
    padding-left: 5px;
}

.privacy-page p,
.privacy-page ul {
    margin-bottom: 16px;
}

.privacy-page p,
.privacy-page li {
    font-size: var(--p2-size);
    line-height: 125%;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .privacy-page {
        margin-bottom: 32px;
    }

    .privacy-page .container {
        max-width: calc(412px + (2 * var(--container-padding)));
    }

    .privacy-page h1 {
        padding-top: 58px;
        margin-bottom: 32px;
    }

    .privacy-page h4 {
        margin: 32px 0 16px;
    }

    .privacy-page p,
    .privacy-page ul {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 578px) {
    .privacy-page .container {
        max-width: 100%;
    }

    .privacy-page h1 {
        margin-bottom: 24px;
    }

    .privacy-page h4 {
        margin: 24px 0 16px;
    }

    .privacy-page p,
    .privacy-page ul {
        margin-bottom: 12px;
    }
}

footer {
    position: relative;
    border-radius: var(--radius-32) var(--radius-32) 0 0;
    background-color: var(--white-color);
    padding: 32px 0;
    z-index: 5;
}

footer .footer-logo {
    margin-bottom: 24px;
}

footer .footer-logo a {
    display: block;
    max-width: 120px;
    width: 100%;
}

footer .footer-logo img {
    object-fit: contain;
}

.footer-menu-holder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-top .footer-menu {
    display: flex;
    align-items: center;
    gap: 12px 24px;
}

.footer-top .footer-menu a {
    color: var(--gray-black);
    font-size: var(--p2-size);
    font-weight: 600;
    line-height: 129%;
    transition: .15s ease-out;
}

.footer-top .footer-menu a:hover {
    color: var(--main-color);
}

.footer-menu-holder .download-brief {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-menu-holder .download-brief.mobile {
    display: none;
}

.footer-menu-holder .download-brief img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-menu-holder .download-brief .brief-info {
    display: flex;
    flex-direction: column;
}

.footer-menu-holder .download-brief p {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-black);
    line-height: 129%;
}

.footer-menu-holder .download-brief span {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-1);
    line-height: 129%;
}

.footer-menu-holder .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-2);
}

.footer-bottom .footer-info-holder {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom .footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-black);
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom .footer-contact.email::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('./assets/img/mail.svg') center / contain no-repeat;
}

.footer-bottom .footer-contact.phone::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('./assets/img/phone.svg') center / contain no-repeat;
}

.footer-bottom .footer-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom .footer-info .footer-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 129%;
    color: var(--gray-1);
}

@media screen and (max-width: 991px) {
    header .nav-wrapper {
        padding: 16px 20px;
    }

    footer {
        padding-bottom: 100px;
    }

    .footer-menu-holder .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .footer-info-holder {
        width: 100%;
    }

    .footer-bottom .footer-info {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    footer .footer-logo a {
        max-width: 102px;
    }

    .footer-top .footer-menu {
        justify-content: space-between;
        width: 100%;
    }

    .footer-menu-holder .download-brief:not(.mobile) {
        display: none;
    }

    .footer-menu-holder .download-brief.mobile {
        display: flex;
        margin-left: auto;
    }

    .footer-bottom .footer-info {
        gap: 8px 12px;
    }

    .footer-menu-holder .footer-bottom {
        gap: 24px 12px;
        padding-top: 12px;
    }

    .footer-bottom .footer-info-holder {
        gap: 6px;
    }
}

@media screen and (max-width: 578px) {
    .footer-top .footer-menu {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom .footer-info-holder {
        flex-wrap: wrap;
        gap: 20px 16px;
    }

    .footer-menu-holder .download-brief.mobile {
        width: 100%;
    }

    .footer-bottom .footer-contact {
        order: 2;
    }

    .footer-bottom .footer-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 50;
    transition: .3s ease-out;
}

.modal-bg.open {
    opacity: 1;
}

.form input:not(.search-input,.btn-default,.custom-checkbox),
form input:not(.search-input,.btn-default,.custom-checkbox) {
    /*padding: 20px 24px;*/
    /*border-radius: 33px;*/
    /*background-color: var(--white-color);*/
    color: var(--gray-black);
    font-size: var(--p2-size);
    line-height: 125%;
    font-weight: 600;
    border: none;
    outline: none;
}

.form textarea,
form textarea {
    padding: 20px 24px;
    border-radius: 33px;
    background-color: var(--white-color);
    color: var(--gray-black);
    font-size: var(--p2-size);
    line-height: 125%;
    font-weight: 600;
    resize: none;
    border: none;
    outline: none;
}

.form input::placeholder,
form input::placeholder {
    color: var(--gray-1);
}

.form input[type="number"],
form input[type="number"] {
    -moz-appearance: textfield;
}

.form input[type="number"]::-webkit-inner-spin-button,
.form input[type="number"]::-webkit-outer-spin-button,
form input[type="number"]::-webkit-inner-spin-button,
form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.popup-overlay,
.modal-success:not(.popup-window) {
    display: none;
}

.modal-success.open {
    display: block;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 508px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(-45%);
    opacity: 0;
    z-index: 55;
    transition: .15s ease-out;
}

.modal-success:not(.popup-window).visible {
    opacity: 1;
    transform: translateY(-50%);
}

.modal-success:not(.popup-window) .modal-holder {
    position: relative;
    height: 100%;
    padding: 46px 32px;
    border-radius: 20px;
    background-color: var(--main-color);
    overflow: hidden;
    z-index: 2;
}

.modal-success .modal-holder .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 454px;
    margin-bottom: 24px;
}

.modal-success .modal-content .success-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 24px;
}

.modal-success .modal-content .success-icon svg {
    fill: var(--white-color);
    fill-opacity: .6;
}

.modal-success .modal-content .modal-title {
    font-size: var(--h2-size);
    font-weight: 700;
    line-height: 100%;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 16px;
}

.modal-success .modal-content .modal-subtitle {
    font-size: var(--p2-size);
    color: var(--white-color);
    line-height: 125%;
    font-weight: 600;
    text-align: center;
}

.modal-success .modal-holder .modal-time {
    font-size: 14px;
    line-height: 129%;
    font-weight: 600;
    text-align: center;
    color: var(--white-color);
    opacity: 0.6;
}

.modal-success .modal-holder .modal-time span {
    opacity: 1;
}

.header-top .buttons-wrapper span.circle-counter,
.circle-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    background-color: var(--main-color);
    color: var(--white-color);
}

@media screen and (max-width: 769px) {
    form input:not(.search-input,.btn-default) {
        line-height: normal;
    }
}
