@import '../var';

.tour__page {
  background-color: $bg;
}

.tour__page .tour__left h2 {
  font-size: 24px;
}

.tour__page .tour__left .form__con .form {
  border: 1px solid rgba(201, 201, 201, 0.459);
}

.tour__page .tour__left .form__con .form button {
  border: none;
  background: none;
  color: #8b8ba7;
}

.tour__page .tour__left .form__con .form {
  --timing: 0.3s;
  --width-of-input: 200px;
  --height-of-input: 50px;
  --border-height: 2px;
  --input-bg: #fff;
  --border-color: #2f2ee9;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  transition: border-radius 0.5s ease;
  background: var(--input-bg, #fff);
}

.tour__page .tour__left .form__con .input {
  font-size: 1.1rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
  transition: 0.6s all linear;
}

.tour__page .tour__left .form__con .input:focus {
  &::placeholder {
    color: orange;
  }
}

.tour__page .tour__left .form__con .form:before {
  content: '';
  position: absolute;
  background: orange;
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}

.tour__page .tour__left .form__con input:focus {
  outline: none;
}

.tour__page .tour__left .form__con .form:focus-within:before {
  transform: scale(1);
}

.tour__page .tour__left .form__con .reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}

.tour__page .tour__left .form__con input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}

.tour__page .tour__left .form__con .form svg {
  width: 17px;
  margin-top: 3px;
}

.tour__page .tour__left .price__range {
  padding: 16px;
  border: 1px solid rgba(201, 201, 201, 0.459);
}

.tour__page .tour__left .price__range .price__slider {
  padding: 8px 14px;
}

.tour__page .tour__left .price__range .css-187mznn-MuiSlider-root {
  color: orange;
}

.tour__page .tour__left .price__range .css-nnid7-MuiSlider-valueLabel {
  background-color: orange;
}

.tour__page .tour__left .tour__type {
  border: 1px solid rgba(201, 201, 201, 0.459);
  padding: 16px;
}

.tour__page .tour__left .tour__type .form-check-input {
  border-color: #8b8ba7;
  border-radius: 0;
  cursor: pointer;
}

.tour__page .tour__left .tour__type .form-check-input:focus {
  box-shadow: none;
}

.tour__page .tour__left .tour__type .form-check-label {
  color: #40404b;
  font-weight: 500;
}

.tour__page .tour__left .tour__type .form-check-input.is-valid:checked {
  background-color: orange;
}

.tour__page .tour__left .select__desc {
  padding: 16px;
  border: 1px solid rgba(201, 201, 201, 0.459);
}

.tour__page .tour__left .select__desc .selection .dropdown {
  width: 100%;
  border: 1px solid rgba(201, 201, 201, 0.459);
}

.tour__page .tour__left .select__desc .selection .dropdown button {
  color: #40404b;
  width: 100%;
  background-color: transparent;
  border: none;
  text-align: start;
  font-weight: 500;
}

.tour__page .tour__left .select__desc .selection .dropdown button::after {
  position: absolute;
  right: 5%;
  top: 50%;
  transition: 0.6s all;
}

.tour__page .tour__left .select__desc .selection .dropdown button:active {
  background-color: transparent;
  color: $black;
}

.tour__page .tour__left .select__desc .selection .dropdown .dropdown-menu {
  width: 100%;
  border-radius: 0;
  animation: opacity 0.4s linear;
}

.tour__page
  .tour__left
  .select__desc
  .selection
  .dropdown
  .dropdown-menu:active {
  animation: sopacity 0.4s linear;
}

.tour__page .tour__left .select__desc .selection .dropdown .dropdown-menu a {
  color: $black;
  transition: 0.3s;
}

.tour__page
  .tour__left
  .select__desc
  .selection
  .dropdown
  .dropdown-menu
  a:hover {
  background-color: orange;
  color: $white;
}

.tour__page .tour__left .select__desc .selection .dropdown .show::after {
  transform: rotateX(3.142rad);
}

.tour__page .tour__left .reset__filter .find__now {
  background-color: orange;
  width: 100%;
}

.tour__page .tour__left .reset__filter .find__now .label {
  color: $white;
}

.tour__page .tour__left .reset__filter .find__now .transition {
  background-color: $white;
}

.tour__page .tour__left .reset__filter .find__now:hover .transition {
  width: 25em;
  height: 25em;
}

.tour__page .tour__left .reset__filter .find__now:hover .label {
  color: orange;
}

.tour__page .tour__left .filter__mobile .accordion-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.tour__page .tour__left .filter__mobile .accordion-item:first-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.tour__page .tour__left .filter__mobile .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tour__page .tour__left .filter__mobile .accordion-item {
  border: 0;
}

.tour__page .tour__left .filter__mobile .accordion-button {
  border-radius: 0;
  font-size: 16px;
  font-family: $para__font;
}

.tour__page .tour__left .filter__mobile .accordion-body {
  padding: 16px 16px;
  background-color: $bg;
  margin-bottom: 16px;
}

.tour__page .tour__left .filter__mobile button:focus:not(:focus-visible) {
  outline: 0;
}

.tour__page .tour__left .filter__mobile .accordion-button:focus {
  z-index: 3;
  border-color: gray;
  outline: 0;
  box-shadow: none;
}

.tour__page .tour__left .filter__mobile .accordion-button:not(.collapsed) {
  color: orange;
  background-color: white;
  box-shadow: none;
}

.tour__page
  .tour__left
  .filter__mobile
  .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e');
  transform: var(--bs-accordion-btn-icon-transform);
}

.tour__page .tour__right .card__con {
  background-color: white;
  box-shadow: 0px 14px 20px -14px rgb(218, 218, 218);
}
.tour__page .tour__right .card__con .right__card {
  margin-left: 5px;
  /* border: 5px solid red; */
  width: 100%;
}
.tour__page .tour__right .card__con .right__card h2 {
  font-size: 24px;
}

.tour__page .tour__right .card__con .right__card p {
  color: #767677;
  font-weight: 600;
  font-size: 18px;
  line-height: 46px;
}

.tour__page .tour__right .card__con .right__card p del {
  font-size: 16px;
}

.tour__page .tour__right .card__con .right__card h4 {
  font-size: 22px;
  line-height: 46px;
}

.tour__page .tour__right .card__con .right__card ul li {
  font-size: 18px;
  color: #767677;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour__page .tour__right .card__con .right__card ul li i {
  color: orange;
}

.tour__page .tour__right .card__con .left__card {
  overflow: hidden;
}

.tour__page .tour__right .card__con .left__card img {
  height: 100%;
  object-fit: cover;
  transition: 0.6s all linear;
}

.tour__page .tour__right .card__con:hover .left__card img {
  transform: scale(1.1);
}

/* footer css */
