/* Styles*/

:root {
  --bg-azul1: #d9e7f8;
}

body {
  font-family: 'Quicksand', sans-serif;
}



.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.50rem !important;
}

.mt-n3 {
  margin-top: -0.75rem !important;
}

.mt-n4 {
  margin-top: -1rem !important;
}

.mt-n5 {
  margin-top: -1.25rem !important;
}

.mt-n6 {
  margin-top: -1.50rem !important;
}

.mt-n7 {
  margin-top: -2.50rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.unlisted {
  list-style: none;
}

.MuiPickersToolbar-penIconButton {
  visibility: hidden
}

.bg-azul1 {
  background: var(--bg-azul1);
}


.bg-header-boleteria {

  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
}

a.list-group-item:hover {
  background-color: hwb(204 18% 0%);
  color: aliceblue;
}

.paphome {
  height: 50px;
  width: 50px;
}

.d-none {
  opacity: 1;
  transition-duration: 0.7s;
  transition-property: opacity;
}




.contenedor {
  position: absolute;




}

.footer {
  z-index: 1;
  position: absolute;
}

.borderless {
  border-top: none;
}

/*#div{
  background-color: red;
  bottom: 0;
  height: 150px;
  position: fixed;
  width: 50%;
  z-index: 2;
 
}*/

.terminos {



  color: white;
}


/* input line */
.group {
  position: relative;
  margin-bottom: 15px;
  margin-top: 2px;
}

.textbox {
  font-size: 15px;
  padding: 10px 10px 5px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
}

.textbox:focus {
  outline: none;

}

.group label {
  color: #999 !important;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
}

.textbox:focus~label,
.textbox:valid~label {
  top: -10px;
  font-size: 10px;
  color: #1742ed;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before,
.bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
}


.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

.textbox:focus~.bar:before,
.textbox:focus~.bar:after {
  width: 50%;
}

.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.textbox:focus~.highlight {
  animation: inputHighlighter 0.3s ease;
}

@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

/*termina inpiut line */


/*Empiez loader*/
.loader {
  --color: #a5a5b0;
  --size: 60px;
  position: relative;
  width: var(--size);
  height: var(--size);
}

.loader span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color);
  border-bottom: 1px solid transparent;
  border-radius: 100%;
  animation: keyframes-rotate .8s infinite linear;
}

.loader svg {
  width: 100%;
  height: 100%;
  padding: 15%;
  fill: var(--color);
  animation: keyframes-blink .8s infinite ease-in-out;
}

@keyframes keyframes-rotate {
  0% {
    transform: rotate(360deg);
  }
}

@keyframes keyframes-blink {
  50% {
    opacity: 0.8;
  }
}

#superpuesto {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  opacity: 1;
  z-index: 100;
  transition: opacity 1s ease-in-out;
}
/*termina loader*/