.video-catalogue {
    position: relative;
    margin-top:125px;
}
        .video-catalogue > div {
            display: flex;
            flex-direction: row;
            margin-bottom: 50px;
        }
        .video-catalogue > div > div {
            flex: 1;
        }
.video-catalogue-meta {
    padding-left: 20px;
}
.video-catalogue-img {

}

.cat-ctrl-container {
    position: relative;
    margin-top:125px;
    display: flex;
    flex-direction: row;
    width: 100%;
}
    .cat-ctrl-container > div {
        padding: 20px;
    }
    .cat-ctrl-label > div {
        flex: 1;
    }
    .cat-ctrl {
        flex: 2;
    }
.cat-ctrl-subrow {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}
    .cat-ctrl-subrow > div {
        flex: 1;
    }
.cat-ctrl-search-input {
    width: 100%;
    padding: 10px;
}
.video-section-container, .video-section-info {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.video-section-btn {
    border: 3px solid #131488;
    border-radius: 10px;
    padding: 10px;
    margin: 1.5rem;
    font-size: 1.2rem;
}
    .video-section-btn:hover, .video-section-btn.video-section-btn-active {
        background-color: #131488;
        color: white;
    }
.youtube-embed-video {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}
.video-meta {
    position: relative;
    margin-top: 1rem;
    color: #111;
}
.video-meta-categories {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-content: center;
    gap: 15px;
    color: #111;
}
    .video-meta-categories a {
        font-size: 1.2rem;
        color: #131488;
    }
        .video-meta-categories a:hover {
            text-decoration: underline;
        }
.video-meta-categories-btn {
    position: relative;
    background-color: #e1e1e1;
    border-radius: 3px;
    padding: 5px 10px;
    color: #111;
    margin: 5px 10px;
}
.video-catalogue-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}
.btn-disabled {
    background-color: #f1f1f1;
    color: darkgray;
    cursor: none;
    border-color: darkgray;
}
.btn-disabled:hover {
    background-color: #f1f1f1;
    color: darkgray;
    cursor: not-allowed;
}
.search-highlight {
    background-color: #131488;
    color: #fff;
}

/* Media */
@media screen and (max-width: 1200px) {
    .video-catalogue > div {
        flex-direction: column;
    }
    .video-catalogue > div > div {
        margin-top: 50px;
    }
}
@media screen and (max-width: 900px) {
    .cat-ctrl-container {
        flex-direction: column;
    }
}
@media screen and (max-width: 680px) {
    .cat-ctrl-subrow {
        flex-direction: column;
        margin-top: 0;
    }
    .cat-ctrl-subrow > div {
        margin-top: 20px;
    }
}