.package-itens .grid-attribute {
  align-self: center;
  justify-content: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.package-itens .grid-attribute {
  grid-column: span 4;
}

.package-itens .grid-attribute .icon-div {
  font-size: 25px;
  background-color: #fff;
  border-radius: 15px;
  height: 60px;
  width: 60px;
  justify-self: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  text-transform: capitalize;
}
.package-itens .grid-attribute p {
  font-size: 11px;
  text-align: center;
}
.fish-type {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 10px;
  max-height: 100px;
  overflow: hidden;
  transition: all 1s;
}
.fish-type.show {
  max-height: 10000px;
  transition: all 0.5s;
}
.fish-div .fish-image {
  height: 80px;
  width: 100px;
  background-image: url(../../../img/products/peixe.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 0 0 3px #00000047;
}
.fish-div {
  grid-column: span 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.fish-div p {
  font-weight: bold;
  font-size: 14px;
  margin-top: 3px;
}
.fish-button {
  border: 0;
  width: 100%;
  font-size: 16px;
  padding: 15px;
}

.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

.results h4 {
  margin: 0;
  margin-bottom: -2px;
}

.results h6 {
  margin: 0;
  margin-bottom: 5px;
  font-weight: 100;
}

.results .box-product .fa-star {
  color: #f97a26;
}

.results .box-product .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  font-size: 14px;
  text-align: justify;
  -webkit-box-orient: vertical;
  margin: 0;
  word-break: break-all;
}

.results .box-product .distance-km {
  font-size: 12px;
  font-weight: 100;
}

.results .box-product .card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  column-gap: 10px;
  color: #878787 !important;
  text-decoration: none;
}

.results .box-product {
  background-color: #fff;
  border-radius: 25px;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 19px -5px rgb(0 0 0 / 51%);
  box-shadow: 0px 0px 19px -5px rgb(0 0 0 / 51%);
  grid-column: 1/4;
  position: relative;
}

.results .box-product:hover {
  background-color: rgb(218, 218, 218);
  -webkit-box-shadow: 0px 0px 19px -5px rgb(0, 0, 0);
  box-shadow: 0px 0px 19px -5px rgb(0, 0, 0);
}

.results .box-product .notImage {
  border-radius: 10px;
  overflow: hidden;
  /* height: 110px; */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.results .box-product .notImage .image-all-inclusive {
  border-radius: 10px;
  overflow: hidden;
  height: 110px;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.results .box-product .mt-05 {
  margin-top: 0.5rem;
}

.text-danger {
  color: red;
}

.reservation-all {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  background-color: #00000094;
  border-radius: 25px;
}

.reservation-all div {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.results .box-product .information-product {
  display: flex;
  flex-wrap: wrap;
}

.results .box-product .information-product .buttons {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 10px;
  width: 100%;
}

.btn {
  padding: 10px;
  font-family: "montserrat black";
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  background-color: #bcbcbc;
}

.btn-orange {
  background-color: #f87c2c;
  color: #fff;
}

.btn-orange:hover {
  background-color: #c46222;
}

.box-guide .btn-orange {
  grid-column: 1/3;
}
.box-guide .most-fisheds .fish-div {
  position: relative;
  margin-top: 15px;
  padding: 0 10px;
}
span.badge.fish-qtd {
  position: absolute;
  background-color: #73cdcb;
  padding: 1px 5px;
  border-radius: 5px;
  right: -10px;
  top: -5px;
  color: #fff;
  font-weight: bold;
}

.box-guide .notImage {
  height: 110px;
}

.btn-no-room {
  border: 0;
  background-color: #f97a26;
  color: #fff;
  border-radius: 15px;
  width: 100%;
  padding: 9px;
  margin-top: 5px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "montserrat black";
}
@media (min-width: 768px) {
  .fish-div {
    grid-column: span 3;
  }
  .package-itens .grid-attribute {
    grid-column: span 3;
  }
  .results .box-product .information-product .buttons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .results {
    grid-template-columns: 1fr 1fr;
  }

  .results .box-product {
    grid-column: auto;
  }
}

@media (min-width: 992px) {
  .results .box-product {
    grid-column: auto;
  }
}
