/* ========================================================================== */
/* ||                                POP-UP                                || */
/* ========================================================================== */

#background-pop-up {
  background-color: rgba(0, 0, 0, 0.8);

  height: 100vh;
  width: 100vw;

  position: fixed;
  top: 0;

  z-index: 1;

  display: none;
}

#pop-up {
  position: fixed;
  top: 52%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  display: none;

  width: 445px;
  height: 100%;
}

#pop-up .pop-up-dismiss {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border-width: 1px;

  background-color: #840d78;

  padding: 5px;

  width: 30px;
  height: 30px;

  position: absolute;
  bottom: 98%;
  left: 97%;

  transition: background-color 0.3s;
}

#pop-up .pop-up-dismiss img {
  height: 20px;
  width: 20px;
}

#pop-up .pop-up-dismiss:hover {
  background-color: #641d5d;
}

#pop-up .pop-up-dismiss:focus {
  outline: 0;
}

#pop-up .content {
  background-color: #fff;
  color: #840d78;

  padding: 20px 40px;

  border-radius: 5px;
}

#pop-up .content > h1 {
  font-size: 22px;
  text-align: center;

  color: gray;
}

#pop-up .content > form {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px 0;
}

#pop-up .content > form input,
#pop-up .content > form select {
  height: 55px;

  border: 2px solid #e7e7e7;
  border-radius: 10px;

  padding: 0 16px;

  transition: border-color 0.3s, background-color 0.3s;
}

#pop-up .content > form select {
  font-size: 18px;
}

#pop-up .content > form input + input,
#pop-up .content > form input + select,
#pop-up .content > form select + select {
  margin-top: 8px;
}

#pop-up .content > form input:focus,
#pop-up .content > form select:focus {
  border: 2px solid gray;
}

#pop-up .content > form input::placeholder {
  color: #a2a2a2;
}

#pop-up .content > form button {
  height: 55px;

  margin-top: 2rem;

  background-color: gray;

  border: none;
  border-radius: 10px;

  color: white;

  cursor: pointer;
}

#pop-up .content > span {
  font-size: 16px;
  font-weight: bold;

  display: block;

  text-align: center;

  color: gray;
}

#pop-up > .content > .indication-container {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-bottom: 12px;
  margin-bottom: 12px;

  border-bottom: 2px solid #e7e7e7;
}

#pop-up > .content > .indication-container > label {
  margin-bottom: 4px;

  font-size: 14px;
  font-weight: bold;

  color: #1e1e1e;
}

#pop-up > .content > .indication-container > input {
  background-color: #f1f1f1;

  border-color: green !important;

  height: 55px;

  border: 2px solid #e7e7e7;
  border-radius: 10px;

  padding: 0 16px;

  transition: border-color 0.3s, background-color 0.3s;
}
