html{
	/* Clear the default white bg of bulma so the colorscheme option applies */
    background-color: transparent !important;
	color-scheme: light dark !important;
}

nav{
    box-shadow: 0 2px 2px 0 black;
    background-color: #2E3440 !important;
}

#player-container{
    box-shadow: 0 0 5px 1px black;
}

.inline{
    display: inline-block;    
}

.stickToBottom{
	position: absolute;
	bottom: 0;
	left: 2%;
	z-index: 1;
}

#sliderKnob{
	width: 16px;
    height: 16px;
    border-radius: 25px;
    position: relative;
    top: -4px;
    right: -8px;
    float: right;
	display: none;
}

#seekbarcontainer{
	width: 100%;
	height: 10px;
    z-index: 10;
}

#seekbarfill{
	height: inherit;
	float: left;
	width: 0%;
}

#video-wrapper{
	line-height:1;
	margin-bottom: -2px;
    background: black;
}

.dynamic-video-container{
	position:relative;
	width:100%;
	height: 0;
	padding-bottom: 60%;  /* Height of videos as percentage of width*/
}

.dynamic-video{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

#seekbarcontainer:hover div{
	display: block;
}


@keyframes wiggle {
	0% { transform: rotate(0deg); }
	15% { transform: rotate(5deg); }
	25% { transform: rotate(-5deg); }
	40% { transform: rotate(0deg); }
	55% { transform: rotate(5deg); }
	65% { transform: rotate(-5deg); }
	80% { transform: rotate(0deg); }
	100% {transform: rotate(0deg); }
}
.shake{
	animation: wiggle 1s 1;
}

.panel-block{
	background-color: white;
}

.panel-block-active {
	background-color: lightgrey;
}

.panel-content {
	height: 300px;
	overflow: auto;
	display: none;
}
