/* Background de la pagina */
body{
    background-image: url('/img/nube.jpg');
    background-size: cover;
    background-attachment: fixed;

    font-family: 'Balsamiq Sans';

    /* Animacion */
    -webkit-animation: 60s linear 0s normal none infinite animate;
    -moz-animation: 60s linear 0s normal none infinite animate;
    -ms-animation: 60s linear 0s normal none infinite animate;
    -o-animation: 60s linear 0s normal none infinite animate;
    animation: 60s linear 0s normal none infinite animate;
}

/* Spinner */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Novedades boton */
.nove{
  background-color: coral;
  color: white;
}

/* Colores principales para texto */
.color1{
  color: #DEDD7A;
}
.color2{
  color: #FFE897;
}
.color3{
  color: #F6C3AD;
}
.color4{
  color: #F29CBB;
}
.color5{
  color: #D0AFD4;
}
.color6{
  color: #F59F40;
}
.color7{
  color: #9BB2D4;
}
.color8{
  color: #7F7CBA;
}

@-webkit-keyframes animate {
    from {background-position: 0 0;}
    to {background-position: 1000px 0;}
}

@-moz-keyframes animate {
    from {background-position:0 0;}
    to {background-position: 1000px 0;}
}

@-ms-keyframes animate {
    from {background-position:0 0;}
    to {background-position: 1000px 0;}
}

@-o-keyframes animate {
    from {background-position:0 0;}
    to {background-position: 1000px 0;}
}

@keyframes animate {
    from {background-position:0 0;}
    to {background-position: 1000px 0;}
}

/* -------------------------------------------------- */

/* Logo Login*/

.sombrapng{
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.4));
}

.sombrapngW{
  filter: drop-shadow(0 2px 7px rgba(255, 255, 255, 0.4));
}

.just{
  text-align: justify;
}

/*  */

/* NAVBAR */
nav {
  z-index: 19;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px 30px 20px;
  display: flex;
  align-items: center;
  transition: 0.3s ease-out;
  backdrop-filter: blur(8px) brightness(1.2);
  -webkit-backdrop-filter: blur(8px) brightness(1.2);
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
  color: white;
  font-size: 16px;
}
nav.is-hidden {
  transform: translateY(-100%);
}
a {
  color: inherit;
  text-decoration: none;
  &:hover,
  &:focus {
      text-decoration: underline;
  }
}
.list {
  list-style-type: none;
  margin-left: auto;
  display: none;
  @media (min-width: 640px) {
      display: flex;
  }
  li {
      margin-left: 20px;
  }
} 

.boxblur{
  backdrop-filter: blur(10px);
  background-color: rgba(255,255,255,0.5);
}

/* Mostrar u ocultar divs */
.mostrar-div{
  display: none;
}

@media screen and (max-width: 460px) {
  .ocultar-div{
      display:none;
  }
  .mostrar-div {
      display: block;
  }
}

.bgt{
  background-image: url('/img/t1.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 45pc;
}

/* Ocultar */
/* Mostrar u ocultar divs */
.mostrar-div{
  display: none;
}

@media screen and (max-width: 460px) {
  .ocultar-div{
      display:none;
  }
  .mostrar-div {
      display: block;
  }
}

/* MODAL */
.modal-content {
  background: rgba(40, 77, 132, 0.5);
  color: white;
}

.bg-v{
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background-color: #DEDD7A;
}

.inter{
  --opacidad-negro: 0.7;
  background-image: linear-gradient(rgba(56, 74, 211, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))), url('/img/cama2.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.inter2{
  --opacidad-negro:0.7;
  background-image: linear-gradient(rgba(56, 74, 211, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))), url('/img/cama3.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.bgtxt{
  text-align: justify;
}

.hrb{
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  background: linear-gradient(to right, coral, #284d84);
  height: 5px;
}

.hrA{
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  background: #284d84;
  height: 6px;
}