.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999999999999999999999;
    background: rgb(0 0 0 / 65%);

   
    justify-content: center;
    align-items: flex-start;
    overflow-y: scroll;

    padding: 60px 15px;
	


}

.modal__wrapper {
    width: 450px;
    padding: 25px 25px 25px 25px;
	margin:auto;
    
}

.modal--wrapper {
    background-color: white;
    border-radius: 5px;

}

.modal__close-button {
    display: flex;
    flex-direction: initial;
    justify-content: flex-end;  
    font-size: 25px;
}



.modal--close::before {
    content: "\2716";
    cursor: pointer;
}

.modal__inner {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.modal__text {
    margin-bottom: 20px;
}

.modal-text__title {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 30px;
}

.modal-text__paragraph {
    font-size: 20px;
	line-height: 120%;
}

.modal__form-wrapper {
    margin-bottom: 20px;
}

.form__mobile{
    width: 100%;
    height: 39px;
    padding: 10px;
	margin-bottom:10px;
    
} 
.form--mobile{
    border: solid 0;
    border-radius: 5px;
    background-color: #dadada;
    font-size: 16px;
    outline: none;
	color: #00000042;
}

.form_check {
	display:flex;
}

.form_check input {
	margin-top: 6px;
    margin-right: 5px;
}

.modal__button{
    width: 100%;
    height: 39px;
    margin-bottom: 20px;
    padding: 0;
    
} 
.modal--button{
    border: solid 0;
    border-radius: 5px;
    background-color: #dadada;
    font-size: 25px;
    outline: none;
}

.button__mobile{
    width: 100%;
    height: 39px;
    margin-bottom: 20px;    
    border: solid 0;
    border-radius: 5px;
    font-size: 20px;
    background-color: #3f815d;
    color: white;
    text-transform: uppercase;
} 

.button--mobile:hover {
    background-color: #3F8141;
    color: white;
    cursor: pointer;
    transition: all ease .4s;
    text-decoration: none;
}

/* media */ 

@media(max-width:450px) {

    .modal-text__title {
        font-size: 22px;
    }

    .modal-text__paragraph {
        font-size: 18px;
    }
}

@media(max-width:350px) {

    .modal-text__title {
        font-size: 18px;
    }

    .modal-text__paragraph {
        font-size: 15px;
    }
}