#modalPark .modal-body {
  font-size: 14px;
  padding: 0;
}
#modalPark .modal-header {
  border-bottom: none;
  background-color: transparent;
  padding: 0;
  min-height: 0;
}
#modalPark .modal-content {
  border-radius: 0;
}
#modalPark .modal-header .close {
  width: 30px;
  position: absolute;
  float: right;
  right: 15px;
  top: 20px;
  z-index: 2;
  opacity: 1;
}
#modalPark .modal-header .close span {
  color: #fff;
  font-size: 20px;
}

/* MODAL APP0 */

.modal-reserv {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  border-radius: 4px;
  background-color: transparent;
  color: #ffffff;
}

.modal-close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 12px;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 5px 7px;
}

.modal-body__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/** Overlay */
.overlay-reserv {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/** JS */
.is-visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 9999;
  position: fixed;
}
