
/* Filter multiple select */

.season-btn-select, .continents-btn-select, .holiday-btn-select {
  display: flex;
  height: 56px;
  width: 384px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  border-style: solid;
  border-color: #D1D1D1;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
}


.input-group .open {
  border-color: #E37E20;
  outline: none; 
}



.season-btn-select .season-btn-text, .continents-btn-select .continents-btn-text, .holiday-btn-select .holiday-btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
  padding: 0px 2px; 
}

.season-btn-select .arrow-down, .continents-btn-select .arrow-down, .holiday-btn-select .arrow-down {
  display: flex;
  height: 21px;
  width: 21px;
  color: #E37E20;
  font-size: 19px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-left: auto;
}

.season-btn-select.open .arrow-down, .continents-btn-select.open .arrow-down, .holiday-btn-select.open .arrow-down {
  transform: rotate(-180deg);
}

.season-list-items, .continents-list-items, .holiday-list-items {
  margin-top: 15px;
  border-radius: 8px;
  width: 384px;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.season-btn-select.open ~ .season-list-items, .continents-btn-select.open ~ .continents-list-items, .holiday-btn-select.open ~ .holiday-list-items {
  display: block;
  position: absolute;
  z-index: 10;
  height: 215px;
  overflow: scroll;
}

.season-list-items .season-item, .continents-list-items .continents-item, .holiday-list-items .holiday-item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 8px;
}

.season-list-items .season-item:hover, .continents-list-items .continents-item:hover, .holiday-list-items .holiday-item:hover {
  background-color: #e7edfe;
}

.season-item .season-item-text, .continents-item .continents-item-text, .holiday-item .holiday-item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.season-item .checkbox, .continents-item .checkbox, .holiday-item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #A3D7A5;
  background-color: #F1F9F1;
  transition: all 0.3s ease-in-out;
}

.season-item.season-checked .checkbox, .continents-item.continents-checked .checkbox, .holiday-item.holiday-checked .checkbox {
  background-color: #8BCB8D;
  border-color: #8BCB8D;
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}

.season-item.season-checked .check-icon, .continents-item.continents-checked .check-icon, .holiday-item.holiday-checked .check-icon {
  transform: scale(1);
}



.packages-container {
  padding-right: 0;
}
.filter-container {
  display: flex;
}


.filter-button {
  display: none;
}
.close-panel-btn {
  display: none;
}


