/* Modal container */
.usm-modal {
  display: none; /* Skjult som standard */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.4); /* Sort baggrund med transparens */
}
/* Modal indhold */
.usm-modal-content {
  background-color: #fefefe;
  margin: 0% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80vw;
  max-width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 80vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* Brugsvilkår tekst */
.usm-terms-text {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}
/* Accept knap */
#usm-accept-terms,
#usm-accept-terms-registration {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
#usm-terms-modal {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0,0,0,0.4);
}
.usm-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.usm-close:hover,
.usm-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.usm-terms-text {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}
#usm-accept-terms {
  padding: 10px 20px;
  font-size: 16px;
}
