.visible {
    display: block;
}

.invisible {
    display: none !important;
}

.cabecera {
    height: 100% !important;
    padding-bottom: 40px !important;
}

.subtitulo {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}

#tablero-tarot {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.carta {
    width: 250px;
}

.img-carta {
    width: 250px;
    cursor: pointer;
}

.img-carta-volteada {
    margin-top: 35px;
    width: 180px;
    height: 251px;
}

/*ANIMACIÓN CARGANDO*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  padding-bottom: 400px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/*FIN ANIMACIÓN CARGANDO*/

.contenedor-cartas {
    width: 100%;
    text-align: center;
    background-color: #000000;
    display: block;
}

.carta-respuesta {
    max-width: 900px;
    height: fit-content;
    margin: 0 auto;
    border-bottom: 1px solid #ffffff24;
    padding-bottom: 30px;
    margin-top: 30px;
}

.titulo-carta {
    margin-top: 30px;
}

.descripcion-carta {
    text-align: justify;
    font-weight: 200;
    justify-content: center;
    padding: 10px;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .cabecera {
        padding-top: 50px;
    }

    .titulo-carta {
        text-align: left;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .cabecera {
        height: 100% !important;
    }
}
