.popup_modal h1 {
    font-size: 20px;
}
.popup_modal button {
    margin: 0px auto;
    margin-top: 20px;
}
.popup_modal {
    position: fixed;
    top: 0px;
    pointer-events: none;
    left: 0px;
    background: rgba(51,51,51,0.9);
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}
.popup_modal.active {
    opacity: 1;
    pointer-events: auto;
}
.popup_modal.active .box {
    top: 50%;
}
.popup_modal#success h1 {
    font-size: 1.5em;
}
.popup_modal .close {
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
    color: #ddd;
}
.popup_modal .box {
    background: #fff;
    display: block;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s;
    height: auto;
    min-width: 700px;
    max-width: 90%;
    max-height: 80%;
}
.popup_modal .box .content_container::-webkit-scrollbar {
    display: none;
}
.popup_modal .box .content_container{
    height: 100%;
    overflow: auto;
}
.popup_modal .popup_video{
    width: 800px;
}
.popup_modal_text{
    margin-top: 2em;
    text-align: left;
}

.news-popup-content{
    padding: 30px 0;
    text-align: left;
    width: 100%;
    max-height: 655px;
    overflow-y: auto;
}

@media(max-width: 768px) {
    .news-popup-content{
        max-height: 355px !important;
    }
}
@media (max-width:1024px)  {
    .popup_modal .popup_video{
        width: 500px !important;
    }
    .popup_modal .box {
        min-width: 80%;
    }
}
@media (max-width:900px)  {
    .popup_modal .popup_video{
        width: 450px !important;
    }
}
@media (max-width:768px)  {
    .popup_modal .popup_video{
        width: 250px !important;
    }
}
@media (max-width:375px)  {
    .popup_modal .popup_video{
        width: 200px !important;
    }
}
