.skeleton-box {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    background-color: #DDDBDD;
}

.skeleton-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    -webkit-animation: shimmer 2s infinite;
    animation: shimmer 2s infinite;
    content: "";
}

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.blog-post__headline {
    font-size: 1.25em;
    font-weight: bold;
}

.blog-post__meta {
    font-size: 0.85em;
    color: #6b6b6b;
}
.o-media {
    display: flex;
}
.o-media__body {
    flex-grow: 1;
    margin-left: 1em;
}
.o-vertical-spacing>*+* {
    margin-top: 0.75em;
}

.o-vertical-spacing--l>*+* {
    margin-top: 2em;
}
.hotel_rooms_form .hotel_list_rooms.loading:before {
    opacity: .3;
}

.loading-room .loading-dot {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 50%;
}
.loading-room .loading-dot::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: wave 2s ease-out infinite;
}
.loading-room .loading-dot:nth-child(1) {
  background: #7ef9ff;
}
.loading-room .loading-dot:nth-child(1)::before {
  animation-delay: 0.2s;
}
.loading-room .loading-dot:nth-child(2) {
  background: #89cff0;
}
.loading-room .loading-dot:nth-child(2)::before {
  animation-delay: 0.4s;
}
.loading-room .loading-dot:nth-child(3) {
  background: #4682b4;
}
.loading-room .loading-dot:nth-child(3)::before {
  animation-delay: 0.6s;
}
.loading-room .loading-dot:nth-child(4) {
  background: #0f52ba;
}
.loading-room .loading-dot:nth-child(4)::before {
  animation-delay: 0.8s;
}
.loading-room .loading-dot:nth-child(5) {
  background: #000080;
}
.loading-room .loading-dot:nth-child(5)::before {
  animation-delay: 1s;
}

.room-animate {
display:flex;
justify-content: center;
align-items: center;
height:100%;
margin: auto;
animation: load-room 1.2s infinite 0s ease-in-out;
animation-direction: alternate;
text-shadow: 0 0 1px white;
}
@keyframes wave {
  50%, 75% {
    transform: scale(2.5);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes load-room {
  0%{
      opacity: 0.08;
/*    font-size: 10px; */
/* 	  font-weight: 400; */
      filter: blur(5px);
      letter-spacing: 3px;
   }
  100%{
/*      opacity: 1; */
/*      font-size: 12px; */
/* 		font-weight:600; */
/* 		filter: blur(0); */
   }
}
