@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-RegularDEMO.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --main-color: #20a565;
  --main-color-alpha: #20a56588;
  --main-color-soft: #64b18c;
  --sub-color: #20498a;
  --sub-color-alpha: #20498a88;
  --search-width: 80%;
  --catalouge-width: 240px;
  --catalouge-padding: 5px;
  --catalouge-column: 2;
}

@media (min-width: 992px) {
  :root {
    --catalouge-width: 240px;
    --catalouge-padding: 15px;
    --catalouge-column: 4;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.bg-main {
  background-color: var(--main-color);
}

.bg-sub {
  background-color: var(--sub-color);
}

@media (min-width: 992px) {
  :root {
    --search-width: 60%;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
}

.main-navbar {
  height: 89px;
  width: 100%;
  position: fixed;
  z-index: 30;
}

.main-navbar .navbar-brand {
  margin-right: 5rem;
}

.home {
  background-image: url("/assets/img/bg.jpeg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: calc(100vh - 89px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--light);
}

.motto {
  font-family: "Recoleta", sans-serif;
}

.home h3 {
  font-size: 1rem;
  padding: 2rem;
  text-align: center;
  line-height: 2rem;
}

.search {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -35px;
  z-index: 2;
}

.search-content {
  border-radius: 35px;
  background-color: var(--light);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
  padding-left: 20px;
  width: var(--search-width);
}

/* .search-content .col-3 {
  -webkit-flex: 0 0 22%;
  -ms-flex: 0 0 22%;
  flex: 0 0 22%;
  max-width: 22%;
}

.search-content .col-1 {
  -webkit-flex: 0 0 12%;
  -ms-flex: 0 0 12%;
  flex: 0 0 12%;
  max-width: 12%;
} */

.search-content .col-6 {
  -webkit-flex: 0 0 35%;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
  max-width: 35%;
}

.search-content .col-3 {
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}

#search-capacity-input-container {
  position: absolute;
  top: 64px;
}

#search-capacity-input-btn {
  background-color: var(--main-color);
}

.btn-search {
  position: absolute;
  right: calc((100% - var(--search-width)) / 2 + 11px);
}

.select2-container .selection {
  display: none;
}

.select2-dropdown {
  width: 200px !important;
}

.catalogue {
  width: 100%;
  position: relative;
  top: -70px;
  padding-top: 10px;
  z-index: 1;
}

.catalogue-content,
.catalogue-pagination {
  width: calc(var(--catalouge-column) * var(--catalouge-width));
}

.catalogue-content .col-lg-custom {
  -webkit-flex: 0 0 var(--catalouge-width);
  -ms-flex: 0 0 var(--catalouge-width);
  flex: 0 0 var(--catalouge-width);
  max-width: var(--catalouge-width);
  padding-left: var(--catalouge-padding);
  padding-right: var(--catalouge-padding);
}

.catalogue-content .col-lg-custom img {
  height: calc(var(--catalouge-width) - 2 * var(--catalouge-padding));
}

.tab-pane {
  padding-left: 10%;
  padding-right: 10%;
}

.modal .tab-pane {
  padding-left: unset;
  padding-right: unset;
}

.catalogue-filter {
  margin-top: 70px;
  margin-left: 15%;
  margin-bottom: 40px;
  width: 70%;
  overflow-x: scroll;
}

.catalogue-filter .nav {
  min-width: 720px;
  flex-wrap: nowrap;
}

.catalogue-item img {
  width: 100%;
  border-radius: 12px;
}

.catalogue-badge {
  height: 30px;
  position: absolute;
  top: 4px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  left: 0px;
  padding-left: 15px;
  padding-right: 15px;
}

.catalogue-badge .left {
  left: 12px;
  width: 100px;
  border-radius: 15px;
  flex: 0 1 auto;
  padding: 2px 4px 2px 4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-badge .right {
  right: 12px;
  width: 150px;
  border-radius: 15px;
  flex: 0 1 auto;
  padding: 2px 4px 2px 4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .btn-detail {
  position: absolute;
  bottom: 180px;
  width: 90% !important;
  left: 5%;
  border-radius: 20px;
  border-color: white;
  color: white;
  background-color: var(--sub-color-alpha);
} */

.nav-link {
  color: black;
}

.nav-link.active {
  color: var(--sub-color) !important;
}

@media (min-width: 992px) {
  .nav-link.active {
    border-bottom: 2px solid var(--sub-color);
  }
}

.catalogue-filter .nav-item {
  min-width: 108px;
}

.catalogue-filter-left {
  position: absolute;
  left: 5%;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalogue-filter-right {
  position: absolute;
  right: 5%;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facility-icon {
  width: 20px;
}

.btn-pagination {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  border: 1px solid lightgray;
  background-color: unset;
  border-radius: 2px;
}

.btn-pagination.active {
  border: 1px solid var(--sub-color);
}

.btn-pagination:hover {
  color: var(--light);
  background-color: var(--sub-color);
}

@media (min-width: 992px) {
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 89px !important;
  }
}

@media (min-width: 992px) {
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 89px !important;
  }
}

button {
  height: 49px;
}

.btn-detail {
  height: unset;
}

.btn-outline-info {
  color: var(--sub-color);
  border-color: var(--sub-color);
}

.btn-outline-info:hover {
  color: var(--light);
  background-color: var(--sub-color);
}

.rules {
  width: 80%;
  margin-left: 10%;
  position: relative;
  top: -70px;
  padding-top: 70px;
}

/* @media (min-width: 992px) {
  .rules {
    height: calc(100vh - 89px);
  }
} */

.rules-icon {
  background-color: var(--sub-color);
  width: 64px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rules-icon img {
  width: 32px;
  height: auto;
}

.testimonials {
  width: 80%;
  margin-left: 10%;
  position: relative;
  top: -70px;
  padding-top: 70px;
}

.testimonials-img {
  background-color: var(--main-color);
  height: 64px;
  width: 64px;
  border-radius: 32px;
  clip-path: border-box;
}

.testimonials-img img {
  width: 100%;
  height: 100%;
}

footer {
  background-color: #edf2f4;
  padding-top: 40px;
}

footer .row .col {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media (min-width: 992px) {
  footer .row .col {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

footer h5 {
  border-bottom: 2px solid black;
  width: fit-content;
}

.map {
  width: 100%;
}

.w-10 {
  width: 10%;
}

.w-8 {
  width: 8%;
}

.hide-scrollbar {
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

#item-detail-description,
#item-detail-rules {
  white-space: pre-line;
}

.modal-body .close {
  position: absolute;
  z-index: 2;
  right: 0.5rem;
  top: 0.5rem;
  background-color: white;
  opacity: 0.5;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid var(--sub-color);
}

#btn-wa-availability,
#btn-wa-share,
#btn-tm-share {
  font-size: 0.75rem !important;
}

@media (min-width: 992px) {
  #btn-wa-availability,
  #btn-wa-share,
  #btn-tm-share {
    font-size: 1rem !important;
  }
}

ol li::marker {
  font-weight: bold;
}
