@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.modal-form {
  width: 100%;
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-form.placement-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.modal-form.placement-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-form.placement-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .modal {
    width: 100vw;
  }
}
@media (max-width: 767.98px) {
  .modal-dialog.hs-form {
    top: 20%;
    left: 2.5vw;
    -webkit-transform: none;
            transform: none;
    max-width: 95vw;
    max-height: 80vh;
    padding: 0 !important;
  }
}
.modal-dialog.hs-form .modal-dismiss-button {
  position: absolute;
  top: -15px;
  right: 20px;
  color: #fff;
  content: "\f11b";
  font-family: "icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 10;
  background: #808E9B;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-dialog.hs-form .modal-dismiss-button::before {
  color: #fff;
}
.modal-dialog.hs-form .modal-dismiss-button:hover {
  cursor: pointer;
}
.modal-dialog.hs-form .modal-content {
  border: 2px solid #002157;
}
@media (max-width: 767.98px) {
  .modal-dialog.hs-form .modal-content {
    max-width: 95vw;
    max-height: 80vh;
    overflow: auto;
  }
}