:root {
  --logo-size-height: 80px;
  --space-block: 50px;
  --time-animation-change-vehicles-css: 750ms;
  --time-animation-change-vehicles-js: 750;
}
@media only screen and (max-width: 868px) {
  :root {
    --logo-size-height: 65px;
    --space-block: 35px;
  }
}

#main.search-page section .search-interface {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  margin-bottom: calc(120px + 8vw);
}
#main.search-page section .search-interface .search-image {
  width: 50%;
  position: relative;
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#main.search-page section .search-interface .search-box {
  width: 55%;
  aspect-ratio: 5/3;
  z-index: 2;
  position: absolute;
  background-color: #cba567;
  left: 0;
  top: 25%;
  padding: 60px 5vw;
}
#main.search-page section .search-interface .search-box__navigation {
  display: flex;
  column-gap: 5vw;
  border-bottom: 1px solid #5f3813;
  padding-bottom: 1vw;
  margin-bottom: 80px;
}
#main.search-page section .search-interface .search-box__navigation .search-label {
  font-family: "Genos", sans-serif;
  font-size: 2.2vw;
  color: #d6d6d6;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  margin-bottom: 5px;
  white-space: pre;
}
#main.search-page section .search-interface .search-box__navigation .search-label.active {
  color: #5f3813;
}
#main.search-page section .search-interface .search-box__navigation .search-label.active::after {
  content: "";
  position: absolute;
  bottom: -0.5vw;
  left: 0;
  width: 10vw;
  height: 0.2vw;
  background-color: #5f3813;
}
#main.search-page section .search-interface .search-box__form {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main.search-page section .search-interface .search-box__form .search-box__select {
  margin-bottom: 3vw;
  width: 80%;
  position: relative;
  height: 5vw;
  padding-left: 35px;
  padding-right: 45px;
  font-size: 1.6vw;
  outline: none !important;
  font-family: "Lexend", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("../../assets/images/symbols/arrow_outline.png");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center;
  border: none;
  background-color: white;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main.search-page section .search-interface .search-box__form .search-box__select:invalid {
  color: #d6d6d6;
}
#main.search-page section .search-interface .search-box__form .search-box__select .search-box__option {
  color: #000000;
  padding: 10px 0;
}
#main.search-page section .search-interface .search-box__form .search-box__submit {
  width: 80%;
  height: 5vw;
  font-size: 1.6vw;
  font-family: "Lexend", sans-serif;
  font-weight: bold;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid #7d4e13;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
