/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999;
    /* Sit on top */
    padding-top: 150px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    display: flex;
    flex-wrap: wrap;
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 850px;
    border-radius: 8px;
}


/* The Close Button */

.close {
    width: 100%;
    padding: 0.5em 0.5em 0 0.5em;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content .left-col {
    padding: 2em;
    line-height: 160%;
}

.modal-content .left-col .container-data {
    display: flex;
    align-items: center;
    margin: 1em 0;
}

.modal-content .left-col .container-data p {
    margin: 0 0.5em;
    font-size: 16px;
    line-height: 160%;
}

.modal-content .left-col .small-text {
    font-weight: bold;
    font-size: 13.6794px;
    color: #999999;
    margin: 1em 0;
}

.modal-content .left-col h4 {
    margin: 1em 0;
}

@media screen and (max-width: 950px) {
    .modal-content {
        width: 80%;
        flex-direction: column-reverse;
    }
    .days {
        width: 100%!important;
    }
    .weekdays {
        width: 100%!important;
    }
}