/* ReSharper disable All */
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 250ms;
    visibility: hidden;
    opacity: 0;
}

    .overlay .popup {
        height: -moz-fit-content;
        height: fit-content;
        margin: 70px auto;
        padding: 28px;
        background: #fff;
        border-radius: 5px;
        width: 80%;
        position: relative;
        transition: all 250ms ease-in-out;
        flex-direction: column;
    }

        .overlay .popup > h2 {
            margin-top: 0;
            color: #333;
            font-family: "Open Sans";
            font-size: large;
            font-weight: 600;
            padding-bottom: 10px;
            margin-bottom: 5px;
        }

        .overlay .popup .close {
            position: absolute;
            top: 5px;
            right: 20px;
            transition: all 250ms;
            font-size: 30px;
            font-weight: bold;
            text-decoration: none;
            color: #333;
        }

            .overlay .popup .close:hover {
                cursor: pointer;
            }

        .overlay .popup .content {
            overflow: auto;
            font-family: "Open Sans";
        }

.overlay-show {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 700px) {
    .box {
        width: 36%;
    }

    .overlay .popup {
        width: 36%;
    }
}
/*# sourceMappingURL=popup.css.map */
