/*** Modal ************************************************************************************************************/
.modal{
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 10;
    display: none;
}
.modal .modal-content{
    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
}
.modal .modal-content > div:first-of-type{
    border-bottom: 1px solid #E1E1E1;
    padding: 30px 20px;
    text-align: center;
}
.modal .modal-content > div:first-of-type h3{
    margin: 0 0 15px 0;
}
.modal .modal-content > div:first-of-type p{
    font-size: 14px;
    margin: 0;
}
.modal .modal-content > div:last-of-type{
    background-color: var(--dark-grey-3);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 15px 20px;
}
.modal .modal-content > div:last-of-type button{
    width: 150px;
    margin: 0;
    border-radius: 2px;
}
.modal .modal-content > div:last-of-type button.cancel{
    margin-right: 15px;
}
@media (max-width: 575px) {
    .modal{
        padding: 0 15px;
    }
    .modal .modal-content > div:last-of-type button{
        width: auto;
    }
}
