.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height:100vh;
    background-color: rgba(0,0,0,0.5);
    /*display: none;*/
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    font-size: 18px;
    background-color: white;
    /*box-shadow: rgba(99,99,99,0.6) 0px 2px 8px 0px;*/
    /*display: none;*/
    font-family: "Source Sans Pro", sans-serif;
    border-radius: 4px;
}

.modal-open {
    display: block;
}

.modal-close {
    display: none;
}


.modal-header {
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height : 70px;
    font-family: "source Sans Pro", sans-serif;
    font-weight: bold;
    background-color: #ded0b6;
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height : 160px;

}
.modal-text {
    font-size: 16px;
    font-family: "Carmen SemiBold sans-serif";
}
.modal-footer {
    border-radius: 0 0 4px 4px;
    height : 70px;
    background-color: #ded0b6;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.modal-icon-check {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-left: 4px;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.modal-icon-cross {
    display: inline-flex;
    flex-direction: column;
    margin-left: 2px;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}
.modal-btn-no {
    margin-right: 16px;
    cursor: pointer;
    border-radius: 4px;
    padding: 4px 4px 4px 8px;
    font-size: 20px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    font-weight: bold;
    background-color: #b6c4de;
}
.modal-btn-yes {
    padding: 4px 4px 4px 8px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    font-weight: bold;
    background-color: #93a8ce;
    margin-right: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 20px;
}
