.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 50;
}
.overlay.hide {
    display: none;
}

.trailer_container {
    background: #fff;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 500px;
    width: 90%;
    max-width: 850px;
    transform: translate(-50%, -50%);
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

@media screen and (max-width: 730px) {
    .trailer_container {
        height: 380px;
    }
}

@media screen and (max-width: 480px) {
    .trailer_container {
        padding: 2px;
        height: 300px;
    }
}
@media screen and (max-width: 300px) {
    .trailer_container {
        height: 240px;
    }
}
