@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap");

body {
  font-family: "arial", sans-serif;
}

.box-wrapper {
  max-width: 576px;
}

.content {
  position: relative;
  margin-bottom: 1rem;
}

.content-bottom {
  font-size: 0.75rem;
  line-height: 1.35;
}

.title {
  font-family: "Cairo", sans-serif;
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 700;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.button-wrapper {
  width: 95%;
}

.button {
  letter-spacing: 1px;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
}

.button-green {
  background-color: #00b74a;
  color: white;
}

.button-exit {
  background-color: #bfbfbf;
  color: white;
}

.footer {
  background-color: black;
  color: white;
  padding: 0.75rem 0;
}

.info,
.term {
  font-size: 0.75rem;
  line-height: 1.85;
  opacity: 0.9;
  font-family: "Cairo", sans-serif;
  text-align: left;
}

.select-lang {
  text-align: right;
  font-size: 12px;
  margin: 0;
  padding: 0;
}
.select-lang li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  margin-right: 2px;
}

.bounce {
  animation: bounce 3s ease infinite;
}

.alert-border {
  padding: 0.875rem;
  border: 1px solid white;
  margin-bottom: 1rem;
  background-color: rgba(225, 225, 225, 0.15);
}

@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}

/* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after,
input[type="month"]:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f073";
  color: #555;
  padding: 0 5px;
}

/* change color of symbol on hover */
input[type="date"]:hover:after,
input[type="month"]:hover:after {
  color: #bf1400;
}

/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-inner-spin-button {
  z-index: 1;
}

/* adjust clear button */
input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button {
  z-index: 1;
}

/* btn hover */
.button:hover,
.button:focus {
  color: white !important;
}

.button-green:hover,
.button-green:focus {
  color: white !important;
}
