.modal-panel {
    display: none;
    position: fixed;
    z-index: 10000;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(35, 48, 58, 0.35)
}

.modal-window {
    background-color: antiquewhite;
    margin: 15% auto;
    border: 1px solid #888;
    border-radius: 5px;
    width: 40%;
    position: relative;
}

.modal-header {
    padding: 8px 16px;
    background-color: aliceblue;
    color: black;
    font-weight: bold
}

.modal-body {
    padding: 35px;
}

.text-container {
    background-color: rgba(102, 103, 98, 1);
    padding: 60px 0px;
    text-align: center;
    border-radius: 10px;
}

#modal-buttons-div {
    display: none;
    padding: 16px;
    justify-content: space-evenly;
}