/* --- The intro modal that shows at the start --- */

.vanilla-modal.modal-visible-intro .modal-intro {
    z-index: 99;
    opacity: 1;
    transition: opacity 0.2s;
}
.modal-visible-intro .modal-inner-intro {
    z-index: 100;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s, transform 0.2s;
}

.vanilla-modal .modal.modal-intro {
    background: transparent;
    left: -4px;
}

.vanilla-modal .modal-intro > div {
    max-width: 100%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0px 0px 14px 0px rgb(220, 220, 220);
}

.vanilla-modal .modal-intro > div, .vanilla-modal .modal-intro > div > div {
    max-width: 100%;
    width: 100vw;
}


/*
.modal-intro {
    z-index: 99;
    opacity: 1;
    transition: opacity 0.2s;
}
.modal-intro > div {
    z-index: 100;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s, transform 0.2s;
}

.modal-intro {
    background: transparent;
    left: -4px;
}

.modal-intro > div {
    max-width: 100%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0px 0px 14px 0px rgb(220, 220, 220);
}

.modal-intro > div, .modal-intro > div > div {
    max-width: 100%;
    width: 100vw;
}
*/

/* ---- Styling of content within the modal ---- */

#intro-bar {
    text-align: center;
    padding: 30px 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

#intro-welcome {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 50px;
    color: #000000;
}

#intro-unesco {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #707070;
    margin-top: 0.6em;
}

#intro-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 46px;
    line-height: 1.3;
    color: #000000;
}

#intro-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.3;
    margin-top: 0.2em;
    color: #000000;
}

#intro-subtext {
    margin-top: 3em;
    font-family: 'IBM Plex Serif', serif;
    line-height: 1.8;
}

#intro-info {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #206CA9;
    margin-top: 2em;
    margin-bottom: 1em;
}

#intro-info a {
    font-weight: 500;
    color: inherit;
}

#intro-legend {
    cursor: pointer;
}