@charset "UTF-8";

/* CSS Document */

/*Fuente Roboto, fonts-wights: 300 (light), 400 (regular), 700 (bold)*/
@font-face {
    font-family: 'robotobold';
    src: url('fuente/roboto-bold-webfont.woff2') format('woff2'),
         url('fuente/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url('fuente/roboto-light-webfont.woff2') format('woff2'),
         url('fuente/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('fuente/roboto-regular-webfont.woff2') format('woff2'),
         url('fuente/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}


body{
    color: #171717;
    font-family: 'robotoregular';
    background-color: silver;
}

/*---------header---------*/
.header{
    display: flex; 
    justify-content: space-between; 
    align-items: center;  
    background-color: #ff1e1e;
    padding: 5px;
}


#Zaspe{
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoZaspe{
    display: block;
    margin: auto;
}


#menuprincipal{
    display: flex;
    justify-content: space-evenly;
}

nav{
    margin: 0; 
    padding: 0; 
    width: 100%;
    background-color: #171717;
}

nav li{
    display: inline-block;
    font-size: 12px;
}

nav li a{
    padding: 10px 20px;
    display: flex;
    justify-content: center; 
    align-items: center;
    font-family: 'robotobold', sans-serif;
	text-decoration: none;
	color: #ff1e1e;
}
nav li a:hover{
    color: white;
}



/*---------Main---------*/
main{
    padding-bottom: 10px;
}

#maininicio{
    background-image: url(imagenes/CELUZASPE.jpg);
    background-size: cover;
    background-position: center;
}

#botonesinicio{
    padding: 800px 0px 30px;
}

.button-crearequipos{
    display: flex;
	border: 2px solid red;
	width: 70%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;  
    margin-top: 15px;
    background-color: white;
}


.button-crearequipos:hover{
	background: red;
	color: aliceblue;
}

@media (min-width:1000px){
    #maininicio{
        background-image: url(imagenes/webzaspe.jpg);
        background-size: cover;
        background-position: center;
    }
    #botonesinicio{
        padding: 700px 0px 50px;
    }
    .button-crearequipos{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}


