/** ui styles **/
/* Contact Modal Module */
.contact-modal-mod * {
  box-sizing: border-box;
}
.contact-modal-mod .button.close-window {
  position: absolute;
  top: 17px;
  right: 17px;
  margin: 0;
  width: 13px;
  height: 13px;
  background: url("/images/buttons/close.png") 0 0;
  border: none;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.contact-modal-mod .button.close-window:hover {
  background: url("/images/buttons/close.png") 13px 0;
}
.contact-modal-mod .modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: -200%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  transition: top 0ms 400ms;
  z-index: 2;
  overflow-y: auto;
}
.contact-modal-mod .modal.active {
  top: 0;
  transition: top 0ms 0ms;
}
.contact-modal-mod .modal.active .modal-container {
  opacity: 1;
  transform: translate(-50%, 0%);
  transition: all 200ms 400ms;
}
@media (min-height: 736px) {
  .contact-modal-mod .modal.active .modal-container {
    transform: translate(-50%, -50%);
  }
}
.contact-modal-mod .modal-container {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 1s;
  transform: translate(-50%, -100%);
  padding: 39px 30px 30px 29px;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 400ms 0ms;
}
@media (min-height: 736px) {
  .contact-modal-mod .modal-container {
    top: 50%;
  }
}
@media (min-width: 600px) {
  .contact-modal-mod .modal-container {
    max-width: 500px;
    height: auto;
    min-height: 568px;
    border-radius: 6px;
  }
}
.contact-modal-mod .modal-title {
  margin-bottom: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}
.contact-modal-mod .modal-text {
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}
.contact-modal-mod .modal-form-field {
  margin-bottom: 1rem;
}
.contact-modal-mod .modal-form-field label {
  width: 100%;
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}
.contact-modal-mod .modal-form-field input,
.contact-modal-mod .modal-form-field textarea,
.contact-modal-mod .modal-form-field select {
  width: 100%;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.6rem 0.5rem;
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  border: solid 1px #b5bcc6;
  font-size: 12px;
}
.contact-modal-mod .modal-form-field input::-webkit-input-placeholder,
.contact-modal-mod .modal-form-field textarea::-webkit-input-placeholder,
.contact-modal-mod .modal-form-field select::-webkit-input-placeholder {
  color: #b5bcc6;
}
.contact-modal-mod .modal-form-field input::-moz-placeholder,
.contact-modal-mod .modal-form-field textarea::-moz-placeholder,
.contact-modal-mod .modal-form-field select::-moz-placeholder {
  color: #b5bcc6;
}
.contact-modal-mod .modal-form-field input:-ms-input-placeholder,
.contact-modal-mod .modal-form-field textarea:-ms-input-placeholder,
.contact-modal-mod .modal-form-field select:-ms-input-placeholder {
  color: #b5bcc6;
}
.contact-modal-mod .modal-form-field input:-moz-placeholder,
.contact-modal-mod .modal-form-field textarea:-moz-placeholder,
.contact-modal-mod .modal-form-field select:-moz-placeholder {
  color: #b5bcc6;
}
.contact-modal-mod .modal-form-field input:focus, .contact-modal-mod .modal-form-field input:active,
.contact-modal-mod .modal-form-field textarea:focus,
.contact-modal-mod .modal-form-field textarea:active,
.contact-modal-mod .modal-form-field select:focus,
.contact-modal-mod .modal-form-field select:active {
  outline: none;
  border-color: #267fff;
}
.contact-modal-mod .modal-form-field select {
  color: #b5bcc6;
  background-color: #fff;
}
.contact-modal-mod .modal-form-field textarea {
  min-height: 150px;
}
.contact-modal-mod .modal-form-field input[type=submit] {
  width: auto;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact-modal-mod .modal .select::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-image: url("../../images/marketing/shape.png");
  background-repeat: no-repeat;
  background-position: center;
}
.contact-modal-mod .modal .cancel,
.contact-modal-mod .modal .close {
  font-family: "Roboto", sans-serif;
}
.contact-modal-mod .modal-buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.contact-modal-mod .modal .modal-buttons a,
.contact-modal-mod .modal .modal-buttons button {
  padding: 0.3rem 0.5rem;
  font-size: 0.875rem;
  font-weight: normal;
}
.contact-modal-mod .modal .modal-buttons a:hover,
.contact-modal-mod .modal .modal-buttons button:hover {
  cursor: pointer;
}
.contact-modal-mod .modal input.btn {
  box-shadow: none;
  border: none;
  background-color: #1e7aff;
  color: #fff !important;
}
.contact-modal-mod .modal .btn.disabled {
  color: #B5BCC6;
  background-color: #E1E5E7;
}
.contact-modal-mod .modal .share a {
  display: inline-block;
  padding: 0;
}
.contact-modal-mod .modal .recaptcha {
  width: 340px;
  height: 84.3px;
  margin-bottom: 21px;
  transform: scale(1.46);
  -webkit-transform: scale(1.46);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.contact-modal-mod .modal .error {
  margin-top: 34px;
  min-height: 25px;
  color: red;
  font-family: Roboto;
  font-size: 12px;
}
.contact-modal-mod .clientMessage {
  min-height: 0px;
  height: auto;
}

/*# sourceMappingURL=contact_modal_mod.css.map */
