#popup_overlay{
    position: fixed;
    inset: 0;
    z-index: 1000;
}

#close_btn{
    font-size: 60px;
    color: #000;
    background: none;
    position: absolute;
    top: -10px;
    right: 5px;
}

.popup{
    background-color: rgba(255, 255, 255, 0.75);
    width: 50%;
    height: 48vh;
    position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    text-align: center;
    align-content: center;
    border: 2px solid #333;
}

.popup p{
    font-size: 26px;
}

.popup .top{
    margin-bottom: 70px;
}

.popup span{
    display: none;
}


@media only screen and (max-width: 1280px){
	.popup{
        width: 70vw;
        height: 40vh;
    }

    .popup p{
        font-size: 20px;
    }

    .popup .top{
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 1024px){
    .popup{
        height: 40vh;
    }

    .popup p{
        font-size: 18px;
    }

    .popup span{
        display: inline;
    }
}
@media only screen and (max-width: 768px){
    .popup{
        width: 80%;
    }

    #close_btn{
        font-size: 28px;
        top: -5px;
    }

    .popup p{
        font-size: 14px;
    }

    .popup .top{
        margin-bottom: 40px;
    }

    .popup span{
        display: inline;
    }

}
@media only screen and (max-width: 480px){
    .popup{
        width: 92%;
        height: 20%;
        top: 38%;
    }

    .popup p{
        font-size: 10px;
    }

    .popup .top{
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 400px){
    .popup{
        height: 25%;
        top: 45%;
    }

    .popup .top{
        margin-bottom: 20px;
    }
}