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

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    background: #FFFFFF;
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.disable-body {
    overflow: hidden;
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 44px 20px !important;
}

.language-select-wrapper {
    flex-direction: row-reverse;
}

.select-dropdown {
    display: flex;
    gap: 8px;
    position: relative;
    color: #53565a;
    width: 72px;
    flex-shrink: 0;
    height: 32px;
}

.select-dropdown * {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}


.select-dropdown.is-active input[type="text"] {
    border-color: #00aeef;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-dropdown .dropdown-img {
    transition: .3s all linear;
}

.select-dropdown.is-active .dropdown-img {
    top: 6px;
    transform: rotate(180deg);
}

.select-dropdown.is-active ul {
    display: block;
}

.select-dropdown #js-ddInput {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #01050F;
    padding: 0;
    height: 32px;
    background: transparent;
    cursor: pointer;
    user-select: none !important;
}

.select-dropdown i {
    position: absolute;
    top: 6.5px;
    right: 5px;
}

.select-dropdown ul {
    display: none;
    top: 32px;
    position: absolute;
    z-index: 999;
    color: #000000;
    right: -5px;
    list-style: none;
    padding: 0;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    margin: 0;
    width: 102px;
    margin-top: 8px;
}

/*.show {*/
/*    display: inherit !important;*/
/*}*/

.select-dropdown ul li {
    cursor: pointer;
    display: flex;
    padding: 18px 6px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #01050F;
    background: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.select-dropdown ul li:first-child {
    border-radius: 24px 24px 0 0;
    padding-bottom: 8px;
}

.select-dropdown ul li:last-child {
    border-radius: 0 0 24px 24px;
}

.select-dropdown ul li * {
    pointer-events: none;
}

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: 10px;
    border-radius: 24px;
    background: linear-gradient(to right, #3C69D7 0%, #3C69D7 var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    background: #072664;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
}

/* Track styles for Firefox */
input[type="range"]::-moz-range-track {
    height: 10px;
    border-radius: 24px;
    background: linear-gradient(to right, #3C69D7 0%, #3C69D7 var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
    border: none;
}

input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    background: #072664;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -7px;
}

/* 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, #3C69D7 0%, #3C69D7 var(--fill-percent), #ECECEC var(--fill-percent), #ECECEC 100%);
    height: 10px;
    border-radius: 24px;
}

input[type="text"] {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-align: center;

    color: #FFFFFF;
}

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

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

.calculator-indicators-wrapper .calculator-indicator {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #01050F;
}

.calculator .name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 120%;
    color: #01050F;
    margin-bottom: 6px;
}

.container {
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.hide {
    display: none !important;
}

.btn {
    background: #3C69D7;
    border-radius: 4px;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .1s all linear;
}

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

.btn-transparent {
    background: transparent;
    border-radius: 4px;
    border: 0.78px solid #FFFFFF;
    font-family: Nunito, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    text-align: center;
    color: #FFFFFF;
}

.btn-white {
    background: #FFFFFF;
    border-radius: 4px;
    font-family: Nunito Sans, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    border: none;
    color: #01050F;
}

.lines-button {
    cursor: pointer;
    background: transparent;
    padding: 15px 3px;
    border: 0;
    outline: none;
    transition: .1s all linear;
}

.lines-button:hover {
    transform: scale(1.02);
}

.lines {
    display: inline-block;
    width: 38px;
    height: 3px;
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    transition: 0.35s;
    position: relative;
    background: transparent;
    /*create the upper and lower lines as pseudo-elements of the middle line*/
}

.lines:before, .lines:after {
    display: inline-block;
    width: 38px;
    height: 6px;
    background: #FFFFFF;
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    transition: 0.35s;
    position: absolute;
    left: -3px;
    content: '';
    -webkit-transform-origin: 0.1785714286rem center;
    -moz-transform-origin: 0.1785714286rem center;
    -ms-transform-origin: 0.1785714286rem center;
    transform-origin: 0.1785714286rem center;
}

