html,
body {
  height: 100%;
}
h1,
h2,
h3 {
  color: #A50034;
}
/* SPLASH CSS */
#bg_splash {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(#ddd, #fff);
  opacity: 0.8;
}
#bg_splash p {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
/* LOGIN CSS */
#bg_login {
  min-height: 100vh;
  background-image: linear-gradient(#ddd, #fff);
}
.bg-main {
  background-color: #f6f6f6;
}
.topbar-bg {
  background-color: white;
}
.btn-primary {
  color: #fff;
  background-color: #A50034;
  border-color: #A50034;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #A50034;
  border-color: #A50034;
}
#form_login input[type="text"] {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #A50034;
  outline: none;
}
#form_login input[type="text"]:focus {
  border: none;
  border-bottom: 2px solid #A50034;
  outline: none;
}
.btn-warning {
  background-color: #FF6C0C;
  color: white;
  font-weight: bold;
  letter-spacing: 3px;
  box-shadow: #A50034;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: white;
  color: #A50034;
  font-weight: bold;
  letter-spacing: 3px;
  opacity: 0.7;
}
/* CATEGORY CSS */
#list_events .list-group-item {
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
  border-bottom: 1px solid #dcdcdc;
}
.flotante {
  position: fixed;
  bottom: 30px ;
  right: 30px;
  border: 1px solid #A50034;
  background: #A50034;
  color: #ffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 90090;
  display: flex;
  align-content: center;
  justify-content: center;
  text-align: center;
  align-items: center;
  cursor: pointer;
}
.subcategories .list-group-item {
  background-color: #A50034;
  color: white;
}
/*SPINNER*/
.spinner-layout {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.lds-spinner {
  /*color: #FF6C0C;*/
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  /*background: #FF6C0C;*/
  background: white;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*END SPINNER*/
/*# sourceMappingURL=custom.css.map */