body {
  font-family: Arial, sans-serif;
}

#popup-container-aereo,
#popup-container-hotel,
#popup-container,
#popup-container-orcamento,#popup-container-more-travels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#popup {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 450px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 8px;
}

#popup h2 {
  margin-top: 0;
  font-size: 24px;
  color: #0056b3;
  margin-bottom: 16px;
  text-align: center;
}

#popup label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #333;
}

#popup input[type="text"],
#popup input[type="email"],
#popup input[type="tel"],
input[type="name"] {
  width: 100%;
  height: auto;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#popup #city {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#popup input[type="checkbox"] {
  margin-right: 5px;
}

#popup button {
  display: flex;
    width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
justify-content: center;
  align-items: center;
  margin-top: 8px;
}

#popup button:hover {
  background-color: #0056b3;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  display: initial;
}
.popUp-btn-close{  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  display: initial;}

#container_travel #email {
  display: flex;
}

.popUp-hidden{
  display: flex;
}

.hidden-loading {
    display: none;
  }
  
  #loadingAereo, #loadingHotel,#loadingMoreTravels {
    position: relative;
    margin-left: 16px;
    width: 25px;
    height: 25px;
    border: 5px solid rgba(201, 227, 255, 0.2); /* Borda com opacidade menor */
    border-top-color: #ffffff; /* Cor da borda superior */
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Animação de rotação */
    z-index: 10003;
    transition: ease-in;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg); /* Começa em 0 graus */
    }
    100% {
      transform: rotate(360deg); /* Gira até 360 graus */
    }
  }

@media screen and (max-width: 520px) {
  #popup {
    width: 300px;
  }
}
