/**
** 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-f48d6cc7-23a8-4c1c-8d15-93dd5fb82df1);
  background-repeat: no-repeat;
  background-size: contain;
}

.room-info-details div.room-m2 .icon::before {
  background-image: var(--wpr-bg-133d5721-bb6e-4caf-b39b-a9fc836dcb9d);
}

.room-info-details div.room-bedrooms .icon::before {
  background-image: var(--wpr-bg-07557f69-8f79-49b9-ab92-9272ec2ec65c);
}

.room-info-details div.room-bathrooms .icon::before {
  background-image: var(--wpr-bg-f834682f-02de-4ddb-812f-7725c1ea02c0);
}
