/* ========================================================================== */
/* ||                                POP-UP                                || */
/* ========================================================================== */

#pop-up-background {
  height: 100vh;
  width: 100vw;

  position: fixed;
  top: 0;

  z-index: 4;

  background-color: rgba(0, 0, 0, .8);

  display: none;
}

#pop-up {
  max-width: 450px;
  width: 100%;

  z-index: 5;

  background-color: white;

  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border-radius: 10px;

  display: none;
}

#pop-up .pop-up-dismiss {
	display: flex;
	align-items: center;
  justify-content: center;
  
  border-width: 1px;
  border-bottom-left-radius: 10px;

	background-color: #840d78;

	padding: 5px;

	width: 30px;
	height: 30px;

	position: absolute;
	top: 0%;
	right: 0%;

	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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 20px 40px;
}

#pop-up .content h1 {
  text-align: center;
  font-size: 22px;
  color: #840d78;
}

#pop-up .content form {
  width: 100%;
  display: flex;
  flex-direction: column;

  padding: 20px 0;
}

#pop-up .content form input,
#pop-up .content form select {
  height: 55px;

  margin-right: 0;
  padding: 0 20px;

  border-radius: 10px;
  border: 1px solid #5e1660;
}

#pop-up .content form select {
  margin-top: 8px;
  font-size: 18px;
}

#pop-up .content form input::placeholder {
  color: #6f6f6f;
}

#pop-up .content form input + input {
  margin-top: 8px;
}

#pop-up .content form button {
  margin-top: 16px;

  height: 65px;

  border: none;
  border-radius: 10px;

  color: white;

  background-color: #840d78;
}

#pop-up .content span {
  font-size: 16px;
  color: #6f6f6f;

  display: block;

  text-align: center;
}

#pop-up #pop-up-success {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 20px 40px;

  display: none;
}

#pop-up #pop-up-success h1 {
  text-align: center;
  font-size: 22px;
  color: #840d78;
}

#pop-up #pop-up-success .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin: 48px 0;

  color: #840d78;
}

#pop-up #pop-up-success > p {
  text-align: center;
  color: #6f6f6f;
}

#pop-up #pop-up-success > a:nth-last-child(1) {
  display: block;
  width: 100%;
  margin-top: 16px;
}

#pop-up #pop-up-success > a > button {
  height: 65px;
  width: 100%;

  color: white;

  background-color: #840d78;

  border: none;
  border-radius: 10px;
}

#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;
}
