/* Modal */

#legal-link2 {
    cursor: pointer;
}

.modal-overlay2 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.464);
}

.modal2 {
    border-radius: 30px;
    display: none;
    position: fixed;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    background-color: white;
    overflow: auto;

}

@media screen and (max-width: 1100px) {
    .modal2 {
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        max-width: 90%;
        max-height: 90%;
    }
}

.modal-content2 {
    padding: 20px;
    width: 100%;
}

.close2 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close2:hover,
.close2:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal2 p {
    color: black;
}