/**
** 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-m);
  border: 1px solid #ded6cd;
}

.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: 1px solid #ded6cd;
}

@media (min-width: 577px) {
  .single .room-info-details > div:nth-child(2) {
    border-right: 1px solid #ded6cd;
  }
}

.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: url(/wp-content/themes/astra-impuls-child/img/icon-personen.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.room-info-details div.room-m2 .icon::before {
  background-image: url(/wp-content/themes/astra-impuls-child/img/icon-raum.svg);
}

.room-info-details div.room-bedrooms .icon::before {
  background-image: url(/wp-content/themes/astra-impuls-child/img/icon-bett.svg);
}

.room-info-details div.room-bathrooms .icon::before {
  background-image: url(/wp-content/themes/astra-impuls-child/img/icon-bad.svg);
}
