.x-y {
    min-height: 200vh;
}
.body--fixed {
    overflow-y: hidden;
}
.open-modal {
    background: #918d8d;
    max-width: 600px;
    max-height: 50px;
    border-radius: 5px;
    font-size: 24px;
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7c7c7cc1;
    transition: opacity .5s;
opacity: 1;
}
.modal--close{
transition: opacity .5s, transform .1s .4s;
opacity: 0;

transform: scale(0);
}
.modal__iteam {
    position: relative;
    max-width:  50vw;
    height: 40vh;
    padding: 40px 10px 10px 10px;
background: #fff;
border-radius: 20px;
}
.form__title {
    position: absolute;
    top: 10px;
    font-weight: 600;
}
input {
    border: 1px solid #a0a0a0;
}
.modal__close {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 20px;
    font-weight: 700;
    background: none;
    border: none;
}

.modal__btn-send {
position: absolute;
bottom: 40px;
right: 10px;
left: 10px;
height: 50px;
font-size: 20px;
}