:root {
    --green-yellow: #C9F156;
    --grey: #A1AECB;
    --indigo: #21366B;
    --dark-blue: #27448F;
    --primary-text-color: #446AC9;
    --text-font-size: 20px;
    --text-small-font-size: 16px;
}

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

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    background: #FFFFFF;
}

/* BASIC STYLES */

.hidden {
    display: none !important;
}

.container {
    max-width: 1060px;
    padding: 0 20px;
    margin: 0 auto;
}

.container.first-screen-container {
    max-width: 1260px;
}

.container.header-container {
    max-width: 1660px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montseratt', sans-serif;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: 0;
    color: #222A2E;
}

h1, h2.h1 {
    font-weight: 600;
    font-size: 40px;
}

h1 {
    margin-bottom: 24px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-weight: 500;
    font-size: 20px;
}

h4 {
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    vertical-align: middle;
    color: #21366B;
}

.text {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

.text.small {
    font-size: var(--text-small-font-size);
}

.footer-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #21366B;
}

.green-yellow-color {
    color: var(--green-yellow) !important;
}

.grey-color {
    color: var(--grey) !important;
}

.indigo-color {
    color: var(--indigo) !important;
}

.dark-blue-color {
    color: var(--dark-blue) !important;
}

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

.gradient-text-bg {
    background: linear-gradient(85.93deg, #70CAC1 -33.07%, #C9F156 112.59%);
    padding: 4px;
    border-radius: 26px;
}

.d-flex-column-default {
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
}

.ai-c {
    align-items: center;
}

.ai-e {
    align-items: flex-end;
}

.ai-s {
    align-items: flex-start;
}

.jc-c {
    justify-content: center;
}

.jc-e {
    justify-content: flex-end;
}

.jc-s {
    justify-content: flex-start;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-40 {
    gap: 40px;
}

.mt-8 {
    margin-top: 8px;
}

.mb-4 {
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
}

/* Track styles for WebKit browsers (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(to right, #222A2E 0%, #222A2E var(--fill-percent), #E0E7EB var(--fill-percent), #E0E7EB 100%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 18px;
    width: 8px;
    background: #FFFEFE;
    box-shadow: 0px 0px 8px 2px #6C6C6C1A;
    cursor: pointer;
    margin-top: -3px;
}

/* Track styles for Firefox */
input[type="range"]::-moz-range-track {
    height: 4px;
    background: linear-gradient(to right, #222A2E 0%, #222A2E var(--fill-percent), #E0E7EB var(--fill-percent), #E0E7EB 100%);
    border: none;
}

input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 8px;
    background: #FFFEFE;
    box-shadow: 0px 0px 8px 2px #6C6C6C1A;
    cursor: pointer;
    margin-top: -3px;
}

/* For the unfilled portion of the track */
input[type="range"] {
    background: #ECECEC;
    border-radius: 24px;
}

/* Firefox specific - to show the unfilled portion */
input[type="range"]::-moz-range-progress {
    background: linear-gradient(to right, #222A2E 0%, #222A2E var(--fill-percent), #E0E7EB var(--fill-percent), #E0E7EB 100%);
    height: 4px;
}

input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #090630;
}

input[type="text"]::placeholder {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    color: #090630;
}

.calculator {
    max-width: 370px;
    width: 100%;
}

.calculator-details {
    max-width: 370px;
    width: 100%;
}

.calculator-details .btn {
    width: 100%;
    margin-bottom: 32px;
}

.calculator-details .additional-info {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #949494;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.calculator-calculation__list {
    background: #EEFBFF;
    padding: 24px;
    border-radius: 24px;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.calculator-calculation__list .calculator-detail {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-calculation__list li {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.calculator-calculation__list .value {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-wrapper {
    display: flex;
    gap: 48px;
}

.calculator-wrapper .calculator-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 370px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.calculator-block-wrapper {
    background: #FFFFFF;
    padding: 32px 32px 64px 32px;
    border-radius: 32px;
    max-width: 852px;
    width: 100%;
}

.calculator-indicators-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.calculator-indicators-wrapper .calculator-indicator {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #949494;
}

.calculator-details {
    max-width: 370px;
    width: 100%;
}

.calculator-details .btn {
    width: 100%;
    margin-bottom: 32px;
}

.calculator-details .additional-info {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #949494;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.calculator-calculation__list {
    background: #EEFBFF;
    padding: 24px;
    border-radius: 24px;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.calculator-calculation__list .calculator-detail {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-calculation__list li {
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

.calculator-calculation__list .value {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #239CE6;
}

.calculator-wrapper {
    display: flex;
    gap: 48px;
}

.calculator-wrapper .calculator-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 370px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.btn {
    background: #18D8A6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    max-width: 220px;
    width: 100%;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.btn:hover {
    transform: scale(1.01);
}

.btn.btn-white {
    background: #FFFFFF;
    color: #57656C;
    border: 2px solid #57656C;
}

header {
    position: fixed;
    width: 100%;
    background: #FFFFFF;
    padding: 16px 0;
    height: 75px;
}

header .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header .mobile {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btns-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 500px;
    width: 100%;
}

section.first-screen {
    padding-top: 180px;
    background: url("first-screen-bg.png") no-repeat, #94ECD5;
    background-size: cover;
}

section.first-screen .text-wrapper {
    max-width: 490px;
}

section.first-screen .btns-wrapper {
    margin-top: 40px;
    gap: 40px;
}

section.first-screen .first-screen__wrapper {
    display: flex;
    justify-content: space-between;
}

.calculator {
    max-width: 463px;
    background: #FFFEFE;
    padding: 45px 32px 48px 32px;
    border: 12px solid #222A2E;
    border-bottom: none;
    border-radius: 28px 28px 0 0;
}

.calculator .calculator-indicator {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

.calculator .calc-input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.calculator .calc-input-wrapper > .wrapper {
    max-width: 278px;
    width: 100%;
}

.calculator input[type=text] {
    width: 100%;
    max-width: 106px;
    height: 40px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: 1px solid #C0F2E5;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator .calc-title-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.calculator .calc-title-wrapper .calc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #222A2E;
}

section.get-loan {
    padding: 110px 0;
}

section.get-loan h2 {
    text-align: center;
    margin-bottom: 24px;
}

.text .bold {
    font-weight: 600;
}

section.get-loan .text {
    text-align: center;
}

section.get-loan ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

section.get-loan ul li {
    max-width: 232px;
    height: 140px;
    background: #F3F7FA;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 16px;
}

section.get-loan ul li .text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #57656C;
}

section.calculation-plan {
    padding-bottom: 110px;
}

section.calculation-plan .calculation-plan__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

section.calculation-plan .calculation-plan__wrapper .right {
    background: #F3F7FA;
    border-radius: 12px;
    padding: 32px;
    max-width: 525px;
    width: 100%;
}

section.calculation-plan .mobile {
    display: none;
}

section.calculation-plan .calculation-plan__wrapper .right .wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

section.calculation-plan .text {
}

section.calculation-plan .sc-wrapper {
    margin-top: 24px;
}

section.calculation-plan h2 {
    margin-bottom: 24px;
}

section.calculation-plan .left {
    max-width: 390px;
    width: 100%;
}

section.calculation-plan .left .text {
    margin-bottom: 32px;
}

.text.bold {
    font-weight: 600;
}

section.download-app {
    padding-bottom: 110px;
}

section.download-app .download-app__wrapper {
    background: url("download-app-bg.png") no-repeat, #94ECD5;
    background-size: cover;
    border-radius: 12px;
    padding: 32px 120px 0 70px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

section.download-app .left {
    max-width: 515px;
    width: 100%;
    padding-bottom: 32px;
}

section.download-app h2 {
    margin-bottom: 20px;
}

section.download-app ul {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

section.download-app ul li {
    max-width: 111px;
    width: 100%;
    border-right: 1px solid #FFFEFE;
}

section.download-app ul li:last-child {
    border: none;
}

section.download-app ul li .name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #222A2E;
}

section.download-app ul li .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    color: #222A2E;
    margin: 8px 0;
}

section.download-app .links-wrapper {
    display: flex;
    gap: 26px;
}

section.warning {
    padding-bottom: 110px;
}

section.warning h2 {
    text-align: center;
    margin-bottom: 16px;
}

section.warning h3 {
    margin-bottom: 32px;
    text-align: center;
}

section.warning .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.privacy-policy {
    padding-bottom: 121px;
}

section.privacy-policy .privacy-policy__wrapper {
    background: #F3F7FA;
    border-radius: 12px;
    padding: 50px 50px 70px 50px;
}

section.privacy-policy h2 {
    text-align: center;
    margin-bottom: 16px;
}

section.privacy-policy h3 {
    text-align: center;
    margin-bottom: 24px;
}

section.privacy-policy .text {
    text-align: center;
}

footer {
    padding-top: 40px;
    box-shadow: 0px 0px 8px 0px #6C6C6C1A;
}

footer .links-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

footer .links-wrapper a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #18D8A6;
}

footer .text {
    text-align: center;
}

footer .all-right-wrapper {
    width: 100%;
    background: #94ECD5;
    height: 81px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #222A2E;
}

section.payment {
    background: url("payment-bg.png") no-repeat, #94ECD5;
    min-height: 76vh;
    padding: 220px 0;

}

.payment-card {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
}

.payment-card .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #222A2E;
    margin-bottom: 16px;
}

.payment-card .control-wrapper {
    margin-bottom: 16px;
}

.payment-card .control-wrapper .err-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #F67969;
    margin-top: 4px;
    display: none;
}

.payment-card .control-wrapper.error .err-text {
    display: block;
}

.payment-card .control-wrapper .control-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
    margin-bottom: 6px;
}

.payment-card input[type="text"] {
    height: 44px;
    max-width: 344px;
    width: 100%;
    border: 1px solid #DCE0E2;
    border-radius: 8px;
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #171a1a;
}

header.payment-header {
    position: relative;
    box-shadow: 0px 4px 4px 0px #6C6C6C1A;
}

.payment-card .control-wrapper.error input[type="text"] {
    border: 1px solid #F67969;
    color: #F67969;
}

.payment-card input[type="text"]::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #859AA4;
}

.payment-card .btn {
    max-width: 343px;
    width: 100%;
    margin-top: 32px;
}

.payment-card .have-acc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #859AA4;
    margin: 16px 0 4px 0;
}

.payment-card .login {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #18D8A6;
    margin: 0 auto;
    display: block;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding-left: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

.checkbox-label a {
    color: #18D8A6;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 29%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: white;
    display: block;
    box-sizing: border-box;
    transition: background 120ms ease, border 120ms ease, transform 120ms ease;
}

.checkbox-green::before {
    border: 1px solid #E0E7EB;
}
.checkbox-red::before {
    border: 2px solid red;
}

input[type="checkbox"]:checked + .checkbox-label::before {
    background: #18D8A6;
    border: none;
}

.checkbox-label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 31%;
    transform: translateY(-68%) rotate(41deg);
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    display: none;
    box-sizing: content-box;
}

input[type="checkbox"]:checked + .checkbox-label::after {
    display: block;
}

.checkbox-wrapper {

}

.payment-card #payment-proposition .btn-white {
    margin-top: 16px;
}

.payment-card #payment-proposition .text {
    text-align: center;
    margin-top: 24px;
}

.payment-card #payment-proposition img {
    margin: 0 auto;
    display: block;
}


.payment-card #sms-code .text {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.payment-card {
    position: relative;
}

