


#bottom_bar{
	position: fixed;
	display: flex;
	flex-direction: row;	
	bottom: 12vh;
	left: 0px;
	width: 100%;
	min-width: 100vw;
	
	min-height: 5vh;
	max-height: 6vh;
	
	background-color: var(--SKDJ-darkgreen);
	color: #ff019c;
			
	border-top: 6px solid var(--SKDJ-brightorange);
	z-index: 200;
	animation: from-bottom 4s ease forwards;
}

#bottom_bar::before{
	position: sticky;
	content: " ^ ";	
	bottom:14vh;
	left:0px;
	font-size: 18pt;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: rgba(204,0,153,0.8);
	color: #660033;
	
	

}

#bottom_bar:hover::before{
	content: "  > ";	
	background-color: rgba(102,0,51,0.8);
	color: #1535dd;
}

#bottom_bar:hover::before #bottom_bar{
	content: "  ^ ";
	height: 0px;
	background-color: rgba(255,80,80,0.8);
	color: #1535dd;
}




#dockbox{
	position: relative;
	display:flex;
	top: 0px;
	flex-direction: row;
	min-height: 100%;
	/*min-width: 350px;*/
	margin: 0 auto;
}



#dockbox .dock{
	border: 2px inset var(--SKDJ-bright-orange);
	min-width: 50px;
	min-height: 50px;
	 transition: all 0.3s ease-out;	
	 margin: auto;
	text-align: center;
	 justify-content: center;
	 align-items: center;
	 align-self: center;
	 align-content: center;
	 background: var(--SKDJ-dock-bg);
	 top:0px
	
}

#dockbox .dock:hover{
	 transform: scale(2);
	
	margin: 20px;
  	margin-top: -15px;
	top: -10px;
	position: relative;
}

.dock{
	min-width: 50px;
	min-height: 50px;
}




/*********************Search Form ****************/


#sForm{
	position: relative;
	display: flex;
	flex-direction: row;
	
	margin: auto;
	
	float: center;
	text-align: center;
	
	align-items: center;
	width: 100px;
	min-width: 100px;
	min-height: 4vh;
	max-height: 5vh;
	align-content: flex-end;
	
	box-shadow: 2px 2px #cc0066;
	
	border: 2px groove #660033;
	
	&:hover{
		width: 15%;
		min-width: 15%;
		box-shadow: 2px 2px #cc0066;
		transition: 1.5s linear all ;
	}
	&:focus{
		
		transition: 1.5s linear all;
	}
	
	
}
#sForm:hover{
	
}


#txtForm{
	position: relative;
	display: flex;
	flex-direction: row;
	float: left;
	top: 0px;
	
	width: 100px;
	min-width: 50px;
	
	height: 40px;
	min-height: 40px;
	max-height: 50px;
	border: none;
	background-color: #800033;
	
	color: white;
	align-self: ;
}

#txtForm:target{
	width: 40%;
}

#txtForm:hover{

	/*box-shadow: 2px 2px #cc0066;*/	
}

#sBTN{
	position: relative;
	display: flex;
	top: 0px;
	width: 40px;
	height: 40px;
	border: 2px solid  #602060;
	border: none;
	
	align-self: flex-end;
	 
	background-color:  #cc0066;
	color: white;
	
	&:hover{
		border: none;
	}
	&:active{
		border: none;
	}
	&::before{
		cursor: pointer;
		content: "\f20";
	}
}


/*********************Debug Box *****************/

#debugBox{

	position: absolute;
	display: inline;
	
	top: 15vh;
	right: 0px;
	float: right;
	
	width: 275px;
	min-width: 250px;
	max-width: 325px;
	
	border: 3px solid #660033;
	background-color: #cc0099;
	color: MediumVioletRed;
		
}












#mplayer{

	position: relative;
	display: inline;
	float: left;
	left: 0px;
	width: 300px;
		
}
