/* xs */
@media (max-width: 575px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 70px;
        right: 30px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* sm */
@media (min-width: 576px) and (max-width: 767px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 70px;
        right: 30px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* md */
@media (min-width: 768px) and (max-width: 991px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 50px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 80px;
        right: 100px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* lg */
@media (min-width: 992px) and (max-width: 1199px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 100px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 100px;
        right: 50px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}
  
/* xl */
@media (min-width:1200px) and (max-width: 1399px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 150px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 80px;
        right: 100px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* xxl */
 @media (min-width: 1400px) and (max-width: 1599px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 200px;
    z-index: 9999;
    }

    .close-popup {
    font-size: 70px;
    color: #FFFFFF;
    position: absolute;
    top: 80px;
    right: 180px;
    cursor: pointer;
    }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

}

/* xxxl */
@media (min-width: 1600px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 200px;
    z-index: 9999;
    }

    .close-popup {
    font-size: 70px;
    color: #FFFFFF;
    position: absolute;
    top: 100px;
    right: 350px;
    cursor: pointer;
    }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

}

