@charset "UTF-8";
:root {
  --primaryColor: #5aa6b8;
  --primaryColor-dark: #5196a6;
  --primaryColor-light: #8cc1ce;
  --primaryColor-lighter: #acd3dd;
  --primaryColor-superLight: #e7f2f5;
  --secondaryColor: #f6f6f6;
  --textAccentColor: #fff;
  --headingTextColor: #343a40;
  --borderColor: #c4c4c4;
  --inputColor: #f0f0f0;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
  text-align: center;
  font-size: 12px;
  transform: translateX(-50%) translateY(-50%);
}
.spinner > div {
  background-color: var(--primaryColor);
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  animation-delay: -1.1s;
}
.spinner .rect3 {
  animation-delay: -1s;
}
.spinner .rect4 {
  animation-delay: -0.9s;
}
.spinner .rect5 {
  animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.bookmark {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 1rem;
  height: 1rem;
  width: 2rem;
  background-color: var(--primaryColor);
  background-image: linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.5) 5px, hsla(0, 0%, 100%, 0) 17px);
  filter: drop-shadow(0 2px 6px hsla(0, 0%, 0%, 0.25));
  box-sizing: border-box;
  padding-top: 37px;
  color: var(--primaryColor-light);
  font-size: 1.5rem;
  text-shadow: 0 -1px 0 hsla(0, 0%, 0%, 0.5);
}
@media (max-width: 400px) {
  .bookmark {
    width: 1em;
    height: 0.5em;
  }
}
@media (max-width: 300px) {
  .bookmark {
    display: none;
  }
}

.bookmark:before,
.bookmark:after {
  content: "";
  display: block;
  position: absolute;
}

.bookmark:before {
  bottom: -50%;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(-45deg, transparent 50%, var(--primaryColor) 50%), linear-gradient(45deg, transparent 50%, var(--primaryColor) 50%);
  z-index: -1;
}

.bookmark:after {
  height: 124%;
  width: 88%;
  left: 6%;
  top: 0;
  border-style: dashed;
  border-color: var(--primaryColor-light);
  border-width: 0 1px;
  pointer-events: none;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
  text-align: center;
  font-size: 12px;
  transform: translateX(-50%) translateY(-50%);
}
.spinner > div {
  background-color: var(--primaryColor);
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  animation-delay: -1.1s;
}
.spinner .rect3 {
  animation-delay: -1s;
}
.spinner .rect4 {
  animation-delay: -0.9s;
}
.spinner .rect5 {
  animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.group:before,
.group:after {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

label.has-character-counter {
  display: block;
}
label.has-character-counter .character-counter {
  float: right;
  opacity: 0.8;
  font-size: 0.9em;
}

#saved-draft-dialog {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1em;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #saved-draft-dialog {
    display: block;
    text-align: center;
  }
}
#saved-draft-dialog .icon {
  margin-right: 1em;
}
@media (max-width: 768px) {
  #saved-draft-dialog .icon {
    margin-bottom: 1em;
    margin-right: 0;
  }
}
#saved-draft-dialog .icon i {
  padding: 0;
  font-size: 3em;
}
#saved-draft-dialog .text #email-link {
  margin-right: 1em;
}
#saved-draft-dialog .text a {
  color: #155724;
}

