.modal-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.5);
}

.modal {
    overflow: hidden;
    position: relative;
    /*max-width: 90%;*/
    width: 50%;
    max-height: 90%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background-color: #FFFFFF;
    padding: 2rem;
}

.modal-content {
    overflow: auto;
    height: 100%;
}

.modal-footer {
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    background-color: #f5f5f5;
    margin-top: 1rem;
}

.special-panel-buttons {
    margin-top: 1rem;
}

@media (max-width: 1439px) {
    .modal {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .modal {
        width: 90%;
    }
}
