body {
  background-image: url('../../img/bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "new-atten";
  /* font: normal normal 400 22px/25px New Atten;
  letter-spacing: 0px; */
}

/* p{
  font-size: 17px;
} */
.titleName {
  color: #F26E21;
}

.titleName2 {
  color: #2e2c2b;
  font-weight: 700;
}

.titleName3 {
  color: #F26E21;
  font-size: 1.2rem;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #F79A56;
  border-radius: 20px;
  /* border: 3px solid orange; */
}

.spinner {
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  left: 0px;
  top: 0px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  /* padding:10px;  */
  /* margin: auto; */
}

.spinnerOff {
  z-index: -99;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.runSpinner {
  display: inline-block;
  position: relative;
  /* top: 50vh;
    left: 50%; */
  width: 80px;
  height: 80px;
}

.runSpinner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #121111;
  z-index: 9;
  border: 1px solid #ffffff;
  animation: runSpinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.runSpinner div:nth-child(1) {
  left: 8px;
  animation-delay: -0.30s;
  /*-0.24s;*/
}

.runSpinner div:nth-child(2) {
  left: 32px;
  animation-delay: -0.15s;
  /*-0.12s; */
}

.runSpinner div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes runSpinner {
  0% {
    top: 8px;
    height: 64px;
  }

  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}

/* @media only screen and (min-device-width:700px) {
  .spinner {
    top:47vh;
    left:45%;  
  }
} */

.headerTableTickets {
  color: #ffffff;
  background: #F26E21 !important;
}

/* .itemTicket {} */

.itemTicket:hover {
  cursor: pointer;
  background-color: #F79A56 !important;
}