.subscribe-modal {
    padding: 0 !important;
    border-radius: 20px;
    width: 600px;
    overflow: visible !important;
    font-family: "Cera Pro";
    cursor: default !important;
}

.subscribe-modal__top {
    height: 111px;
    background: url(../images/modal-bg-top.jpg) no-repeat center;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    padding: 0 45px;
}

.subscribe-modal__content {
    padding: 55px;
}

.subscribe-modal__text {
    text-align: center;
    margin-bottom: 53px;
}
.subscribe-modal__text h3 {
    font-size: 32px;
    font-weight: normal;
    margin: 0 0 60px;
}
.subscribe-modal__text p {
    font-size: 15px;
    line-height: 120%;
}

.subscribe-modal__row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.subscribe-modal__input {
    height: 50px;
    width: 301px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    font-family: "Cera Pro";
    padding: 0 20px;
    font-size: 17px;
    font-weight: normal;
}
.subscribe-modal__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.subscribe-modal__btn {
    height: 50px;
    border-radius: 25px;
    border: none;
    background: var(--base-color);
    color: #fff;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all ease 0.3s;
}
.subscribe-modal__btn:hover {
    background: var(--hover-color);
}
.subscribe-modal__btn:disabled {
    background: #CDCDCD;
    pointer-events: none;
}

.subscribe-modal__confirm {
    display: flex;
    padding-left: 50px;
    margin-bottom: 20px;
}
.subscribe-modal__confirm:last-child {
    margin-bottom: 0;
}
.subscribe-modal__confirm .checkbox {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
}
.subscribe-modal__confirm .checkbox a {
    color: var(--base-color);
    text-decoration: none;
}
.subscribe-modal__confirm .checkbox label {
    width: 36px;
    min-width: 36px;
    height: 20px;
    margin-right: 10px;
}
.subscribe-modal__confirm .checkbox label span {
    width: 16px;
    height: 16px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);
}
.subscribe-modal__confirm .checkbox input:checked + label span {
    transform: translate(16px, 0);
}

.subscribe-modal__bottom {
    height: 111px;
    background: url(../images/modal-bg-bottom.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 20px 20px;
    gap: 30px;
}
.subscribe-modal__bottom span {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.subscribe-modal__social {
    display: flex;
    gap: 10px;
}

.icon-tg3 {
    display: inline-block;
    width: 37px;
    height: 37px;
    background: url(../images/svg/tg3.svg) no-repeat center;
}

.icon-inst3 {
    display: inline-block;
    width: 37px;
    height: 37px;
    background: url(../images/svg/inst3.svg) no-repeat center;
}





/* ---------- CUSTOM ------------*/
.checkbox label span {
    margin: 2px;
}
.subscribe-modal__input-error {
    border: 1px solid rgb(255 0 0 / 51%);
}
.subscribe-modal__row-error {
    color: #ff044a;
    font-size: smaller;
    max-width: 80%;
    justify-self: center;
}
/* ---------- END CUSTOM ------------*/