@font-face {
  font-family: "Laundry";
  src:
    local("/fonts/lato.ttf"),
    url('fonts/lato.ttf') format('truetype');
}
body{
font-family: "Laundry"!important;
}

.ui-datepicker-header{
background-color:black!important;
color:white!important;
}

.animate-shine {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #111, #444);
  overflow: hidden;
  cursor: pointer;
}
.animate-shine:before{
content: '';
  position: absolute;
  top: 0;
  left: -75%;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}