h1 {
  color: white;
  margin-bottom: 20px;
  /* text-shadow: 5px 8px 6px rgba(0, 0, 0, 0.3215686275); */
}

.divError {
  background-color: var(--error-background-color);
  border: solid 1px var(--error-border-color);
  color: var(--error-text-color);
  border-radius: 5PX;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 30px 20px 30px;
  grid-column: 1/4;
}

.page-wrapper, .page {
  height: -moz-fit-content;
  height: fit-content;
}

#subscriptionRelationModal #divRelationImage {
  width: 100%;
  background-color: var(--background-light);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#subscriptionRelationModal #btnAddImage {
  cursor: pointer;
  padding: 60px 150px;
  font-size: 50px;
  color: #5a5959;
}

@keyframes expand {
  from {
    top: 100;
    opacity: 0;
  }
}
.popup-error {
  position: fixed;
  background-color: rgba(224, 0, 0, 0.6117647059);
  padding: 20px;
  top: 100px;
  right: 30px;
  width: 250px;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 5px;
}
.popup-error label {
  font-weight: bold;
  color: white;
}
.popup-error p {
  color: white;
}

.popup-error.active {
  top: 30px;
  opacity: 1;
}

@media only screen and (max-width: 1200px) {
  :root {
    --content-padding: 20px;
  }
  body {
    grid-template-columns: 1fr;
  }
  body .divPage {
    min-width: 0px;
  }
  body .reservation {
    margin-left: 0px;
    margin-top: var(--content-padding);
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  :root {
    --content-padding: 15px;
  }
  :root {
    --max-input-width: 100%;
  }
  .modal {
    width: calc(100% - 20px);
  }
  .modal.active {
    transform: translateY(0);
    top: 10px;
  }
}/*# sourceMappingURL=index.css.map */