@charset "UTF-8";

.modalArea {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 550px;
    padding: 10px 15px;
    background-color: #fff;
    max-height: 85vh;
    overflow: auto;
    border-radius: 20px;
}

.modalContents {
    max-width: 400px;
    margin: 1.5em auto;
    padding: 0 0.5em;
    letter-spacing: 1.5px;
    text-align: left;
}

.modalContents h2 {
    text-align: center;
}

.modalContents h3 {
    margin: 1.5em 0.5em 0.25em;
    border-bottom: 2px solid #ccc;
}

.modalContents li {
    margin: 0.25em;
}

.modalContents p {
    margin: 0 1.5em;
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    cursor: pointer;
    font-size: 1.8em;
}

.modalimg {
    width: 100%;
    max-width: 1000px;
}

#openModal-external-site {
    padding: 1.5em;
    color: #fff;
    text-decoration: underline;
    font-size: 1em;
    cursor: pointer;
}

