@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto/Roboto-Regular.ttf) format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url(../fonts/roboto/Roboto-Light.ttf) format("truetype");
  font-weight: 300;
}

:root {
  --primary-color: rgb(13, 115, 96);
  --primary-color-shadow: rgb(13, 115, 96, 0.4);
  --secondary-color: rgb(15, 138, 115);
}

*:focus {
  outline: none;
}

input[type=button],
input[type=submit] {
  background-color: var(--primary-color);
  cursor: pointer;
  font-size: 13px;
  box-shadow: 0 10px 30px 0 var(--primary-color-shadow);
  transition: all 0.3s ease-in-out;
  width: 250px;
}

input[type=button]:active,
input[type=submit]:active {
  transform: scale(0.95);
}

input[type=button]:hover,
input[type=submit]:hover {
  background-color: var(--secondary-color);
}

input[type=text],
input[type=password] {
  background-color: #f6f6f6;
  border-color: #f6f6f6 !important;
  transition: all 0.5s ease-in-out;
  width: 85%;
}

input[type=text]:focus,
input[type=password]:focus {
  background-color: #fff;
  border-bottom-color: var(--secondary-color) !important;
}

svg {
  fill: var(--primary-color) !important;
}

.btn-primary-color {
  background-color: var(--primary-color) !important;
}

.btn-primary-color svg {
  fill: #fff !important;
}

.btn-outline-primary-color {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-check:checked + .btn-outline-primary-color {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.datepicker input {
  width: 0px;
  /* Why is it only responsive like this? Only God knows */
}

.datepicker input:focus {
  border-color: #f6f6f6 !important;
}

.fadeIn {
  animation: fadeIn ease-in 1;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeIn.first {
  animation-delay: 0.4s;
}

.fadeIn.second {
  animation-delay: 0.6s;
}

.fadeIn.third {
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  animation-delay: 1s;
}

.fadeIn.fifth {
  animation-delay: 1.2s;
}

.fadeIn.sixth {
  animation-delay: 1.4s;
}

.fadeIn.seventh {
  animation-delay: 1.6s;
}

.fadeInDown {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

.span-link {
  color: var(--primary-color) !important;
}

.userTypeInput,
.originInput {
  background-color: #f6f6f6;
  border-color: #f6f6f6 !important;
  color: #808080;
  transition: all 0.5s ease-in-out;
  width: 85%;
}

.v-calendar .calendar .days .day.selectedDate .number {
  background: var(--secondary-color) !important;
}

.v-calendar .input-field svg.datepicker {
  fill: var(--primary-color) !important;
}

.v-pulse.v-pulse1,
.v-pulse.v-pulse2,
.v-pulse.v-pulse3 {
  background-color: var(--primary-color)  !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}