/*
* -- STYLES FOR WEBCAM CONTAINER --
* Styles used for top slider
*/

.slider{
    z-index: 1;
    overflow: scroll;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 100%;
    left: 0;
    position: fixed !important

}

.custom-slider{
	position: fixed;
	top: 0px;
	left: 0%;
	width: 100%;
    height: 100%;
}

.slider-spacer{
    /* These styles are required for the "scroll-over" effect */
    top: 100%;
}

.splash-container {
    background: #00171f;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    float: left;
}

.webcam-container{
    height:100%;
    width: 100%;
    background-color: rgba(0,23,31,.8);
    z-index: 0;
}

.webcam{
    left: 0px;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.content-wrapper{
    overflow: hidden;
}

.weather{
    overflow: hidden;
}


@media(min-width: 48em){
    .webcam{
        background-size: contain;
    }
}

@media (max-width: 63.99em) {
    .webcam{
        aspect-ratio: 16 / 9;
        background-position: left;
        background-size: contain;
    }
    .splash-container {
        overflow-x: scroll;
    }
    
    .weather{
        overflow-x: scroll; /* Allow vertical scrolling */
        scrollbar-color: #c5c5c5 #004777
    }
}