.timer-modal-form__wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: -1;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease-in;
}
.modal-timer-form {
    max-width: 440px;
    margin-inline: auto;
}

.timer-modal-form__wrapper.active {
    z-index: 9101;
    background-color: rgb(0%, 12%, 20%, .4);
    opacity: 1;
    overflow-y: auto;
}

.timer-modal-form {
    position: relative;
    background: #ffffff;
    width: 660px;
    max-width: 94vw;
}
.timer-modal-form__close_icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}
.timer-modal-form__bottom_content {
    padding-inline: 1.25rem;
    padding-block: 2.5rem;
    text-align: center;
    line-height: 1.2;
}
.timer-modal-form__title {
    text-align: center;
    font-size: 1.5rem;
    color: #102D3F;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.timer-modal-form__text {
    font-size: 1rem;
    width: 516px;
    max-width: 100%;
    margin-inline: auto;
    color: #667085;
}

.timer-modal-form__top_image {
    object-fit: cover;
    height: auto;
    width: 100%;
    object-position: right;
}


.modal-timer-form__fields {
    margin-bottom: 1.5rem;
}
.modal-timer-form__fields p {
    padding-block: 0;
}
.modal-timer-form br {
    display: none;
}

.timer-modal-form__contact-form .wpcf7-spinner {
    position: absolute;
    right: 1rem;
}

.modal-timer-form__fields + p {
    display: flex;
    background: #ea6608;
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.modal-timer-form__fields input {
    border: 1px solid #EAECF0;
    padding: 1rem;
    font-size: 1rem;
    color: #667085;
    width: 100%;
    border-radius: 0.25rem;
}

.modal-timer-form__fields input {
    margin-top: 0.75rem;
}

.timer-modal-form__contact-form input[type="submit"] {
    color: #FFF;
    background-color: #EA6608;
    border: none;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    padding-block: 0.75rem;
    display: block;
    cursor: pointer;
    font-weight: 500;
}

.timer-modal-form .wpcf7 form.invalid .wpcf7-response-output {
    width: 100%;
    background: #FFF;
}

.timer-modal-form .wpcf7 form.sent .wpcf7-response-output {
    margin: 0;
}

@media screen and (min-width:490px) and (max-height: 490px) {
    .timer-modal-form__top_image {
        display: none;
    }
}