.popup_code_style {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup_content {
    background-color: white;
    margin: 15% auto;
    padding: 5vw; 
    border: 1px solid #888;
    width: 70%; 
    max-width: 400px; 
    border-radius: 10px;
    height: auto; 
}

.close_btn_popup {
    color: #fff;
    float: right;
    margin-top: 2vw; 
    margin-right: 5vw; 
    font-size: 4vw; 
}


@media (max-width: 768px) {
    .popup_content {
        width: 90%; 
    }
}


@media (max-width: 320px) {
    .popup_content {
        padding: 10vw; 
        width: 95%;
    }
}
