/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 226, 243, 0.9);
    z-index: 10000;
    display: none;
    padding: 100px 0;
    overflow-y: auto;
}

#overlay-wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
}

#overlay-content {
    background: #ffffff;
    padding: 60px 100px;
    min-width: 400px;
    max-width: 700px;
    margin-bottom: 100px;
    position: relative;
}

#overlay-content :first-child {
    margin-top: 0;
}

#overlay h2, #overlay h3 {
    color: #DE058A;
}

#overlay-loading {
    display: block;
    text-align: center;
}

#overlay-close {
    display: inline-block;
    padding: 0.5em;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 2em;
}
