@font-face {
  font-family: candara;
  src: url(../fonts/Candara.ttf);
}
@font-face {
  font-family: candaraBold;
  src: url(../fonts/Candara_Bold.ttf);
}
@font-face {
  font-family: calibri;
  src: url(../fonts/Calibri.ttf);
}
.contactElements .line-hr {
  display: flex;
  width: 80%;
  margin: auto;
  justify-content: center;
  flex: 1 1 1;
  gap: 10%;
}
.contactElements .line-hr .mail a {
  display: block;
  background-color: #172869;
  border-radius: 5px;
  text-align: center;
  font-size: larger;
  padding: 10px 0;
}
.contactElements .line-vrt {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contactElements .line-vrt .center_align {
  width: 80%;
  margin: auto;
  text-align: center;
}
.contactElements .line-vrt .subtitle {
  margin-top: 30px;
}
.contactElements form {
  margin-top: 30px !important;
  display: block;
  width: 80%;
  margin: auto;
}
.contactElements form .steps {
  display: flex;
  width: 100%;
  position: relative;
  background-color: transparent;
  margin-bottom: 20px;
}
.contactElements form .steps .step {
  display: block;
  left: 50%;
  width: 100%;
  text-align: center;
  height: 50px;
  background: linear-gradient(to right, #172869 50%, transparent 50%);
  background-size: 200% 100%;
  border: 2px solid #172869;
  transition: all 0.5s ease-in-out;
}
.contactElements form .steps .step p {
  text-align: center;
  line-height: 50px;
  width: 100%;
  height: 100%;
}
.contactElements form .steps #step1anim {
  border-radius: 5px 0 0 5px;
}
.contactElements form .steps #step2anim {
  border-radius: 0 5px 5px 0;
}
.contactElements form .steps .active {
  background-position: left bottom;
}
.contactElements form .steps .inactive {
  background-position: right bottom;
}
.contactElements form .formContent {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contactElements form .formContent .form1 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contactElements form .formContent .form1 .part_hor {
  display: flex;
  width: 100%;
  justify-content: center;
}
.contactElements form .formContent .form1 .part_hor input {
  color: #172869;
  height: 30px;
  margin: 15px 5px;
  border: 2px solid #172869;
  font-size: large;
}
.contactElements form .formContent .form1 .part_hor label.activeLabel {
  display: block;
}
.contactElements form .formContent .form1 .part_hor label.inactiveLabel {
  display: none;
}
.contactElements form .formContent .form1 .genre {
  display: flex;
  width: 100%;
  gap: 30px;
  justify-content: center;
  color: black;
}
.contactElements form .formContent .form2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #172869;
}
.contactElements form .formContent .form2 select {
  border: 2px solid #dddddd;
  border-radius: 8px;
  width: auto;
  height: 30px;
  background: #eeeeee;
  color: #172869;
}
.contactElements form .formContent .form2 select option {
  color: #172869;
}
.contactElements form .formContent .form2 input, .contactElements form .formContent .form2 textarea {
  color: #172869;
}
.contactElements form .formContent .active {
  display: flex;
}
.contactElements form .formContent .inactive {
  display: none;
}
.contactElements form .btnBar {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.contactElements form .btnBar .active {
  display: block;
}
.contactElements form .btnBar .inactive {
  display: none;
}
.contactElements form .btnBar .formBtn {
  width: 100px;
  height: 50px;
  background-color: #172869;
  border-radius: 5px;
  border: none;
  font-family: calibri;
  font-size: large;
  cursor: pointer;
}

.errMsg.active {
  display: block;
}
.errMsg.inactive {
  display: none;
}
.errMsg {
  width: 80%;
  height: 50px;
  margin: 0 auto 20px auto;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  font-weight: bold;
  font-size: large;
  position: relative;
  transition: all 0.5s;
}
.errMsg #closeErrMsg {
  position: absolute;
  right: 20px;
}

.err {
  background-color: rgba(170, 1, 1, 0.75);
  border-color: #bd0000;
}

.conf {
  background-color: rgba(0, 148, 20, 0.75);
  border-color: #00c51a;
}

legend {
  margin-top: 10px !important;
  font-style: italic;
  width: 80%;
  margin: auto;
  text-align: center;
}
legend a {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .subtitle {
    font-size: 20pt !important;
  }
  .line-hr {
    flex-direction: column;
    text-align: center;
  }
  .line-hr .mail {
    margin-top: 20px;
  }
  .errMsg {
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .errMsg #closeErrMsg {
    top: 25px;
    transform: translateY(-50%);
  }
  .part_hor {
    flex-direction: column;
    align-items: center;
  }
  .part_hor input {
    width: 60%;
  }
  .contactElements form .steps .step p {
    font-size: 13pt !important;
  }
}
@media screen and (min-width: 901px) {
  .line-hr {
    flex-direction: row;
  }
  .part_hor {
    flex-direction: row;
  }
  .part_hor input {
    width: 40%;
  }
  .contactElements form .steps .step p {
    font-size: 18pt !important;
  }
}/*# sourceMappingURL=styleContact.css.map */