.select-moods-cont {
  display: none;
  padding: 0px 30px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 20px;
  /* justify-content: flex-start;
    flex-wrap: wrap; */
}

.selected-mood {
  position: absolute;
  width: 30px;
  display: none;
  right: 5px;
  top: 5px;
  height: 30px;
}

.mood-img-cont {
  position: relative;
  cursor: pointer;
  border-radius: 3px;
  height: 9.1rem;
}

.mood-img-cont:hover .gradient-title {
  height: 100%;
  max-height: 100%;
  background: var(--linear-gradient-full-height);
}
.selected-mood-border {
  border: 5px solid #74a91e;
}
.mood-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.guests-cont {
  display: flex;
  padding: 0px 7%;
  justify-content: space-between;
  gap: 20px;
}

.gradient-title {
  background: var(--linear-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  text-align: center;
  /* padding: 2px; */
  width: 100%;
  font-size: 16px;
  padding: 2px;
  max-height: 50px;
  /* padding: 10px; */
  transition: all 0.3s ease;
}
.guest-select {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #f9f9f9;
  height: auto;
  border-radius: 5px;
  width: 50%;
  position: relative;
}

/* .guest-select-header {
  padding-bottom: 5px;
} */

.border-grey {
  border-bottom: 3px solid #e7e7e7;
}
.guest-select h2 {
  color: black;
  font-weight: bold;
  font-size: 1.1rem;
}

.guests-and-dates p {
  margin-bottom: 10px;
}
.child-wrapper {
  display: flex;
  gap: 2px;
  align-items: center;
}
.adults-container,
.children-container {
  height: 170px;
  position: relative;
  overflow-y: auto;
}
.guest-select h6 {
  font-size: 14px;
}
.select-child h6 {
  visibility: hidden;
}
.traveller-wrapper {
  display: flex;
  align-items: center;
}

.delete-traveller {
  cursor: pointer;
  background: #eaeaea;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  position: absolute;
  right: 10px;
  z-index: 3;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.delete-traveller-icon {
  background: url("../../assets/RemoveIcon.png");
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: all 0.8s;
}
.count {
  color: #525252;
  font-size: 13px;
}
.delete-traveller-hover {
  border: 1px solid #da4a40;
  background: #fff;
}
.delete-traveller-hover i {
  color: red !important;
}
.traveller-info {
  padding: 0px 10px;
  height: 75px;
  padding-bottom: 10px;
}
.zero {
  color: #a0a0a0;
  cursor: default !important;
}
.delete-traveller[disabled] {
  cursor: not-allowed;
  color: #a0a0a0 !important;
  opacity: 0.5;
}
.traveller-input-cont {
  color: var(--brand-color);
  display: flex;
  width: 60%;
  align-items: center;
}

.traveller-info-disabled .typee {
  display: none !important;
}

.traveller-info-disabled {
  height: 50px !important;
  display: flex;
  align-items: center !important;
  padding-bottom: 0px !important;
}
.traveller-info-disabled label {
  margin-bottom: 0px !important;
}

.traveller-input-cont input {
  color: var(--brand-color);
  padding: 0px 4px;
  border: none;
  cursor: pointer;
  width: 80%;
  text-overflow: ellipsis;
  background-color: transparent;
  outline: none;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}
.child-input-cont {
  width: 60px;
}
.child-input-cont input {
  width: 30px;
}

.input-field {
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  color: var(--brand-color);
  cursor: pointer;
  padding: 5px;
  position: relative !important;
  display: flex;
  align-items: center;
}

.remove-personnas {
  cursor: pointer;
  color: var(--brand-color);
  font-size: 16px;
}
.Personnas {
  display: none;
  margin-right: 7px;
}
.input-field i {
  margin-right: 0px;
}

.btn-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 10px 0px;
  margin-bottom: 0px;
  justify-content: center;
}
.add-action {
  outline: none;
  border: none;
  background-color: transparent;
  color: var(--brand-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.adults-option-dropdown {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0px;
  /* margin-left: 10px; */
  background-color: white;
  display: none;
  margin-top: 5px;
  max-height: 90px;
  overflow-y: auto;
  /* margin-left: 10px; */
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex-direction: column;
  border-radius: 0.25rem;
  width: 100%;
}

.dropdown-option-btn {
  outline: none;
  border: none;
  color: #212529;
  font-size: 1rem;
  padding: 2px 10px;
  text-align: left;
  background-color: transparent;
}

.dropdown-option-btn:hover {
  color: var(--brand-color);
  background-color: #ececec;
  font-weight: 700;
}

.page-control-btns {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.page-control-btn {
  background-color: #cccfd2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.primary-btn {
  color: var(--brand-color);
  border: 2px solid var(--brand-color);
}
.secondary-btn {
  background: var(--brand-color);
  color: white;
}

.active-page {
  background-color: var(--brand-color);
}

.guests-scroll-cont::-webkit-scrollbar,
.adults-option-dropdown::-webkit-scrollbar {
  width: 2px;
}

.guests-scroll-cont::-webkit-scrollbar-track.adults-option-dropdown::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.guests-scroll-cont::-webkit-scrollbar-thumb,
.adults-option-dropdown::-webkit-scrollbar-thumb {
  background-color: darkgrey;
}

.error-toast {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 300px;
  display: none;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  position: fixed;
  padding: 10px;
  top: 70px;
  left: 20px;
  border-radius: 5px;
  z-index: 7;
  font-size: 20px;
}

.close-error-toast {
  color: #ff4b4b !important;
  cursor: pointer;
}
.error-toast-text {
  color: #ff4b4b;
  font-size: 15px;
  margin-bottom: 0px;
}
.plan-action {
  box-shadow: 0px 2px 10px rgb(0 0 0 / 35%);
}
.plan-action:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 50%);
}
@media screen and (max-width: 1200px) {
  .guests-and-dates,
  .trip-planner-cont {
    width: 55vw;
  }
}

@media screen and (max-width: 1024px) {
  .guests-and-dates,
  .trip-planner-cont {
    width: 70vw;
  }
  .things-to-do-action-btns {
    width: fit-content;
  }
  .guests-cont {
    padding: 0px 10%;
  }
  .traveller-input-cont {
    width: 70%;
  }
  .child-input-cont {
    width: 60px;
  }
  .child-input-cont input {
    width: 30px;
  }
}

@media screen and (max-width: 992px) {
  .guests-cont {
    padding: 0px 5% !important;
  }
  .guests-and-dates,
  .trip-planner-cont {
    height: auto !important;
    top: 50% !important;
    left: 50% !important;
    padding: 20px 20px !important;
  }
  .guest-select {
    padding: 10px !important;
  }
}
@media screen and (max-width: 768px) {
  .guests-cont {
    padding: 0px 5% !important;
  }
  .guests-and-dates,
  .trip-planner-cont {
    height: auto !important;
    top: 50% !important;
    width: 100vw !important;
    left: 50% !important;
    padding: 20px 20px !important;
  }
  .guest-select {
    padding: 10px !important;
  }
}

@media screen and (max-width: 580px) {
  .guests-cont {
    flex-direction: column !important;
    padding: 0px 0px !important;
    row-gap: 0px !important;
  }
  .select-moods-cont {
    grid-template-columns: repeat(2, 1fr);
    padding: 0px;
  }
  .mood-img-cont {
    height: 5.5rem;
  }
  .adults-container,
  .children-container {
    height: 100px;
  }
  .traveller-info {
    height: 80px;
    display: flex;
  }
  .guests-and-dates,
  .trip-planner-cont {
    height: 100vh !important;
    top: 0px !important;
    width: 100vw !important;
    left: 0px !important;
    transform: translate(0, 0);
    padding: 20px 20px !important;
  }
  .guests-and-dates p {
    font-size: 13px !important;
    margin-bottom: 0px !important;
  }
  .guest-select h2 {
    font-size: 1.1rem;
  }
  .guest-select {
    padding: 10px 20px !important;
    width: 100% !important;
  }
  .select-child h6 {
    display: none;
  }
  .select-child {
    margin-top: 10px;
  }
  .plan-trip-actions {
    flex-direction: column-reverse;
    margin-top: 20px;
    gap: 15px;
  }
  .plan-action {
    padding: 7px;
  }
  .guests-and-dates .info {
    font-size: 11px;
  }
  .select-adults {
    margin-top: 5px;
  }
  .btn-wrapper {
    margin-top: 0px;
  }
}
