#search-result {
  margin-top: 9vw;
}

#search-result .page-container {
  width: 70%;
  margin: 13vw auto 0;
}

#search-result h1 {
  font-size: 2.5vw;
  font-weight: 700;
  color: #3C3C3C;
}

#search-result .order-block .result-count {
  width: 75%;
  font-size: 1.5vw;
  display: inline-block;
}

#search-result .order-block .order {
  width: 25%;
  display: inline-block;
  text-align: right;
}

#search-result .order-block .order select {
  width: 95%;
  height: 2vw;
  border-radius: 0px;
  border: solid 1px #707070;
  margin-top: 1vw;
  text-transform: uppercase;
  padding-left: 1vw;
  font-weight: 200;
}

#search-result .boats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.3vw;
  justify-content: flex-start;
  margin-top: 2vw;
  width: 100%;
}

#search-result .boats .boat {
  border-bottom: 5px solid #66B3C7;
  width: 32%;
  margin: 0 0 2.5vw 0;
}

#search-result .boats .boat img {
  width: 100%;
  height: 13vw;
}

#search-result .search-paginator {
  text-align: center;
}

#search-result .search-paginator span {
  font-size: 2vw;
  font-weight: 400;
  color: #3399FF;
  margin: 0.5vw 0;
}

#search-result .search-paginator a {
  font-size: 2.5vw;
  font-weight: 600;
  color: #26B3FF;
  margin: 0.5vw 0;
}

/* TABLET */
@media (min-width: 481px) and (max-width: 1024px)
{
  #search-result {
    margin-top: 15vw;
  }

  #search-result .page-container {
    width: 85%;
    margin: 22vw auto;
  }

  #search-result h1 {
    font-size: 6vw;
    font-weight: 700;
    color: #3C3C3C;
  }

  #search-result .order-block .result-count {
    width: 60%;
    font-size: 2vw;
  }
  
  #search-result .order-block .order {
    width: 40%;
    margin-bottom:2vw;
  }
  
  #search-result .order-block .order select {
    height: 5vw;
  }

  #search-result .boats {
    justify-content: space-between;
  }

  #search-result .boats .boat {
    width: 45%;
  }

  #search-result .boats .boat img {
    height: 23vw;
  }

  #search-result .search-paginator {
    margin-bottom: 3vw;
  }

  #search-result .search-paginator span {
    font-size: 4vw;
    font-weight: 400;
    color: #3399FF;
    margin: 0.5vw 0;
  }
  
  #search-result .search-paginator a {
    font-size: 5vw;
    font-weight: 600;
    color: #26B3FF;
    margin: 0.5vw 0;
  }
}

/* MOBILE */
@media (max-width: 480px)
{
  #search-result {
    margin-top: 23vw;
  }

  #search-result .page-container {
    width: 85%;
    margin: 22vw auto;
  }

  #search-result h1 {
    font-size: 6.5vw;
    font-weight: 700;
    color: #3C3C3C;
  }
  
  #search-result .order-block {
    margin-bottom:3vw;
  }

  #search-result .order-block .result-count {
    width: 100%;
    font-size: 4vw;
    margin-bottom:3vw;
  }
  
  #search-result .order-block .order {
    width: 100%;
  }
  
  #search-result .order-block .order select {
    width: 100%;
    height: 8vw;
  }

  #search-result .boats .boat {
    width: 100%;
  }

  #search-result .boats .boat img {
    height: 51vw;
  }

  #search-result .search-paginator {
    margin-bottom: 3vw;
  }

  #search-result .search-paginator span {
    font-size: 6vw;
  }
  
  #search-result .search-paginator a {
    font-size: 7vw;
  }
}