
@font-face {
    font-family: "Quicksand-Regular";
    src: url("Fortnite.ttf");
}


.switchBtn {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 24px;
}
.switchBtn input {display:none;}
.slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 8px;
    color: #fff;
    font-size: 10px;
    font-family: sans-serif;
    text-align: left;
}
.slide:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 88px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slide {
    background-color: #8CE196;
    padding-left: 40px;
}
input:focus + .slide {
    box-shadow: 0 0 1px #01aeed;
}
input:checked + .slide:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    left: -20px;
}

.slide.round {
    border-radius: 34px;
}
.slide.round:before {
    border-radius: 50%;
}


table.colapsado {
    border-collapse: collapse;
	border-spacing: 0;
}

.wrapper {
    margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
tr.colapsado {
  padding: 0;

}

.td_bingo{
    font-size:19px;
}

.td_numeros{
    font-size:15px;
    font-weight: 100;
}



.contenedor-circulo{
    width: 100px;
    height: 100px;
    margin:0 auto; 
    text-align:center;
    background: #E5E5E5;
    border-radius:50%;
    margin-bottom: 20px;
}
.circulo {
    display:inline-block;
    width: 25px;
    height: 25px;
    margin-top: 37px;
    background:#000;
    border-radius:50%;
    animation: girar 2s infinite linear;
}
@keyframes girar {
    from { transform: rotate(0deg)  translate(-38px) rotate(0deg);background: orange; }
    to { transform: rotate(360deg) translate(-38px) rotate(-360deg); background: fuchsia;  }
}

.circulo-bola {
    margin-bottom: 20px;
    position:relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border:3px solid 000;
    background: #fff;
    box-shadow: 2px 2px 7px #999;
}
.circulo-bola>div {
    position:absolute;
    width:80px;
    height:80px;
    border-radius: 50%;
    background: orange;
    margin:auto;
    top: 0; left: 0; bottom: 0; right: 0;
        box-shadow: 1px 1px 11px #999;
}    
.circulo-bola>div>div {
    position:absolute;
    width:60px;
    height:60px;
    border-radius: 50%;
    background: white;
    margin:auto;
    top: 0; left: 0; bottom: 0; right: 0;
}
    .estilo_bola {
        font-size: 33px;
        color: orange;
}

.container {
  display: flex;
  /* align-items por defecto tiene el valor `stretch` */
  align-items: start;
}
.center-h {
  justify-content: space-around;
}
.center2-h {
  justify-content: space-evenly;
}
.center-v {
  align-items: center;
}
.child {
    margin: 5px;
}
.img_ficha {
    height: 12px;
}
.campo_free{
    height: 15px;
}
.portada{
    background: url(https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80) no-repeat fixed center;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
   height: 100%;
   width: 100% ;
   text-align: center;
    font-family: "Quicksand-Regular";
}
/* limpieza tarjeta */
.clear {
  width: 100%;
  clear: both;
}
/* tarjeta contenedorea */
.card {
  float: left;
  width: auto;
  height: auto;
  background-color: rgba(203, 0, 211, 0.78);
  border-radius: 10px;
  padding: 5px;
}

/* B I N G O */
.headers > div {
  float: left;
  width: 40px;
  text-align: center;
    padding: 2px;
}
.headers > div span {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
    font-family: "Quicksand-Regular";
}

/* columna por letra BINGO */
.column {
  float: left;
  width: 40px;
  text-align: center;
    padding: 2px;
}
/* contenedor de los numero */
.number {
  padding: 5px 0;
  border: 1px solid rgba(203, 0, 211, 0.78);
    opacity: .9;
  background-color: rgb(255, 255, 255);
    margin-top: 3px;
}
/* propiedades de los numeros */
.number span {
  color: #644e4e;
  font-size: 15px;
    font-family: "Quicksand-Regular";
}
/* al sobrepasar el mouse */
.number span:hover {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

span.no_selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select:none;
}