@import "tour-passengers-count.css";

header {
  box-shadow: none !important;
  position: relative;
}

section.search-result-again {
  padding: 1vw 5vw;
  width: 100%;
  min-height: 5vw;
  background-color: white;
  position: sticky;
  webkit-position: sticky;
  top: 0;
  z-index: 9;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0.2vw 0.6vw rgba(0, 0, 0, 0.2);
}

section.search-result-again::before {
  content: "";
  width: 90%;
  height: 0.1vw;
  background: linear-gradient(
    to left,
    transparent,
    rgba(192, 192, 192, 0.5),
    transparent
  );
  position: absolute;
  top: 0;
}

.target-search-details {
  width: 100%;
  height: 3vw;
  gap: 1.5vw;
  font-size: 0.95vw;
  transition: all 0.3s ease-in-out;
  display: none !important;
}

.target-search-details.active {
  display: flex !important;
  animation: animate-form-revealer 0.3s ease-in-out forwards;
}

.target-search-details > div {
  gap: 0.2vw;
}

.target-search-details > div i {
  margin-left: 0.25vw;
}

.target-search-details button.search-revealer {
  padding: 1vw;
  background-color: var(--blue2);
  color: var(--light-font);
  transition: all 0.25s ease;
  border-radius: 50%;
}

.target-search-details button.search-revealer * {
  pointer-events: none;
}

.target-search-details button.search-revealer:hover {
  filter: brightness(1.25);
  color: var(--dark-font);
}

section.search-result-again form {
  padding: 1vw;
  width: 100%;
  height: 14vw;
  position: relative;
  visibility: visible;
  opacity: 1;
  display: none !important;
  transition: all 0.2s ease-in-out;
  gap: 0.15vw;
}

section.search-result-again form input {
  box-shadow: 0 0 0.3vw rgba(0, 0, 0, 0.15) !important;
}

section.search-result-again form.active {
  display: flex !important;
  animation: animate-form-revealer 0.3s ease-in-out forwards;
}

@keyframes animate-form-revealer {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
}

section.search-result-again form .search-again-form-closer {
  position: absolute;
  top: 1vw;
  left: 5vw;
  color: var(--blue2);
  font-weight: normal;
  gap: 0.4vw;
  font-size: 0.9vw;
}

section.search-result-again form .search-again-form-closer:hover {
  color: var(--red);
}

section.search-result-again form .search-again-form-closer i {
  transform: scale(1.25) translateY(0.1vw);
}

/*/////*/

section.search-result-again form .search-inputs-container {
  width: 80%;
  height: 50%;
  position: relative;
  z-index: 1;
  gap: 1.2vw;
  justify-content: space-between !important;
}

section.search-result-again form .search-inputs-container input:disabled {
  filter: brightness(1) !important;
  opacity: 0.7;
  cursor: not-allowed !important;
}

