/*###################  SOUNDBOARD  ####################*/
html{
	overflow-y: scroll;
}
body{
	padding-top: 40px;
	font-family: 'Roboto Condensed', sans-serif;
	height: 100%;

}
p{
	font-family: 'Roboto Condensed', sans-serif; 
}
h1{
	font-family: 'Roboto Condensed', sans-serif; 
	font-size:18px;	
	color: #233746; 
	display:block; 
	width:100%;
	border-bottom: 1px dotted;
	opacity: .9; 
	text-transform:uppercase;
	padding-left: 10px;
padding-right: 10px;
}

ul{
	text-align: center;
}
label{
	font-weight: 300;
}

header{
position: fixed;
width: 100%;
display: block;
height: 35px;
top: 0px;
z-index: 10;
border-bottom: 6px #18d2eb solid;
background-color: #000;
margin: 0px 0 0 0px;
}
header audio{
	height: 28px;
}
header .nav{
	margin-top: 4px;
}
header .nav a{
	color: #efefef;
	padding: 7px;
	text-decoration: none;
}
header .nav a:hover{
	color: #fff;
	text-decoration: none;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover{
	background-color: transparent;
}
.dropdown-menu{
		background: #153a5a;
}
.dropdown-menu li a, .dropdown-menu li a:hover{
	background: #153a5a;
	color: #fff;
}
 .dropdown-menu li a:hover{
 		background: #fff;
	color: #153a5a;
 	}
.open>.dropdown-menu {
	display: block;
	margin-top: 11px;
	border-radius: 0;
}
#register{
	margin-top: 120px;
}
.soundboard{
	margin-bottom: 50px;
}

/*###################  SOUNDBOARD Container  ####################*/
#soundboard_container{
}

.soundlist{

	display: grid;
	/* grid-template-columns: 1fr repeat(); */
	grid-template-columns: repeat(12, 1fr);
	grid-auto-columns: 1fr;
	gap: 10px;
}
.sound-item{
display: grid;
	grid-template-rows: auto;
	width: 100px;
	text-align: center;
}

#soundboard_container .directory{
	clear: both;
	margin: 0 10px 0 10px;
	display: inline-block;
	padding: 68px 0 0 0;
}

#soundboard_container .sound:hover{
	cursor:pointer;
	box-shadow: 0px 0px 15px #999;
}


#soundboard_container .sound{
		border: 3px #fff solid;
		box-shadow: 0px 0px 5px #666;
		color: #fff;
		height: 100px;
		width: 100px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
}


#soundboard_container .sound .playbtn{
	width: 100px;
	height: 100px;
	background: url(../images/play.png) no-repeat;
	background-size: cover;
	padding-left: 5px;
}

#soundboard_container .sound .pausebtn{
	width: 100px;
	height: 100px;
	background: url(../images/pause.png) no-repeat;
	background-size: cover;

}

/*############# Uploader Page ####################*/
#dropzone{
	background-color: #efefef;
	height: 200px;
}
#dropzone:hover{
	background-color: #fff;
	border-color: #233746;
	
}
#dropzone h1{
	border:none;
	font-size: 35px;
	padding: 40px;
	color: #ddd;
}

#dropzone:hover h1{
	color: #233746;
}

footer{
position: fixed;
bottom: 0;
width: 100%;
display: block;
height: 35px;
border-top: 6px #18d2eb solid;
background-color: #15212a;
padding-top: 5px;
color: #efefef;
}
footer a{
	color: #fff;
}

footer a:hover{
	color: #fff;
}