/*
* Extend stylesheet
*/

.loading-content {
    min-height: 4rem;
    width: 100%;
    background-color: #fff;
    /* transition: 1s; */
    animation-name: loading_state;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    border-radius: 5px;
    margin-top: 30px;
}

.open-yt-video {
    cursor: pointer;
}

@keyframes loading_state {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        background-color: rgba(255, 255, 255, 0.3);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.1);
    }
}