.modal{
    position: fixed;
    z-index: 999999999999;
    left: 50%;
    width: 100%;
    display: flex;
    background: #F1F3F4;
    top: 0;
    transform: translateX(-50%);
    bottom: 0;
}
.modal p{
    font-size: 25px;
    text-align: center;
    color: #A5A1A1
;
}
.modal_top{
    display: flex;
    justify-content: space-between;
    align-items: center;    padding-top: 20px;
}
.modal_top button{
    border: 0;
    background: 0;
    color: #000;
}
.modal_content{

}
.modal_content i {
    color: #939393;     font-weight: 300;
 }


@media(max-width: 992px) {
    .modal{
        overflow-y: scroll;
    }
}