section.search-result-again form .search-inputs-container .search-input-group {
  width: 20vw;
  gap: 0.2vw;
  position: relative;
  justify-content: space-between !important;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  input {
  background: rgba(185, 194, 203, 0.5);
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  .input-group {
  position: relative;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  .input-group
  input {
  width: 100%;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  .input-group
  > i {
  right: 1vw;
  font-size: 1.1vw;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  input::placeholder {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 500;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  input:hover {
  filter: brightness(1.3);
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group
  .input-group.open
  input {
  filter: brightness(1.25);
  background: rgba(178, 195, 211, 0.5);
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1) {
  width: 35vw;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1)
  .input-group {
  width: 16vw;
  position: relative;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1)
  .input-group
  input {
  width: 100%;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1)
  .reverseHandler-location {
  padding: 0.9vw;
  background: #cfd7de;
  border-radius: 0.7vw;
  font-size: 1.2vw;
  box-shadow: 0 0 0.3vw rgba(0, 0, 0, 0.15) !important;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1)
  .reverseHandler-location
  i {
  transform: translateY(0.15vw);
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(1)
  .reverseHandler-location:hover {
  background: #b8e1f1;
  color: var(--dark-blue);
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(2) {
  width: 22vw;
  justify-content: space-between !important;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(2)
  .input-group {
  position: relative;
  width: 50%;
}

section.search-result-again
  form
  .search-inputs-container
  .search-input-group:nth-child(3) {
  width: 14vw;
  justify-content: space-between !important;
}

section.search-result-again form .tours-options {
  padding: 0 0.25vw;
  width: 80%;
  min-height: 2vw;
  justify-content: start !important;
  gap: 1vw;
  position: relative;
  z-index: 2;
}

section.search-result-again form .tours-options > div {
  min-width: 6vw;
  position: relative;
}

section.search-result-again form .tours-options > div button {
  min-width: 6vw;
  background: rgba(185, 194, 203, 0.5);
  box-shadow: 0 0 0.3vw rgba(0, 0, 0, 0.15) !important;
  cursor: pointer;
  gap: 0.3vw;
}

section.search-result-again form .tours-options > div button * {
  pointer-events: none;
}

section.search-result-again form .tours-options > div button:hover {
  filter: brightness(1.3);
}

section.search-result-again form .tours-options > div .tours-options-drop-down {
  min-width: 8vw;
  min-height: 5vw;
  background-color: var(--light-bg);
  border-radius: 0.8vw;
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}

section.search-result-again
  form
  .tours-options
  > div.active
  .tours-options-drop-down {
  opacity: 1;
  visibility: visible;
}

section.search-result-again
  form
  .tours-options
  > div
  .tours-options-drop-down
  input {
  display: none !important;
}

section.search-result-again
  form
  .tours-options
  > div
  .tours-options-drop-down
  label {
  padding: 0.65vw 0.75vw;
  min-width: 7vw;
  justify-content: start !important;
  font-size: 0.9vw;
  font-weight: normal;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin: 0 !important;
  text-align: start !important;
}

section.search-result-again
  form
  .tours-options
  > div:nth-child(2)
  .tours-options-drop-down
  label {
  min-width: 9vw;
}

section.search-result-again
  form
  .tours-options
  > div
  .tours-options-drop-down
  label
  * {
  pointer-events: none;
}

section.search-result-again
  form
  .tours-options
  > div
  .tours-options-drop-down
  label:hover {
  background-color: rgba(40, 187, 250, 0.1);
}

section.search-result-again
  form
  .tours-options-drop-down
  input:nth-child(1):checked
  ~ div
  label:nth-child(1) {
  background-color: rgba(40, 187, 250, 0.2);
  color: #287dfa;
}

section.search-result-again
  form
  .tours-options-drop-down
  input:nth-child(2):checked
  ~ div
  label:nth-child(2) {
  background-color: rgba(40, 187, 250, 0.2);
  color: #287dfa;
}

section.search-result-again
  form
  .tours-options-drop-down
  input:nth-child(3):checked
  ~ div
  label:nth-child(3) {
  background-color: rgba(40, 187, 250, 0.2);
  color: #287dfa;
}

main.tour-search-results {
  padding: 2vw 8vw;
  position: relative;
  z-index: 2;
  justify-content: end !important;
  align-items: start !important;
  gap: 1vw;
}

main.tour-search-results.forward {
  z-index: 100;
}

aside.tour-search-results-sidebar {
  padding: 1vw;
  width: 22vw;
  min-height: 5vw;
  border-radius: 1vw;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.15);
  position: relative;
  justify-content: start !important;
  gap: 2vw;
}

aside.tour-search-results-sidebar.fixed {
  position: fixed;
  top: 7vw;
  right: 8.5vw;
}

aside.tour-search-results-sidebar > h1 {
  padding: 0.5vw 1vw;
  width: 100%;
  font-size: 1.05vw;
  font-weight: 600;
  color: var(--dark-font);
  text-align: start !important;
  position: relative;
}

aside.tour-search-results-sidebar > h1::before {
  content: "";
  width: 100%;
  height: 0.1vw;
  background: linear-gradient(
    to right,
    transparent,
    rgba(192, 192, 192, 0.5),
    transparent
  );
  position: absolute;
  bottom: -0.5vw !important;
  right: 0;
}

aside.tour-search-results-sidebar form {
  width: 100%;
  position: relative;
  gap: 2vw;
}

aside.tour-search-results-sidebar div.filter-section {
  padding: 0.5vw 1vw;
  width: 100%;
  min-height: 5vw;
  position: relative;
  margin-bottom: 1vw !important;
}

aside.tour-search-results-sidebar div.filter-section::before {
  content: "";
  width: 100%;
  height: 0.1vw !important;
  background: linear-gradient(
    to right,
    transparent,
    rgba(192, 192, 192, 0.5),
    transparent
  );
  position: absolute;
  bottom: -1vw;
  right: 0;
}

aside.tour-search-results-sidebar div.filter-section > h3 {
  font-weight: 600;
  font-size: 1vw;
  width: 100%;
  text-align: start;
  margin-bottom: 1vw;
}

div.filter-section.price-range::before {
  height: 0.1vw !important;
  bottom: -0.25vw !important;
}

div.filter-section.price-range div.number-inputs {
  margin: 0.5vw 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.3vw;
  direction: ltr !important;
  justify-content: space-between !important;
}

div.filter-section.price-range div.number-inputs label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: silver;
  font-size: 0.8vw;
  font-weight: normal;
}

div.filter-section.price-range input[type="text"] {
  width: 7vw;
  height: 1.75vw;
  border: none;
  border-radius: 0.75vw;
  background-color: rgba(192, 192, 192, 0.7);
  text-align: center;
}

div.filter-section.price-range input[type="text"]::-webkit-inner-spin-button {
  display: none;
}

div.filter-section.price-range input[type="text"]:focus {
  outline: none;
  background-color: silver;
}

div.filter-section.price-range div.slider {
  margin: 1vw 0;
  width: 100%;
  height: 0.3vw;
  background-color: silver;
  border-radius: 0.2vw;
  position: relative;
}

div.filter-section.price-range div.progress {
  height: 0.3vw;
  background-color: var(--blue2);
  border-radius: 0.2vw;
  position: absolute;
  left: 0;
  right: 0;
}

div.filter-section.price-range div.range-inputs {
  width: 100%;
  position: relative;
  top: -1.35vw;
  direction: ltr !important;
}

div.filter-section.price-range input[type="range"] {
  width: 100%;
  height: 0.3vw;
  position: absolute;
  left: 0;
  -webkit-appearance: none;
  background: none;
  pointer-events: none;
  direction: ltr !important;
}

div.filter-section.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0.9vw;
  height: 0.9vw;
  background-color: var(--blue2);
  border-radius: 100%;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s;
}
div.filter-section.price-range input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  width: 0.9vw;
  height: 0.9vw;
  background-color: var(--blue2);
  border-radius: 100%;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s;
}
div.filter-section.price-range input[type="range"]:hover::-moz-range-thumb {
  box-shadow: 0 0 0.8vw #0daaff;
}
div.filter-section.price-range input[type="range"]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0.8vw #0daaff;
}
div.filter-section .filter-radio-btns {
  width: 100%;
  align-items: start !important;
  position: relative;
  gap: 0.3vw;
}

div.filter-section .filter-radio-btns > div {
  width: 100%;
  align-items: start !important;
  position: relative;
  gap: 0.15vw;
}

div.filter-section .filter-radio-btns input {
  display: none;
}

div.filter-section .filter-radio-btns label {
  font-size: 0.85vw;
  cursor: pointer;
  gap: 0.25vw;
  transition: all 0.25s ease-in-out;
}

div.filter-section .filter-radio-btns label * {
  pointer-events: none;
}

div.filter-section .filter-radio-btns label .label-button {
  width: 2.5vw;
  height: 1.25vw;
  border-radius: 2vw;
  border: 0.1vw solid silver;
  transition: all 0.25s ease-in-out;
  position: relative;
}

div.filter-section .filter-radio-btns label .label-button span {
  margin: 0 !important;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: linear-gradient(45deg, #d3d3d3, white);
  position: absolute;
  left: 0.1vw;
  box-shadow: 0 0 0.25vw rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease-in-out;
}

div.filter-section.departure-clock .filter-radio-btns > div {
  flex-wrap: wrap !important;
  gap: 0.5vw;
}

div.filter-section.departure-clock .filter-radio-btns label .label-button {
  padding: 0.5vw;
  width: 7.5vw;
  height: 3.25vw;
  border-radius: 1vw;
  gap: 0.5vw;
  overflow: hidden;
}

div.filter-section.departure-clock .filter-radio-btns label .label-button i {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.25;
  transition: all 0.25s;
}

div.filter-section.departure-clock .filter-radio-btns label .label-button img {
  width: 20%;
  position: relative;
  z-index: 2;
  transform: scale(1.2);
}

div.filter-section.departure-clock .filter-radio-btns label .label-button h5 {
  width: 75%;
  font-size: 0.8vw;
  font-weight: 600;
  gap: 0.25vw;
  content: var(--dark-font);
  position: relative;
  z-index: 2;
}

div.filter-section.departure-clock .filter-radio-btns label .label-button h5 p {
  font-size: 0.7vw;
  font-weight: normal;
  position: relative;
  z-index: 2;
}

div.filter-section.air-lines .filter-radio-btns label {
  gap: 0.75vw;
}

div.filter-section.air-lines .filter-radio-btns label img {
  width: 2vw;
}

div.filter-section
  .filter-radio-btns
  input:nth-child(1):checked
  ~ div
  label:nth-child(1)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(2):checked
  ~ div
  label:nth-child(2)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(3):checked
  ~ div
  label:nth-child(3)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(4):checked
  ~ div
  label:nth-child(4)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(5):checked
  ~ div
  label:nth-child(5)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(6):checked
  ~ div
  label:nth-child(6)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(7):checked
  ~ div
  label:nth-child(7)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(8):checked
  ~ div
  label:nth-child(8)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(9):checked
  ~ div
  label:nth-child(9)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(10):checked
  ~ div
  label:nth-child(10)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(7):checked
  ~ div
  label:nth-child(11)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(8):checked
  ~ div
  label:nth-child(12)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(9):checked
  ~ div
  label:nth-child(13)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(10):checked
  ~ div
  label:nth-child(14)
  i {
  background: var(--blue2);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(1):checked
  ~ div
  label:nth-child(1)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(2):checked
  ~ div
  label:nth-child(2)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(3):checked
  ~ div
  label:nth-child(3)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(4):checked
  ~ div
  label:nth-child(4)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(5):checked
  ~ div
  label:nth-child(5)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(6):checked
  ~ div
  label:nth-child(6)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(7):checked
  ~ div
  label:nth-child(7)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(8):checked
  ~ div
  label:nth-child(8)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(9):checked
  ~ div
  label:nth-child(9)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(10):checked
  ~ div
  label:nth-child(10)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(7):checked
  ~ div
  label:nth-child(11)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(8):checked
  ~ div
  label:nth-child(12)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(9):checked
  ~ div
  label:nth-child(13)
  i
  span {
  left: calc(100% - 1.1vw);
}

div.filter-section
  .filter-radio-btns
  input:nth-child(10):checked
  ~ div
  label:nth-child(14)
  i
  span {
  left: calc(100% - 1.1vw);
}

.tour-search-results-main-content {
  width: calc(100% - 23.5vw);
  min-height: 20vw;
  position: relative;
  justify-content: start !important;
  gap: 1vw;
}

.calendar-sec {
  padding: 1.5vw;
  width: 100%;
  min-height: 10vw;
  border-radius: 1vw;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.15);
  position: relative;
  justify-content: start !important;
  gap: 1.25vw;
}

.calendar-sec h3 {
  width: 100%;
  justify-content: start !important;
  gap: 0.8vw;
  font-size: 0.95vw;
  font-weight: 500;
  position: relative;
}

.calendar-sec h3 i {
  font-size: 1.4vw;
}

.calendar-sec h3 span {
  position: relative;
  font-weight: 300;
  font-size: 0.8vw;
}

.calendar-container {
  width: 100%;
  height: 7vw;
  border-radius: 0.85vw;
  border: 0.1vw solid rgba(192, 192, 192, 0.3);
  position: relative;
}

.calendar-container input {
  display: none;
}

.calendar-container .day-card {
  margin: 0 !important;
  width: calc(100% / 7);
  height: 100%;
  gap: 0.1vw;
  position: relative;
}

.calendar-container .day-card:not(.day-card:last-child)::before {
  content: "";
  width: 0.1vw;
  height: 72%;
  background-color: rgba(192, 192, 192, 0.2);
  position: absolute;
  left: 0;
}

.calendar-container .day-card:hover {
  background-color: rgba(13, 170, 255, 0.1);
}

.calendar-container .day-card.today {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(1):checked ~ div label:nth-child(1) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(2):checked ~ div label:nth-child(2) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(3):checked ~ div label:nth-child(3) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(4):checked ~ div label:nth-child(4) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(5):checked ~ div label:nth-child(5) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(6):checked ~ div label:nth-child(6) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container input:nth-child(7):checked ~ div label:nth-child(7) {
  border: 0.15vw solid var(--blue2);
}

.calendar-container .day-card div {
  color: #4d4d4d;
  font-weight: 300;
  font-size: 0.7vw;
}

.calendar-container .day-card div:nth-child(1) {
  font-size: 0.92vw;
}

.calendar-container .day-card div:nth-child(2) {
  direction: ltr !important;
}

.calendar-container .day-card div:nth-child(3).highest * {
  color: red !important;
}

.calendar-container .day-card div:nth-child(3).lightest * {
  color: #00c900 !important;
}

.calendar-container .day-card div:nth-child(3) :first-child {
  font-size: 1.25vw;
  font-weight: normal;
}

.calendar-container .day-card div:nth-child(3) :last-child {
  font-size: 0.75vw;
  font-weight: normal;
}

.quick-filters {
  width: 100%;
  position: relative;
  gap: 1vw;
}

.quick-filters input {
  display: none;
}

.quick-filters h2 {
  font-size: 1.1vw;
  color: #0c0e13;
  font-weight: 500;
}

.quick-filters-cont {
  padding: 0 1vw;
  border-radius: 3vw;
  border: 0.1vw rgba(192, 192, 192, 0.3) solid;
  height: 3.2vw;
  background-color: #ffffff;
  overflow: hidden;
}

.quick-filters-cont .quick-filter-card {
  width: 9vw;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  gap: 0.15vw;
}

.quick-filters-cont .quick-filter-card::after {
  content: "";
  width: 80%;
  height: 0.12vw;
  background-color: var(--blue2);
  position: absolute;
  bottom: 0;
  border-radius: 0.1vw;
  opacity: 0;
  transition: all 0.25s;
}

.quick-filters input:nth-child(2):checked ~ div label:nth-child(1)::after {
  opacity: 1;
}

.quick-filters input:nth-child(3):checked ~ div label:nth-child(2)::after {
  opacity: 1;
}

.quick-filters input:nth-child(4):checked ~ div label:nth-child(3)::after {
  opacity: 1;
}

.quick-filters input:nth-child(5):checked ~ div label:nth-child(4)::after {
  opacity: 1;
}

.quick-filters input:nth-child(6):checked ~ div label:nth-child(5)::after {
  opacity: 1;
}

.quick-filters-cont .quick-filter-card:not(:last-child)::before {
  content: "";
  width: 0.1vw;
  height: 60%;
  position: absolute;
  left: 0;
  background-color: rgba(192, 192, 192, 0.3);
}

.quick-filters-cont .quick-filter-card div:nth-child(1) {
  text-align: center;
  font-size: 0.9vw;
  font-weight: 500;
  color: #0c0e13;
}

.quick-filters-cont .quick-filter-card div:nth-child(2) {
  opacity: 0.6;
  font-size: 0.75vw;
}

.quick-filters-cont .quick-filter-card div:nth-child(2) {
}

.tour-offers-container {
  margin-top: 1vw !important;
  width: 100%;
  min-height: 20vw;
  position: relative;
  justify-content: start !important;
  gap: 1vw;
}

.tour-offer-card {
  width: 100%;
  height: 12vw;
  border-radius: 0.85vw;
  position: relative;
  box-shadow: 0 0 0.2vw rgba(0, 0, 0, 0.1);
  background-color: white;
  display: grid;
  grid-template-columns: repeat(3, 30% 45% 25%);
  overflow: hidden;
}

.tour-offer-card figure {
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.tour-offer-card figure img {
  width: 100%;
  height: 100%;
}

.tour-offer-card > div.middle {
  padding: 1vw;
  align-items: start !important;
  justify-content: start !important;
  gap: 0.75vw;
  height: 100%;
}

.tour-offer-card > div.middle h2 {
  font-size: 1.4vw;
  font-weight: bold;
}

.tour-offer-card > div.middle ul.stars {
  font-size: 0.85vw;
  gap: 0.25vw;
  color: #ffb100;
}

.tour-offer-card > div.middle h5 {
  gap: 0.25vw;
  font-size: 0.9vw;
  font-weight: normal;
}

.tour-offer-card > div.middle h5 i {
  font-size: 0.95vw;
}

.tour-offer-card > div.middle ul.labels {
  gap: 0.3vw;
}

.tour-offer-card > div.middle ul.labels li {
  border-radius: 1vw;
  font-size: 0.7vw;
  padding: 0.3vw 0.6vw;
  background: rgba(192, 192, 192, 0.4);
}

.tour-offer-card > div.price {
  height: 12vw;
  gap: 0.75vw;
}

.tour-offer-card > div.price h3 {
  font-size: 0.85vw;
  gap: 0.5vw;
}

.tour-offer-card > div.price h3 div {
  font-size: 1.2vw;
  font-weight: bold;
  gap: 0.25vw;
  color: var(--blue2);
}

.tour-offer-card > div.price h3 div svg {
  width: 1vw;
  fill: var(--blue2);
}

.tour-offer-card > div.price a {
  width: 75%;
  background-color: var(--blue2);
  color: white;
  font-weight: 500;
  font-size: 0.95vw;
  transition: all 0.25s ease-in-out;
}

.tour-offer-card > div.price a:hover {
  filter: brightness(1.25);
  color: var(--dark-font);
}
.mobile-filtering {
  display: none;
}
i#close-sidebar-mobile {
  display: none;
}
aside.tour-search-results-sidebar > h1 {
  justify-content: start;
}
.place-input-container {
  justify-content: start;
  position: relative;
  border: 0.1vw solid silver;
  border-radius: 1vw;
  overflow: hidden;
}
.place-input-container i {
  position: absolute;
  right: 1vw;
  font-size: 1.2vw;
  color: var(--sand);
}
.place-input {
  background-color: white !important;
  color: var(--blue2);
}
.place-input::placeholder {
  color: var(--blue2) !important;
}
.score-section {
  width: 100%;
  align-items: start;
  gap: 1vw;
}
.place-container h3 {
  margin-top: 1vw;
  font-weight: 600;
  font-size: 1vw;
  width: 100%;
  text-align: start;
  margin: 1vw 0;
}
.place-container {
  align-items: start;
  justify-content: start;
  width: 100%;
}
.score-section h3 {
  font-weight: 600;
  font-size: 1vw;
  width: 100%;
  text-align: start;
  margin: 1vw 0;
}
.checkbox-container {
  gap: 1vw;
}
.checkbox-container input[type="checkbox"] {
  width: 1.5vw;
  height: 1.5vw;
  border-radius: 2.6vw;
  accent-color: var(--blue2) !important;
  color: white;
}

@media screen and (max-width: 450px) {
  .target-search-details.active {
    display: flex !important;
    gap: 2.77vw;
  }
  section.search-result-again {
    padding: 2vw 5vw;
    width: 100%;
    min-height: 14vw;
    box-shadow: 0 1.2vw 1.6vw rgba(0, 0, 0, 0.2);
  }
  .target-search-details i {
    font-size: 3vw !important;
  }
  .target-search-details div {
    gap: 0.72vw;
    font-size: 2.4vw;
  }
  .target-search-details span {
    gap: 0.72vw;
    font-size: 2.4vw !important;
  }
  .target-search-details button.search-revealer {
    padding: 2vw;
  }
  main.tour-search-results {
    padding: 3vw 3vw;
    gap: 1vw;
  }
  aside.tour-search-results-sidebar {
    padding: 1vw;
    width: 22vw;
    min-height: 5vw;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 2.5vw rgba(0, 0, 0, 0.15);
    position: fixed;
    transform: translateX(-1400vw);
    justify-content: start !important;
    gap: 2vw;
    transition: all 0.3s ease-in-out;
  }
  aside.show-sidebar {
    transform: translateX(0);
    background-color: rgba(255, 255, 255, 1);
    z-index: 59;
    backdrop-filter: blur(0);
    width: 100vw;
    height: 100vh;
    left: 0;
    bottom: 0vh;
    position: fixed;
    transition: all 0.2s ease-in-out;
  }
  aside.show-sidebar.fixed {
    transform: translateX(9vw);
  }
  aside.tour-search-results-sidebar > h1 {
    padding: 1.5vw 1vw;
    margin-top: 46vw;
    width: 100%;
    font-size: 3.5vw;
    justify-content: space-between;
  }
  aside.show-sidebar.fixed > h1 {
    padding: 1.5vw 1vw;
    margin-top: 19vw;
    width: 100%;
    font-size: 3.5vw;
    justify-content: space-between;
  }
  aside.tour-search-results-sidebar > h1 i {
    font-size: 4.5vw;
    display: block !important;
  }
  aside.tour-search-results-sidebar > h1::before {
    content: "";
    width: 100%;
    height: 0.43vw;
  }
  aside.tour-search-results-sidebar div.filter-section > h3 {
    font-size: 2.9vw;
  }
  div.filter-section.price-range div.number-inputs label {
    font-size: 2.8vw;
    text-align: right;
    gap: 1vw;
    align-items: start;
  }
  div.filter-section.price-range div.slider {
    margin: 1vw 0;
    width: 100%;
    height: 0.8vw;
    background-color: silver;
    border-radius: 1.2vw;
    position: relative;
  }
  div.filter-section.price-range div.progress {
    height: 0.8vw;
    background-color: var(--blue2);
    border-radius: 1.2vw;
    position: absolute;
    left: 0;
    right: 0;
  }
  div.filter-section.price-range div.range-inputs {
    width: 100%;
    position: relative;
    direction: ltr !important;
  }
  div.filter-section .filter-radio-btns label {
    font-size: 2.85vw;
    cursor: pointer;
    width: 42vw;
    white-space: nowrap;
    gap: 2.25vw;
    justify-content: start;
    transition: all 0.25s ease-in-out;
  }
  div.filter-section .filter-radio-btns label .label-button {
    width: 8.5vw;
    height: 4.25vw;
    border-radius: 3vw;
    border: 0.2vw solid rgb(171, 171, 171);
    transition: all 0.25s ease-in-out;
    position: relative;
  }
  div.filter-section .filter-radio-btns label .label-button span {
    margin: 0 !important;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: linear-gradient(45deg, #d3d3d3, white);
    position: absolute;
    left: 0.3vw !important;
    box-shadow: 0 0 0.25vw rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease-in-out;
  }
  aside.tour-search-results-sidebar form {
    overflow-y: auto;
  }

  aside.tour-search-results-sidebar div.departure-clock {
    padding-bottom: 26vw;
  }
  div.filter-section
    .filter-radio-btns
    input:nth-child(1):checked
    ~ div
    label:nth-child(1)
    i
    span {
    left: calc(100% - 3.4vw) !important;
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(2):checked
    ~ div
    label:nth-child(2)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(3):checked
    ~ div
    label:nth-child(3)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(4):checked
    ~ div
    label:nth-child(4)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(5):checked
    ~ div
    label:nth-child(5)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(6):checked
    ~ div
    label:nth-child(6)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(7):checked
    ~ div
    label:nth-child(7)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(8):checked
    ~ div
    label:nth-child(8)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(9):checked
    ~ div
    label:nth-child(9)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(10):checked
    ~ div
    label:nth-child(10)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(7):checked
    ~ div
    label:nth-child(11)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(8):checked
    ~ div
    label:nth-child(12)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(9):checked
    ~ div
    label:nth-child(13)
    i
    span {
    left: calc(100% - 3.4vw);
  }

  div.filter-section
    .filter-radio-btns
    input:nth-child(10):checked
    ~ div
    label:nth-child(14)
    i
    span {
    left: calc(100% - 3.4vw);
  }
  div.filter-section.departure-clock .filter-radio-btns label .label-button {
    padding: 0.5vw;
    width: 22.5vw;
    height: 8.25vw;
    border-radius: 2vw;
    gap: 0.95vw;
  }
  div.filter-section.departure-clock .filter-radio-btns label .label-button h5 {
    width: 75%;
    font-size: 2.98vw;
    font-weight: 600;
    gap: 0.25vw;
    content: var(--dark-font);
    position: relative;
    z-index: 2;
  }
  div.filter-section.departure-clock .filter-radio-btns > div {
    flex-wrap: wrap !important;
    gap: 2.5vw;
  }
  div.filter-section.price-range input[type="text"] {
    width: 17vw;
    height: 5.75vw;
    border: none;
    border-radius: 1.75vw;
  }

  .tour-search-results-main-content {
    width: 100%;
    min-height: 20vw;
    position: relative;
    justify-content: start !important;
    gap: 1vw;
  }
  .quick-filters {
    justify-content: start;
    flex-direction: column;
    gap: 2vw;
  }
  .quick-filters h2 {
    font-size: 3.41vw;
    width: 80%;
    justify-content: space-between;
  }
  .quick-filters-cont {
    border-radius: 3vw;
    border: 0.3vw rgba(192, 192, 192, 0.3) solid;
    height: 10.2vw;
  }
  .quick-filters-cont .quick-filter-card {
    width: 19.7vw;
    height: 100%;
    gap: 0.15vw;
  }
  .quick-filters-cont .quick-filter-card div:nth-child(1) {
    text-align: center;
    font-size: 2.4vw;
    font-weight: 500;
    color: #0c0e13;
  }
  .tour-offers-container {
    margin-top: 3vw !important;
    gap: 3vw;
  }
  .tour-offer-card {
    width: 100%;
    height: 28vw;
    border-radius: 2.6vw;
    position: relative;
    box-shadow: 0 0 0.7vw rgba(0, 0, 0, 0.15);
    background-color: white;
    display: grid;
    grid-template-columns: repeat(3, 30% 45% 25%);
    overflow: hidden;
  }
  .tour-offer-card > div.middle h2 {
    font-size: 3.14vw;
    font-weight: bold;
  }
  .tour-offer-card > div.middle {
    gap: 1.75vw;
  }
  .tour-offer-card > div.middle ul.stars {
    font-size: 2.25vw;
    gap: 0.25vw;
    color: #ffb100;
  }
  .tour-offer-card > div.middle h5 {
    gap: 1.25vw;
    font-size: 2.3vw;
    white-space: nowrap;
  }
  .tour-offer-card > div.middle h5 i {
    font-size: 2.95vw;
  }
  .tour-offer-card > div.middle ul.labels li {
    border-radius: 2vw;
    font-size: 2.7vw;
    padding: 0.8vw 1.6vw;
    background: rgba(192, 192, 192, 0.4);
  }
  .tour-offer-card > div.middle ul.labels {
    gap: 1.3vw;
  }
  .tour-offer-card > div.price {
    height: 80%;
    gap: 1.75vw;
    margin-top: 3vw;
    justify-content: space-between;
  }
  .tour-offer-card > div.price h3 {
    font-size: 2.85vw;
    gap: 1.5vw;
  }
  .tour-offer-card > div.price h3 div {
    font-size: 3.2vw;
  }
  .tour-offer-card > div.price h3 div svg {
    width: 3.4vw;
  }
  .tour-offer-card > div.price a {
    width: 75%;
    font-size: 2.35vw;
    white-space: nowrap;
    border-radius: 1.5vw;
  }
  .mobile-filtering {
    display: block;
    font-size: 3.41vw;
    background-color: #ffffff;
    padding: 1.37vw 2.3vw;
    border-radius: 2vw;
    border: 1px solid rgb(222, 222, 222);
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 4px; */
  }
  .mobile-filter-div {
    gap: 2vw;
    margin-top: 2vw;
  }
  div.filter-section .filter-radio-btns > div {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.15vw;
    justify-content: space-between;
    width: 100%;
    padding: 2vw;
  }
  section.search-result-again form.active {
    display: flex !important;
    height: 115vw;
    justify-content: start;
    padding-top: 2vw;
  }
  section.search-result-again form .search-again-form-closer {
    position: absolute;
    top: 1vw;
    left: 5vw;
    color: var(--blue2);
    font-weight: normal;
    gap: 0.4vw;
    font-size: 3.9vw;
  }
  section.search-result-again form .search-inputs-container {
    gap: 2.2vw;
    flex-direction: column;
    width: 100%;
    margin-top: 9vw;
    justify-content: start !important;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(1) {
    width: 100%;
    gap: 6vw;
    flex-direction: column;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group
    .input-group
    > i {
    right: 1.5vw;
    font-size: 3.9vw;
    bottom: 3.8vw;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(1)
    .input-group
    i.fa-magnifying-glass {
    top: 4vw !important;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(1)
    .reverseHandler-location {
    padding: 1.9vw;
    background: #cfd7de;
    border-radius: 1vw;
    font-size: 3.42vw;
    transform: rotate(90deg);
    box-shadow: 0 0 2.3vw rgba(0, 0, 0, 0.15) !important;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(2) {
    width: 100%;
    gap: 6vw;
    margin-top: 4vw;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(2)
    .input-group {
    width: 100%;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(3) {
    width: 100%;
    margin-top: 4vw;
  }

  section.search-result-again form .flights-options > div button {
    min-width: 32vw;
    background: rgba(185, 194, 203, 0.5);
    box-shadow: 0 0 1.3vw rgba(0, 0, 0, 0.15) !important;
    cursor: pointer;
    gap: 0.3vw;
    padding: 1vw;
    border-radius: 1.6vw;
  }
  section.search-result-again
    form
    .flights-options
    > div
    .flights-options-drop-down {
    min-width: 32vw;
    min-height: 25vw;
    border-radius: 1.8vw;
    box-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.4);
  }
  section.search-result-again
    form
    .flights-options
    > div
    .flights-options-drop-down
    label {
    padding: 1.65vw 1.75vw;
    min-width: 7vw;
    justify-content: start !important;
    font-size: 3.39vw;
    font-weight: normal;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    margin: 0 !important;
    text-align: start !important;
  }
  section.search-result-again form .flights-options > div button i {
    font-size: 3.2vw;
  }
  section.search-result-again
    form
    .search-inputs-container
    .search-input-group:nth-child(1)
    .input-group {
    width: 100%;
    position: relative;
  }

  .place-input-container {
    justify-content: start;
    position: relative;
    border: 0.1vw solid silver;
    border-radius: 2vw;
    overflow: hidden;
    width: 60%;
  }
  .place-input-container i {
    position: absolute;
    right: 2.2vw;
    font-size: 5.2vw;
    color: var(--sand);
    bottom: 3.29vw;
  }
  aside.tour-search-results-sidebar div.filter-section {
    padding: 1.5vw 1vw;
  }
  .place-input {
    background-color: white !important;
    color: var(--blue2);
  }
  .place-input::placeholder {
    color: var(--blue2) !important;
  }
  .score-section {
    width: 100%;
    align-items: start;
    gap: 1vw;
    padding-bottom: 32vw;
    padding-right: 3vw;
  }
  .place-container h3 {
    font-weight: 600;
    font-size: 2.9vw;
    width: 100%;
    text-align: start;
    margin: 2vw 0;
  }
  .place-container {
    align-items: start;
    justify-content: start;
    width: 100%;
  }
  .score-section h3 {
    font-weight: 600;
    font-size: 2.9vw;
    width: 100%;
    text-align: start;
    margin: 2vw 0;
  }
  .checkbox-container {
    gap: 2vw;
    padding-bottom: 2vw;
  }
  .checkbox-container input[type="checkbox"] {
    width: 5.5vw;
    height: 5.5vw;
    border-radius: 2.6vw;
    accent-color: var(--blue2) !important;
    color: white;
  }
  .checkbox-container label {
    font-size: 3vw;
  }
  .quick-filters-cont .quick-filter-card::after {
    content: "";
    width: 80%;
    height: 0.42vw;
    background-color: var(--blue2);
    position: absolute;
    bottom: 0;
    border-radius: 0.1vw;
    opacity: 0;
    transition: all 0.25s;
  }
  div.filter-section.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 2.5vw;
    height: 2.5vw;
    background-color: var(--blue2);
    border-radius: 100%;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s;
  }
  div.filter-section.price-range input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    width: 2.5vw;
    height: 2.5vw;
    background-color: var(--blue2);
    border-radius: 100%;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s;
  }
}
