.idivplatforms-videos {
    display: flex;
    align-items: stretch;
    flex-flow: row wrap;
    width: 100%;
    margin-bottom: 2em;
}
.idivplatforms-videos * {
    box-sizing: border-box;
}
.videoScroller {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 150px;
}
.videoScroller .scrollButton {
    position: absolute;
    top: 10px;
    height: 80px;
    width: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: rgba(200, 200, 200, 0.6);
    cursor: pointer;
    z-index: 99;
}
.videoScroller .scrollButtonLeft {
    left: 0;
}
.videoScroller .scrollButtonRight {
    right: 0;
}
.videoScroller .scrollerContent {
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    transition: 0.25s ease-in-out;
    padding-left: 170px;
}
.scrollerContent .videoListElement {
    display: flex;
    flex-flow: column nowrap;
    width: 150px;
    height: 150px;
    opacity: 0.7;;
}
.scrollerContent .videoListElement:hover,
.scrollerContent .videoListElement[data-active="1"] {
    opacity: 1;
}
.scrollerContent .videoListElement+.videoListElement {
    margin-left: 20px;
}
.videoListElement .videoPreview {
    width: 150px;
    height: 100px;
    cursor: pointer;
    background-position: center;
    background-size: cover;
}
.videoListElement .videoSubtitle {
    margin-top: 0.5em;
}
.videoDetails {
    width: 100%;
    display: none;
    flex-flow: column nowrap;
    margin-bottom: 1em;
}
.videoDetails[data-active="1"] {
    display: flex;
}
.videoDetails .videoSubtitle {
    width: 100%;
    margin: 0;
    margin-top: 0.5em;
    padding: 0;
    font-weight: bold;
}

.videoDetails .videoMedia {
    width: 100%;
}

.videoDetails .videoMedia img {
    width: 100%;
    height: auto;
}

.videoDetails .videoMedia video {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .videoScroller {
        height: 170px;
    }
    .videoScroller .scrollerContent {
        padding-left: 220px;
    }
    .scrollerContent .videoListElement {
        width: 200px;
        height: 170px;
    }
    .videoListElement .videoPreview {
        width: 200px;
        height: 150px;
    }

    .videoScroller .scrollButton {
        height: 80px;			
    }
}