

  fieldset[disabled] .multiselect {
    pointer-events: none;
  }

  .multiselect__spinner {
    position: absolute;
    right: 1px;
    top: 1px;
  width: 40px;
  height: 38px;
    background: #fff;
    display: block;
  }

  .multiselect__spinner::before,
  .multiselect__spinner::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border-color: #41b883 transparent transparent;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 0 0 1px transparent;
  }

  .multiselect__spinner::before {
    animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
    animation-iteration-count: infinite;
  }

  .multiselect__spinner::after {
    animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
    animation-iteration-count: infinite;
  }

  .multiselect__loading-enter-active,
  .multiselect__loading-leave-active {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
  }

  .multiselect__loading-enter,
  .multiselect__loading-leave-active {
    opacity: 0;
  }

  .multiselect,
  .multiselect__input,
  .multiselect__single {
    font-family: inherit;
    font-size: 16px;
    touch-action: manipulation;
  }

  .multiselect {
    box-sizing: content-box;
    display: block;
    position: relative;
    width: 100%;
    min-height: 40px;
    text-align: left;
    color: #35495e;
  }

  .multiselect * {
    box-sizing: border-box;
  }

  .multiselect:focus {
    outline: none;
  }

  .multiselect--disabled {
    background: #ededed;
    pointer-events: none;
    opacity: 0.6;
  }

  .multiselect--active {
    z-index: 50;
  }

  .multiselect--active:not(.multiselect--above) .multiselect__current,
  .multiselect--active:not(.multiselect--above) .multiselect__input,
  .multiselect--active:not(.multiselect--above) .multiselect__tags {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .multiselect--active .multiselect__select {
    transform: rotateZ(180deg);
  }

  .multiselect--above.multiselect--active .multiselect__current,
  .multiselect--above.multiselect--active .multiselect__input,
  .multiselect--above.multiselect--active .multiselect__tags {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .multiselect__input,
  .multiselect__single {
    position: relative;
    display: inline-block;
    min-height: 20px;
    line-height: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 0 0 0 5px;
    width: calc(100%);
    transition: border 0.1s ease;
    box-sizing: border-box;
    margin-bottom: 8px;
    vertical-align: top;
  }

  .multiselect__input::-moz-placeholder {
    color: #35495e;
  }

  .multiselect__input::placeholder {
    color: #35495e;
  }

  .multiselect__tag ~ .multiselect__input,
  .multiselect__tag ~ .multiselect__single {
    width: auto;
  }

  .multiselect__input:hover,
  .multiselect__single:hover {
    border-color: #cfcfcf;
  }

  .multiselect__input:focus,
  .multiselect__single:focus {
    border-color: #a8a8a8;
    outline: none;
  }

  .multiselect__single {
    padding-left: 5px;
    margin-bottom: 8px;
  }

  .multiselect__tags-wrap {
    display: inline;
  }

  .multiselect__tags {
    min-height: 40px;
    display: block;
    padding: 8px 40px 0 8px;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
  }

  .multiselect__tag {
    position: relative;
    display: inline-block;
    padding: 4px 26px 4px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #fff;
    line-height: 1;
    background: #41b883;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
  }

  .multiselect__tag-icon {
    cursor: pointer;
    margin-left: 7px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 700;
    font-style: initial;
    width: 22px;
    text-align: center;
    line-height: 22px;
    transition: all 0.2s ease;
    border-radius: 5px;
  }

  .multiselect__tag-icon::after {
    content: "×";
    color: #266d4d;
    font-size: 14px;
  }

  /* // Remove these lines to avoid green closing button
  //.multiselect__tag-icon:focus,
  //.multiselect__tag-icon:hover {
  //  background: #369a6e;
  //} */

  .multiselect__tag-icon:focus::after,
  .multiselect__tag-icon:hover::after {
    color: white;
  }

  .multiselect__current {
    line-height: 16px;
    min-height: 40px;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    padding: 8px 12px 0;
    padding-right: 30px;
    white-space: nowrap;
    margin: 0;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
  }

  .multiselect__select {
    line-height: 16px;
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 40px;
    height: 38px;
    right: 1px;
    top: 1px;
    padding: 4px 8px;
    margin: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .multiselect__select::before {
    position: relative;
    right: 0;
    top: 65%;
    color: #999;
    margin-top: 4px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #999 transparent transparent transparent;
    content: "";
  }

  .multiselect__placeholder {
    color: #adadad;
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 2px;
  }

  .multiselect--active .multiselect__placeholder {
    display: none;
  }

  .multiselect__content-wrapper {
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 50;
    -webkit-overflow-scrolling: touch;
  }

  .multiselect__content {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 100%;
    vertical-align: top;
  }

  .multiselect--above .multiselect__content-wrapper {
    bottom: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    border-top: 1px solid #e8e8e8;
  }

  .multiselect__content::-webkit-scrollbar {
    display: none;
  }

  .multiselect__element {
    display: block;
  }

  .multiselect__option {
    display: block;
    padding: 12px;
    min-height: 40px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
  }

  .multiselect__option::after {
    top: 0;
    right: 0;
    position: absolute;
    line-height: 40px;
    padding-right: 12px;
    padding-left: 20px;
    font-size: 13px;
  }

  .multiselect__option--highlight {
    background: #41b883;
    outline: none;
    color: white;
  }

  .multiselect__option--highlight::after {
    content: attr(data-select);
    background: #41b883;
    color: white;
  }

  .multiselect__option--selected {
    background: #f3f3f3;
    color: #35495e;
    font-weight: bold;
  }

  .multiselect__option--selected::after {
    content: attr(data-selected);
    color: silver;
  background: inherit;
  }

  .multiselect__option--selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
  }

  .multiselect__option--selected.multiselect__option--highlight::after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
  }

  .multiselect--disabled .multiselect__current,
  .multiselect--disabled .multiselect__select {
    background: #ededed;
    color: #a6a6a6;
  }

  .multiselect__option--disabled {
    background: #ededed !important;
    color: #a6a6a6 !important;
    cursor: text;
    pointer-events: none;
  }

  .multiselect__option--group {
    background: #ededed;
    color: #35495e;
  }

  .multiselect__option--group.multiselect__option--highlight {
    background: #35495e;
    color: #fff;
  }

  .multiselect__option--group.multiselect__option--highlight::after {
    background: #35495e;
  }

  .multiselect__option--disabled.multiselect__option--highlight {
    background: #dedede;
  }

  .multiselect__option--group-selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
  }

  .multiselect__option--group-selected.multiselect__option--highlight::after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
  }

  .multiselect-enter-active,
  .multiselect-leave-active {
    transition: all 0.15s ease;
  }

  .multiselect-enter,
  .multiselect-leave-active {
    opacity: 0;
  }

  .multiselect__strong {
    margin-bottom: 8px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
  }

  *[dir="rtl"] .multiselect {
    text-align: right;
  }

  *[dir="rtl"] .multiselect__select {
    right: auto;
    left: 1px;
  }

  *[dir="rtl"] .multiselect__tags {
    padding: 8px 8px 0 40px;
  }

  *[dir="rtl"] .multiselect__content {
    text-align: right;
  }

  *[dir="rtl"] .multiselect__option::after {
    right: auto;
    left: 0;
  }

  *[dir="rtl"] .multiselect__clear {
    right: auto;
    left: 12px;
  }

  *[dir="rtl"] .multiselect__spinner {
    right: auto;
    left: 1px;
  }

  @keyframes spinning {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(2turn);
    }
  }

