@font-face {
  font-family: Inter-Thin;
  src: url("../fonts/Inter-Thin.ttf");
}
@font-face {
  font-family: Inter-ExtraLight;
  src: url("../fonts/Inter-ExtraLight.ttf");
}
@font-face {
  font-family: Inter-Light;
  src: url("../fonts/Inter-Light.ttf");
}
@font-face {
  font-family: Inter-Regular;
  src: url("../fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: Inter-Medium;
  src: url("../fonts/Inter-Medium.ttf");
}
@font-face {
  font-family: Inter-SemiBold;
  src: url("../fonts/Inter-SemiBold.ttf");
}
.modal-container {
  position: fixed;
  display: none;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  background-color: rgba(51, 51, 51, 0.8);
}
.modal-container .modal {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: space-evenly;
  background: #fdfdfd;
  box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.16), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: #7ad155 solid 0.5rem;
  border-radius: 1.75rem;
  padding: 2rem;
  text-align: center;
  max-width: 40vw;
  z-index: 10;
}
.modal-container .modal .description {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
}
.modal-container .modal .button {
  align-self: flex-end;
}

html.modal-success-active,
html.modal-failiure-active {
  overflow: hidden;
}
html.modal-success-active .contact-form,
html.modal-failiure-active .contact-form {
  pointer-events: none;
}
html.modal-success-active .modal-container,
html.modal-failiure-active .modal-container {
  display: flex;
}

html.modal-success-active .modal-success {
  display: flex;
  top: 20%;
  transform: translate(0 -20%);
}

html.modal-failiure-active .modal-failiure {
  display: flex;
  top: 15%;
  transform: translate(0 -15%);
}

@media screen and (max-width: 720px) {
  .modal {
    min-width: 75vw !important;
  }
  .modal-success {
    top: 0;
    transform: translate(0);
  }
  .modal-failiure {
    top: 12.5% !important;
    transform: translate(0 -12.5%) !important;
  }
}/*# sourceMappingURL=modal.css.map */