.responsive-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* padding-top: 56.25%; 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    display: none;
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}

.wp-loading {
    max-width: 100%;
    width: 100%;
    min-height: 600px;
    border: solid 5px #1b1a1f;
    background: #000;
}

.wp-loader {
    margin: 220px auto;
    border: 8px solid #2d2c3d;
    border-top: 8px solid #d04efd;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}  

/* @media screen and (max-width: 1400px) {
    .responsive-container {
        padding-top: 117.25%;
    }
}
@media screen and (max-width: 1199px) {
    .responsive-container {
        padding-top: 118.25%;
    }
}
@media screen and (max-width: 767px) {
    .responsive-container {
        padding-top: 190.25%;
    }
} */