@charset "UTF-8";
/* COLOR PALETTE */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #1a88c5;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #1a88c5, 0 0 5px #1a88c5;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 45px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #1a88c5;
  border-left-color: #1a88c5;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* COLOR PALETTE */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #2b2b2b;
  font-size: 0.875rem;
}

.page-container {
  margin: 0 1rem 2rem 1rem;
}

hr {
  border: none;
  height: 1px;
  background-color: #b7b7b7;
  margin: 1rem 0;
}

p {
  line-height: 1.5;
}

a {
  color: #189bd0;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}
a.secondary-action {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 1em 0;
  color: #6c6c6d;
}

h1 {
  font-size: 1.125rem;
  margin: 0;
}

h2 {
  font-size: 1.125rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h6 {
  font-size: 0.75rem;
}

.warning {
  color: #d62101;
}

ul, ol {
  margin: 1em;
}

li {
  margin: 0.5em;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  background: #189bd0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 0.875rem;
  color: #ffffff;
  border-radius: 0.25em;
  padding: 0.5rem 1.25rem;
  display: inline-block;
  border: 1px solid #b7b7b7;
  text-decoration: none;
  text-transform: uppercase;
}
.btn:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.8;
}
.btn:disabled {
  background: #b7b7b7;
}
.btn:disabled:hover {
  opacity: 1;
  cursor: not-allowed;
}

/* ============= HEADER ============ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-top: 1rem;
  flex-wrap: wrap;
  background-color: #e9e9e9;
}
header .logo {
  max-width: 250px;
  margin-left: 1rem;
}
header nav {
  width: 100%;
  background-color: #224876;
  margin-top: 1rem;
}
header nav .main-menu {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
}
header nav .main-menu > li {
  margin: 0;
  padding: 0.75rem 1.5rem;
  position: relative;
}
header nav .main-menu > li.current-page, header nav .main-menu > li:hover {
  background-color: #189bd0;
}
header nav .main-menu > li:hover > .sub-menu {
  display: block;
}
header nav .main-menu .sub-menu {
  display: none;
  width: 200px;
  list-style-type: none;
  margin: 0;
  padding: 0 1rem;
  font-size: 0.875rem;
  background-color: #ffffff;
  border-radius: 0 0 0.25rem 0.25rem;
  border: 1px solid #b7b7b7;
  border-top: none;
  position: absolute;
  left: 0;
  top: 2.75rem;
  z-index: 1;
}
header nav .main-menu .sub-menu li {
  margin: 0.75rem 0;
}
header nav .main-menu .sub-menu li a {
  color: #224876;
}
header nav .main-menu .sub-menu li a.current-page-exact {
  color: #6c6c6d;
}
header nav .main-menu .sub-menu li a.current-page-exact:before {
  content: "»";
  margin-right: 5px;
}
header nav .main-menu .sub-menu li a.current-page-exact:hover {
  text-decoration: none;
  cursor: auto;
}

.account-wrapper {
  align-self: flex-start;
  position: absolute;
  top: 0;
  right: 1rem;
}
.account-wrapper a {
  color: #224876;
}
.account-wrapper a:hover {
  text-decoration: none;
}
.account-wrapper ul {
  margin: 0;
  padding: 0;
}
.account-wrapper .account-toggle {
  text-align: right;
  list-style-type: none;
  margin: 0;
  padding: 0.35rem 0;
  color: #224876;
}
.account-wrapper .account-toggle .account-menu {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #b7b7b7;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.75rem 0.75rem 0 0.75rem;
  list-style-type: none;
  margin: 0;
  width: 130px;
  z-index: 100;
  text-align: left;
}
.account-wrapper .account-toggle .account-menu:before {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: -5px;
  width: 100%;
  left: -1px;
}
.account-wrapper .account-toggle .account-menu li {
  margin: 0;
}
.account-wrapper .account-toggle .account-menu a {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.account-wrapper .account-toggle .account-menu a:hover {
  text-decoration: underline;
}
.account-wrapper .account-toggle:hover .icon {
  transform: rotate(180deg);
}
.account-wrapper .account-toggle:hover .account-menu {
  display: block;
}

@media (min-width: 1125px) {
  .account-wrapper {
    position: relative;
  }
}
/* ============= ICONS ============= */
.icon {
  display: inline-block;
  color: #224876;
}
.icon.fa-times-circle {
  color: #767777;
}
.icon.fa-search:hover {
  color: #189bd0;
  cursor: pointer;
}
.icon.fa-calendar-alt:hover {
  color: #189bd0;
  cursor: pointer;
}

/* ============= TABLES ============= */
table {
  width: 100%;
  border-collapse: collapse;
}
table.align-center {
  text-align: center;
}
table thead,
table tfoot {
  font-weight: bold;
}
table thead th, table thead td,
table tfoot th,
table tfoot td {
  background-color: #767777;
  color: #ffffff;
  text-align: left;
  padding: 0.5rem;
}
table thead th.align-center, table thead td.align-center,
table tfoot th.align-center,
table tfoot td.align-center {
  text-align: center;
}
table thead th.align-right, table thead td.align-right,
table tfoot th.align-right,
table tfoot td.align-right {
  text-align: right;
}
table tbody tr:nth-of-type(even) {
  background-color: #e6e6e6;
}
table tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}
table tbody tr:hover {
  background-color: #c8e6f2;
  cursor: pointer;
}
table tbody tr td {
  padding: 0.5rem;
}
table tbody tr td.align-center {
  text-align: center;
}
table tbody tr td.align-right {
  text-align: right;
}
table.small-table {
  width: auto;
}
table.small-table tbody tr {
  background-color: transparent;
}
table.small-table tbody tr:hover {
  cursor: auto;
}
table.small-table td {
  padding: 0rem 1rem 0.5rem 0;
}