.payment-card .close-card-btn {
    background: transparent;
    border: none;
    position: absolute;
    top: 12px;
    right: 8px;
    cursor: pointer;
}

.payment-card #got-proposition img {
    margin: 0 auto;
    display: block;
    max-width: 300px;
    width: 100%;
}

.payment-card #got-proposition .text {
    margin: 16px 0 32px 0;
    display: block;
}

.payment-card .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #57656C;
}

.backdrop {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
}

.payment-card {
    position: relative;
    z-index: 30;
}

.payment-card #got-proposition {
    position: relative;
    z-index: 30;
}

section.top-propositions {
    padding: 50px 0 140px 0;
    background: #F3F7FA;
}

section.top-propositions ul li img {
    width: 100%;
    margin-bottom: 24px;
}

section.top-propositions ul {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    margin-top: 40px;
    justify-content: center;
}

section.top-propositions ul li {
    max-width: 285px;
    min-height: 427px;
    border-radius: 12px;
    padding: 32px 20px;
    background: #fff;

}

section.top-propositions h2 {
    text-align: center;
}

section.top-propositions .container, section.additional-info .container {
    max-width: 1270px;
}

section.top-propositions ul li .propositions-details {

}

section.top-propositions ul li .propositions-details .detail {
    margin-bottom: 10px;
    display: flex;
    gap: 36px;
    justify-content: space-between;
}

