body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#configurator-container {
  width: 100%;
  height: 100%;
}
.pop-up-container,
.shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pop-up-container {
  z-index: -1;
}
.shadow {
  background: black;
  opacity: 0.4;
}
.pop-up--show {
  z-index: 10000000;
}
.pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  min-width: 385px;
  min-height: 700px;
  height: 70%;
  padding: 15px 10px;
  background: white;
  box-sizing: border-box;
  overflow: auto;
}
.hide {
  display: none;
}
.client-form-data {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.client-form-data form {
  width: 95%;
  padding: 5px;
  margin: auto;
}

div.submit button {
  background-color: #0b9892;
  width: 120px;
  height: 45px;
  border-radius: 30px;
  color: white;
  margin-top: 5px;
}
