#page #contact_page {
  display: flex;
  flex-direction: column;
  margin-bottom: 0vh;
  height: 87vh;
  min-height: 87vh;
  max-height: 87vh;
  overflow-y: hidden;
}
#page #contact_page i {
  color: white;
}
#page #contact_page #contact_container {
  width: 86%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 5vh;
}
#page #contact_page #contact_container form {
  width: 55%;
  height: 100%;
  background-color: var(--filler-purple);
  border: 1px solid var(--color-gray-5);
}
#page #contact_page #contact_container form h3 {
  width: 90%;
  margin-top: 2vh;
}
#page #contact_page #contact_container form .contact_form_item {
  width: 90%;
  min-height: 15%;
  margin-top: 2vh;
}
#page #contact_page #contact_container form .contact_form_item .contact_form_label {
  display: flex;
  margin-bottom: 1vh;
}
#page #contact_page #contact_container form .contact_form_item .contact_form_label i {
  margin-right: 1vw;
}
#page #contact_page #contact_container form .contact_form_item input, #page #contact_page #contact_container form .contact_form_item textarea {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 12px;
  height: 5vh;
  color: white;
  background-color: var(--filler-dark-purple);
  font-size: large;
  border: none;
}
#page #contact_page #contact_container form .contact_form_item textarea {
  height: 15vh;
  resize: none;
  padding-top: 1vh;
  font-size: large;
}
#page #contact_page #contact_container form #submit_message {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  margin-bottom: 3vh;
  height: 6vh;
  max-height: 6vh;
  min-height: 6vh;
}
#page #contact_page #contact_container form #submit_message button {
  width: 30%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page #contact_page #contact_container #contact_info {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
}
#page #contact_page #contact_container #contact_info span {
  font-size: larger;
}
#page #contact_page #contact_container #contact_info #contact_info_header {
  width: 90%;
  height: auto;
  display: flex;
  align-items: center;
}
#page #contact_page #contact_container #contact_info #contact_info_header i {
  margin-right: 1vw;
  font-size: x-large;
}
#page #contact_page #contact_container #contact_info .contact_info_item {
  margin-top: 4vh;
  width: 90%;
  height: auto;
  min-height: 8vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  border: 1px solid white;
  border-radius: 12px;
  background-color: var(--filler-dark-purple);
}
#page #contact_page #contact_container #contact_info .contact_info_item i {
  margin-left: 2vw;
  margin-right: 2vw;
  font-size: x-large;
}
#page #contact_page #contact_container #contact_info #contact_info_buttons {
  margin-top: 4vh;
  width: 90%;
  height: 8vh;
  max-height: 8vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}
#page #contact_page #contact_container #contact_info #contact_info_buttons .square_button_right {
  margin-left: 2vw;
}

@media (max-width: 800px) {
  #page #contact_page #contact_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0vh;
  }
  #page #contact_page #contact_container form {
    margin-top: 4vh;
    width: 100%;
    height: auto;
    order: 2;
  }
  #page #contact_page #contact_container form #submit_message {
    justify-content: center;
    margin-top: 2vh;
    width: 90%;
  }
  #page #contact_page #contact_container form #submit_message button {
    width: 100%;
    border-radius: 50px;
  }
  #page #contact_page #contact_container .left_border {
    display: none;
  }
  #page #contact_page #contact_container #contact_info {
    width: 100%;
    height: auto;
    border-left: none;
    border-top: 1px solid white;
    margin-top: 4vh;
    order: 1;
    border: none;
    margin-top: 2vh;
  }
  #page #contact_page #contact_container #contact_info #contact_info_header {
    display: none;
  }
  #page #contact_page #contact_container #contact_info .contact_info_item {
    border-radius: 50px;
    margin-top: 1vh;
    height: 6vh;
    max-height: 6vh;
    min-height: 6vh;
    width: 100%;
  }
  #page #contact_page #contact_container #contact_info .contact_info_item span {
    font-size: small;
    width: 100%;
    text-align: center;
    margin-right: 6vw;
  }
  #page #contact_page #contact_container #contact_info .contact_info_item i {
    margin-left: 4vw;
    margin-right: 0vw;
  }
  #page #contact_page #contact_container #contact_info #contact_info_buttons {
    display: none;
  }
}/*# sourceMappingURL=contact_style.css.map */