.show__credit-popup {
    font-weight: 600;
    font-size: 18.2055px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--main-color);
    padding: 13px 53px;
    border: unset;
    background: #fff;
    cursor: pointer;
}
.show__credit-popup:hover {
    background: rgb(211, 211, 211);
    transition: all 0.3s;
}
.credit__popup {
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.credit__popup.active {
    visibility: visible;
    opacity: 1;
    z-index: 21;
    pointer-events: all;
}
.credit__popup-body {
    position: relative;
    max-width: 920px;
    padding: 36px 27px 15px 35px;
    background: url("./credit__popup_bg.png") center center/cover no-repeat;
}
.credit__popup-close {
    position: absolute;
    top: 23px;
    right: 23px;
    width: 17px;
    height: 17px;
    cursor: pointer;
}
.credit__popup-close span {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}
.credit__popup-close span::before,
.credit__popup-close span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background: black;
}
.credit__popup-close span::before {
    transform: rotate(45deg);
}
.credit__popup-close span::after {
    transform: rotate(-45deg);
}
.credit__popup-ttl {
    /* font-family: 'Inter'; */
    font-weight: 800;
    font-size: 23.2294px;
    line-height: 28px;
    color: #000000;
}
.credit__popup-ttl span {
    color: #900c3e;
}
.credit__popup-benefs {
    margin-top: 20px;
}
.credit__popup-img {
    position: absolute;
    max-width: 500px;
    /* transform: rotateY(180deg); */
    top: 15%;
    right: 0;
    pointer-events: none;
}
.credit__popup-benef {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 265.52%;
    color: #000000;
}
.credit__popup-benef::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 34px;
    height: 34px;
    background: rgba(255, 84, 1, 0.09);
    border-radius: 50%;
}
.credit__popup-benef span {
    font-weight: 700;
}
.credit__popup-condition {
    font-weight: 400;
    font-size: 12.9176px;
    line-height: 106.52%;
    color: #ff5401;
}
.credit__popup-form {
    margin-top: 70px;
}
.credit__popup-form form {
    display: flex;
    column-gap: 70px;
    width: unset;
    border: unset;
    padding: unset;
}
.credit__popup-form form .main-placeholder-input {
    margin-bottom: unset;
    position: relative;
}
.credit__form-inputs {
    display: flex;
    column-gap: 16px;
}
.credit__popup-form form input[type="text"],
.credit__popup-form form input[type="tel"] {
    position: relative;
    height: 45px;
    width: 205px;
    border: unset;
    padding: 7px 8px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 12.2721px;
    line-height: 21px;
    color: #141414;
    outline: unset;
    background: #fff;
}
.credit__popup-form form .main-placeholder-input::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 60%;
    height: 2px;
    background: #900c3e;
}
.credit__popup-form input::placeholder {
    font-weight: 400;
    font-size: 12.2721px;
    line-height: 21px;
    color: #141414;
}
.model-page__form.credit_model__form .btn {
    cursor: pointer;
    background: #900c3e;
    border-radius: 6px;
    font-weight: 800;
    font-size: unset;
    line-height: 20px;
    color: #ffffff;
    border: unset;
    padding: 8px 64px 11px;
    width: max-content;
}
.model-page__form.credit_model__form .btn:hover {
    background: #800c38;
    transition: all 0.3s;
    opacity: unset;
}
.model-page__form.credit_model__form .btn.btn_horizontal_lines:before {
    width: unset;
}
.model-page__form.credit_model__form .btn.btn_horizontal_lines:after {
    width: unset;
}
.credit__popup-agreement {
    margin-top: 8px;
    font-weight: 400;
    font-size: 9.0137px;
    line-height: 11px;
    color: rgba(20, 20, 20, 0.5);
}
.credit__popup-agreement a {
    color: #900b3e;
    display: unset;
    pointer-events: none;
    cursor: none;
}
@media (max-width: 768px) {
    .credit__popup-body {
        background: url("./credit__popup_mob_bg.png") center center/cover
            no-repeat;
        padding: 239px 38px 19px;
    }
    .credit__popup-ttl {
        font-weight: 800;
        font-size: 15.8532px;
        line-height: 19px;
    }
    .credit__popup-benef {
        font-weight: 400;
        font-size: 11.0588px;
        line-height: 265.52%;
    }
    .credit__popup-benef::before {
        width: 23px;
        height: 23px;
    }
    .credit__popup-form {
        margin-top: 10px;
    }
    .credit__popup-form form {
        flex-direction: column;
    }
    .credit__form-inputs {
        flex-direction: column;
    }
    .credit__popup-form form input[type="text"],
    .credit__popup-form form input[type="tel"] {
        width: 100%;
        margin-bottom: 22px;
        height: unset;
    }
    .model-page__form.credit_model__form .btn {
        width: 100%;
    }
    .credit__popup-img {
        width: 100%;
        top: 10%;
        left: 0;
    }
    .credit__popup-img img {
        width: 80%;
        margin: auto;
    }
    .credit__popup-condition {
        position: absolute;
        left: 13px;
        top: 14px;
        background: #fff;
        padding: 5px 10px;
        border-radius: 60px;
    }
    .credit__popup-close span::before,
    .credit__popup-close span::after {
        background: #fff;
    }
}
@media (max-width: 360px) {
    .credit__popup-body {
        max-width: 90%;
    }
    .credit__popup-img {
        top: 15%;
    }
}