#main.search-page section .search-interface .search-box__form .search-box__submit:hover {
  background-color: #7d4e13;
  color: #ffffff;
}
#main.search-page section .search-result__box {
  position: relative;
}
#main.search-page section .search-result__box h3.title-block {
  margin-top: 75px;
  margin-bottom: 35px;
  text-align: left;
}
#main.search-page section .search-result__box #vehicles-type {
  color: #7d4e13;
  background-color: #d6d6d6;
  text-align: center;
  padding: 8px 30px;
  width: max-content;
  margin-bottom: 50px;
  border-radius: 100rem;
  font-family: "Lexend", sans-serif;
  font-size: 1.2rem;
  position: relative;
  display: block;
}
#main.search-page section .search-result__box .search-result__navigation {
  opacity: 0;
  position: absolute;
  background-color: #d6d6d6;
  border: 1px solid #707070;
  width: 40px;
  height: 40px;
  border-radius: 100rem;
  z-index: 2;
  cursor: pointer;
  transition: 0.5s;
  animation: showNavigationSR 0.5s ease-in-out;
  transform: translateY(-50%);
  background-color: rgba(214, 214, 214, 0.33);
}
@keyframes showNavigationSR {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#main.search-page section .search-result__box .search-result__navigation.for-trip {
  top: calc(50% + 70px);
}
#main.search-page section .search-result__box .search-result__navigation.for-rent {
  top: calc(50% + 110px);
}
@media screen and (max-width: 314px) {
  #main.search-page section .search-result__box .search-result__navigation.for-trip {
    top: calc(50% + 90px);
  }
  #main.search-page section .search-result__box .search-result__navigation.for-rent {
    top: calc(50% + 130px);
  }
}
#main.search-page section .search-result__box .search-result__navigation#search-result__next {
  right: -10px;
}
#main.search-page section .search-result__box .search-result__navigation#search-result__next::after {
  transform: rotate(-90deg);
}
#main.search-page section .search-result__box .search-result__navigation#search-result__previous {
  left: -10px;
}
#main.search-page section .search-result__box .search-result__navigation#search-result__previous::after {
  transform: rotate(90deg);
}
#main.search-page section .search-result__box .search-result__navigation::after {
  content: "";
  position: absolute;
  background-image: url("../../assets/images/symbols/arrow_outline.png");
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#main.search-page section .search-result__box .search-result__table {
  overflow-x: auto;
  position: relative;
}
#main.search-page section .search-result__box .search-result__table table {
  width: 85%;
  font-size: 1.8rem;
  font-family: "Lexend", sans-serif;
  margin: 0 auto;
  border-spacing: 0;
  border-collapse: unset;
}
#main.search-page section .search-result__box .search-result__table table thead {
  background-color: #7d4e13;
  color: #ffffff;
}
#main.search-page section .search-result__box .search-result__table table thead th {
  text-transform: uppercase;
}
#main.search-page section .search-result__box .search-result__table table tr th,
#main.search-page section .search-result__box .search-result__table table tr td {
  padding: 20px 10px;
  text-align: left;
  white-space: pre;
}
#main.search-page section .search-result__box .search-result__table table tr th:first-child,
#main.search-page section .search-result__box .search-result__table table tr td:first-child {
  padding-left: 3vw;
}
#main.search-page section .search-result__box .search-result__table table tr th:last-child,
#main.search-page section .search-result__box .search-result__table table tr td:last-child {
  padding-right: 2vw;
}
#main.search-page section .search-result__box .search-result__table table tr td {
  border-bottom: 1px solid rgba(112, 112, 112, 0.4);
}
#main.search-page section .search-result__box .search-result__table .pagnition-navigation {
  margin-top: 32px;
  margin-bottom: 0;
}
@media screen and (max-width: 936px) {
  #main.search-page section .search-result__box h3.title-block {
    text-align: center;
  }
  #main.search-page section .search-result__box #search-result__next {
    opacity: 1;
  }
  #main.search-page section .search-result__box .search-result__table table {
    width: 100%;
  }
}
@media screen and (max-width: 868px) {
  #main.search-page section .search-interface {
    flex-direction: column-reverse;
    justify-content: center;
    margin-bottom: 75px;
  }
  #main.search-page section .search-interface .search-image {
    width: 100%;
  }
  #main.search-page section .search-interface .search-box {
    width: 100%;
    aspect-ratio: 0;
    position: relative;
    background-color: #cba567;
    top: 0;
    padding: 35px 20px;
    transform: translateY(-60px);
  }
  #main.search-page section .search-interface .search-box__navigation {
    column-gap: 0;
    justify-content: space-around;
    padding-bottom: 16px;
    margin-bottom: 30px;
  }
  #main.search-page section .search-interface .search-box__navigation .search-label {
    font-size: 5vw;
    margin-bottom: 5px;
  }
  #main.search-page section .search-interface .search-box__navigation .search-label.active::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30vw;
    height: 4px;
  }
}
@media screen and (max-width: 868px) and (max-width: 450px) {
  #main.search-page section .search-interface .search-box__navigation .search-label {
    font-size: 4vw;
  }
  #main.search-page section .search-interface .search-box__navigation .search-label.active::after {
    width: 24vw;
  }
}
@media screen and (max-width: 868px) {
  #main.search-page section .search-interface .search-box__form .search-box__select {
    margin-bottom: 30px;
    width: 100%;
    height: 65px;
    font-size: 1.7rem;
  }
  #main.search-page section .search-interface .search-box__form .search-box__submit {
    width: 100%;
    height: 65px;
    font-size: 2rem;
  }
}

/*# sourceMappingURL=search.css.map */
