:root {
  --red: rgb(255, 0, 0);
}

#accommodation-wrapper .loader {
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
#accommodation-wrapper .loader .inner {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
  animation: flickerAnimation 1s infinite;
}

#accommodation-type-form {
  position: relative;
}
#accommodation-type-form .has-error input, #accommodation-type-form .has-error textarea, #accommodation-type-form .has-error select {
  border: 1px solid var(--red);
}
#accommodation-type-form .has-error label {
  color: var(--red);
}
#accommodation-type-form .has-error .field-errors {
  font-size: 13px;
  color: var(--red);
}
#accommodation-type-form .field-hint {
  font-size: 13px;
  opacity: 0.7;
  font-style: italic;
}

.form-section {
  display: none;
}
.form-section.active {
  display: block;
}

.bedrooms-beds .bedroom-beds-config {
  padding: 15px;
  border: 1px solid #e5e5e5;
  margin-top: 15px;
}

.bedroom-beds-config, .living-room-beds {
  padding: 15px;
  border: 1px solid #e5e5e5;
  margin-top: 15px;
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}