.lines:before {
    top: 0px;
}

.lines:after {
    top: -14px;
}

.lines-button.x .lines:before, .lines-button.x .lines:after {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top 0.3s 0.1s ease, transform 0.3s ease;
}

.lines-button.x.close .lines {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -moz-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
}

.lines-button.x.close .lines:before, .lines-button.x.close .lines:after {
    -webkit-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    -moz-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    -ms-transition: top 0.3s ease, transform 0.3s 0.1s ease;
    transition: top 0.3s ease, transform 0.3s 0.1s ease;
    top: 0;
}

.lines-button.x.close .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.lines-button.x.close .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.tel {
    cursor: pointer;
    transition: .1s all linear;
    display: flex;
    column-gap: 12px;
    align-items: center;
}

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

.tel .tel-text {
    font-family: Nunito Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: center;
    color: #3C69D7;
}

.sub-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: #072664;
    margin-bottom: 5px;
}

section {
    padding: 64px 0;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 67.2px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px 0px #7394E5;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    color: #01050F;
}

h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #01050F;
}

h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: center;
    color: #01050F;
}

header.side-menu-open {
    background: #FFFFFF;
}

header.side-menu-open .lines:before, header.side-menu-open .lines:after {
    background: #3C69D7;
}

header.side-menu-open .btns-wrapper .btn-transparent {
    border: 1px solid #3C69D7;
    color: #3C69D7;
}

header.side-menu-open .btns-wrapper .btn-white {
    background: #3C69D7;
    color: #FFFFFF;
}

header {
    background: #c5d2ef;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 26;
}

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

header .wrapper .phone-mobile {
    display: none;
}

header .header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .phone-wrapper {
    background: linear-gradient(108.2deg, #7BA1FF -18.65%, #3C69D7 101.88%);
    padding: 10px 22px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

header.popup-active .phone-popup {
    display: flex;
}

header .phone-wrapper.phone-popup-wrapper {
    height: 49px;
    max-width: 261px;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    top: 50%;
}

header .phone-wrapper.phone-popup-wrapper .tel {
    font-size: 24px;
}

header.popup-active .phone-wrapper.phone-popup-wrapper {
    display: flex !important;
}

header .phone-popup {
    display: none;
    height: 88px;
    background-color: rgba(1, 5, 15, 0.85);
    position: absolute;
    top: 0;
    width: 100vw;
}

header .phone-wrapper .tel {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
}

header .btns-wrapper {
    display: flex;
    gap: 12px;
}

header .btns-wrapper .btn-transparent {
    width: 88px;
    height: 33px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s all linear;
}

header .btns-wrapper .btn-transparent:hover {
    transform: scale(1.05);
}

header .btns-wrapper .btn-white {
    width: 110px;
    height: 33px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s all linear;
}

header .btns-wrapper .btn-white:hover {
    transform: scale(1.05);
}

footer {
    background: #FFFFFF;
    padding: 80px 0;
}

footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

footer .footer-wrapper .company {
    max-width: 285px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    color: #01050F;
}

footer #up-arrow {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 48px;
}

footer .rights {
    margin-top: 80px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    background: #3C69D7;
    color: #FFFFFF;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    padding-bottom: 0;
}

footer nav {
    max-width: 390px;
    width: 100%;
}

footer nav ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    column-gap: 56px;
    max-height: 83px;
    flex-wrap: wrap;
}

footer nav ul li {
    transition: .1s all linear;
}

footer nav ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #01050F;
}

footer nav ul li:hover {
    transform: scale(1.02);
}

footer .footer-info {
    max-width: 284px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-info .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #01050F;
}

footer .footer-info .wrapper span {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #3C69D7;
}

footer .footer-info .wrapper span a {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #3C69D7;
}

section.why-we-best {
    background: #FFFFFF;
}

