/**
** Zimmer Info Details
** This file contains the styles for the details for a single room
*/

.room-info-details {
  margin-bottom: var(--gap-l);
  display: flex;
  background-color: #fffefe;
  border-radius: var(--border-radius);
  border: 2px solid var(--ast-global-color-0);
}

.room-info-details > div {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: var(--gap-m) 0 20px 0;
}

.single .room-info-details > div:nth-child(1),
.single .room-info-details > div:nth-child(2),
.single .room-info-details > div:nth-child(3) {
  border-right: 2px solid var(--ast-global-color-0);
}

@media (min-width: 577px) {
  .single .room-info-details > div:nth-child(2) {
    border-right: 2px solid var(--ast-global-color-0);
  }
}

.room-info-details .icon {
  height: 38.4px;
}

.room-info-details div .icon::before {
  content: "";
  display: inline-block;
  --mysize: 32px;
  width: var(--mysize);
  height: var(--mysize);
  background-image: var(--wpr-bg-dab32770-6ab4-4f1b-9353-8183fc029ea2);
  background-repeat: no-repeat;
  background-size: contain;
}

.room-info-details div.room-m2 .icon::before {
  background-image: var(--wpr-bg-8c6dd881-d8d6-4344-8dc3-ba1702e39ddb);
}

.room-info-details div.room-bedrooms .icon::before {
  background-image: var(--wpr-bg-7d3a91bc-2644-4a69-9230-d872a0c6aeb4);
}

.room-info-details div.room-bathrooms .icon::before {
  background-image: var(--wpr-bg-c55a5850-8387-423c-8709-8fef278ed4a5);
}
