/* R108_BBB_ROOM_AMENITIES_V149_ACTIVE */
#rooms .bbb-v149-amenities {
  box-sizing: border-box;
  justify-content: flex-start;
  width: calc(100% - 30px);
  min-height: 50px;
  height: 50px;
  margin-top: -24px;
  margin-bottom: -25px;
  padding: 6px 10px;
  gap: 6px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  border-radius: 14px;
}

#rooms .bbb-v149-amenities::-webkit-scrollbar {
  display: none;
}

#rooms .bbb-v149-amenities .bbb-v149-amenity {
  position: relative;
  display: inline-grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
}

#rooms .bbb-v149-amenity svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#rooms .bbb-v149-amenity i {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  z-index: 20;
  width: max-content;
  max-width: 180px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #123b45;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .15s ease, transform .15s ease;
}

#rooms .bbb-v149-amenity:hover i,
#rooms .bbb-v149-amenity:focus i {
  opacity: 1;
  transform: translate(-50%, 0);
}

#rooms .bbb-v149-empty {
  flex: 1 0 auto;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: #718096;
  font-size: 11px;
  font-weight: 600;
}

#rooms .bbb-v148-card .room-body {
  padding-top: 29px;
}

@media (max-width: 700px) {
  #rooms .bbb-v149-amenities {
    width: calc(100% - 28px);
    min-height: 46px;
    height: 46px;
    margin-top: -22px;
    margin-bottom: -23px;
    padding: 5px 8px;
    gap: 5px;
  }

  #rooms .bbb-v149-amenities .bbb-v149-amenity {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  #rooms .bbb-v149-amenity svg {
    width: 16px;
    height: 16px;
  }

  #rooms .bbb-v148-card .room-body {
    padding-top: 27px;
  }
}