/* Modal */
#modal-overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s ease;
    z-index: 999;
}

#modal-wrapper {
    position: relative;
    background: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: 20px 20px 50px 15px grey;
}

#modal-close {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 20px;
    padding: 0;
    background: transparent;
    font-size: 30px;
    color: #2b2b2b;
    font-weight: normal;
    margin-left: auto;
    margin-top: 0;
    margin-right: 5px;
    cursor: pointer;
    border: 0;
}

#modal-content {
    padding: 20px 40px;
    width: 100%;
}

#modal-caption {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

.visible {
    visibility: visible;
    opacity: 1;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

