/*video menu element *********************************************/


.videoElementShell{
    /*position: -webkit-sticky; /* Safari 
    position: sticky;
    top: 0;*/
    display:flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
}



.videoElementShell::after {
  content:"";
}
.videoElementShell::before{
  content:"";
}

.videoElement{
    width:100%;
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 0.1vw solid;
    border-top: 0.1vw solid;
    background-color:#ffffff;
    height:17vw;
    overflow:hidden;
    /*max-width:118.518vh;         /*max-width = videoplayer max height * aspect ration of video (2.3703703703703702) */
}
.photoElement{
    width:100%;
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 0.1vw solid;
    border-top: 0.1vw solid;
    background-color:#ffffff;
    min-height:17vw;
    overflow:hidden;
    /*max-width:118.518vh;         /*max-width = videoplayer max height * aspect ration of video (2.3703703703703702) */
}
.photoElement > .photoBox{
    display: flex;
    justify-content: center;
    width:35%;
    height:auto;
    border-left : 0.2vw solid;
    border-right : 0.2vw solid;
}
.photoElement > .photoBox > img{
    height:17vw;
    width:auto;
}
.videoElement > img{
    display: flex;
    width:35%;
    height:auto;
}
 .videoElementContainer{
    position: relative;
    display: inline-block;
    overflow:hidden;
    width:35.6%;
    top: 50%;
    transform: translateY(-50%);
 }
 
 .videoElementSizer{
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
 }

.videoInfoOverlay{
    z-index: 10; 
    cursor: pointer; 
    /*display: table-cell; */
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    min-height: 100%; 
    width:100%;
    opacity:0;
    
    
    /****************************/
    /*transition: .3s;*/
    display:flex;
    justify-content: space-around;
    flex-direction:column;
    padding-left:2vw;
    font-family: Sackers_Gothic_Medium_AT;
    color:white;
    background-color:black;
    
    /*********************/
    
}
.videoInfoOverlay:hover{
    opacity:1;
    
}
.videoInfoUnderlay{
    background-color:black;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width:35.04%;
}



.videoElement > .videoInfo, .photoElement > .videoInfo{
    display:flex;
    justify-content: space-around;
    flex-direction:column;
    padding-left:1vw;
    width:65%;
    font-family: Sackers_Gothic_Medium_AT;
}
.videoElement > .videoInfo > h1, .videoInfoOverlay > h1 {
    font-size: 2vw;
}
.videoElement > .videoInfo > h2, .videoInfoOverlay > h2  {
    font-size: 1vw;
}


/**********************************************************************/

.scrollerExternal{
    width:100vw;
    height:17vw;
    overflow:hidden;
    /*overflow-y: visible;*/
    margin:0;
    padding:0;
}
.scrollerWrapper{
    position: relative;
    width:100vw;
    height:17vw;
    overflow:hidden;
    /*overflow-y: visible;*/
    margin:0;
    padding:0;
}

.scrollLeft{
	position: relative;
    animation: infiniteLeft 50s infinite linear;
    overflow-y: visible;
}
.row_container{
    display:flex;
    justify-content:flex-start;
    width:200vw;

}
@keyframes infiniteLeft{ /*CSS3 animation*/
  0%{
    -moz-transform: translateX(0vw);
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
  100%{
    -moz-transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }

}


.scrollRight{
	position: relative;
    animation: infiniteRight 30s infinite linear;
}
.row_container{
    display:flex;
    justify-content:flex-start;
    width:200vw;

}
@keyframes infiniteRight{ /*CSS3 animation*/
  0%{
    -moz-transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100%{
    -moz-transform: translateX(0vw);
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
}
/************************************************************************/
.textElementShell{
    display:flex;
    justify-content:space-around;
}


@media screen and (min-width: 801px) {
    .textBlurbBox {
          font-size: 1vw;
          padding:1%;
    }
}

@media screen and (max-width: 800px) {
    .textBlurbBox {
        font-size: 2.5vw;
        overflow-wrap: normal;
    }
}
@media (orientation: landscape) {
    .textElementShell {
        flex-direction: row;
    }
    .textBlurbBox{
        width:48%;
        padding:1%;
    }
}

@media (orientation: portrait) {
    .textElementShell {
        flex-direction: column;
    }
    .textBlurbBox{
        width:90%;
        padding:5%;
    }
}


.textBlurbBox{
    border : 0.1vw solid;
    min-height:17vw;
    
    
}
.right{
    text-align: right;
}