﻿/* Popup styles */
#popup-content h2 {
    margin-top: 0;
}


@media (min-width: 768px) {

    #popup-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 3000000000;
    }


    #popup-content {
        max-width: 60%;
    }

    #close-popup {
        padding: 10px 20px;
        background: none;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        float: right;
        margin-right: 1em !important;
        transform: translateY(46px);
        font-size: 30px;
        font-weight: 600;
    }
}



@media (max-width: 767px) {
    /* Popup styles */
    #popup-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        z-index: 999999;
    }


    #popup-content {
        max-width: 90%;
        margin-top: 5em !important;
    }

    #close-popup {
        padding: 5px 10px;
        background: none;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        float: right;
        margin-right: 1em !important;
        font-size: 30px;
        font-weight: 400;
        transform: translateY(36px) translateX(10px);
    }
}
