.fade-page-in {
  -webkit-animation-name: fade-page-in;
  animation-name: fade-page-in;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fade-page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
app-root ._hidden {
  display: none;
  visibility: hidden;
}
app-root .app-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
app-root .app-wrapper .user-tools {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px;
  width: 320px;
  margin-bottom: 0;
  background-color: #F8F4F2;
  border-bottom: solid 3px #fff;
}
app-root .app-wrapper .user-tools a[class*="action"] {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  color: #6f6f6f !important;
}
app-root .app-wrapper .user-tools a[class*="action"]:before {
  padding-right: 5px;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  color: #6f6f6f;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
app-root .app-wrapper .user-tools a[class*="action"]:hover:before {
  color: #000;
}
app-root .app-wrapper .user-tools a.action-edit-account:before {
  content: "\f30d";
}
app-root .app-wrapper .user-tools a.action-logout:before {
  content: "\f08b";
}
app-root .app-wrapper .user-tools a.action-login:before {
  content: "\f090";
}
app-root .app-wrapper .user-tools a.action-register:before {
  content: "\f234";
}
app-root .app-wrapper .app-title {
  border-bottom: solid 3px #F8F4F2;
  padding: 0 30px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
app-root div.calendar {
  --background-color: #E8E3E1;
}
app-root .alert-danger {
  font-weight: bold;
  color: #B52D70;
}
app-root .button {
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 22px;
  padding: 8px 37px;
  text-align: center;
  color: #fff !important;
  font-size: 15px;
  line-height: 18px;
  background-color: #D03581;
  border: none;
  outline: none;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
app-root .button:hover {
  background-color: #B52D70;
}
app-root .button:disabled {
  background-color: #7d6671;
}
app-root .button.button-secondary {
  background-color: #8EBA39;
}
app-root .button.button-secondary:hover {
  background-color: #7AA030;
}
app-root .form-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
app-root .form-sets {
  width: 320px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 15px;
  background-color: #F8F4F2;
}
app-root .form-sets ul.form-steps {
  list-style: none;
  padding: 0;
}
app-root .form-sets ul.form-steps li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
  margin-bottom: 10px;
  position: relative;
}
app-root .form-sets ul.form-steps li .status {
  margin-right: 10px;
}
app-root .form-sets ul.form-steps li .status:before {
  width: 32px;
  font-family: "Font Awesome 5 Pro";
  content: "\f111";
  font-size: 22px;
  font-weight: 400;
}
app-root .form-sets ul.form-steps li .cursor {
  position: absolute;
  right: 0;
  top: 0;
}
app-root .form-sets ul.form-steps li .cursor:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f30a";
  font-size: 22px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
app-root .form-sets ul.form-steps li.active {
  font-weight: bold;
  color: #2f2f2f;
}
app-root .form-sets ul.form-steps li.active .cursor:before {
  opacity: 1;
}
app-root .form-sets ul.form-steps li.complete .status:before {
  content: "\f058";
}
app-root .form-inputs {
  padding: 0 0 40px;
}
app-root .form-group:not(.form-group-html) {
  margin: 10px;
  padding: 7px 14px;
  background-color: #f8f4f2;
  border: solid 1px #adadad;
}
app-root .form-group:not(.form-group-html).no-container {
  background-color: transparent;
  border: none;
}
app-root .form-group:not(.form-group-html) .label {
  display: block;
  line-height: 22px;
  font-weight: bold;
}
app-root .form-group:not(.form-group-html) input,
app-root .form-group:not(.form-group-html) select,
app-root .form-group:not(.form-group-html) textarea {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  line-height: 28px;
  max-width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #6f6f6f;
}
app-root .form-group:not(.form-group-html) .select-wrapper {
  position: relative;
}
app-root .form-group:not(.form-group-html) .select-wrapper:after {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  content: "\f0dc";
  font-weight: 600;
  color: #8EBA39;
}
app-root .form-group:not(.form-group-html) .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
app-root .form-group:not(.form-group-html) span label {
  display: none;
}
app-root .form-group:not(.form-group-html) app-calendar {
  --background-color: #7AA030;
}
app-root .form-group:not(.form-group-html) .field-type-date {
  position: relative;
}
app-root .form-group:not(.form-group-html) .field-type-date input {
  position: relative;
  z-index: 2;
}
app-root .form-group:not(.form-group-html) .field-type-date button {
  background: none;
  color: #8EBA39;
}
app-root .form-group:not(.form-group-html) .field-type-date button:after {
  pointer-events: none;
  z-index: 1;
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  font-size: 18px;
}
app-root .form-group:not(.form-group-html) .field-type-date button.show-calendar:after {
  content: "\f073";
}
app-root .form-group:not(.form-group-html) .field-type-date button.clear-date:after {
  content: "\f2d3";
}
app-root .form-group:not(.form-group-html) .field-type-date button:hover {
  color: #283B94;
}
app-root .form-group:not(.form-group-html) .field-type-checkbox,
app-root .form-group:not(.form-group-html) .field-type-radio {
  padding-left: 25px;
}
app-root .form-group:not(.form-group-html) input[type="checkbox"],
app-root .form-group:not(.form-group-html) input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 14px;
  width: 14px !important;
  margin-right: 5px;
  border: solid 1px #707070;
  outline: none;
}
app-root .form-group:not(.form-group-html) input[type="checkbox"]:checked,
app-root .form-group:not(.form-group-html) input[type="radio"]:checked {
  background-color: #8EBA39;
}
app-root .form-group:not(.form-group-html) input[type="radio"] {
  border-radius: 50%;
}
.existing table {
  width: 100%;
  border-collapse: collapse;
}
.existing table tr td,
.existing table tr th {
  -webkit-flex-basis: 14.285714285714286%;
  flex-basis: 14.285714285714286%;
  padding: 10px;
  text-align: center;
}
.existing table thead tr {
  border-bottom: solid 3px #E8E3E1;
}
.existing table tbody tr:nth-of-type(odd) {
  background-color: #E8E3E1;
}
.existing table a[class*="action"] {
  cursor: pointer;
  font-size: 0px;
  text-decoration: none;
}
.existing table a[class*="action"]:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  color: #6f6f6f;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.existing table a[class*="action"]:hover:before {
  color: #000;
}
.existing table a.action-edit:before {
  content: "\f044";
}
.existing table a.action-view:before {
  content: "\f002";
}
.existing table a.action-delete:before {
  content: "\f2ed";
}
.system-message,
.progress-bar,
app-root a {
  --background-color: #E8E3E1;
  --text-color: #6f6f6f;
  --highlight-color: #8EBA39;
}
.system-message.error,
.progress-bar.error,
app-root a.error {
  --background-color: #D03581;
  --text-color: #ffffff;
  --highlight-color: #B52D70;
}
