html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.logo-single-main {
  width: 250px !important;
  height: 100px !important;
  background-image: url("../logos/logo_iedep_origin_sm.png");
  background-position: center center;
  background-repeat:no-repeat;
  background-size: contain; /* Ajusta la imagen para que quepa dentro del contenedor manteniendo su relación de aspecto */
  display: inline-block;
  margin-bottom: 60px;
}

.logo {
  width: 110px;
  height: 35px;
  /*background: url("../logos/black.svg") no-repeat;*/
  background: url("../logos/logo_iedep_origin_sm.png") no-repeat !important;
  background-position: center center;
  background-size: 140px 40px !important; /* igual que el contenedor */
  margin: 0 auto;
}
@media (max-width: 767px) {
  .logo {
    width: 80px; }
}