.contenedorA{
    color: #171717;
    background-color: #ff1e1e;
    padding: 20px;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.contenedorB{
    color: #171717;
    background-color: white;
    padding: 20px;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

h2{
    font-family: 'robotoregular';
    font-size: 1.3em;
}

h3{
    font-family: 'robotolight';
    font-size: 0.8em;
    margin: 20px 0px;
}

h4{
    font-family: 'robotolight';
    font-size: .6em;
    color: #171717
}




.icon2{
    height: 2em;
    margin: .10em;
}


/*-------BOTONES AGREGADOS------*/
.botonesinicio a{
	margin: 10px 0px;
	display: flex;
	background: white;
	border: none
	
}
.botonesinicio{
	align-content: space-between;
	margin: 50px;
	padding: 50px;
	
}



/*--------GALERIA--------*/
/*---me fijo la class del pluggin en inspeccionar----*/
.flexslider{
width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	position: relative;
}
.slides, .slides li, .slides li img{
	width: 100%;
}
.flex-control-nav.flex-control-paging{
	width: 120px;
	padding: 20px 0px;
	border-radius: 10px; 
	align-self: center;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 20px;
	z-index: 2;
}
.flex-control-nav li{
	display: inline-block;
	margin: 0 5px;
}
.flex-control-nav li a{
	display: block;
	width: 15px;
	height: 15px;
	background: white;
	border-radius: 50%;
	text-indent: -9999px;
}
.flex-control-nav li a.flex-active{
	background: red;
}

.flex-direction-nav{
	z-index: 3;
	list-style: none;
}
.flex-direction-nav a{
	width: 60px;
	height: 60px;
	margin-bottom: 5px;
	
	display: flex;
	text-decoration: none;
	font-size: 50px;
	justify-content: center;
	align-items: center;
	
	border-radius: 10px;
	position: absolute;
	top: 50%;
}

.flex-direction-nav .flex-prev{
left: 15px;
}
.flex-direction-nav .flex-next{
right: 15px;
}












/*---------Footer---------*/

/*-----------redes-----------*/

.redes {
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction:row;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
	list-style: none;
	background: silver;
	margin-top: 300px;
	width: 100%;
	height: 50px;
	padding: 50px;

}


footer{
    display: flex; 
    background: silver; 
    padding: 50px;
    text-align: center; 
    font-size: 10px;
    word-wrap: break-word;
    justify-content: center;
    align-content: center; 
    align-items: center;
    flex-wrap: nowrap;
    color: white;
	width: 100%;
	height: 200px;
	margin-top: -80px;
}




.redesinicio{
	display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction:row;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
	list-style: none;
	background: silver;
	margin-top: 200px;
	width: 100%;
	height: 500px;
	padding: 0px;
}
.footerconmenu{
	height:-200px;
	margin-top: -250px;
}







/*---------menu inferior---------*/
.menuinferior ul{
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction:row;
    justify-content: space-around;
    align-items: center;
    background-color: #ff1e1e;
}

.icono{
    height: 3em;
    margin: .6em;
}


.icononews{height: 2.4em;}


/*----------------registro------------------*/

.regisfondo{
	background-color: white;
	margin: 0;
	box-sizing: border-box;
}


.imgregistro{
	justify-content: center;
	display: flex;
	margin-top: 200px;
}




.contenedorD{
	width: 100%;
	padding: 10px;
	margin-top: -150px;
}
.formulario{
	background: #fff;
	margin-top: 150px;
	padding: 3px;
}


input[type="text"],
input[type="password"]{
	font-size: 20px;
	width: 80%;
	padding: 10px;
	border: none;
	background-color: gainsboro; 
}

.input-contenedor{
	margin-bottom: 15px;
	border: none;
	background-color: gainsboro;
}

.input-contenedor3{
	margin-bottom: 15px;
	border: none;
	background-color: gainsboro;
}

.icon{
	min-width: 50px;
	text-align: center;
	color: #999;
}
.button-inicio{
	display: flex;
	border: 2px solid red;
	width: 100%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;
}
.button-inicio:hover{
	background: red;
	color: aliceblue;
}
.textoparrafo{
	text-align: center;
	border: none;
	margin-top: 10px;
	font-size: 12px;
}
.textoparrafo1{
	text-align: center;
	border: none;
	margin-top: 10px;
	font-size: 18px;
}

.link{
	text-decoration: none;
	color: black;
	font-weight: 600px;
	padding: 5px;
		
}
.link:hover{
	background: none;
	color: red;
}

@media (min-width:700px){
	.formulario{
		margin: auto;
		width: 500px;
		margin-top: 150px;
		border-radius: 2%;
	}
}

.contenedorE{
	width: 100%;
	padding: 10px;

}
.formulario2{
	background: #fff;
	margin-top: 150px;
	padding: 3px;
}

/*----------------Registro de Equipos------------------*/
#jugadores{
    margin: auto;
}

.custom-select{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    margin: 15px 0px;
    justify-content: space-evenly;
    position: relative;
}

.titulares{
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-top: 15px;
}

.titulares-2{
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-top: 15px;
}

.h3equipo{
    font-family: 'robotobold';
    font-size: 13px;
    display: flex;
    justify-content: center;
}

.input-nombreequipo{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#cancha{
    width: 100%;
}

#esquema-cancha{
    display: block;
    margin: auto;
}

.formulario-equipo{
    background: #fff;
	padding-bottom: 20px 0px;
    margin: auto;
}

#Registro-Equipo-2{
    background: #fff;
    margin-top: -10px;
    margin: auto;
}

#contenedor2{
        margin-bottom: 30px;
}

.input-contenedor-Equipo-2{
    margin-bottom: 15px;
    width: 70%;
	border: none;
	background-color: gainsboro;
    margin: auto;
    margin-top: 15px;
}

#Confirmar-buttom{
    display: flex;
	border: 2px solid red;
	width: 40%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;
    margin-top: 60px;
}

#Confirmar-buttom:hover{
	background: red;
	color: aliceblue;
}

/*listado jugadores*/
.custom-select {
  position: relative;
  font-family: 'robotoregular';
    margin: auto;
    margin-top: 15px;
}

.custom-select2 {
  position: relative;
  font-family: 'robotoregular';
    margin: auto;
    margin-top: 15px;
    background-color: gainsboro;
    width: 100%
}

.custom-select select {
  display: flex;
    background-color: gainsboro;
    border: none;
    padding: 15px;
    width: 100%;
    /*hide original SELECT element: */
}

