/* Hide */
.unisport-webform-modal,
.form-type-webform-terms-of-service [class*="description"] {
  display: none;
  visibility: hidden;
}

/* Reset style */
.unisport-webform-modal.description {
  margin: 0;
  font-style: normal;
}

/* Build */
.unisport-webform-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.unisport-webform-modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 4px;
  flex-grow: 1;
  max-width: 800px;
  max-height: calc(100vh - 80px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  line-height: 1.6em;
}

.unisport-webform-modal-content.legible {
  font-size: 0.9rem;
}

.unisport-webform-modal-content [class*="title"] {
  margin-bottom: 10px;
}

button.unisport-webform-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* When active */
:root.unisport-webform-modal-show {
  overflow: hidden !important;
}

:root.unisport-webform-modal-show body {
  overflow: hidden !important;
}

.unisport-webform-modal.active {
  display: flex;
  visibility: visible;
}