/* ============= FORMS ============= */
.form-wrapper {
  max-width: 450px;
  max-width: calc(400px + 2rem);
  margin: 0 auto;
}
.form-wrapper .form-intro h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #224876;
}

.form-highlight {
  background-color: #e9e9e9;
  border-radius: 0.5rem;
  width: 450px;
  width: calc(400px + 2rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  padding: 1rem;
  position: relative;
}
.form-highlight .form-highlight-heading {
  margin-bottom: 0;
}
.form-highlight .sub-heading {
  margin-top: 0;
  font-size: 1rem;
}
.form-highlight h2 {
  color: #2b2b2b;
  text-transform: uppercase;
  margin-top: 0;
}
.form-highlight .fa-times-circle {
  font-size: 1.5rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.form-highlight .fa-times-circle:hover {
  cursor: pointer;
}
.form-highlight.confirmation h2 {
  margin-bottom: 2rem;
}
.form-highlight.confirmation p {
  text-align: center;
}
.form-highlight.confirmation .field.buttons {
  justify-content: center;
  margin-top: 2rem;
}
.form-highlight.confirmation .field.buttons .btn, .form-highlight.confirmation .field.buttons a {
  margin-left: 1rem;
  margin-right: 1rem;
}

.field {
  margin: 0 auto 1.25rem auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.field.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-label {
  margin: 0.5rem 1rem 0.5rem 0;
  color: #224876;
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
}

.inline-label {
  vertical-align: middle;
  margin-right: 2rem;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=tel],
textarea {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  border: 1px solid #b7b7b7;
  border-radius: 0.25em;
  padding: 0.5em;
  margin: 0;
  width: 100%;
}
input[type=text]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
textarea:disabled {
  background-color: #b7b7b7;
}
input[type=text].percentage-input,
input[type=number].percentage-input,
input[type=email].percentage-input,
input[type=password].percentage-input,
input[type=tel].percentage-input,
textarea.percentage-input {
  width: 70px;
  margin-right: 0.5rem;
}
input[type=text].percentage-input + span,
input[type=number].percentage-input + span,
input[type=email].percentage-input + span,
input[type=password].percentage-input + span,
input[type=tel].percentage-input + span,
textarea.percentage-input + span {
  font-weight: bold;
  font-size: 1rem;
  color: #224876;
}

textarea {
  height: 5em;
  resize: none;
}

.radio-option {
  position: relative;
}
.radio-option label {
  position: relative;
  display: inline-block;
  min-height: 1rem;
  padding-left: 1.75rem;
  cursor: pointer;
  line-height: 1.5rem;
}

input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 1.375rem;
  width: 1.375rem;
}

input[type=radio] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  height: 1.375rem;
  width: 1.375rem;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  background-color: #ffffff;
}

input[type=radio]:checked + label:before {
  box-shadow: inset 0 0 0 0.4rem #ffffff;
  background-color: #224876;
}

input[type=radio]:disabled + label:before {
  background-color: #b7b7b7;
}
input[type=radio]:disabled:checked + label:before {
  box-shadow: inset 0 0 0 0.4rem #b7b7b7;
  background-color: #224876;
}

input[type=submit].btn {
  width: auto;
}

.checkbox {
  position: relative;
}

.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 1.375rem;
  width: 1.375rem;
}