body {
  background: var(--secondaryColor);
  font-family: "Open Sans", sans-serif;
  margin: 50px auto 0;
}
body h1, body h2, body h3 {
  font-family: "Open Sans", sans-serif;
}
body h4, body h5, body h6 {
  font-family: "Open Sans", sans-serif;
  background: var(--primaryColor);
  color: var(--textAccentColor);
  padding: 5px;
}
body h1 {
  background: var(--primaryColor);
  color: var(--textAccentColor);
  padding: 5px;
}
@media only screen and (max-width: 575px) {
  body h1 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
@media only screen and (max-width: 575px) {
  body {
    background: var(--textAccentColor);
    margin: auto;
    width: 100%;
  }
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(173, 173, 173);
  border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

#content-wrapper {
  display: none;
}

.container {
  background: #ffffff;
  color: var(--bodyTextColor);
}

form {
  margin-bottom: 0;
}
form > .row:first-of-type:not(.field-type-heading) {
  margin-top: 2em !important;
}
form label {
  margin: 0;
}
form label .badge-secondary {
  background: var(--primaryColor-light);
  top: -1px;
  position: relative;
}
form .form-control {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-radius: 3px !important;
  padding: 0 10px;
  margin-top: 7px;
  min-height: 2.5rem !important;
  line-height: 1.8rem !important;
  transition: 0.1s;
}
form .form-control:focus {
  background: var(--inputColor);
  box-shadow: none;
  border-color: var(--primaryColor);
}
form .form-control:hover {
  border-color: var(--primaryColor);
}
form .form-control:disabled {
  cursor: not-allowed;
}
form .btn {
  background: #ffffff;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}
form .btn:hover {
  background-color: var(--primaryColor);
  color: var(--textAccentColor);
}
form input, form select, form textarea {
  color: var(--bodyTextColor) !important;
}
form select {
  cursor: pointer;
}
form .cdpointer {
  cursor: pointer;
}
form .select2 {
  width: 100% !important;
}
form .select2 .select2-search__field {
  height: 1.5rem !important;
  margin-top: 8px !important;
  margin-bottom: 1px !important;
}
form .select2 .select2-selection--multiple {
  background: var(--inputColor) !important;
  padding-right: 1.25rem !important;
}
form .select2 .select2-selection--multiple:hover {
  border-color: var(--primaryColor) !important;
}
form .select2 .select2-selection--multiple:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 0.95rem;
  font-weight: 600;
  content: "\f107";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
form .select2.select2-container--focus .select2-selection--multiple {
  border-color: var(--primaryColor) !important;
}
form .select2 .select2-selection__choice {
  background: var(--primaryColor) !important;
  color: var(--textAccentColor) !important;
  border-color: var(--primaryColor) !important;
}
form .select2 .select2-selection__choice .select2-selection__choice__remove {
  color: var(--textAccentColor) !important;
}
form .select2 .select2-selection__choice .select2-selection__choice__remove:hover {
  background: darkred !important;
}

.select2-results .select2-results__options {
  border-bottom-left-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}
.select2-results .select2-results__option {
  background: #ffffff !important;
  color: var(--bodyTextColor) !important;
  border-left: 0px solid transparent !important;
  transition: 0.25s !important;
}
.select2-results .select2-results__option--highlighted {
  background: var(--primaryColor-superLight) !important;
}
.select2-results .select2-results__option--selected {
  border-left: 5px solid var(--primaryColor) !important;
}

#acceptance-container, #form-container, #received-container {
  border-radius: 0.25rem;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 575px) {
  #acceptance-container, #form-container, #received-container {
    box-shadow: none;
  }
}

@media only screen and (min-width: 575px) {
  #acceptance-container {
    margin-top: 10rem;
  }
}
#acceptance-container a {
  color: var(--bodyTextColor);
  font-weight: 600;
}
#acceptance-container a:hover {
  color: var(--primaryColor);
}

#received-container {
  margin-top: 3rem;
}
@media only screen and (min-width: 575px) {
  #received-container {
    margin-top: 10rem;
  }
}
@media (max-width: 574px) {
  #received-container {
    margin-top: 12rem;
  }
  #received-container img {
    margin-bottom: 2rem;
    max-height: 135px;
  }
}

#form-header {
  color: var(--bodyTextColor);
  border-bottom: 3px solid var(--primaryColor);
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
}

.accountlogo {
  max-width: 100%;
  max-height: 100px;
}

.readonly {
  margin: 0;
  padding: 0 10px;
  min-height: 2rem;
  word-break: break-all;
  background: var(--inputColor);
  color: dimgrey;
  border: 1px solid var(--borderColor);
  border-radius: 3px;
  line-height: 2.4rem;
  min-height: 2.5rem;
  cursor: not-allowed;
}

input[readonly] {
  cursor: not-allowed;
}

.fileinput-btn {
  width: 7rem;
  height: 7rem;
  padding: 0;
  margin: 0.8rem 0.8rem 0 0;
  float: left;
  display: block;
}
.fileinput-btn span {
  color: var(--primaryColor-light) !important;
  opacity: 0.2;
  top: 0.75rem;
  transition: 0.5s;
}
.fileinput-btn i {
  line-height: 7rem;
}
.fileinput-btn .fa-plus-square {
  top: -1.75rem;
  left: 1.6rem;
  font-size: 2.5rem;
  color: var(--primaryColor-dark);
}
.fileinput-btn:hover {
  background: #ffffff !important;
}
.fileinput-btn:hover span {
  opacity: 0.9;
}

