@font-face {
  font-family: 'Aveniro';
  src: url('../fonts/AvenirLTStd-Roman.otf');
}
@font-face {
  font-family: 'Aveniro Black';
  src: url('../fonts/AvenirLTStd-Black.otf');
}

body {
  font-family: 'Poppins';
  background-color: #fff;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Older Safari and Chromium */
}

.btn-primary {
  font-weight: bold;
  box-shadow: 0 0 0px 3px #55e9ff52;
  color: rgb(255, 255, 255);
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(
    130.37deg,
    rgb(0, 123, 255) 42.49%,
    rgb(0, 174, 255) 94.34%
  );
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  padding: 20px;
  border-radius: 50px;
  border: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  margin: auto;
  display: block;
  text-decoration: none;
  text-align: center;
}

.link {
  text-decoration: none;
  color: var(--text-color);
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 8px;
  border: 2px solid rgb(0, 123, 255);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(0, 123, 255) transparent transparent transparent;
  zoom: 1;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.place-item {
  cursor: pointer;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.place-item:hover {
  background: #eee;
}

.badge {
  background-color: #ffce1e;
  color: #000000;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .main {
    border: 1px solid #eee;
    border-radius: 20px;
    margin-top: 40px !important;
  }
}

.error-message {
  display: none;
  margin-top: 10px;
  color: #d22828;
  font-weight: bold;
}

.has-error {
  border: 1px solid #d22828 !important;
  box-shadow: 0 0 0px 3px #ec12126e !important;
  background-color: #ffe5e5;
}
.has-error:focus {
  border: 1px solid #d22828 !important;
  box-shadow: 0 0 0px 3px #ec1212ab !important;
  background-color: #ffe5e5;
}

.pulsate {
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 247, 15);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(28, 114, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(28, 114, 255, 0);
  }
}

.pulsate_blue {
  animation: pulse_blue 0.9s infinite;
}

@keyframes pulse_blue {
  0% {
    box-shadow: 0 0 0 0 rgb(41, 151, 255);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(88, 202, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(41, 151, 255, 0.1);
  }
}

.menu-item {
  cursor: pointer;
  padding: 15px;
  border-bottom: 1px solid #00000021;
}