.checkbox label {
  position: relative;
  display: inline-block;
  min-height: 1rem;
  padding-left: 1.75rem;
  cursor: pointer;
  line-height: 1.5rem;
}

.checkbox input[type=checkbox] + label:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  height: 1.375rem;
  width: 1.375rem;
  border: 1px solid #b7b7b7;
  border-radius: 0.25rem;
  background-color: #ffffff;
}

.checkbox input[type=checkbox]:checked + label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Regular";
  font-weight: 400;
  color: #224876;
  font-size: 1.125rem;
  text-align: center;
}

.checkbox input[type=checkbox]:disabled + label:before {
  background-color: #b7b7b7;
}

fieldset {
  border: none;
  padding: 0;
}

.error-message {
  color: #d62101;
  display: block;
  width: 100%;
  margin: 0.25rem 0;
}

.wrapper .multiselect,
.wrapper .multiselect__input,
.wrapper .multiselect__single,
.modal .multiselect,
.modal .multiselect__input,
.modal .multiselect__single {
  font-size: 0.875rem;
}
.wrapper .multiselect__tags,
.wrapper .multiselect__content-wrapper,
.modal .multiselect__tags,
.modal .multiselect__content-wrapper {
  border: 1px solid #b7b7b7;
  border-radius: 0.25em;
}
.wrapper .multiselect__option--highlight,
.wrapper .multiselect__option--selected.multiselect__option--highlight,
.wrapper .multiselect__option--highlight:after,
.modal .multiselect__option--highlight,
.modal .multiselect__option--selected.multiselect__option--highlight,
.modal .multiselect__option--highlight:after {
  background: #224876;
}
.wrapper .multiselect__single,
.modal .multiselect__single {
  padding-left: 0;
}
.wrapper .multiselect__option--selected,
.modal .multiselect__option--selected {
  font-weight: normal;
  background-color: #189bd0;
}
.wrapper .multiselect input,
.modal .multiselect input {
  border: none;
}
.wrapper .multiselect__tags,
.modal .multiselect__tags {
  width: 100%;
}
.wrapper .multiselect__tag,
.modal .multiselect__tag {
  background: #189bd0;
}
.wrapper .multiselect--disabled,
.modal .multiselect--disabled {
  opacity: 1;
}
.wrapper .multiselect--disabled .multiselect__select,
.wrapper .multiselect--disabled .multiselect__tags,
.wrapper .multiselect--disabled .multiselect__single,
.modal .multiselect--disabled .multiselect__select,
.modal .multiselect--disabled .multiselect__tags,
.modal .multiselect--disabled .multiselect__single {
  background-color: #b7b7b7;
}

