*,
:after,
:before {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #20214f;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.title-gradient {
  background: -webkit-linear-gradient(45deg, #20214f, #9a9a9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5f5e5e;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #20214f;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
}
.btn:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}
.btn.btn-gray {
  background-color: #9b9b9b;
  color: #ffffff;
}
.btn.btn-transparent {
  background-color: transparent;
  color: #ffffff;
}

.arrow {
  border: solid #20214f;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.icon-w-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
}

textarea {
  resize: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

.hero {
  position: relative;
  height: 300px;
  margin-top: 76px;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__overlay .container {
  width: 100%;
}
.hero__content {
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__content .hero__text {
  padding-top: 64px;
}
.hero__content .hero__text .hero__title {
  font-size: x-large;
  font-weight: 500;
  margin: 0;
}
.hero__content .hero__text .hero__title .small {
  font-size: medium;
}
.hero__content .hero__text .hero__subtitle {
  font-size: xx-large;
  font-weight: 500;
  margin: 0;
}

.results {
  margin-bottom: 2rem;
}
.results__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.results__head-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
  flex-wrap: wrap;
}
.results__head-actions .buttonWrapper {
  border-radius: 24px;
  border: solid 1px #fff;
  box-shadow: 0px 0px 6px #9a9a9b;
  display: flex;
  flex-flow: row;
  width: fit-content;
  padding: 8px 16px;
  gap: 8px;
}
.results__head-actions .buttonWrapper .tab-button {
  border: none;
  padding: 0;
  background-color: transparent;
  display: inline-block;
  cursor: pointer;
  padding: 8px;
  transition: 0.1s;
  color: #747474;
  text-decoration: none;
  font-size: 16px;
}
.results__head-actions .buttonWrapper .tab-button:hover {
  color: #20214f;
  text-decoration: none;
}
.results__head-actions .buttonWrapper .tab-button.active {
  font-weight: 500;
  color: #20214f;
  font-size: 20px;
}
.results__head-actions .buttonWrapper .divider {
  width: 1px;
  display: flex;
  align-items: center;
}
.results__head-actions .buttonWrapper .divider::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 70%;
  background-color: #9a9a9b;
}
.results__head-actions .buttonFilter {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: solid 1px #9a9a9b;
  padding: 8px 16px;
  color: #20214f;
  cursor: pointer;
}
.results__head-actions .buttonFilter select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  color: #20214f;
}
.results__head-actions .buttonFilter::after {
  display: inline-block;
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-image: url(../images/icon-arrow-down.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.results-contentWrapper .content {
  display: none;
  padding: 0;
}
.results-contentWrapper .content.active {
  display: block;
}
.results__grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.results__grid-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 12px #ddd;
  width: 100%;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .results__grid-item {
    width: calc(50% - 2rem);
  }
}
@media only screen and (min-width: 1200px) {
  .results__grid-item {
    width: calc(33.333334% - 22px);
  }
}
.results__grid-item .results__image {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.results__grid-item .item-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.results__grid-item .item-content-name-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.results__grid-item .item-content-name-price .item-name {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.results__grid-item .item-content-name {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.results__grid-item .item-content-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.results__grid-item .item-content-price .desde {
  font-size: 0.9rem;
}
.results__grid-item .item-content-price .item-price {
  font-size: 2.4rem;
  font-weight: 500;
}
.results__grid-item .item-content-boat-info-item {
  margin: 0;
}
.results__grid-item .item-content-boat-info-item > span {
  font-weight: 500;
}
.results__grid-item .item-content-actions {
  display: flex;
  justify-content: flex-end;
}
.results-table-wrap .results-table {
  background-color: #dadada;
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  color: #000;
}
.results-table-wrap .results-table thead tr th {
  background-color: #20214f;
  padding: 16px 4px;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  text-align: left;
  position: relative;
  /* Sorting. */
}
@media only screen and (min-width: 768px) {
  .results-table-wrap .results-table thead tr th {
    padding: 16px;
    font-size: 16px;
  }
}
.results-table-wrap .results-table thead tr th.align-center {
  text-align: center;
}
.results-table-wrap .results-table thead tr th[role=columnheader]:not(.no-sort) {
  cursor: pointer;
}
.results-table-wrap .results-table thead tr th[role=columnheader]:not(.no-sort):after {
  content: "";
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
  background: url(../images/chevron-down-white.svg);
  width: 16px;
  height: 16px;
  visibility: hidden;
  opacity: 0;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all ease-in-out 1ms;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.results-table-wrap .results-table thead tr th[aria-sort=ascending]:not(.no-sort):after {
  rotate: 180deg;
  transform: translateY(50%);
}
.results-table-wrap .results-table thead tr th[aria-sort]:not(.no-sort):after {
  visibility: visible;
  opacity: 0.4;
}
.results-table-wrap .results-table thead tr th[role=columnheader]:not(.no-sort):hover:after {
  visibility: visible;
  opacity: 1;
}
.results-table-wrap .results-table tbody tr td {
  padding: 16px 4px;
  font-size: 14px;
  font-weight: 100;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .results-table-wrap .results-table tbody tr td {
    padding: 16px;
    font-size: 16px;
  }
}
.results-table-wrap .results-table tbody tr td:first-child, .results-table-wrap .results-table tbody tr td:last-child {
  width: 8px;
}
@media only screen and (min-width: 768px) {
  .results-table-wrap .results-table tbody tr td:first-child, .results-table-wrap .results-table tbody tr td:last-child {
    width: 16px;
  }
}
.results-table-wrap .results-table tbody tr td.align-center {
  text-align: center;
}
.results-table-wrap .results-table tbody tr td .titulo {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
}
.results-table-wrap .results-table tbody tr td .price {
  font-weight: 500;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .results-table-wrap .results-table tbody tr td .price {
    font-size: 18px;
  }
}
.results-table-wrap .results-table tbody tr:nth-child(even) td {
  background: #fff;
}
.results-table-wrap .results-table th:nth-child(3), .results-table-wrap .results-table td:nth-child(3), .results-table-wrap .results-table th:nth-child(5), .results-table-wrap .results-table td:nth-child(5) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .results-table-wrap .results-table th:nth-child(3), .results-table-wrap .results-table td:nth-child(3), .results-table-wrap .results-table th:nth-child(5), .results-table-wrap .results-table td:nth-child(5) {
    display: table-cell;
  }
}
.results .pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 8px;
}
.results .pagination .btn {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
}
.results .pagination .btn:not(.current) {
  background-color: #ffffff;
  color: #20214f;
  box-shadow: 0px 0px 6px #dddddd;
}
.results .pagination .btn.btn-transparent {
  background-color: transparent;
  box-shadow: none;
  width: auto;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.benefits {
  padding: 4rem 0;
  color: #ffffff;
  background: linear-gradient(90deg, #20214f, #9a9a9b);
}
.benefits__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits__title {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .benefits__title {
    text-align: right;
  }
}
.benefits__column:last-child {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .benefits__column:last-child {
    width: calc(50% - 2rem);
  }
}

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