section.why-we-best ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.why-we-best ul li {
    max-width: 390px;
    width: 100%;
    min-height: 390px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30.9px 0px #B5CAFF;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

section.why-we-best ul li:first-child {
    background: transparent;
    border: none;
    box-shadow: none;
    align-items: flex-start;
}

section.why-we-best ul li:first-child .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #072664;
}

section.why-we-best ul li:first-child .btn {
    width: 163px;
    height: 49px;
    font-size: 16px;
    margin-top: 32px;
}

section.why-we-best ul li .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;
    color: #616161;
}

section.exchange {
    background: #FFFFFF;
}

section.exchange img.mobile {
    display: none;
}

section.exchange .container > img {
    max-width: 1227px;
    width: 100%;
}

section.exchange .wrapper {
    position: relative;
}

section.exchange .wrapper .help {
    position: relative;
    z-index: 2;
}

section.exchange .wrapper .cartoon-img {
    position: absolute;
    top: -230px;
    right: -108px;
    z-index: 1;
}

section.exchange .help {
    background: transparent;
    padding: 18px 18px 36px 18px;
    border-radius: 42px;
    border: 1px solid #3C69D7;
    max-width: 1056px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
}

section.exchange .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #FFFFFF;
}

section.exchange .help .help-description {
    box-shadow: 0px 4px 30.9px 0px #B5CAFF;
    background: url("../img/eyes-img.png"), #3C69D7;
    background-repeat: no-repeat;
    background-position: 99% 100%;
    border-radius: 22px;
    padding: 40px;
}

section.exchange h3 {
    font-size: 40px;
    color: #FFFFFF;
    max-width: 677px;
    width: 100%;
    margin-bottom: 10px;
    line-height: 40px;
}

section.exchange .contacts {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

section.exchange .contacts a {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    width: 100%;
    transition: .2s all linear;
}

section.exchange .contacts a:hover {
    transform: scale(1.01);
}

section.exchange .contacts a .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: #3C69D7;
}

section.get-loan-easy {
    background: #ECF2FF;
    padding-bottom: 0;
    position: relative;
    padding-top: 12px;
}

section.get-loan-easy ul {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 631px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 40px;
}

section.get-loan-easy ul li {
    display: flex;
    gap: 16px;
    align-items: center;
}

section.get-loan-easy ul li .number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #F9F9FA;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #3C69D7;
}

section.get-loan-easy ul li .title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #01050F;
}

section.get-loan-easy .content {
    display: flex;
    justify-content: space-between;
}

section.get-loan-easy .phone {
    position: relative;
    z-index: 2;
}

section.get-loan-easy .content > .wrapper {
    max-width: 555px;
    width: 100%;
}

section.get-loan-easy h3 {
    margin-bottom: 16px;
}

section.get-loan-easy img.upper-eye {
    position: absolute;
    top: 0;
    right: 3%;
}

section.get-loan-easy img.lower-eye {
    position: absolute;
    bottom: 0;
    left: 3%;
}

section.get-loan-easy .background-img-wrapper
section.get-loan-easy .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 553px;
    width: 100%;
}

section.get-loan-easy .content .sub-title {
    margin-bottom: 8px;
    margin-top: 101px;
    text-align: left;
}

section.get-loan-easy .content .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #616161;
}

section.get-loan-easy .content .btn {
    margin-top: 16px;
    max-width: 175px;
    width: 100%;
    height: 49px;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    color: #FFFFFF;
}

section.feedback {
    background: #D0E0FF;
}

section.feedback .container {
    position: relative;
}

section.feedback h3 {
    text-align: center;
}

section.feedback ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 64px;
}

section.feedback ul li {
    max-width: 494px;
    display: flex;
    position: relative;
    gap: 24px;
    align-items: center;
}

section.feedback ul li .comment {
    max-width: 358px;
    width: 100%;
    min-height: 225px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.feedback ul li .comment .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #8694A3;
}

section.feedback ul li .comment .name {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
}

section.feedback ul li .comment > img {
    width: 40px;
    height: 34px;
}

section.feedback .feedback-ul-nav button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .5;
    transition: .1s all linear;
}

