.no-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}
.modal {
    border-radius: 30px;
    box-shadow: 0 0 5px #990a6e;
    min-width: 250px;
    max-width: 80% !important;
    min-height: 50px;
    max-height: 90% !important;
    transition: 200ms ease-in-out all;
    opacity: 1;
    transform: scale(1);
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    background-color: #121212;
    overflow: hidden;
    bottom: none;
}
.modal.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    bottom: -300px;
}
.modal::backdrop {
    background-color: #00000099;
    backdrop-filter: blur(10px);
    transition: 200ms ease-in-out all;
    opacity: 1;
}
.modal.hide::backdrop {
    opacity: 0;
    background-color: transparent;
    backdrop-filter: none;
}
/* Main done */

.modal .top {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    height: 50px;
    padding: 20px;
    background-color: #121212;
    box-shadow: 2px 0 20px #2e2e2edc;
    color: #fff;
}
.modal .close {
    position: absolute;
    z-index: 5;
    top: 0px;
    right: 10px;
    font-size: 36px;
    color: #a0a0a0;
    font-weight: 800;
    cursor: pointer;
    transition: 100ms ease-in-out all;
    box-shadow: none;

}
.modal .close:hover {
    filter: drop-shadow(0 0 5px #990a6e);
}
.modal .footer {
    bottom: 0px;
    margin: 0;
    padding: 20px 0 20px 0;
    width: 100%;
}
.modal .modal-closer {
    background-color: #610b8b;
    color: #fff;
    font-size:  20px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #fff;
    padding: 10px;
    transition: 100ms ease-in-out all;
}
.modal .modal-closer:hover {
    background-color: #fff;
    color: #610b8b;
    border: 2px solid #610b8b;
}

.modal .content {
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: space-around;
    max-height: 55vh;
    flex-wrap: wrap;
    flex-direction: row;
}
.modal .content .box {
    margin: 20px;
    border-radius: 10px;
    filter: drop-shadow(0 0 5px #990a6e);
    width: 400px !important;
    height: auto;
    text-align: center;
    justify-content: center;
    align-content: center;
}
.box video, .box img {
    width: 90%;
    text-align: center;
    justify-self: center;
    border-radius: 15px;
}
.modal > * {
    -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width:768px) {
    .modal {
        max-width: 95% !important;
    }
}