.box-result .search-filter {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.box-result .search-filter .search-filter-box {
  width: 200px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  background-color: #fff;
  background-image: url("../images/caret-down.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 95% center;
  border: 1px solid #444;
  cursor: pointer;
}

.box-result .search-nav {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.box-result .search-nav .search-nav-button {
  width: 335px;
  height: 50px;
}

.box-result .search-nav .search-nav-button:first-child {
  background-image: linear-gradient(#ff3a3a, #d50000);
}

.box-result .search-nav .search-nav-button:last-child {
  background-image: linear-gradient(#ffbb36, #ec9c00);
}

.box-result .search-result-items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.box-result .search-result-items .item {
  width: 320px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.box-result .search-result-items .item .info {
  flex: 1;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.box-result .search-result-items .item .info .title {
  font-size: 20px;
  font-weight: bold;
}

.box-result .search-result-items .item .info .cost {
  font-size: 24px;
  font-weight: bold;
  text-align: end;
  color: #0c6597;
  margin-top: auto;
}

.search-modal {
  width: 335px;
  background-color: #fff;
  padding: 20px 0 70px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 10%) 0px 5px 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.search-modal.show {
  display: flex;
}

.search-modal .title {
  font-size: 20px;
  font-weight: bold;
}

.search-modal .search-field {
  width: 275px;
  height: 40px;
  background-color: #eee;
  padding: 10px 15px 10px 10px;
  border-radius: 5px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.search-modal .search-field input {
  width: 100%;
  background-color: transparent;
  border: none;
}

.search-modal select {
  width: 275px;
  height: 40px;
  background-color: #eee;
  background-image: url("../images/caret-down.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding: 10px;
  border: none;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-modal .modal-nav {
  display: flex;
  gap: 10px;
}

.search-modal .modal-nav .shadow-button {
  width: 135px;
  text-align: center;
}

.search-modal .modal-nav .shadow-button:first-child {
  background-image: linear-gradient(#888, #666);
}

.search-modal .modal-nav .shadow-button:last-child {
  background-image: linear-gradient(#ff3a3a, #d50000);
}

.search-modal .close-button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #000;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  right: 10px;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-result .search-result-items .video.sliderItem {
  position: relative;
  align-self: stretch;
  padding: 10px;
  padding-bottom: 50px;
  box-shadow: 0 1px 15px rgba(216, 216, 216, 0.5);
  background: #fff;
  justify-items: center;
  display: flex;
  justify-content: center;
}

@media all and (max-width: 1024px) {
  .box-result .search-result-items .video.sliderItem {
    padding-bottom: 30px !important;
  }

  .box-result .search-result-items .video.sliderItem .item {
    width: 300px;
  }
}

@media all and (max-width: 820px) {
  .box-result .search-result-items .item {
    width: 100%;
  }
  .box-result .search-result-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 768px) {
  .box-result .search-filter {
    margin-top: 10px;
    gap: 15px;
  }

  .box-result .search-filter .search-filter-box {
    width: 160px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    background-size: 12px;
  }

  .box-result .search-nav {
    margin-top: 15px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .box-result .search-nav .search-nav-button {
    height: 40px;
  }

  .box-result .search-result-items {
    margin-top: 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }

  .box-result .search-result-items .item {
    width: 100%;
    height: auto;
  }

  .box-result .search-result-items .item .info .title {
    font-size: 12px;
  }

  .box-result .search-result-items .item .info .cost {
    font-size: 14px;
  }
}

.search-filter .active {
  color: #F5B971 !important;
  font-weight: bold;
  text-align: center;
  border: 1px solid #F5B971 !important;
  background-color: oldlace !important;
}

.up {
  background-image: url(../images/caret-up.svg) !important; 
}