#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2438aa;
  z-index: 1001;
  cursor: pointer;
}
.spin {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.spinner {
  position: absolute;
  height: 60px;
  width: 60px;
  margin: 0px auto;
  -webkit-animation: rotation 0.6s infinite linear;
  -moz-animation: rotation 0.6s infinite linear;
  -o-animation: rotation 0.6s infinite linear;
  animation: rotation 0.6s infinite linear;
  border-left: 6px solid rgba(230, 103, 186, 0.15);
  border-right: 6px solid rgba(230, 103, 186, 0.15);
  border-bottom: 6px solid rgba(230, 103, 186, 0.15);
  border-top: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#browserWarning {
  display: none;
}

.btn-oferta a {
  color: #fefefe !important;
}
.btn-oferta {
  background-color: #2c3e50;
  border-color: #27337a;
}
.btn-oferta:hover {
  color: #ffffff !important;
  background-color: #27337a;
  border-color: #27337a;
}
.btn-form,
a.btn-form,
.btn-form:focus,
a.btn-form:hover {
  background-color: #27337a !important;
}

a.btn-form {
  color: #fefefe !important;
}
a.btn-form:hover {
  color: #c6cbe6 !important;
}

.btn-form.disabled {
  background-color: #999;
}
.btn-delete,
.btn-delete:focus {
  background-color: #87141e;
}
.btn-delete:hover {
  background-color: #912516;
}