.documentinput-container {
  margin-top: 7px;
}
@media only screen and (min-width: 575px) {
  .documentinput-container {
    display: flex;
  }
}
.documentinput-container .documentinput-btn {
  display: table;
  background: var(--primaryColor-light);
  border: 1px solid var(--borderColor);
  color: var(--textAccentColor);
  margin-right: -1px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  line-height: 1.6rem;
}
.documentinput-container .documentinput-btn:hover {
  background: var(--primaryColor-dark);
  color: var(--textAccentColor);
}
.documentinput-container .documentinput-btn span {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 575px) {
  .documentinput-container .documentinput-btn {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
    width: 100%;
  }
}
.documentinput-container .file_container {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  overflow-x: auto;
  transition: 0.1s;
}
@media only screen and (max-width: 575px) {
  .documentinput-container .file_container {
    border-top: none;
  }
}
.documentinput-container ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.documentinput-file.document-viewer-fullscreen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin: 0 !important;
  top: 0;
  z-index: 9999;
}
.documentinput-file.document-viewer-fullscreen .documentinput-file-viewer {
  margin: 1em;
}
.documentinput-file.document-viewer-fullscreen .documentinput-file-viewer.minimized embed {
  height: 100% !important;
}

.documentinput-file {
  margin: 0.25rem 0.4rem;
  background: #d9d9d9;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1.8rem;
  transition: all 500ms ease;
}
.documentinput-file.viewer-visible {
  background: var(--primaryColor);
  color: var(--textAccentColor);
}
.documentinput-file .download-storage-file {
  cursor: pointer;
}
.documentinput-file .filetype {
  font-size: 1.2rem;
}
.documentinput-file .delete-document-attachment {
  color: darkred;
  cursor: pointer;
}
.documentinput-file .delete-document-attachment:hover {
  color: red;
}
.documentinput-file .documentinput-header {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
}
.documentinput-file .documentinput-header .documentinput-header__icon {
  padding-right: 10px;
}
.documentinput-file .documentinput-header .documentinput-header__actions {
  margin-left: auto;
  display: flex;
}
.documentinput-file .documentinput-header .documentinput-header__actions div {
  padding: 5px;
  cursor: pointer;
}
.documentinput-file .documentinput-file-viewer {
  width: 100%;
  display: none;
}
.documentinput-file .documentinput-file-viewer.minimized .documentinput-file-viewer__object {
  height: 100% !important;
}
.documentinput-file .documentinput-file-viewer.minimized embed {
  height: 400px !important;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer__object {
  width: 100%;
  padding: 0 10px 10px 10px;
  border-radius: 3px;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer__object embed {
  border-radius: 3px;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer_toolbar {
  color: var(--textAccentColor);
  display: flex;
  justify-content: space-between;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer_toolbar .documentinput-file-viewer_toolbar-name {
  padding: 10px 15px;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer_toolbar .documentinput-file-viewer_toolbar-actions {
  display: flex;
  align-items: center;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer_toolbar .documentinput-file-viewer_toolbar-actions div {
  background: var(--primaryColor-dark);
  padding: 14px 15px;
  cursor: pointer;
}
.documentinput-file .documentinput-file-viewer .documentinput-file-viewer_toolbar .documentinput-file-viewer_toolbar-actions div i {
  color: #fff;
}

.upload-disabled {
  cursor: not-allowed !important;
}
.upload-disabled:hover span {
  opacity: 0.2;
}

.upload-preview {
  height: 7rem;
  border: 5px solid #fff;
  padding: 5px;
  border: 1px solid var(--primaryColor-lighter);
  border-radius: 0.25rem;
  cursor: pointer;
}

.overlay {
  float: left;
  margin-right: 0.8rem;
  margin-top: 0.8rem;
  position: relative;
  transition: all 500ms ease;
}
.overlay img {
  transition: all 500ms ease;
  opacity: 1;
}
.overlay::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f00e";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 3rem;
  color: var(--primaryColor-dark);
  pointer-events: none;
  visibility: hidden;
  transition: all 500ms ease;
  opacity: 0;
}
.overlay:hover img {
  transition: all 500ms ease;
  opacity: 0.5;
}
.overlay:hover::after {
  visibility: visible;
  opacity: 1;
}

.imageModal .modal-content {
  border: none;
}
.imageModal .modal-content .modal-header {
  background: var(--primaryColor);
  border-bottom: none;
}
.imageModal .modal-content .modal-header .image-remove {
  position: absolute;
  color: var(--textAccentColor);
  cursor: pointer;
  opacity: 0.75;
  width: 90%;
  text-align: right;
}
.imageModal .modal-content .modal-header .image-remove:hover {
  opacity: 1;
}
@media only screen and (max-width: 575px) {
  .imageModal .modal-content .modal-header .image-remove {
    width: 86%;
  }
}
.imageModal .modal-content .modal-header .close {
  color: var(--textAccentColor);
  padding: 0.5rem;
  margin: -0.9rem -1rem -1rem auto;
  opacity: 0.75;
}
.imageModal .modal-content .modal-header .close:hover {
  opacity: 1;
}
.imageModal .modal-content .upload-view {
  display: inline;
  max-width: 100%;
  height: auto;
  max-height: 50rem;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.imageModal .img-portrait {
  max-width: 30% !important;
}
.imageModal .img-center {
  max-width: 50% !important;
}
.imageModal .img-landscape {
  max-width: 75% !important;
}

.signature {
  max-width: 80%;
}

.jSig {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-radius: 3px;
}
.jSig:hover {
  border-color: var(--primaryColor);
}
.jSig:hover ~ .jSig-reset {
  border-color: var(--primaryColor) !important;
}
@media only screen and (max-width: 575px) {
  .jSig canvas {
    height: 12rem !important;
  }
}

.jSig-reset {
  position: absolute;
  top: 1.5rem;
  right: 0.94rem;
  border-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-color: var(--borderColor) !important;
}
.jSig-reset:hover {
  color: #ffffff !important;
}
@media only screen and (max-width: 575px) {
  .jSig-reset:hover {
    background-color: #ffffff !important;
    color: var(--primaryColor) !important;
  }
}
.jSig-reset:focus {
  box-shadow: none;
}

.repeater-body .jSig-reset {
  right: 0;
}

.image {
  border-radius: 3px;
  max-width: 100%;
}
.image.image-small {
  max-width: 50%;
}
.image.image-medium {
  max-width: 80%;
}
.image.image-large {
  max-width: 100%;
}

input[type=radio] {
  display: none;
}
input[type=radio]:checked + label {
  background: var(--primaryColor);
  color: var(--textAccentColor);
  border: 1px solid var(--primaryColor);
  border-radius: 3px !important;
}
input[type=radio]:checked + label .radioCircle {
  background: var(--textAccentColor);
  border-color: darkgrey;
}

.radioOptions {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-radius: 3px !important;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: left;
}
.radioOptions .radioCircle {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  border-radius: 50%;
  border: 1px solid var(--borderColor);
  margin: -2px 5px;
}
.radioOptions:hover {
  background: var(--primaryColor);
  color: var(--textAccentColor);
  border-color: var(--primaryColor);
  border-radius: 3px !important;
  cursor: pointer;
}
.radioOptions:hover .radioCircle {
  color: var(--textAccentColor);
  border-color: var(--textAccentColor);
}

.repeater-group {
  margin-bottom: 3em;
}

.repeater-outer-container .repeater-header {
  margin-bottom: -5px;
}
.repeater-outer-container .repeater-header strong {
  font-weight: normal;
}
.repeater-outer-container .repeater-header .repeater-remove {
  float: right;
}
.repeater-outer-container .repeater-header .repeater-remove i {
  line-height: 1.8rem;
  cursor: pointer;
}

.repeater-inner-container {
  border-left: 5px solid var(--primaryColor);
  padding: 5px 0 0;
}
.repeater-inner-container .repeater-body {
  padding-bottom: 1rem;
}
.repeater-inner-container .repeater-body h5 {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.repeater-inner-container .repeater-add-container {
  padding-bottom: 1px;
}
.repeater-inner-container .repeater-add-container .repeater-add {
  background: var(--primaryColor);
  color: var(--textAccentColor);
  border-radius: 2rem;
  position: absolute;
  width: 2rem;
  height: 2rem;
  padding: 0;
  left: -1.15rem;
  bottom: -1.9rem;
  overflow: hidden;
}
.repeater-inner-container .repeater-add-container .repeater-add i {
  line-height: 2rem;
  font-size: 1.3rem;
  position: relative;
  left: 6px;
}
.repeater-inner-container .repeater-add-container .repeater-add span {
  padding: 0 0.3rem;
  bottom: 0.15rem;
  opacity: 0;
  transition: opacity 500ms ease;
  position: relative;
  top: -2px;
  left: 10px;
  display: inline-block;
  overflow: hidden;
  width: 0;
}
.repeater-inner-container .repeater-add-container .repeater-add:hover {
  background: var(--primaryColor-dark);
  width: auto;
  text-align: left;
  padding: 0 0.45rem;
}
.repeater-inner-container .repeater-add-container .repeater-add:hover span {
  opacity: 1;
  transition: opacity 500ms ease;
  left: 0;
  width: 100%;
  top: 2px;
}
.repeater-inner-container .repeater-add-container .repeater-add:hover i {
  left: -1px;
}

.repeater-table-header strong {
  font-weight: normal;
}

.repeater-table {
  border: 1px solid var(--borderColor) !important;
  margin-bottom: 0;
}
.repeater-table .repeater-table-remove i {
  cursor: pointer;
}
.repeater-table th {
  border-top: 1px solid var(--borderColor) !important;
}
.repeater-table th, .repeater-table td {
  border-bottom: 1px solid var(--borderColor) !important;
  border-right: 1px solid var(--borderColor);
  vertical-align: middle !important;
}
.repeater-table th:last-child, .repeater-table td:last-child {
  border-right: none;
}
.repeater-table .repeater-table-row td {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div label[for^=field_] {
  display: none;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div label[for^=field_] strong {
  display: none;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div p {
  margin-bottom: 0;
  border-bottom: none !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div .form-control {
  margin: 0.75rem 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div br {
  display: none;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.text-field-container, .repeater-table .repeater-table-row div[id^=fieldrow_] div.date-field-container, .repeater-table .repeater-table-row div[id^=fieldrow_] div.integer-field-container, .repeater-table .repeater-table-row div[id^=fieldrow_] div.select-field-container, .repeater-table .repeater-table-row div[id^=fieldrow_] div.postcode-field-container {
  padding-left: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.long-text-field-container {
  padding-left: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.long-text-field-container textarea {
  height: 1rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.choice-field-container {
  padding-left: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.checkbox-container {
  padding-left: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.checkbox-container label {
  display: block !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container {
  padding: 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .fileinput-btn {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.25rem;
  margin-left: 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .fileinput-btn .fa-stack {
  width: 1em;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .fileinput-btn .fa-stack .fa-camera {
  font-size: 0.75em;
  line-height: 1.4rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .fileinput-btn .fa-stack .fa-plus-square {
  font-size: 0.75rem;
  top: -3.5rem;
  left: 0.7rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .overlay {
  margin: 0.25rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .overlay::after {
  font-size: 1.5rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.photo-field-container .upload-preview {
  height: 2.5rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.document-field-container {
  padding: 0;
  margin: 0.5rem 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.document-field-container .documentinput-container {
  margin-top: 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.document-field-container .documentinput-container .documentinput-btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.document-field-container .documentinput-container .documentinput-btn span {
  padding: 0.25rem 0.5rem;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.telephone-field-container {
  padding: 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.telephone-field-container .phone-number .iti__selected-flag {
  height: 2.5rem;
  margin: 0.75rem 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.telephone-field-container .phone-number .iti.iti--allow-dropdown {
  margin-top: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.telephone-field-container .error-msg {
  font-size: 0.6rem;
  position: absolute;
  white-space: nowrap;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.signature-field-container {
  padding-left: 0 !important;
  width: 400px;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.signature-field-container .jSig {
  margin: 0.5rem 0 !important;
  border-radius: 4px !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.signature-field-container .jSignature {
  height: 100px !important;
  border-radius: 4px !important;
  aspect-ratio: auto 410/100 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.signature-field-container .jSig-reset {
  top: 0;
  right: 0;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.calculation-field-container {
  padding-left: 0 !important;
}
.repeater-table .repeater-table-row div[id^=fieldrow_] div.qr-field-container, .repeater-table .repeater-table-row div[id^=fieldrow_] div.location-field-container {
  padding-left: 0 !important;
  margin: 7px 0 !important;
}

.repeater-table-add {
  border-top: none !important;
  border-color: var(--borderColor) !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 56px;
}
.repeater-table-add:focus {
  box-shadow: none;
}

.overflow-hidden {
  overflow: hidden !important;
}

.tooltip {
  z-index: 10000 !important;
}

.tooltip-inner {
  background: var(--primaryColor-dark);
  color: var(--textAccentColor);
  font-weight: 600;
}

.arrow:before {
  border-left-color: var(--primaryColor-dark) !important;
  border-right-color: var(--primaryColor-dark) !important;
}

.tooltip-icon {
  color: var(--primaryColor);
}

.swal2-container .swal2-popup {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
}
.swal2-container .swal2-popup .swal2-styled {
  background: var(--primaryColor) !important;
  color: var(--textAccentColor) !important;
}
.swal2-container .swal2-popup .swal2-styled:hover {
  background: var(--primaryColor-dark) !important;
}
.swal2-container .swal2-popup .swal2-styled:focus {
  box-shadow: none !important;
}

.phone-validation {
  margin-left: 0.25rem;
}
.phone-validation .error-msg {
  color: red;
}
.phone-validation .valid-msg {
  color: #00C900;
}
.phone-validation .hide {
  display: none;
}

.phone-number .iti.iti--allow-dropdown {
  width: 100% !important;
  margin-top: 0.5rem;
}
.phone-number input.error {
  border: 1px solid #FF7C7C;
}

.alert-danger {
  font-size: 1.1rem;
  color: #fff;
  background-color: #bd1929;
  border-color: #6e131c;
}

input[data-textinputmask]:not([data-textinputmask=""]) {
  letter-spacing: 0.1rem;
}

.checkbox-container input[type=checkbox] + label, .checkbox-container .readonly-checkbox + label {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin-left: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-container input[type=checkbox] + label:before, .checkbox-container .readonly-checkbox + label:before {
  content: "✔";
  border: 0.1em solid var(--borderColor);
  border-radius: 0.2em;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.25rem;
  text-align: center;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  margin-left: -2rem;
  margin-right: 0.35rem;
}
.checkbox-container input[type=checkbox] + label:hover:before, .checkbox-container .readonly-checkbox + label:hover:before {
  border-color: var(--primaryColor);
}
.checkbox-container input[type=checkbox] + label:active:before, .checkbox-container .readonly-checkbox + label:active:before {
  transform: scale(0.8);
}
.checkbox-container input[type=checkbox], .checkbox-container .readonly-checkbox {
  display: none;
}
.checkbox-container input[type=checkbox] + label:before, .checkbox-container .readonly-checkbox + label:before {
  background-color: transparent;
  border-color: var(--borderColor);
  color: transparent;
  transform: scale(1);
}
.checkbox-container input[type=checkbox]:checked + label:before, .checkbox-container .readonly-checkbox[checked] + label:before {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--textAccentColor);
}
.checkbox-container input[type=checkbox]:disabled + label, .checkbox-container .readonly-checkbox + label {
  cursor: not-allowed;
}
.checkbox-container input[type=checkbox]:disabled + label:before, .checkbox-container .readonly-checkbox + label:before {
  transform: scale(1);
  border-color: var(--borderColor);
}
.checkbox-container input[type=checkbox]:checked:disabled + label:before, .checkbox-container .readonly-checkbox[checked] + label:before {
  transform: scale(1);
  background-color: var(--primaryColor-light);
  border-color: var(--primaryColor-light);
}

#sendFormContainer {
  text-align: center;
  background: var(--primaryColor-superLight);
  border-top: 3px solid var(--primaryColor);
  padding: 2rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
@media only screen and (max-width: 575px) {
  #sendFormContainer {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
#sendFormContainer button {
  width: auto;
  background: var(--primaryColor);
  padding: 0.5rem 2rem;
  box-shadow: 0 0 10px 0 #888;
  color: var(--textAccentColor);
  font-size: 1.25rem;
}
@media only screen and (min-width: 575px) {
  #sendFormContainer button {
    min-width: 300px;
    margin: 10px;
  }
}
#sendFormContainer button:hover {
  background: var(--primaryColor-dark);
}
@media only screen and (max-width: 575px) {
  #sendFormContainer button {
    width: 100%;
    margin-top: 0;
  }
}
#sendFormContainer .or {
  display: block;
  font-size: 0.9em;
  opacity: 0.5;
  margin-top: 1em;
}
#sendFormContainer #saveformdraft {
  background: none;
  border: none;
  color: var(--primaryColor);
  box-shadow: none;
  font-size: 1em;
  cursor: pointer;
  min-width: auto;
  border-radius: 5px;
  transition: all 250ms ease;
}
#sendFormContainer #saveformdraft:hover, #sendFormContainer #saveformdraft:disabled {
  background: var(--primaryColor-dark);
  color: white;
  box-shadow: 0 0 10px 0 #888;
}
#sendFormContainer #saveformdraft:disabled {
  background: var(--primaryColor-light);
}

#form-footer a {
  color: #6c757d;
}
#form-footer a:hover {
  color: var(--primaryColor);
}

#pdfobjectloader {
  position: absolute;
  top: 45%;
  left: 49%;
}

.pdfobject-container {
  height: 90vh;
  width: 70vw;
  align-self: center;
  z-index: 999;
}

.field-alert-error {
  color: red;
}

.field-alert-success {
  color: #00C900;
}

.qr-field, .location-field {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-radius: 3px !important;
  padding: 0 10px;
  margin-top: 7px;
  min-height: 2.5rem !important;
  line-height: 2.4rem !important;
  transition: 0.1s;
  cursor: pointer;
}
.qr-field:hover, .location-field:hover {
  border-color: var(--primaryColor);
}

#qrModal .modal-content {
  border: none;
}
#qrModal .modal-content .modal-header {
  background: var(--primaryColor);
  border-bottom: none;
}
#qrModal .modal-content .modal-header .close {
  color: var(--textAccentColor);
  padding: 0.5rem;
  margin: -0.9rem -1rem -1rem auto;
  opacity: 0.75;
}
#qrModal .modal-content .modal-header .close:hover {
  opacity: 1;
}
#qrModal .modal-content .modal-body #qr-reader {
  border: none !important;
  min-height: 120px;
}
#qrModal .modal-content .modal-body #qr-reader img[alt="Info icon"], #qrModal .modal-content .modal-body #qr-reader #qr-reader__dashboard_section_swaplink {
  display: none !important;
}
#qrModal .modal-content .modal-body #qr-reader button {
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background: #ffffff;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  cursor: pointer;
}
#qrModal .modal-content .modal-body #qr-reader button:hover {
  background-color: var(--primaryColor);
  color: var(--textAccentColor);
}
#qrModal .modal-content .modal-body #qr-reader button:focus {
  outline: none;
}
#qrModal .modal-content .modal-body #qr-reader select {
  background: var(--inputColor);
  border: 1px solid var(--borderColor);
  border-radius: 3px !important;
  padding: 0 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  min-height: 2.5rem !important;
  line-height: 1.8rem !important;
  transition: 0.1s;
}
#qrModal .modal-content .modal-body #qr-reader select:focus {
  background: var(--inputColor);
  box-shadow: none;
  border-color: var(--primaryColor);
  outline: none;
}
#qrModal .modal-content .modal-body #qr-reader select:hover {
  border-color: var(--primaryColor);
}
#qrModal .modal-content .modal-body #qr-reader select:disabled {
  cursor: not-allowed;
}
#qrModal .modal-content .modal-body #qr-reader #qr-shaded-region {
  border-width: 35px 100px !important;
}
#qrModal .modal-content .modal-body #qr-reader #qr-reader__dashboard {
  padding-top: 10px !important;
}

.modal-backdrop.show {
  opacity: 0.3;
}

.modal {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
}
.modal .modal-dialog {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
  transition: none !important;
  transform: none !important;
  width: 100%;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal .modal-dialog.modal-lg {
  max-width: 1000px;
}
@media (max-width: 1000px) {
  .modal .modal-dialog {
    width: 95%;
    max-width: 100%;
  }
}

#extended-select-modal .modal-dialog {
  border-radius: 5px;
}
#extended-select-modal .heading {
  padding: 1em;
  color: var(--textAccentColor);
  background: var(--primaryColor);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: -1px -1px 0 -1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #extended-select-modal .heading {
    display: block;
    text-align: center;
  }
}
#extended-select-modal .heading .title {
  text-align: left;
}
@media (max-width: 768px) {
  #extended-select-modal .heading .title {
    text-align: center;
  }
}
#extended-select-modal .heading .title h4, #extended-select-modal .heading .title p {
  margin: 0;
  padding: 0;
}
#extended-select-modal .heading .title h4 {
  font-size: 1.3rem;
}
#extended-select-modal .heading .title p {
  font-size: 0.9rem;
}
#extended-select-modal .heading .actions {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #extended-select-modal .heading .actions {
    justify-content: center;
    margin-top: 0.5rem;
  }
}
@media (max-width: 500px) {
  #extended-select-modal .heading .actions {
    display: block;
  }
}
#extended-select-modal .heading .actions #extended-select-clear {
  margin-right: 1em;
}
#extended-select-modal .heading .actions #extended-select-search {
  background: #fff;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 0.5em;
  width: 300px;
}
@media (max-width: 500px) {
  #extended-select-modal .heading .actions #extended-select-search {
    margin-top: 0.5rem;
    width: 100%;
  }
}
#extended-select-modal .heading .actions #extended-select-search:focus {
  box-shadow: 0px 0px 0px 4px var(--primaryColor-dark);
}
#extended-select-modal .heading .actions #extended-select-search::-webkit-search-cancel-button {
  /* Remove default */
  -webkit-appearance: none;
  /* Now your own custom styles */
  height: 14px;
  width: 14px;
  display: block;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  /* setup all the background tweaks for our custom icon */
  background-repeat: no-repeat;
  cursor: pointer;
  /* icon size */
  background-size: 14px;
  opacity: 1;
}
#extended-select-modal #extended-select-modal-table_wrapper {
  padding: 1em;
}
#extended-select-modal #extended-select-modal-table_wrapper th, #extended-select-modal #extended-select-modal-table_wrapper td {
  padding: 0.75em 1em;
}
#extended-select-modal #extended-select-modal-table_wrapper td {
  border: 1px solid #ddd;
}
#extended-select-modal #extended-select-modal-table_wrapper th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #ededed;
  border-right: 1px solid #ddd;
  border-bottom: none;
}
#extended-select-modal #extended-select-modal-table_wrapper th:first-child {
  border-left: 1px solid #ddd;
}
#extended-select-modal #extended-select-modal-table_wrapper th:after, #extended-select-modal #extended-select-modal-table_wrapper th:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 1;
}
#extended-select-modal #extended-select-modal-table_wrapper th:before {
  top: 0;
  border-top: 1px solid #ddd;
}
#extended-select-modal #extended-select-modal-table_wrapper th:after {
  bottom: -1px;
  border-bottom: 1px solid #ddd;
}
#extended-select-modal #extended-select-modal-table_wrapper #extended-select-modal-table_filter {
  display: block;
  text-align: center;
  float: none;
}
#extended-select-modal #extended-select-modal-table_wrapper #extended-select-modal-table_filter input {
  width: 300px;
  margin-left: 0.5em;
}
@media (max-width: 768px) {
  #extended-select-modal #extended-select-modal-table_wrapper #extended-select-modal-table_filter input {
    width: 100%;
  }
}
#extended-select-modal #extended-select-modal-table_wrapper .table-container {
  max-height: 60vh;
  overflow-x: auto;
  overflow-y: auto;
  margin: 0 -1em;
  padding: 0 1em;
}
#extended-select-modal #extended-select-modal-table_wrapper .table-container table {
  border-collapse: collapse;
}
#extended-select-modal #extended-select-modal-table_wrapper .dataTables_paginate a {
  border: none;
  background: none;
}
#extended-select-modal #extended-select-modal-table_wrapper .dataTables_paginate a.current {
  background: var(--primaryColor);
  color: var(--textAccentColor) !important;
}
#extended-select-modal #extended-select-modal-table_wrapper .dataTables_paginate a:hover {
  color: black !important;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.even {
  background-color: #f7f7f7;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option {
  transition: all 500ms ease;
  cursor: pointer;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option:hover {
  background: #ededed;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option td:first-child span {
  position: relative;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option td:first-child span:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  background: var(--primaryColor);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  display: flex;
  line-height: 0;
  justify-content: center;
  align-items: center;
  margin-left: -1em;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  margin-top: 1px;
  opacity: 0;
  transition: all 250ms ease;
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option.option-selected {
  background: var(--primaryColor-superLight);
}
#extended-select-modal #extended-select-modal-table_wrapper tr.extended-select-choose-option.option-selected td:first-child span:before {
  opacity: 1;
}
#extended-select-modal #extended-select-actions {
  padding: 0 1em 1em 1em;
  display: flex;
  justify-content: space-between;
}
#extended-select-modal #extended-select-actions #extended-select-confirm {
  background: var(--primaryColor);
  color: var(--textAccentColor);
}