.custom-select2 select {
  display: flex;
    background-color: gainsboro;
    border: none;
    padding: 15px;
    width: 100%;
    /*hide original SELECT element: */
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

@media (min-width:800px){
    .formulario-equipo{
        background: #fff;
        padding-bottom: 20px;
        margin: auto;
    }
    #esquema-cancha{
        width: 300px;
    }
    #titulares{
        width: 100%;
    }
    #jugadores{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .input-contenedor-Equipo{
        display: flex;
        justify-content: space-around;
        width: 30%;
        border: none;
        background-color: gainsboro;
        margin: 5px 5px;
    }
    #Registro-Equipo-2{
        background: #fff;
        margin-bottom: 60px;
        display: flex;
    }
    #contenedor2{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin: 20px;
    }
    .input-contenedor-Equipo-2{
        margin-bottom: 15px;
        width: 80%;
	   border: none;
	   background-color: gainsboro;
    }
}

@media (min-width:1000px){
    .titulares-2{
        margin-bottom: 15px;
        width: 80%;
        margin: auto;
        margin-top: 15px;
    }
    
    .custom-select2 {
        position: relative;
        font-family: 'robotoregular';
        margin: auto;
        margin-top: 15px;
    }
    
    .custom-select2 select {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        background-color: gainsboro;
        border: none;
        padding: 15px;
        width: 100%;
    }
    .sub-registro{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

/*----------------Confirmar Equipo------------------*/
#cancha2{
    width: 100%;
    margin-top: 50px;
}

#esquema-cancha2{
    display: block;
    margin: auto;
    width: 400px;
}

#Desafio-confirmar2{
    text-align: center;
    background-color: gainsboro;
    width: 50%;
    margin: auto;
    border-radius: 20px;
    padding: 20px;
    margin-top: 50px;
}

@media (min-width:1000px){
    #confirmarequipo{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: auto;
    }
    
    #Desafio-confirmar2{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
        margin: auto;
    }
    
    #cancha2{
        width: 50%;
        margin-top: 50px;
    }
    
    #esquema-cancha2{
        display: block;
        margin: auto;
        width: 400px;
    }

}

/*----------------Equipo Registrado------------------*/

.button-opciones{
    display: flex;
	border: 2px solid red;
	width: 50%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;  
    margin-top: 15px;
}

.button-opciones:hover{
	background: red;
	color: aliceblue;
}

/*----------------Desafiar------------------*/
#Desafiar{
    background-color: gainsboro;
    padding: 10px;
    width: 100px;
    margin: 50px;
}

#h3-Equipos{
    margin-left: 100px;
    font-size: 15px;
    max-width: 100%;
}

.button-Equipos{
    display: flex;
	border: 2px solid red;
	width: 80%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
    margin-left: -0px;
    margin-top: 15px;
    background-color: gainsboro;
}

.button-Equipos:hover{
	background: red;
	color: aliceblue;
}

.Equipo{
    display: flex;
    justify-content: center;
    margin: auto;
    align-content: center;
	
}



/*----------------Establecer Desafio------------------*/
#Desafio{
    display: flex;
    background-color: gainsboro;
    width: 70%;
    margin: auto;
    border-radius: 20px;
    padding: 20px;
    justify-content: space-evenly;
}

.h3-Info{
    font-size: 15px;
    margin: 0px;
    margin-top: 20px;
}

h4{
    font-size: 10px;
}

#Inofrmacion-Equipos{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input[type="date"],
input[type="time"],
input[type="number"]{
	font-size: 20px;
	width: 100%;
	padding: 10px;
	border: none;
	background-color: gainsboro; 
}

.button-desafiar{
    display: flex;
	border: 2px solid red;
	width: 70%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;  
    margin-top: 15px;
    background-color: gainsboro;
}
    
.button-desafiar:hover{
	background: red;
	color: aliceblue;
}

/*Popup*/
.box {
  width: 50%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button{
	display: flex;
	border: 2px solid red;
	width: 100%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;
}
.button:hover{
	background: red;
	color: aliceblue;}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup-desafio{
    width: 70%;
  }
}

/*----------------Confrimar desafio----------------*/
#datos-confirmados{
   display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: .8em;
}

#disponible{
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
    color: #70b900;
}

#desafio-confirmar{
        display: flex;
    flex-direction: column;
        background-color: gainsboro;
        width: 70%;
        margin: auto;
        border-radius: 20px;
        padding: 20px;
        justify-content: center;
    text-align: center;
        margin-top: 50px;
    align-items: center;
    }

#datos-confirmados{
    margin-top: 20px;
}

@media (min-width: 700px){
    #desafio-confirmar{
        display: flex;
        flex-direction: row;
        background-color: gainsboro;
        width: 70%;
        margin: auto;
        border-radius: 20px;
        padding: 20px;
        justify-content: space-evenly;
        margin-top: 50px;
    }
}

