#popup-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    display: none;
}

#popup-overlay.open {
    display: block !important;
}

.popup-content {
    max-width: fit-content;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 2vh;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.popup-content h2, #submit-button {
    align-self: center;
}



.popup-info {
    display: flex;
    flex-direction: row;
    align-self: center;
}

.technician-info {
    background: #A3CED2;
}

.popup-content p{
    margin: 20px 0;
}

.popup-link {
    text-decoration: none;
    color: #FFF;
    background: #000;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

/* CLOSE CROSS */

.close {
  position: inherit;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: inherit;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

/* END CLOSE CROSS */

form.form-example {
    display: table;
  }
  
  div.form-example {
    display: table-row;
  }
  
  label,
  input {
    display: table-cell;
    margin-bottom: 10px;
  }
  
  label {
    padding-right: 10px;
  }

  /* form */

form.form-example {
  display: table;
}

div.form-example {
  display: table-row;
}

label,
input {
  display: table-cell;
  margin-bottom: 10px;
}

label {
  padding-right: 10px;
}
