.loader-body {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  z-index: 10000;
  visibility: visible;
  top: 0;
  left: 0;
  text-align: center;
  justify-content: center;
  align-content: center;
  transition: 0.5s all;
  background-color: #ffffff;
  background: url(../images/ICONO_SOFT.png), #ffffff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-position: 50% 40%;
}
.loader {
  width: 50px;
  height: 50px;
  border: 3px #fff solid;
  border-radius: 50%;
  position: absolute;
  border-top-color: #c28400;
  transform: translate(-50%, -50%);
  top: 65%;
  left: 50%;
  -webkit-animation: 1s spin infinite linear;
  -o-animation: 1s spin infinite linear;
  animation: 1s spin infinite linear;
}
.loader-body.done {
  visibility: hidden;
  opacity: 0;
}

body{
    overflow-y: scroll !important;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Overlay utilizado durante la validación de guías desde el modal móvil */
.mobile-validation-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(3px);
  z-index: 1100000;
}

.mobile-validation-loader__content {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  text-align: center;
}

.mobile-validation-loader__spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.08);
  border-top-color: #c28400;
  margin: 0 auto 18px;
  animation: mobile-loader-spin 0.9s linear infinite;
}

.mobile-validation-loader__message {
  font-size: 15px;
  font-weight: 600;
  color: #2d3436;
  letter-spacing: 0.2px;
}

@keyframes mobile-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .mobile-validation-loader__content {
    padding: 32px 36px;
  }

  .mobile-validation-loader__message {
    font-size: 16px;
  }
}

.validation-status-message {
  display: none;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  background: #f5f5f5;
  color: #4a4a4a;
}

.validation-status-message--success {
  background: #eaf7ef;
  color: #227447;
}

.validation-status-message--skip {
  background: #fff4e5;
  color: #b25c00;
}

.validation-status-message--error {
  background: #fdecea;
  color: #c53030;
}

.validation-status-message--info {
  background: #e9f2fb;
  color: #0b5394;
}

.items-separator {
  border-top: 1px solid #dfe4ea;
  margin-top: 12px;
}