@charset "UTF-8";
.popover {
  color: white;
  background-color: rgba(30, 30, 30, 0.95);
  /* Stili generali per gli elementi della lista */
  padding: 9px;
}
.popover .cancellation-policies-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  /* Stili per le diverse classi */
}
.popover .cancellation-policies-list li {
  display: flex;
  align-items: center;
  padding: 9px 9px 9px 15px;
  margin-bottom: 5px;
  border-radius: 5px;
  color: #fff;
  position: relative;
  font-size: 12px;
  line-height: 15px;
}
.popover .cancellation-policies-list li:before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px 0 0 5px;
}
.popover .cancellation-policies-list .policy-success {
  display: block; /* Assicurati che non ci siano proprietà come flex o grid */
  white-space: normal; /* Evita che il testo venga compresso */
  background-color: rgb(63, 70, 65);
  color: white;
}
.popover .cancellation-policies-list .policy-success:before {
  background-color: #28a745;
}
.popover .cancellation-policies-list .policy-warning {
  background-color: rgb(73, 66, 60);
  color: white;
}
.popover .cancellation-policies-list .policy-warning:before {
  background-color: #ffc107;
}
.popover .cancellation-policies-list .policy-danger {
  background-color: rgb(56, 43, 44);
  color: white;
}
.popover .cancellation-policies-list .policy-danger:before {
  background-color: #dc3545;
}
.popover .cancellation-policies-list .tax-item {
  background-color: rgb(51, 51, 51);
  color: white;
}
.popover .cancellation-policies-list .tax-item:before {
  background-color: #b9b9b9;
}

.room-card {
  display: flex;
  border-radius: 16px;
  margin-bottom: 21px;
  background-color: white;
  border: 1px #f2f2f2 solid;
  /*> div:not(.room-name) > div, > div:not(.room-name) {
       display: flex;
       align-items: flex-start;
  }
  */
}
.room-card .room-name {
  border-bottom: 0.2px solid #ededed;
}
.room-card .room-name h4 {
  text-align: left;
  margin-bottom: 0;
}
.room-card .room-name h5 {
  color: #737373;
  font-family: var(--font-title);
  margin-bottom: 0;
}
.room-card .room-images {
  width: 30%;
}
.room-card .room-images div {
  border-radius: 16px 0 0px 16px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.room-card .room-images.owl-carousel {
  padding: 0;
}
.room-card .room-images .owl-nav .owl-next, .room-card .room-images .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: white !important;
  background-color: var(--bs-primary) !important;
  padding: 10px 18px !important;
  border-radius: 9px !important;
  box-shadow: 0px 9px 14px -6px rgba(0, 0, 0, 0.8) !important;
}
.room-card .room-images .owl-nav .owl-next {
  right: 0;
  display: flex;
  margin-right: -1%;
}
.room-card .room-images .owl-nav .owl-prev {
  left: 0;
  display: flex;
  margin-left: -1%;
}
.room-card .room-images .owl-item {
  padding-bottom: 0px;
}
.room-card .room-info {
  width: 70%;
  padding: 8px 32px;
}
.room-card .room-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.room-card .room-info table td, .room-card .room-info table th {
  padding: 9px 12px; /* Aggiungi padding all'interno delle celle per gestire la spaziatura interna */
}
.room-card .room-info table thead tr td {
  background-color: #f2f2f2;
  font-weight: 600;
}
.room-card .room-info table td {
  text-align: left;
  line-height: 15px;
}
.room-card .room-info table td .select-rate {
  color: white;
  background-color: var(--bs-secondary);
  width: 100%;
}
.room-card .room-info table td .select-rate i {
  margin-left: 6px;
  font-size: 12px;
}
.room-card .room-info table td.rate-price {
  text-align: right;
  font-weight: 800;
  color: black;
}
.room-card .room-info table .cancellation-td label {
  line-height: 15px;
}
.room-card .room-info table .cancellation-td label .info-icon {
  margin-left: 9px;
}
.room-card .room-info table .cancellation-td label .small {
  font-size: 12px;
}
.room-card .icon-1st-wrap {
  display: flex;
  margin: 9px 0;
  flex-wrap: wrap;
}
.room-card .icon-1st-amenity {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0;
  min-height: 23px;
  padding-left: 30px;
  position: relative;
  vertical-align: top;
  row-gap: 6px;
  column-gap: 12px;
}
.room-card .icon-1st-amenity::before {
  background-size: 21px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  height: 27px;
  left: 0;
  position: absolute;
  top: 0;
  width: 27px;
}

.room-card.channel-light .room-images {
  display: none;
}
.room-card.channel-light .room-info {
  width: 100%;
  padding: 24px;
}

@media (max-width: 769px) {
  .room-card {
    flex-direction: column;
  }
}
@media (max-width: 769px) {
  .room-card .room-info {
    padding: 12px;
  }
}
.static-google-map .mobile {
  display: none;
}
.static-google-map .desktop {
  display: block;
}

@media (max-width: 767px) {
  .static-google-map .mobile {
    display: block;
  }
  .static-google-map .desktop {
    display: none;
  }
  .room-card .room-info {
    width: 100%;
  }
  .room-card .room-images {
    width: 108% !important;
  }
  .room-card .room-images div.item {
    height: 25vh;
  }
  .room-card > div:not(.room-name) {
    flex-direction: column;
  }
  .room-card .room-info table {
    border: 0;
  }
  .room-card .room-info table caption {
    font-size: 1.3em;
  }
  .room-card .room-info table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .room-card .room-info table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  .room-card .room-info table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  .room-card .room-info table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .room-card .room-info table td:last-child {
    border-bottom: 0;
  }
  .room-card .cancellation-td {
    display: block;
  }
  .room-card .owl-item {
    margin-right: 0;
  }
  .room-card td[colspan="4"] {
    text-align: center !important;
    font-size: 115% !important;
  }
  .room-card tr:has(> td[colspan="4"]) {
    border-bottom: 0 !important;
  }
}
h6 {
  font-weight: bold;
}

/*# sourceMappingURL=hotel-room-card.css-Dnawvtx.map */
