@charset "utf-8";
/* CSS Document */

a.menu-item{
	text-decoration: none;
	font-size: 24px;
	color: white;
}

.nav-toggle{
	display: none;
}

@font-face{
	font-family: 'Kaushan';
	src: url("KaushanScript-Regular.woff");
}

.dropdown{
	position: relative;
	display: inline-block;
}

.dropdown-content{
	display: none;
	position: absolute;
	background-color: dodgerblue;
	margin: 15px 0 0 -20px;
	box-shadow: 0 1px 1px rgba(0,0,0,.1);
	width: 200px;
	padding: 0 0 20px 20px;
}

@keyframes zoomIn{
	0%{
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	50%{
		opacity: 1;
	}
}

.dropdown:hover .dropdown-content{
	animation-duration: 1.5s;
	animation-fill-mode: both;
	animation-name: zoomIn;
	display: block;
}

.dropdown .caret {
    border: 0;
    width: auto;
    height: auto;
    opacity: 1;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: -4px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.caret:before{
	font-family: FontAwesome;
    content: '\f078';
    color: white;
    font-size: 20px;
    display: inline-block;
	vertical-align: top;
    margin-top: -6px;
    margin-left: 3px;
    font-weight: 400;
}

#main-menu ul.dropdown-content a{
	margin: 0 0 -10px -60px;
}

#title-site{
	font-family: 'Kaushan';
}

header div{
	display: flex;
	text-align: center;
	flex-direction: row;
	justify-content: center;
}

#menu_wrapper{
	background-color: dodgerblue;
}

#main-menu li{
	list-style: none;
	padding: 20px;
	width: 200px;
}

#main-menu>ul{
	display: flex;
	justify-content: space-around;
	flex-direction: row;
	text-align: center;
}

#main-menu a:hover{
	background-color: darkcyan;
	color: black;
}

#main-menu a{
	border-radius: 10px;
	padding: 10px 20px;
}

form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

form label{
	font-weight: bold;
	text-align: center;
	margin: 10px;
	font-size: 18px;
}

form input{
	background: gainsboro;
	font-size: 16px;
	width: 10%;
	text-align: center;
	margin: 10px;
	padding: 10px;
	border: none;
}

form input[type="button"]{
	border-radius: 10px;
	height: 100%;
	width: 15%;
	color: white;
	background-color: teal;
	font-size: 18px;
}

form textarea{
	width: 15%;
	height: 100%;
	margin: 10px;
	padding: 10px;
	font-size: 14px;
	background: gainsboro;
}

#play,
#pause,
#stop,
#forward,
#full_screen{
	width: 5%;
	height: 5%;
}

#kogmaw{
	border: 30px solid black;
}

#kogmaw.playing{
	border-color: red;
}

#videoTools{
	display: inline-block;
	margin: 15px;
}

#video{
	display: block;
}

.controles{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.musica{
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}

#lista_reproduccion{
	width: 15%;
}

#lista_reproduccion label{
	font-size: 18px;
}

.reproductor_info{
	margin-left: 10px;
	font-size: 20px;
}

#duracion,
#t_restante,
#archivo,
#estado{
	font-weight: bold;
}

#contacto{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#contacto form{
	width: 100%;
}

footer{
	background-color: dodgerblue;
	font-size: 20px;
	text-align: center;
	padding: 5px;
}