/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: #000000DD;
}

/* Modal Content */
.modal-content {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content > * {
    max-width: 90%;
    max-height: 90%;
}

/* The Close Button */
.close, .prev, .next, .slideNum {
    cursor: pointer;
    color: white;
    padding: 10px;
    margin: 0 30px 0 30px;
    font-size: 35px;
    font-weight: bold;
    user-select: none;
    position: absolute;
}

.close, .slideNum {
    top: 0;
}

.close, .next {
    right: 0;
}

.prev, .next {
    top: 50%;
    width: auto;
    margin-top: -50px;
}

.prev, .slideNum {
    left: 0;
}

.prev:hover, .next:hover, .close:hover, .close:focus {
    color: #999;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.8);
}