.reset-pdf-modal-drag {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 20px;
  background: var(--primaryColor);
  color: var(--textAccentColor);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: none;
  font-size: 0.9em;
  cursor: pointer;
}

#pdfModal.modal-minimised .modal-dialog {
  max-width: 500px;
}
#pdfModal.modal-minimised #pdfobject {
  width: 500px;
}
#pdfModal .modal-drag {
  background: var(--primaryColor);
  z-index: 9999;
  text-align: center;
  padding: 10px;
  position: relative;
  cursor: grab;
}
#pdfModal .modal-drag i {
  color: var(--textAccentColor);
}
#pdfModal .modal-drag .modal-drag-close {
  background: var(--primaryColor-dark);
  padding: 10px 15px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.field-type-variable div {
  margin: 0 !important;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transform: translateZ(0) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  animation-name: swing;
  transform-origin: top center;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-name: heartBeat;
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    opacity: 0.7;
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    opacity: 0.7;
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    opacity: 0.7;
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    opacity: 0.7;
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateY(700px) scale(0.7);
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateX(-2000px) scale(0.7);
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateX(2000px) scale(0.7);
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    transform: translateY(-700px) scale(0.7);
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  animation-name: flip;
  backface-visibility: visible;
}
@keyframes flipInX {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  animation-name: flipInX;
  backface-visibility: visible !important;
}
@keyframes flipInY {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  animation-name: flipInY;
  backface-visibility: visible !important;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutY;
  backface-visibility: visible !important;
}
@keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    transform: skewX(20deg);
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    transform: skewX(-20deg);
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(200deg);
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(45deg);
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(-45deg);
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(-45deg);
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: rotate(90deg);
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
  }
  40%, 80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  to {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  to {
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}/*# sourceMappingURL=form-validation.css.map */