/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
.search-page {
  width: 100%;
}
.search-page__header {
  display: flex;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 20px auto;
  margin-left: 20px;
}
.search-page__header input {
  padding: 10px;
  width: 30%;
  margin-right: 10px;
  font-family: "Inter";
}
@media (max-width: 1200px) {
  .search-page__header input {
    width: 80%;
  }
}
.search-page__header button {
  background: white;
  border: 1px solid gray;
  border-radius: 2px;
  cursor: pointer;
}
.search-page__result {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid gray;
}
@media (max-width: 1200px) {
  .search-page__result {
    flex-wrap: wrap;
  }
}
.search-page__result:last-child {
  border: none;
}
.search-page__result--left-col {
  width: 40%;
}
@media (max-width: 1200px) {
  .search-page__result--left-col {
    width: 100%;
    margin-bottom: 20px;
  }
}
.search-page__result--right-col {
  width: 50%;
}
@media (max-width: 1200px) {
  .search-page__result--right-col {
    width: 100%;
  }
}
.search-page__result--right-col h2 {
  margin: 0;
}
.search-page__result--right-col h2 p {
  margin: 0;
}
.search-page__result--right-col h2 a {
  margin: 0;
  color: #045591;
  font-weight: normal;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
}
.search-page__result--right-col h2 a:hover {
  text-decoration: underline;
}
.search-page__result--price {
  margin-right: 10px;
  font-size: 14px;
}
.search-page__result--price span {
  color: #950004;
}
.search-page .no-result {
  font-weight: bold;
}
.search-page .load-more-btn {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 1px solid;
  cursor: pointer;
}
