
/* ============start
      MODALS 
   ============ */
   
   
   
.modal-container {
    position: fixed;
    display: grid;
    place-items: center;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.651);
    font-family: 'Roboto', sans-serif;
}




.modal {
    position: relative;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
}

.modal span {
    position: absolute;
    top: -1.5em;
    right: 0;
    cursor: pointer;
    color: white;
    font-size: 2rem;
}

.modal .action {
    padding-top: 1rem;
    justify-content: space-between;
}

.modal button {
    width: 45%;
    padding: 10px;
    cursor: pointer;
    font-size: 1.1em;
}

.modal-cancel {
    border: 1px solid grey;
    background-color: white;
}

.modal-ok {
    background-color: #2874f0;
    color: white;
    border: none;
}