section.feedback .feedback-ul-nav button.active {
    opacity: 1;
    cursor: pointer;
}

section.feedback .feedback-ul-nav button#feedback-prev {
    transform: rotate(180deg);
    left: 30px;
}

section.feedback .feedback-ul-nav button#feedback-next {
    right: 30px;
}

section.feedback .feedback-ul-nav button#feedback-prev, section.feedback .feedback-ul-nav button#feedback-next {
    position: absolute;
    top: 231px;
    transition: .1s all linear;
}

section.feedback .feedback-ul-nav button#feedback-next:hover {
    transform: scale(1.01);
}

section.feedback .feedback-ul-nav button#feedback-prev:hover {
    transform: rotate(180deg) scale(1.01);
}

section.calculator-section {
    background: url("../img/first-screen-bg.png") center center/cover no-repeat, #c5d2ef;
    padding-top: 134px;
    padding-bottom: 120px;
}

section.calculator-section .calculator-block-wrapper {
    max-width: 854px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: linear-gradient(108.2deg, #7BA1FF -18.65%, #3C69D7 101.88%);
    border-radius: 24px;
    border: 2px solid #CCDAFF;
    display: flex;
    gap: 32px;
    margin: 24px auto 0 auto;
    padding: 24px;
    padding-top: 28px;
    position: relative;
    z-index: 4;
}

section.calculator-section .wrapper {
    position: relative;
}

section.calculator-section .wrapper .first-screen-img {
    position: absolute;
    z-index: 2;
    right: -75px;
    top: -100px;
}

section.calculator-section .calculator-block-wrapper .calculator-wrapper {
    width: 100%;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

section.calculator-section .calculator-wrapper .calculator, section.calculator-section .calculator-wrapper .loan-details {
    height: auto;
    padding: 24px 24px 48px 24px;
    border-radius: 8px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    max-width: 422px;
    width: 100%;
}

section.calculator-section .calculator-wrapper .loan-details {
    padding: 8px;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper {
    background: #F3F4F5;
    padding: 16px;
    border-radius: 4px;
    max-width: 374px;
    width: 100%;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #01050F;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .wrapper {
    display: flex;
    position: relative;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .wrapper span {
    text-wrap: nowrap;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper .dots {
    width: 100%;
    border-bottom: 1px dashed black;
    position: relative;
    bottom: 5px;
}

section.calculator-section .calculator-wrapper .loan-details .loan-details-wrapper span {
    font-weight: 700;

}

section.calculator-section .calculator-wrapper .loan-details .btn {
    width: 100%;
    height: 49px;
    font-size: 16px;
    line-height: 19px;
}

section.calculator-section .calculator-wrapper .calculator {
    width: 100%;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper {
    width: 100%;
    background: #F3F4F5;
    padding: 4px;
    border-radius: 4px;
    display: flex;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper button {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
    color: #94A2AF;
    background: #F3F4F5;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 141px;
    width: 100%;
    border: none;
    height: 35px;
    cursor: pointer;
    transition: .1s all linear;
    border-radius: 4px;
}

section.calculator-section .calculator-wrapper .calculator .btns-wrapper button.active {
    background: #3C69D7;
    color: #FFFFFF;
}

section.fast-loan {

}

section.fast-loan h2 {
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 8px;
}

section.fast-loan .text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
    margin-bottom: 40px;
}

section.fast-loan .btn {
    height: 49px;
    width: 175px;
}

section.fast-loan img {
    position: absolute;
    right: 0;
    top: 0;
}

section.fast-loan .fast-loan__wrapper {
    background: linear-gradient(108.2deg, #7BA1FF -18.65%, #3C69D7 101.88%);
    border-radius: 32px;
    padding: 54px 40px;
    position: relative;
}

section.fast-loan .fast-loan__wrapper .content-wrapper {
    max-width: 550px;
}

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #2d3436;
    color: white;
    padding: 12px 24px;
    border-radius: 12px; /* Smooth modern corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}