section.top-propositions ul li .propositions-details .detail .name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
    text-align: left;
}

section.top-propositions ul li .propositions-details .detail .value {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

section.top-propositions ul li .text {
    margin: 24px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

section.top-propositions ul li .btn {
    max-width: 280px;
    width: 100%;
}

section.top-propositions ul li .more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #18D8A6;
    margin-top: 28px;
    display: block;
    margin-inline: auto;
    text-align: center;
}

section.additional-info {
    padding: 70px 0 90px 0;
}

section.additional-info .additional-info__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;

}

section.additional-info #cookie-content .additional-info__wrapper .left, section.additional-info #cookie-content .additional-info__wrapper .right {
    gap: 0;
}

section.additional-info h2 {
    text-align: center;
    margin-bottom: 45px;
}

section.additional-info h3 {
    font-size: 20px;

}

section.additional-info .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #57656C;
}

section.additional-info .wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section.additional-info .text.border-text {
    border-left: 4px solid #94ECD5;
    padding-left: 16px;
}

section.additional-info .left, section.additional-info .right {
    max-width: 564px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

section.additional-info .text-content {
    background: #F3F7FA;
    padding: 24px;
    border-radius: 12px;
    color: #57656C;
    font-weight: 600;
    margin-bottom: 40px;
}

section.additional-info .number-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}


section.additional-info .number-content-wrapper .number {
    background: #94ECD5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    justify-content: center;
}

.additional-info-promotion {
    position: absolute;
    top: 23%;
    left: 20px;
}

.additional-info-promotion .close-promotion {
    position: relative;
    z-index: 2;
    top: -217px;
    right: -251px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.cookie-modal {
    padding: 60px 0 70px 0;
    box-shadow: 0px 0px 8px 0px #6C6C6C1A;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
}

.cookie-modal .container {
    max-width: 1280px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-modal .container .text-wrapper {
    max-width: 875px;
}

.cookie-modal .btns-wrapper {
    max-width: 245px;
    width: 100%;
    flex-direction: column;
    gap: 24px;
}

.cookie-modal h3 {
    margin-bottom: 24px;
    color: #57656C;
}

.sms-popup {
    position: absolute;
    top:30%;left: 50%;
    transform: translateX(-50%);
    z-index:100
}

.hide {
    display: none;
}