html {
  scroll-behavior: smooth;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
  
  .ant-calendar-input-wrap {
    display: none;
  }

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

.nav-link {
  transition: color 0.3s ease-in-out;
}

/* Style buttons */
.btnInfo {
  background-color: rgb(248, 248, 248); 
  border: none; 
  color: DodgerBlue; 
  padding: 12px 16px; 
  font-size: 16px; 
  cursor: pointer; 
}

/* Darker background on mouse-over */
.btnInfo:hover {
  background-color: RoyalBlue;
}

.is-invalid {
  border: 1px solid red;
}

.fixed-width {
  width: 60%; 
  max-width: 60%;
  word-wrap: break-word; 
}

.table-container {
  display: table;
  width: 100%;
}

.no-right-radius {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.no-left-radius {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

input[readonly] {
  background-color: white !important;
}

.hotels-list{
  padding: 1px !important;
}

.imgCategory {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.imgCategory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  padding-top: 15px;
}

.modal-header p{
  padding-bottom: 1px !important;
  margin-bottom: 1px !important;
}

.btn-yellow{
  background-color: #ffc107 !important;
    color: #000;
}
.btn-yellow:hover {
  background-color: #e0a800;
  color: #000;
}

.loader {
  width: 25px;
  height: 25px;
  border: 5px solid #3d7cbb;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none; /* Hide by default */
}

.hotels-list .card-body{
  padding-bottom: 1px !important;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.loader-line {
  width: auto;
  height: 3px;
  position: relative;
  overflow: hidden;
  background-color: #ddd;
  margin-top: 15px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.loader-line:before {
  content: "";
  position: absolute;
  left: -50%;
  height: 3px;
  width: 40%;
  background-color: coral;
  -webkit-animation: lineAnim 1s linear infinite;
  -moz-animation: lineAnim 1s linear infinite;
  animation: lineAnim 1s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

@keyframes lineAnim {
  0% {
      left: -40%;
  }
  50% {
      left: 20%;
      width: 80%;
  }
  100% {
      left: 100%;
      width: 100%;
  }
}

.hotels-amenities-detail p{
  margin: 0px;
}

/* radios */
.travellers-class .btn-check {
  display: none;
}

.travellers-class .btn-outline-info {
  border-color: #8f8d779f; 
  width: 100%;
}

.travellers-class .btn-check:checked + .btn-outline-info {
  background-color: #0ba6ff;
  color: white;
}

.travellers-class .form-check {
  padding: 0.2rem;
}

.inner-div {
  overflow: hidden;
  width: 100%;
}