/*----------------Desafio Creado------------------*/
#button-NuevoDesafio{
    margin-top: 100px;
}

/*----------------Torneos------------------*/
#h1-torneo{
    text-align: center;
    margin-top: 200px;
    margin-bottom: 50px;
    font-family: 'robotobold';
}

/*----------------Buscar Torneos------------------*/
#Torneos{
    background-color: #dcdcdc;
    padding: 10px;
    width: 200px;
    margin: 50px;
}

#Flecha{
    margin-top: 50px;
    margin-left: 20px;
    display: block;
    width: 100%;
}

#Flecha-Volver{
    justify-content: flex-end;
}

/*----------------Incribirse Torneo------------------*/
@media (min-width: 1000px){
    .contenedortorneo{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .input-contenedor3{
        margin-bottom: 15px;
        border: none;
        background-color: gainsboro;
        width: 50%;
        margin: 0px 5px;
    }
}

/*----------------Confirmar Inscripcion----------------*/
#dgpc{
    color: DodgerBlue;
    font-family: 'robotobold';
    font-size: 1em;
}

/*----------------Crear Torneo----------------*/
#torneo{
    background-color: gainsboro;
    padding: 10px;
    width: 150px;
    margin: 50px;
}

.input-contenedor4{
	margin-bottom: 15px;
	border: none;
	background-color: gainsboro;
}

/*----------------Ingresar Equipo----------------*/
#nombretorneo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#contenedortorneo{
    width: 100%;
	padding: 10px;
    margin-top: -150px;
}

@media (min-width:800px){
    #contenedortorneo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px;
        margin-top: -150px;
    }
    #nombretorneo{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin: 10px;
    }
    .Cancha-buttom{
        margin: 5px 10px;
        width: 50%;
        border: 2px solid red;
        padding: 15px 20px;
        text-align: center;
    }
    }

/*----------------Establecer Desafio------------------*/
.custom-select3 {
  position: relative;
  font-family: 'robotoregular';
    margin-top: 15px;
    background-color: gainsboro;
    width: 100%;
}

.custom-select3 select {
  display: flex;
    background-color: gainsboro;
    border: none;
    padding: 15px;
    width: 100%;
    /*hide original SELECT element: */
}

/*----------------Reservar Cancha------------------*/
#contenedor-canchas{
    width: 100%;
	padding: 10px;
	margin-top: -150px;
}

#Canchas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.Cancha-buttom{
    margin-bottom: 5%;
    width: 40%;
    border: 2px solid red;
    padding: 15px 20px;
    text-align: center;
}

#desafio-buttom{
    display: flex;
	border: 2px solid red;
	width: 70%;
	color: black;
	font-size: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;  
    margin-top: 15px;
    background-color: gainsboro;
}

#desafio-buttom:hover{
    background: red;
	color: aliceblue;
}

@media (min-width:800px){
    #contenedor-canchas{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px;
        margin-top: -150px;
    }
    #Canchas{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .Cancha-buttom{
        margin: 5px 10px;
        width: 50%;
        border: 2px solid red;
        padding: 15px 20px;
        text-align: center;
    }
    }

/*----------------novedades------------------*/
.Imagenesencabezado{
    max-width: 100%;
}

#imagen2{
    max-width: 100%;
    display: block;
    margin: auto;
}

#contenedor-informacion{
    margin-top: 20px;
#main-navedades{
    margin-top: 20px;
       }
}

.contenedor-rojo{
    color: #171717;
    background-color: #f42f42;
    padding: 20px;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.contenedor-blanco{
    color: #171717;
    background-color: white;
    padding: 20px;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

@media (min-width:1000px){
   .Imagenesencabezado{
        max-width: 100%;
    }
    #imagen2{
        max-width: 100%;
        display: block;
        margin: auto;
    }
}
    
/*----------------Tus torneos------------------*/
#button-aceptar{
    display: flex;
	border: 2px solid red;
	width: 50%;
	color: black;
	font-size: 20px;
	padding: 5px;
	border-radius: 5px;
	cursor:pointer;
	margin:auto;
	text-decoration: none;
	text-align: center;
	justify-content: center;  
    margin-top: 15px;
    background-color: gainsboro;
}

#button-aceptar:hover{
    background: red;
	color: aliceblue;
}





video {width: 50%; height: auto; align-self: center;}