/* ============= MODALS ============= */
.modal {
  background-color: #e9e9e9;
  border-radius: 0.5rem;
  width: 450px;
  width: calc(400px + 3rem);
  max-width: 90%;
  max-height: 90%;
  min-height: 250px;
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  position: relative;
}
.modal h2 {
  color: #2b2b2b;
  text-transform: uppercase;
  margin-top: 0;
}
.modal .fa-times-circle {
  font-size: 1.5rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.modal .fa-times-circle:hover {
  cursor: pointer;
}
.modal .field.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.modal.confirmation h2 {
  margin-bottom: 2rem;
}
.modal.confirmation p {
  text-align: center;
}
.modal.confirmation .field.buttons {
  justify-content: center;
  margin-top: 2rem;
}
.modal.confirmation .field.buttons .btn, .modal.confirmation .field.buttons a {
  margin-left: 1rem;
  margin-right: 1rem;
}

/* ============= TAGS ============= */
.deactivated-tag {
  display: inline-block;
  background-color: #ECB2B5;
  padding: 0.5em;
  margin-bottom: 0.5em;
}

/* ============= SPECIAL LAYOUTS ============= */
/* EMPLOYEE DETAIL */
.employee-detail h2 {
  color: #224876;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.employee-detail h2 .secondary-action {
  font-weight: normal;
}
.employee-detail h3 {
  color: #2b2b2b;
  text-transform: uppercase;
}
.employee-detail .eligible {
  background-color: #c8e6f2;
  display: inline-block;
  padding: 0.25rem 0.5rem;
}
.employee-detail .not-eligible {
  background-color: #ECB2B5;
  display: inline-block;
  padding: 0.25rem 0.5rem;
}
.employee-detail span {
  display: block;
  margin-bottom: 0.5rem;
}
.employee-detail .employee-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.employee-detail .employee-info .detail-section {
  width: 23%;
}
.employee-detail .employee-info .detail-section .detail-highlight {
  background-color: #e9e9e9;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.employee-detail .employee-info .detail-section .detail-highlight span:last-of-type {
  margin-bottom: 0;
}
.employee-detail .employee-info .detail-section .detail-highlight table {
  margin-bottom: 0.5rem;
}
.employee-detail .employee-info table {
  text-align: center;
}
.employee-detail .employee-info table tbody tr {
  background-color: transparent;
}
.employee-detail .employee-info table tbody tr:hover {
  cursor: default;
  background-color: transparent;
}
.employee-detail .employee-dependents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.employee-detail .employee-dependents .detail-section {
  width: 25%;
}
.employee-detail .employee-dependents h4 {
  color: #224876;
  margin-top: 0;
}

/* RATE CHANGES */
.rate-change-form .field {
  margin-left: 0;
}

.rate-change-table tr:hover {
  cursor: auto;
}

/* VENDOR REPORTS */
.vender-reports h2 {
  color: #224876;
  margin-bottom: 0.5rem;
}

/* SUMMARY TOTALS */
.summary-totals h1 {
  margin-bottom: 1em;
}
.summary-totals h3 {
  margin-bottom: 0.5rem;
}
.summary-totals .field {
  margin-left: 0;
}
.summary-totals table {
  width: auto;
}
.summary-totals table tr:hover {
  cursor: auto;
  background-color: transparent;
}

/* NEW RATES */
.rate-change-message {
  text-align: center;
}

.new-rates h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-rates h3 {
  margin-bottom: 0.5rem;
}
.new-rates .rate-change-details p {
  margin: 0;
  font-size: 1rem;
}
.new-rates table {
  margin-bottom: 2rem;
  width: auto;
}
.new-rates table tr:hover {
  cursor: auto;
}
.new-rates table td, .new-rates table th {
  padding-left: 1rem;
  padding-right: 1rem;
}
.new-rates table.rate-changes tr:first-of-type > th,
.new-rates table.rate-changes td:nth-of-type(odd),
.new-rates table.rate-changes th:nth-of-type(odd) {
  border-right: 1px solid #b7b7b7;
}
.new-rates table.rate-changes tr:last-of-type td {
  border-bottom: 1px solid #b7b7b7;
}
.new-rates table.rate-changes th:first-of-type,
.new-rates table.rate-changes td:first-of-type {
  border-left: 1px solid #b7b7b7;
}
.new-rates table.rate-changes tr:first-of-type {
  border-bottom: 1px solid #b7b7b7;
}
.new-rates table.additional-options td,
.new-rates table.additional-options th {
  border-right: 1px solid #b7b7b7;
}
.new-rates table.additional-options tr:last-of-type td {
  border-bottom: 1px solid #b7b7b7;
}
.new-rates table.additional-options th:first-of-type,
.new-rates table.additional-options td:first-of-type {
  border-left: 1px solid #b7b7b7;
}
.new-rates table.additional-options tr:first-of-type {
  border-bottom: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes thead tr:first-of-type th {
  border-bottom: 1px solid #b7b7b7;
  border-right: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes thead tr:nth-of-type(2) th {
  border-right: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes thead tr:last-of-type th:nth-child(3n+1) {
  border-right: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes tbody tr td:nth-child(3n+1) {
  border-right: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes tbody tr td:first-of-type {
  border-left: 1px solid #b7b7b7;
}
.new-rates table.age-based-rate-changes tbody tr:last-of-type td {
  border-bottom: 1px solid #b7b7b7;
}

/* PRINT STYLES */
@media print {
  @page {
    margin: 1cm;
  }
  html {
    font-size: 11pt;
  }
  header,
  .btn,
  .paginator,
  .search-container {
    display: none !important;
  }
  .page-container {
    margin: 0;
  }
  .page-container:before {
    content: "";
    display: block;
    width: 100%;
    height: 2cm;
    background-image: url(/images/cht-logo.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
  }
  table thead {
    border-bottom: 2px solid #000;
  }
  table thead th {
    background-color: transparent;
    color: #000;
  }
  table tfoot {
    border-top: 2px solid #000;
  }
  table tfoot td {
    color: #000;
    background-color: transparent;
  }
  hr {
    background-color: #777;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .field-label {
    color: #000;
  }
}
