﻿#__modal-cover
{
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

.__modal-popup {
    display: none;
}

.__modal-popup-close {
    text-align: right;
    margin-right: 5px;
    margin-top: 5px;
    color: var(--c-mid-grey);
    cursor: pointer;
}

.__modal-popup-close img {
    max-height: 20px;
    cursor: pointer;
    padding-right: 20px;
    padding-top: 10px;

}

.__modal-popup {
    background-color: var(--c-white);
    border-radius: 10px;
    position: absolute;
    z-index: 200;
    min-width: 500px;
    max-width: 600px;
    border: solid 1px var(--c-mid-grey);
}

.__modal-popup h1{
    margin-top: 0;
}


.__modal-popup p {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.015em;
    line-height: 1.5;
    color: #222;
}

.__modal-popup-content-wrapper {
    padding: 10px;
}