.modal{
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
    z-index: 100;
}

.modal[hidden]{
    display: none !important;
}

.modal__content{
    max-width: 640px;
    max-height: 732px;
    padding: 70px 30px 70px 70px;
    width: 100%;
    height: 95%;
    background: white;
    position: relative;
    box-shadow: 0px 0px 200px 0px #00000066;
}

.modal__close{
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
}

.modal__text{
    max-height: 75%;
    overflow: auto;
}

.modal__text-title{
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    max-width: 496px;
}

.modal__text-main{
    margin-top: 38px;
    max-width: 496px;
    font-family: Libre Franklin;
font-weight: 500;
font-size: 13px;
line-height: 18px;
}

.modal__text-main ul{
    margin: 16px 0;
    padding-left: 18px;
}

.modal__text-main li{
    margin-bottom: 8px;
}

.modal__checkbox{
   display: flex;
    margin-top: 32px;
    gap: 10px;
    align-items: flex-start;
}

.modal__checkbox-text{
    font-weight: 400;
    font-size: 11px;
    line-height: 11px;
    color: #5E5E5E;
}

.modal__button{
    pointer-events: none;
    opacity: 0.5;
    background: #EAEAEA;
    padding: 14px 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    border-radius: 50px;
    margin-top: 32px;
    border: none;
}

.modal__button--active{
    pointer-events: auto;
    opacity: 1;
    background: #7A0E30;
    color: #fff;
    cursor: pointer;
}

.modal__checkbox-input{
    margin-top: 4px;
}
