@import url("https://fonts.googleapis.com/css?family=Noto+Sans");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap");
@font-face {
  font-family: "Miriam Libre";
  src: url("../fonts/MiriamLibre-Regular.ttf") format("truetype");
}
/**
CONTENT
 */
.section-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(204, 204, 204, 0.75);
  line-height: 1.5rem;
  padding: 20px;
  position: relative;
  border: 1px solid #eee;
}

.content-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin: 30px 0;
}
.content-tabs .content-tab {
  align-items: center;
  background: #eef0ff;
  border: 0.25px solid rgb(230, 231, 232);
  border-bottom: 1px solid;
  border-radius: 12px;
  color: #5783fb;
  display: flex;
  font-family: "Miriam Libre", serif;
  justify-content: center;
  padding: 6px 10px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.content-tabs .content-tab:hover {
  background: #5783fb;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
}

.system-notification {
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(204, 204, 204, 0.75);
  margin-bottom: 20px;
  padding: 20px;
  padding-left: 70px;
  position: relative;
}
.system-notification:before {
  align-items: center;
  background: #eef0ff;
  border: rgb(230, 231, 232);
  border-radius: 50%;
  box-sizing: border-box;
  color: #5783fb;
  content: "i";
  display: flex;
  font-family: "Monotype Corsiva", serif;
  font-size: 20px;
  font-weight: bold;
  left: 20px;
  height: 30px;
  padding-left: 11px;
  position: absolute;
  width: 30px;
}
.system-notification .title {
  font-family: "Miriam Libre", serif;
  font-weight: bold;
  font-size: 13px;
  margin: 0;
}
.system-notification p {
  font-size: 13px;
  margin: 0;
}

/**
./CONTENT
 */
/**
HEADERS
 */
.header_link {
  font-size: 1.4rem;
  font-weight: bold;
  color: #445060;
}
.section-header {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
}

/**
BUTTONS
 */
.btn {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
}
.btn-main {
  background: #3ac0a1;
  border-color: rgb(230, 231, 232);
  color: #fff;
}
.btn-main:hover {
  background: #29b090;
  color: #fff;
}
.btn-main:disabled {
  background: lightgray;
  border: 0;
  opacity: 100%;
}
.btn-default {
  background: #fff;
  border-color: #bcbcbc;
}
.btn-default:hover {
  background: #f0f0f0;
}

/**
./BUTTONS
 */
/* FORM */
.form-section {
  margin-bottom: 20px;
  position: relative;
}
.form-section .label-description {
  color: #667282;
  font-size: 13px;
  margin: 0 0 10px 0;
}
.form-section textarea {
  border: 1px solid rgb(230, 231, 232);
  border-radius: 5px;
  font-size: 13px;
  padding: 0 10px;
  width: 100%;
}
.form-section input[type=text], .form-section input[type=email], .form-section input[type=password], .form-section input[type=number], .form-section select {
  border: 1px solid rgb(230, 231, 232);
  border-radius: 5px;
  font-size: 13px;
  height: 34px;
  padding: 0 10px;
  width: 100%;
}
.form-section input[type=text]:disabled, .form-section input[type=email]:disabled, .form-section input[type=password]:disabled, .form-section input[type=number]:disabled, .form-section select:disabled {
  background: #f5f5f5;
  border: 0;
  opacity: 100%;
}
.form-section input[type=text]:focus, .form-section input[type=email]:focus, .form-section input[type=password]:focus, .form-section input[type=number]:focus, .form-section select:focus {
  outline: none;
}
.form-section.required input[type=text]:valid, .form-section.required input[type=email]:valid, .form-section.required select:valid {
  border: 1px solid rgba(58, 192, 161, 0.6) !important;
  background: rgba(58, 192, 161, 0.1);
}
.form-section.required input[type=text].invalid-information, .form-section.required input[type=email].invalid-information, .form-section.required select.invalid-information {
  border: 1px solid rgba(237, 20, 61, 0.2) !important;
  background: rgba(237, 20, 61, 0.05);
}
.form-section input {
  background: #fafafa;
}
.form-section input[type=radio] {
  margin-top: -3px;
  vertical-align: middle;
}
.form-section .horizontal {
  display: inline-block;
  margin-right: 10px;
}
.form-section .form-check.inline label {
  display: initial;
}
.form-section select, .form-section textarea {
  background: #fafafa;
}

/* .FORM */
/* INPUTS */
/* ./INPUTS */
/**
DEFAULT STATES
 */
.visible, .show {
  display: block !important;
}

.ta-center {
  text-align: center;
}

.m-center {
  margin: 0 auto;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.full-width {
  width: 100%;
}

.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}

.mnw-300 {
  min-width: 300px;
}

.mr-10 {
  margin-right: 10px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

/**
./DEFAULT STATES
 */
/* ADDING CUSTOM MARGINS */
/* ./ADDING CUSTOM MARGINS */
/* DIFFERENT TEXT STYLES */
.warning-text {
  color: gold;
  font-weight: bold;
}

.danger-text {
  color: #ee4036;
  font-weight: bold;
}

/* ./DIFFERENT TEXT STYLES */
/* DATEPICKER */
/* .ui-datepicker-header {
  background-color: #fff;
  color: #e0e0e0;
  line-height: 30px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.ui-datepicker-title {
  text-align: center;
}

.ui-datepicker-prev, .ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background: url('../images/arrow.png') no-repeat;
  line-height: 600%;
  overflow: hidden;
}

.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}

.ui-datepicker-next {
  float: right;
  background-position: center 0;
}

.calendar-icon {
  width: 34px;
}

#admission_date {
  padding: 7px 10px !important;
}

.ui-datepicker {
  display: none;
  width: 235px;
  height: auto;
  margin: 5px auto 0;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(204, 204, 204, 0.75);

  a {
    text-decoration: none;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  thead {
    background-color: #f7f7f7;
  }

  th {
    font-weight: 400 !important;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 0;

    span {
      font-size: 0.7rem;
    }
  }

  tbody {
    td {
      padding: 0;
      border-right: 1px solid #ddd;

      &:last-child {
        border-right: 0;
      }

      span, a {
        color: #666;
        display: block;
        text-align: center;
        line-height: 30px;
      }
    }

    tr {
      border-bottom: 1px solid #ddd;

      &:last-child {
        border-bottom: 0;
      }
    }
  }
}

.ui-datepicker-today {
  a {
    background: #FFDD90 !important;
    position: relative;
  }
}

.ui-datepicker-calendar {
  background: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;

  .ui-state-hover {
    background: #f7f7f7;
  }

  .ui-state-active {
    background: #6eafbf;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .1);
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, .1);
    color: #e0e0e0;
    filter: dropshadow(color=#4d7a85, offx=0, offy=1);
    text-shadow: 0 1px 0 #4d7a85;
    border: 1px solid #55838f;
    position: relative;
    margin: -1px;

  }

  td:first-child {
    .ui-state-active {
      width: 29px;
      margin-left: 0;
    }
  }

  td:last-child {
    .ui-state-active {
      width: 29px;
      margin-left: 0;
    }
  }

  tr:last-child {
    .ui-state-active {
      height: 29px;
      margin-bottom: 0;
    }

    td:first-child {
      span {
        border-bottom-left-radius: 15px;
      }
    }

    td:last-of-type {
      span {
        border-bottom-right-radius: 15px;
      }
    }
  }
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
} */
/* ./DATEPICKER */
.new-style {
  /* LABELS */
  /* INPUTS */
  /* SELECTS */
  /* MARGINS */
  /* WIDTHS */
  /* OVERLAY */
}
.new-style.content-wrap {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.new-style .action-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 0 19px rgba(15, 72, 114, 0.3019607843);
  border: 1px solid #b6cbda;
  padding: 30px;
  padding-bottom: 20px !important;
  width: 100%;
}
.new-style .action-card label {
  display: block;
  margin-bottom: 7px;
  vertical-align: middle;
}
.new-style .action-card__radio-input.inline {
  display: inline-block;
  margin-right: 40px;
}
.new-style .action-card__radio-input.inline label {
  display: inline;
  color: #1e2326 !important;
}
.new-style .action-card .error-header {
  background: rgba(236, 75, 84, 0.2);
  min-height: 40px;
  line-height: 40px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin: -30px -30px 2rem;
  text-align: center;
}
.new-style .action-card .error-header p {
  color: #ec4b54;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
}
.new-style .action-card .error-message {
  color: #ec4b54;
  margin-top: 5px;
}
.new-style .action-card .error-message p {
  font-size: 13px !important;
}
.new-style .action-card .required.invalid .vc-select select {
  background: rgba(236, 75, 84, 0.1) !important;
  border: 1px solid #ec4b54 !important;
}
.new-style .information-card__wrap {
  margin-bottom: 30px;
  width: 100%;
}
.new-style .information-card__content {
  background: #fff;
  border-radius: 5px;
  padding: 20px 32px;
}
.new-style .information-card__content .divider.full {
  margin: 0 -32px;
}
.new-style .information-card__content h3 svg {
  margin-top: -5px;
}
.new-style .information-card__left-side {
  margin-right: 40px;
}
.new-style .information-card__left-side svg {
  height: 160px;
  width: 160px;
}
.new-style .information-card__left-side img {
  width: 180px;
}
.new-style .header--primary {
  color: #0f4872;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 2.5rem;
}
.new-style #instructions {
  color: #414C53;
  font-weight: 600;
  line-height: 24px;
}
.new-style .vertical-divider {
  height: auto;
}
.new-style .emergency-message--wrap {
  border: 1px solid #BFD2DF;
  border-radius: 5px;
}
.new-style .emergency-message--wrap textarea {
  color: #1E2326;
  font-weight: 600;
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: -6px;
  width: calc(100% + 2px);
  background-color: #eef2f9;
  border-radius: 5px;
  border: 1px solid #bfd2df;
  min-height: 100px;
}
.new-style .emergency-message--wrap textarea::placeholder {
  color: #8397A5;
  font-weight: 400;
}
.new-style .emergency-message__default-message p {
  color: #8397A5;
  font-size: 14px;
}
.new-style .message-preview--wrap {
  background: #f8f9fc;
  border: 1px solid #BFD2DF;
  border-radius: 5px;
  padding: 25px 33px;
  position: relative;
}
.new-style .message-preview--wrap p {
  word-break: break-word;
}
.new-style .header--secondary {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e2326;
  line-height: 150%;
  letter-spacing: 0.15px;
  margin-bottom: 1.1rem;
  margin-top: 0;
}
.new-style .mr-2 {
  margin-right: 0.5rem;
}
.new-style .mr-3 {
  margin-right: 0.75rem;
}
.new-style .font-medium {
  font-weight: 500;
}
.new-style .mt-2 {
  margin-top: 0.5rem;
}
.new-style .mt-6 {
  margin-top: 1.5rem;
}
.new-style .mb-6 {
  margin-bottom: 1.5rem;
}
.new-style .p-2 {
  padding: 0.5rem;
}
.new-style .pb-2 {
  padding-bottom: 0.5rem;
}
.new-style .justify-center {
  justify-content: center;
}
.new-style .flex {
  display: flex;
}
.new-style .horizontal-divider {
  background: #b6cbda;
  height: 0.5px;
  width: 100%;
}
.new-style .horizontal-divider.with-margin {
  margin: 36px 0;
}
.new-style .btn--primary {
  background: #0f4872;
  color: #fff;
}
.new-style .btn--secondary {
  background: #fff;
  color: #0f4872;
  border: 1px solid #0f4872;
}
.new-style .btn {
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 0.875rem;
  justify-content: center;
  height: 40px;
  cursor: pointer;
}
.new-style .w-1\/2 {
  width: 50%;
}
.new-style .w-1\/4 {
  width: 25%;
}
.new-style .mr-9 {
  margin-right: 2.25rem;
}
.new-style .justify-between {
  justify-content: space-between;
}
.new-style .mt-8 {
  margin-top: 2rem;
}
.new-style .text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156, 163, 175, var(--tw-text-opacity));
}
.new-style .italic {
  font-style: italic;
}
.new-style .top-4 {
  top: 1rem;
}
.new-style .right-4 {
  right: 1rem;
}
.new-style .absolute {
  position: absolute;
}
.new-style .mr-14 {
  margin-right: 3.5rem;
}
.new-style .mt-10 {
  margin-top: 2.5rem;
}
.new-style .font-bold {
  font-weight: bold;
}
.new-style .vertical-divider {
  background: #b6cbda;
  height: 24px;
  margin: 0 20px;
  width: 0.5px;
}
.new-style .form-section {
  margin-bottom: 0;
}
.new-style .form-section label {
  margin-bottom: 15px;
}
.new-style .form-section input[type=text] {
  background: #EEF2F9;
  border-radius: 5px;
  border: 1px solid #BFD2DF !important;
  width: 100%;
  padding: 0.5rem 0.75rem !important;
  font-size: 14px;
}
.new-style .resizable-photo.opened {
  max-height: 100vh;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 99999;
  left: 50%;
  max-width: inherit;
}
.new-style .laravel-filters {
  box-sizing: border-box;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.new-style .laravel-filter {
  box-sizing: border-box;
  background: #fff;
  border-radius: 100px;
  height: 25px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.new-style .laravel-filter.selected {
  box-sizing: border-box;
  border-radius: 100px;
  height: 25px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background: #1e85eb;
  color: #fff;
}
.new-style .laravel-filters > p {
  box-sizing: border-box;
  margin: 0;
}
.new-style .laravel-table {
  box-sizing: border-box;
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
  background: #fff;
  border-radius: 5px;
  padding: 20px 32px;
  width: 100%;
}
.new-style .laravel-table th {
  box-sizing: border-box;
  color: #414c53;
  font-size: 14px !important;
  padding: 15px 20px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}
.new-style .laravel-table td {
  box-sizing: border-box;
  padding: 15px 20px;
  text-align: center;
  border-block: 1px solid #b6cbda;
  font-weight: 700;
  border-right: 1px solid #b6cbda;
}
.new-style .laravel-table tbody tr td:last-child {
  border-right: 0;
}
.new-style .laravel-table tbody tr:last-child td {
  border-bottom: 0;
}
.new-style .laravel-button {
  box-sizing: border-box;
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  -webkit-appearance: button;
  width: 100%;
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 0.875rem;
  justify-content: center;
  height: 40px;
  cursor: pointer;
  background: #1e85eb;
  color: #fff;
  font-weight: 700;
}
.new-style .laravel-table-section {
  box-sizing: border-box;
}
.new-style .laravel-table-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.new-style .laravel-table-header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.new-style .laravel-table-header-buttons::after {
  background-color: #bfd2df;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.new-style .laravel-table-header-buttons > button {
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  font-size: 14px;
  margin-right: 10px;
}
.new-style .laravel-download-icon {
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-download.svg");
  vertical-align: middle;
}
.new-style .laravel-table-pagination-length {
  box-sizing: border-box;
  position: relative;
  color: #8a8a8a;
  padding-left: 15px;
}
.new-style .laravel-table-pagination-length > select {
  box-sizing: border-box;
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-weight: inherit;
  color: inherit;
  text-transform: none;
  appearance: none;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  -webkit-print-color-adjust: exact;
  border-radius: 5px;
  border: 1px solid #bfd2df;
  margin: 0 0 0 15px;
  width: 90px;
  background-color: #dfe5ee;
}
.new-style .laravel-table-footer {
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: flex-end;
}
.new-style .laravel-table-footer > .laravel-table-pagination-label {
  color: #616161;
  font-size: 13px;
}
.new-style .laravel-table-pagination-icon-first {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-first.svg");
}
.new-style .laravel-table-pagination-icon-prev {
  display: inline-block;
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-prev.svg");
}
.new-style .laravel-table-pagination-icon-next {
  display: inline-block;
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-next.svg");
}
.new-style .laravel-table-pagination-icon-last {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-last.svg");
}
.new-style .pagination-button {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e85eb;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  font-weight: bold;
}
.new-style .laravel-activity-status {
  justify-content: center;
  align-items: center;
  display: flex;
}
.new-style .laravel-activity-status > svg {
  margin-right: 1em;
}
.new-style .laravel-activity-status.active > svg > circle {
  fill: #A6D68F;
}
.new-style .laravel-activity-status.sent > svg > circle {
  fill: #3fb5d3;
}
.new-style .laravel-activity-status.failed > svg > circle {
  fill: #e42d2d;
}
.new-style .laravel-activity-status.unknown > svg > circle {
  fill: #8397A5;
}
.new-style .laravel-no-data-message {
  text-align: center;
  font-size: 14px !important;
  color: #888;
  margin: 20px 0;
}
.new-style .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.new-style .loader-container p {
  font-size: 14px;
  margin-bottom: 1rem;
}
.new-style .loader-bar {
  width: 50%;
  height: 8px;
  background: linear-gradient(90deg, #e0e0e0, #007bff, #e0e0e0);
  background-size: 200% 100%;
  animation: loading-bar 1.5s infinite linear;
  border-radius: 4px;
}
.new-style .items-center {
  align-items: center;
}
.new-style .datatable-icons--profile {
  background-image: url("../images/profile_image.svg");
}
.new-style .datatable-icons {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 2px;
}
.new-style .laravel-table td:last-child a {
  color: #0f4872;
  font-size: 14px !important;
  text-decoration-line: underline;
  width: calc(100% - 17px);
  text-align: left;
}
@keyframes loading-bar {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.new-style label {
  font-size: 1rem;
}
.new-style .new-form-section.required label {
  color: #ec4b54;
}
.new-style .new-form-section.required label:after {
  content: "*";
}
.new-style .new-form-section .action-card__radio-input label:after {
  content: "";
}
.new-style .checkbox-label {
  color: #1e2326 !important;
}
.new-style .label--description {
  color: #414c53;
  font-size: 13px;
  margin-bottom: 10px;
}
.new-style [type=checkbox], .new-style [type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
  margin-top: 0;
}
.new-style [type=radio] {
  border-radius: 100%;
}
.new-style input[type=text],
.new-style input[type=email],
.new-style input[type=number] {
  background: #eef2f9;
  border-radius: 5px;
  border: 1px solid #bfd2df;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.new-style input[type=radio],
.new-style input[type=checkbox] {
  background: #fff;
  border: 1px solid #bfd2df;
  margin-right: 7px;
}
.new-style input[type=radio]:checked,
.new-style input[type=checkbox]:checked {
  background: #0f4872;
  border: 1px solid #0f4872;
}
.new-style input[type=checkbox] {
  border-radius: 2px;
}
.new-style input[type=checkbox]:disabled {
  background: #e9e9e9;
  border-color: #e9e9e9;
}
.new-style input:disabled {
  background: #eef2f9;
  color: #bfd2df;
}
.new-style input:disabled::placeholder {
  color: #bfd2df;
}
.new-style input::placeholder {
  color: #8a8a8a;
}
.new-style input[type=radio].inline {
  display: inline-block;
}
.new-style .disabled label {
  color: #bfd2df;
}
.new-style .invalid input[type=text],
.new-style .invalid input[type=email],
.new-style .invalid input[type=number],
.new-style .invalid select,
.new-style .invalid textarea {
  border: 1px solid #ec4b54;
  background-color: #fdebec;
}
.new-style .form-check.horizontal label {
  display: inline-block;
  margin: 0;
}
.new-style select {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.new-style select,
.new-style textarea {
  background-color: #eef2f9;
  border-radius: 5px;
  border: 1px solid #bfd2df;
  width: 100%;
}
.new-style textarea {
  display: block;
}
.new-style textarea:focus {
  border: 1px solid #bfd2df;
  box-shadow: none;
}
.new-style select:disabled {
  background: #eef2f9;
  color: #bfd2df;
}
.new-style .mr-8 {
  margin-right: 2rem;
}
.new-style .mb-8 {
  margin-bottom: 2rem;
}
.new-style .mr-5 {
  margin-right: 1.25rem;
}
.new-style .w-1\/3 {
  width: 33.333333%;
}
.new-style .w-2\/3 {
  width: 66.666667%;
}
.new-style .overlay {
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 9;
}
.new-style .overlay__popup {
  background: #fff;
  border-radius: 10px;
  padding: 120px 36px 36px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.new-style .overlay__popup.normal {
  padding: 36px !important;
}

.was-validated .new-custom-control-input:valid ~ .new-custom-control-label, .new-custom-control-input.is-valid ~ .new-custom-control-label {
  color: #28a745;
}

.was-validated .new-custom-control-input:valid ~ .new-custom-control-label::before, .new-custom-control-input.is-valid ~ .new-custom-control-label::before {
  border-color: #28a745;
}

.was-validated .new-custom-control-input:valid.checked ~ .new-custom-control-label::before, .new-custom-control-input.is-valid.checked ~ .new-custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .new-custom-control-input:valid:focus ~ .new-custom-control-label::before, .new-custom-control-input.is-valid:focus ~ .new-custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .new-custom-control-input:valid:focus:not(.checked) ~ .new-custom-control-label::before, .new-custom-control-input.is-valid:focus:not(.checked) ~ .new-custom-control-label::before {
  border-color: #28a745;
}

.was-validated .new-custom-control-input:invalid ~ .new-custom-control-label, .new-custom-control-input.is-invalid ~ .new-custom-control-label {
  color: #dc3545;
}

.was-validated .new-custom-control-input:invalid ~ .new-custom-control-label::before, .new-custom-control-input.is-invalid ~ .new-custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .new-custom-control-input:invalid.checked ~ .new-custom-control-label::before, .new-custom-control-input.is-invalid.checked ~ .new-custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .new-custom-control-input:invalid:focus ~ .new-custom-control-label::before, .new-custom-control-input.is-invalid:focus ~ .new-custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .new-custom-control-input:invalid:focus:not(.checked) ~ .new-custom-control-label::before, .new-custom-control-input.is-invalid:focus:not(.checked) ~ .new-custom-control-label::before {
  border-color: #dc3545;
}

.new-custom-control {
  cursor: pointer;
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-right: 1.5rem;
}

.new-custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.new-custom-control-input {
  position: absolute;
  right: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.new-custom-control-input.checked ~ .new-custom-control-label::before {
  color: #fff;
  border-color: #0F4872;
  background-color: #EEF2F9;
}

.new-custom-control-input:focus ~ .new-custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.new-custom-control-input:focus:not(.checked) ~ .new-custom-control-label::before {
  border-color: #80bdff;
}

.new-custom-control-input:not(:disabled):active ~ .new-custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.new-custom-control-input[disabled] ~ .new-custom-control-label, .new-custom-control-input:disabled ~ .new-custom-control-label {
  color: #6c757d;
}

.new-custom-control-input[disabled] ~ .new-custom-control-label::before, .new-custom-control-input:disabled ~ .new-custom-control-label::before {
  background-color: #e9ecef;
}

.new-custom-control-label {
  color: #1E2326;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.new-custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  right: 1.5rem;
  display: block;
  width: 35px;
  height: 22px;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #BFD2DF;
}

.new-custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  right: -1.5rem;
  display: block;
  width: 35px;
  height: 22px;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.new-custom-checkbox .new-custom-control-label::before {
  border-radius: 0.25rem;
}

.new-custom-checkbox .new-custom-control-input.checked ~ .new-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.new-custom-checkbox .new-custom-control-input:indeterminate ~ .new-custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.new-custom-checkbox .new-custom-control-input:indeterminate ~ .new-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.new-custom-checkbox .new-custom-control-input:disabled.checked ~ .new-custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.new-custom-checkbox .new-custom-control-input:disabled:indeterminate ~ .new-custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.new-custom-radio .new-custom-control-label::before {
  border-radius: 50%;
}

.new-custom-radio .new-custom-control-input.checked ~ .new-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.new-custom-radio .new-custom-control-input:disabled.checked ~ .new-custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.new-custom-control-label::before,
.new-custom-file-label,
.new-custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .new-custom-control-label::before,
  .new-custom-file-label,
  .new-custom-select {
    transition: none;
  }
}
.new-custom-switch {
  padding-right: 2.25rem;
}

.new-custom-switch .new-custom-control-label::before {
  right: -2.8rem;
  pointer-events: all;
  border-radius: 100px;
  top: 0;
}

.new-custom-switch .new-custom-control-label::after {
  top: 4px;
  right: -37px;
  width: 14px;
  height: 14px;
  background-color: #BFD2DF;
  border-radius: 50%;
  transition: transform 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, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .new-custom-switch .new-custom-control-label::after {
    transition: none;
  }
}
.new-custom-switch .new-custom-control-input.checked ~ .new-custom-control-label::after {
  background-color: #0F4872;
  right: -25px;
}

.new-custom-switch .new-custom-control-input:disabled.checked ~ .new-custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.new-custom-switch.disabled .new-custom-control-input ~ .new-custom-control-label::before {
  border-color: #bfd2df;
}

.new-custom-switch.disabled .new-custom-control-input ~ .new-custom-control-label::after {
  background-color: #bfd2df;
}

/* CALENDAR */
.vc-container {
  background: rgb(238, 242, 249) !important;
  border: 1px solid #bfd2df !important;
  border-radius: 5px !important;
}

.vc-header {
  margin-top: 0 !important;
  padding: 7px 0 !important;
}

.vc-arrows-container {
  margin: 0 !important;
  padding: 0 !important;
}

.vc-arrow,
.vc-arrow:focus {
  outline: none !important;
}

.vc-arrow.is-right svg path {
  fill: #0f4872;
}

.vc-arrow.is-left svg path {
  fill: #0f4872;
}

.vc-title {
  color: #0f4872 !important;
  line-height: normal !important;
}

.vc-title,
.vc-weekday,
.vc-day-content {
  font-size: 12px !important;
}

.vc-weekday {
  display: none !important;
}

.vc-weeks {
  line-height: 20px !important;
  border-top: 1px solid rgba(191, 210, 223, 0.5);
  padding: 0 !important;
}

.vc-day {
  border: 0.5px solid #bfd2df;
}

.vc-day-content {
  border-radius: 0 !important;
  height: 100% !important;
  width: 100% !important;
  font-weight: normal !important;
}

.vc-highlight {
  background-color: #0f4872 !important;
  border-radius: 0;
}

.vc-day-layer {
  background-color: #0f4872 !important;
}

.vc-day .vc-day-content:not(.is-disabled) {
  background-color: #fff !important;
}

/* Ako postoji .vc-highlight pre njega, resetuj stilove */
.vc-day .vc-highlights ~ .vc-day-content:not(.is-disabled) {
  background-color: initial !important;
  color: #fff !important;
}

.vc-day-content:hover {
  color: #0f4872 !important;
  outline: none !important;
}

/* .vc-day-content:hover {
  border-radius: 0;
}
.vc-highlight-content-solid {
  border: 2px solid #1e85eb;
  border-radius: 5px !important;
  color: #1e85eb !important;
}

.vc-day-content:focus {
  color: #1e85eb !important;
  outline: none !important;
}

.vc-day-content:not(.is-disabled) {
  background: #fff !important;
  border-radius: 0;
}

.vc-day-content:not(.is-disabled) span {
  font-weight: bold !important;
}

.vc-highlight {
  background: transparent !important;
  border-radius: 0;
} */
.vc-container:has(.vc-time-picker) {
  background: #eef2f9 !important;
  border: 1px solid #bfd2df !important;
}

.vc-time-picker {
  padding: 4px 0 !important;
}

.vc-time-picker > * + * {
  margin-top: 0 !important;
}

.vc-time-picker .vc-time-header {
  display: none !important;
}

.vc-time-picker .vc-time-select-group {
  background: transparent !important;
  border: 0;
}

.vc-time-picker .vc-time-select-group .vc-base-select:last-child {
  margin-left: 4px !important;
}

.vc-time-picker .vc-base-select select {
  background: #fff !important;
}

.vc-date-time {
  margin-left: 4px !important;
}

.vc-date-time .vc-date {
  display: none !important;
}

.vc-select select {
  background: #fff !important;
  border: 1px solid #bfd2df !important;
  border-radius: 5px !important;
  font-weight: normal !important;
}

.vc-am-pm {
  margin-left: 4px !important;
}

.vc-am-pm button.active {
  background: #0f4872 !important;
}

.vc-am-pm button:focus {
  border-color: #0f4872 !important;
}

.vc-time-icon {
  color: #0f4872 !important;
  margin-left: 4px !important;
  margin-top: 4px !important;
}

/* ./CALENDAR */
.gap-8 {
  gap: 2rem;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid {
  display: grid;
}

.w-full {
  width: 100% !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
}

body {
  background: #fafafa;
  font-family: "Noto Sans", sans-serif;
  height: 100vh;
  width: 100%;
}

p {
  font-size: 1rem;
  line-height: 1.7rem;
}

.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.sign-out-btn {
  margin-right: 10px;
  text-align: center;
  color: #71819A !important;
  line-height: normal;
  font-size: 13px;
  padding: 2px 10px;
}

.new_button {
  background: #73d2ff;
  border: 0;
  border-bottom: 2px solid #5CA8CC;
  color: #fff;
  float: right;
  text-align: center;
  width: 100px;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}
.new_button:hover {
  background: #5CA8CC;
}

div.required {
  clear: both;
  position: relative;
}
div.required .material-icons {
  color: #71819A;
}
div.required .material-icons.error {
  color: #cc0000;
}
div.required .material-icons.success {
  color: #2d9688;
}

.required-icon__wrap {
  pointer-events: none;
  position: absolute;
  width: 100%;
  bottom: 3px;
  text-align: right;
  padding: 10px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input {
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
}
input:hover {
  outline: none;
}
input[readonly=readonly] {
  background-color: #f5f5f5;
  color: #000;
}
input[readonly=readonly]:hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}
input[disabled=disabled] {
  background-color: #f5f5f5;
  color: #000;
}
input[disabled=disabled]:hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}
input:required {
  position: relative;
}

button {
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
}

.action-button {
  background: #73d2ff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #fff;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
  width: 150px;
}

.submit-button {
  background: rgb(45, 150, 136);
  border: 0;
  border-radius: 2px;
  margin: 10px auto 0;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  outline: none;
  padding: 10px;
}
.submit-button.admission {
  padding: 5px 10px;
}

.return-button {
  background: #fff;
  border: 0;
  border-radius: 2px;
  margin: 10px auto 0;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  outline: none;
  padding: 10px;
}

.info-message-text {
  display: none;
}
.info-message-text.visible {
  background: #fff;
  display: block;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 50px;
}

.date_range {
  margin-bottom: 20px;
}

th {
  text-align: inherit !important;
}

legend {
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #445060;
  border: 1px solid #CCC;
  border-radius: 3px;
  background-color: #fcfdfe;
  margin-bottom: 0;
  padding: 5px 10px;
}
legend .material-icons {
  float: right;
  line-height: 7px;
}

label {
  background: none no-repeat left 50%;
  color: #445060;
  line-height: 20px;
  margin: 0;
  width: auto;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  vertical-align: text-bottom;
}
label:first-child {
  padding-top: 0;
}
label:nth-child(2) {
  padding-top: 0;
}
label.required {
  color: #cc0000;
  font-weight: 700;
}
label span {
  color: #445060;
}
label p {
  margin-bottom: 0;
}

select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
select[disabled=disabled] {
  background-color: #f5f5f5;
  color: #000;
  cursor: not-allowed;
}
select[disabled=disabled]:hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}
select[readonly=readonly]:hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}

textarea {
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  padding: 10px;
}
textarea:focus {
  outline: none;
}
textarea :hover {
  outline: none;
}
textarea[readonly=readonly] {
  background-color: #f5f5f5;
  color: #000;
}
textarea[readonly=readonly]:hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}
textarea[disabled=disabled] {
  background-color: #f5f5f5;
  color: #000;
}
textarea[disabled=disabled] :hover {
  background-color: #f5f5f5;
  border: 1px solid #A9A9A9;
  cursor: not-allowed;
}

.flex {
  display: flex !important;
}

.align-start {
  align-items: flex-start;
}

fieldset {
  border: 3px solid #CCC;
  border-radius: 4px;
  background-color: #fcfdfe;
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  position: relative;
}
fieldset .material-icons {
  line-height: 1;
}

ol {
  -webkit-padding-start: 20px;
}

.breadcrumb {
  background: #71819A;
  color: #fff;
  cursor: pointer;
  float: right;
  font-size: 0.875rem;
  margin-bottom: 0;
  text-decoration: none;
}
.breadcrumb:hover {
  background: #445060;
  color: #fff;
}

.description {
  margin-bottom: 20px;
}

.form-input {
  background: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
}

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.show {
  display: block;
}

.form-error-message {
  background: #ee4036;
  color: #fff;
  display: none;
  font-size: 13px;
  left: 0;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  width: 100%;
}

/* MENUS */
/* #header_container {
  align-items: center;
  background: $dark-bg;
  border-bottom: 1px solid #ccc;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;

  a {
    color: #fff;
  }

  &.fixed {
    position: fixed;
    width: 100%;
    z-index: 9999;
  }

  .menu_control {
    align-items: center;
    display: flex;
    line-height: 0;
    z-index: 5;

    .menu_icon {
      background-color: $dark-bg;
      cursor: pointer;
      overflow: hidden;
      padding: 5px;
    }
  }

  #info-left {
    margin-left: 10px;
  }

  #info_right {
    margin-right: 10px;

    @media screen and (max-width: 575px) {
      display: none;
    }
  }
} */
/* MAIN MENU */
/* #menu_container {
  background-color: $dark-bg;
  display: block;
  flex: 0 0 auto;
  width: 350px;
  z-index: 9999;
  overflow-y: auto;

  #menu {
    .active {
      background-color: #fafafa;
      color: #4C5667;
    }

    .sub-menu-link {
      &.selected {
        background: #fafafa;

        a {
          color: #4C5667;
        }
      }
    }

    .sub-menu {
      display: none;
    }

    h3 {
      color: #fff;
      cursor: pointer;
      font-weight: 400;
      margin: 0;
      font-size: 1rem;

      &:hover {
        background-color: #7A8CA7;
      }
    }

    a {
      color: #fff;
      display: block;
      padding: 10px;
      text-decoration: none;
    }

    .menu_option {
      color: #fff;
      cursor: pointer;
      font-size: 1rem;
      margin: 10px;

      &:hover {
        a {
          background: #fafafa;
          color: #4C5667;
        }
      }

      a {
        text-decoration: none;
        background-color: #778cad;
        color: #FFF;
        font-size: 0.9em;

        &.active {
          background: #fff;
          color: #4C5667;
          margin-right: -10px;
        }
      }
    }

    .menu_option_nolink {
      padding: 2px 2px 2px 8px;
      color: #fff;
      background-color: #73ABD4;
      border-bottom: 1px solid #629AC3;
      font-size: 1.1em;
      cursor: pointer;

      &:hover {
        background-color: #75B3E1;
      }

      a {
        text-decoration: none;
        color: #FFF;
        font-size: 0.9em;
      }
    }
  }
} */
#header_container {
  color: #fff;
}
#header_container #info-left {
  margin-left: 10px;
}
#header_container .menu_control {
  align-items: center;
  display: flex;
  line-height: 0;
  z-index: 5;
}

#menu_container {
  background: #71819a; /* #f5f5f5; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: 300px;
  top: 0;
  *z-index: 1000;
  /* position: fixed;
  left: 250px;
  margin-left: -250px; */
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
#menu_container #show-menu {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #71819a;
  color: #fff;
  padding: 2px 10px 2px 5px;
  position: fixed;
  top: 0;
  left: 0;
}
#menu_container #show-menu span {
  margin-left: 5px;
}

#menu {
  height: 100%;
  padding: 20px;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}
#menu_control_left {
  cursor: pointer;
}
#menu a {
  color: #fff;
  display: block;
  font-size: 13px;
  margin-left: -1.25rem;
  text-decoration: none;
  padding: 5px 1.25rem;
}
#menu .sub-menu {
  display: none;
}
#menu .menu_option {
  margin: 5px;
}
#menu .menu_option a {
  background-color: #778cad;
  font-size: 0.9em;
  text-decoration: none;
  margin: 0 -5px;
  color: #fff;
}
#menu .menu_option a:hover {
  color: #4c5667;
  background-color: #f5f5f5;
}
#menu .menu_option a.active {
  color: #4c5667;
  margin-right: -25px;
  background: rgb(255, 255, 255);
}

.sub-menu-link {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  margin-top: 12px;
  margin-bottom: 12px;
}

.no-sub {
  font-size: 13px;
  font-weight: normal;
  margin-top: 12px;
  margin-bottom: 12px;
}

.user-login {
  cursor: pointer;
  margin: 20px -20px 20px 0;
}
.user-login__username {
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 40px;
  background: #fff;
  padding: 15px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
  position: relative;
}
.user-login__username p {
  font-size: 13px;
  margin: 0;
  padding: 0;
}
.user-login__mobile-unit {
  color: #0064ff;
}
.user-login #user-menu {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  border-radius: 2px;
  display: none;
  padding: 10px;
}

/* ./ MAIN MENU */
/* ./MENUS */
/* LOGIN */
.login #menu_container {
  display: none;
}
.login h1 {
  color: #445060;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
.login h3 {
  color: #445060;
  text-align: center;
}
.login .body-container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: 0 !important;
  width: 100%;
}
.login .special_form {
  box-shadow: 0 1px 4px #71819A;
  max-width: 100%;
  position: relative;
  width: 400px;
}
@media screen and (max-width: 575px) {
  .login .special_form {
    width: auto;
  }
}
.login input[type=submit] {
  max-width: 100% !important;
}
.login .invalid {
  border: 1px solid red;
  color: red;
  background: #ffeeee;
}

/* MAIN */
main {
  align-items: stretch;
  display: flex;
  margin: 0 auto;
  min-height: calc(100% - 35px);
  max-width: 100%;
}
main.login {
  min-height: calc(100% - 35px);
}

.body-container {
  padding: 30px;
  width: calc(100% - 300px);
}
.body-container .header_link {
  color: #445060;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
}

#section1 input, #section1 select, #section2 input, #section2 select {
  border: 1px solid rgba(113, 129, 154, 0.5);
  box-shadow: none;
}
#section1 select, #section2 select {
  border: 1px solid rgba(113, 129, 154, 0.5);
  box-shadow: none;
}

.special_form {
  background: rgb(235, 236, 237);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  clear: both;
  max-width: 100%;
  padding: 20px;
  position: relative;
}
.special_form label span {
  font-size: 0.875rem;
}
.special_form #header {
  color: #445060;
  line-height: 1.7rem;
  margin-bottom: 20px;
}
.special_form textarea {
  border-radius: 2px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  height: 100px;
  margin: 10px 0;
  max-height: 100px;
  max-width: 100%;
  width: 100%;
}
.special_form input {
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
  width: 100%;
}
.special_form input::placeholder {
  color: #445060;
}
.special_form input[type=radio], .special_form input[type=checkbox] {
  margin: 0 5px 0 0;
  width: auto;
  box-shadow: none;
}
.special_form input[type=button] {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.special_form input[type=submit] {
  background: rgb(45, 150, 136);
  border-bottom: 2px solid rgb(29, 135, 120);
  color: #fff;
  display: block;
  margin: 10px auto 0;
  max-width: 200px;
}
.special_form input[type=submit]:hover {
  border-bottom: 3px solid rgb(29, 135, 120);
  margin-top: 9px;
}
.special_form .select_input {
  background: #fff;
  border: 1px solid rgba(170, 170, 170, 0.5);
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
  width: 100%;
}
.special_form .select_input[multiple=multiple] {
  height: 320px;
  max-width: 100%;
  width: 100%;
}
.special_form .lost_pass {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline;
  margin-top: 10px;
  padding: 0;
  width: auto;
}
.special_form .register {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline;
  margin-top: 10px;
  float: right;
  padding: 0;
  width: auto;
}
.special_form .print {
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  max-width: 200px;
}
.special_form .required input:invalid, .special_form .required textarea:invalid {
  border: 1px solid #cc0000 !important;
}
.special_form .required input:valid, .special_form .required textarea:valid {
  border: 1px solid #2d9688 !important;
}
.special_form .required .select_input {
  border: 1px solid #cc0000 !important;
}
.special_form .required .select_input.selected {
  border: 1px solid #2d9688 !important;
}

#td_label {
  vertical-align: bottom;
}

#tabs {
  border-radius: 2px;
}
#tabs .header_link {
  background: #ddd;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 10px;
}
#tabs .header_link:hover {
  background: #ccc;
}

/* ./MAIN */
/* MULTI-REG CHECK / ADMIT PATIENTS */
.search-similar-info-wrap {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(3, calc(33.3333% - 26.66667px));
}

.search-similar-info {
  background: #ebeced;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px #71819A;
  display: none;
  margin: 20px 0;
  max-width: 100%;
  padding: 20px;
}
.search-similar-info:first-of-type {
  display: block;
}

#last-match {
  display: none;
}

#no-matches {
  display: none;
}
#no-matches .search-similar-info.submitted {
  display: block !important;
}

#info6_1, #info6_2 {
  word-break: break-word;
}

.multi-reg .match {
  color: #cc0000;
}
.multi-reg td {
  padding: 5px 10px;
}
.multi-reg td:last-child {
  word-break: break-word;
}
.multi-reg h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.multi-reg .search-info {
  background: rgb(235, 236, 237);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px #71819A;
  margin: 20px 0;
  max-width: 400px;
  padding: 20px;
  width: 100%;
}
.multi-reg .search-info span:first-child {
  display: block;
  margin-bottom: 10px;
}
.multi-reg .search-info p {
  margin: 0;
}
.multi-reg .search-similar-info {
  background: rgb(235, 236, 237);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px #71819A;
  margin: 20px 0;
  max-width: 100%;
  padding: 20px;
}
.multi-reg .search-similar-info img {
  height: 128px;
  width: 128px;
}
.multi-reg input[type=button] {
  background: #fff;
  border: 0;
  border-bottom: 2px solid #eee;
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin-bottom: 20px;
  outline: none;
  padding: 10px;
}

#near-miss-confirm {
  display: none;
}
#near-miss-confirm input[type=button] {
  background: #fff;
  border: 0;
  border-bottom: 2px solid #eee;
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin-bottom: 20px;
  outline: none;
  padding: 10px;
}
#near-miss-confirm img {
  height: 128px;
  margin: 20px 0;
  width: 128px;
}

/* ./MULTI-REG CHECK / ADMIT PATIENTS */
/* PATIENT SEARCH */
.search-info {
  background: rgb(235, 236, 237);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px #71819A;
  margin: 20px 0;
  max-width: 400px;
  padding: 20px;
  width: 100%;
}
.search-info span:first-child {
  display: block;
  margin-bottom: 10px;
}
.search-info p {
  margin: 0;
}
.search-info h3 {
  line-height: 1.5rem;
  margin: 0 !important;
  margin-bottom: 10px !important;
}
.search-info td {
  padding: 0 10px 10px 0;
}
.search-info td:last-child {
  padding-bottom: 0;
}
.search-info img {
  margin-top: 0 !important;
}
.search-info table {
  width: 100%;
}

/* ./PATIENT SEARCH */
/* EMERGENCY DOSING */
#special thead td {
  font-size: 0.9rem;
  vertical-align: bottom;
}
#special thead .comments-head {
  padding-left: 20px;
}
#special tbody td {
  vertical-align: top;
}
#special tbody td:first-of-type {
  max-width: 120px;
}
#special tbody td:nth-of-type(2) {
  max-width: 120px;
}
#special .comments {
  font-size: 11px;
  padding-left: 20px;
}

/* ./EMERGENCY DOSING */
/* PATIENT MESSAGING */
#text_message {
  width: 100%;
}

#message_input,
#message_input > label,
#message_input > input,
#message_input > textarea {
  display: none;
}

.patient_link {
  color: #71819A;
  display: block;
  font-size: 1.1rem;
  margin: 20px 0 10px 0;
  text-decoration: none;
}

.patient_messaging h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.patient_messaging ol {
  -webkit-padding-start: 20px;
}

#message-data h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 20px;
}
#message-data input, #message-data textarea {
  border: 0;
  margin-bottom: 20px;
  max-width: 100%;
  padding: 10px;
  width: 300px;
}

#controls input[type=button] {
  background: #fff;
  border: 0;
  border-bottom: 2px solid #eee;
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin-bottom: 20px;
  outline: none;
  padding: 10px;
}

.dosing_rpt table {
  margin-bottom: 20px;
  min-width: auto;
  max-width: 640px;
}
.dosing_rpt table tr:nth-child(2n) td {
  background: #fff;
}

#dosing_dashboard #td_0 {
  padding-right: 10px;
}

#message-data-form {
  display: none;
}

/* ./ PATIENT MESSAGING */
/* DOSE UPLOAD EVENTS */
#dose-upload-dashboard {
  font-size: 14px;
}
#dose-upload-dashboard th {
  padding: 5px 10px;
}

/* DOSING MAINTENANCE */
#special_wrapper .header_link, #take_home_wrapper .header_link, #take_home_review_wrapper .header_link {
  font-size: 1rem;
}
#special_wrapper tbody th, #take_home_wrapper tbody th, #take_home_review_wrapper tbody th {
  padding: 10px;
}
#special_wrapper tbody td, #take_home_wrapper tbody td, #take_home_review_wrapper tbody td {
  white-space: normal;
  padding: 10px;
}
#special_wrapper .new_button, #take_home_wrapper .new_button, #take_home_review_wrapper .new_button {
  background: #73d2ff;
  border-bottom: 2px solid #5CA8CC;
  color: #fff;
  float: right;
  margin-right: 8px;
  text-align: center;
  width: 100px;
}
#special_wrapper .new_button:hover, #take_home_wrapper .new_button:hover, #take_home_review_wrapper .new_button:hover {
  background: #5CA8CC;
}
#special_wrapper .edit_button, #special_wrapper .add.id, #take_home_wrapper .edit_button, #take_home_wrapper .add.id, #take_home_review_wrapper .edit_button, #take_home_review_wrapper .add.id {
  background: #FFE70D;
  border-bottom: 2px solid #eed60c;
  color: #71819A;
  padding: 5px 16px;
  width: 100px;
}
#special_wrapper .edit_button:hover, #special_wrapper .add.id:hover, #take_home_wrapper .edit_button:hover, #take_home_wrapper .add.id:hover, #take_home_review_wrapper .edit_button:hover, #take_home_review_wrapper .add.id:hover {
  background: #eed60c;
}
#special_wrapper .delete_button, #special_wrapper .remove.id, #take_home_wrapper .delete_button, #take_home_wrapper .remove.id, #take_home_review_wrapper .delete_button, #take_home_review_wrapper .remove.id {
  background: #FF0000;
  border-bottom: 2px solid #dd0000;
  color: #fff;
  width: 100px;
}
#special_wrapper .delete_button:hover, #special_wrapper .remove.id:hover, #take_home_wrapper .delete_button:hover, #take_home_wrapper .remove.id:hover, #take_home_review_wrapper .delete_button:hover, #take_home_review_wrapper .remove.id:hover {
  background: #dd0000;
}
#special_wrapper tbody textarea, #take_home_wrapper tbody textarea, #take_home_review_wrapper tbody textarea {
  width: 100%;
}
#special_wrapper tbody select, #take_home_wrapper tbody select, #take_home_review_wrapper tbody select {
  height: 35px;
  width: 100%;
}

/* ./DOSING MAINTENANCE */
.instructions {
  color: #445060;
  line-height: 1.5rem;
  margin-top: 2rem;
  max-width: 100%;
  padding: 20px 20px 5px 20px;
}
.instructions p {
  font-size: 14px !important;
  line-height: 26px !important;
}
.instructions h4 {
  font-weight: 400;
  margin-bottom: 10px;
}
.instructions li {
  margin-bottom: 10px;
}
.instructions .more-info {
  display: none;
}
.instructions .more-info-link {
  display: block;
  margin-bottom: 5px;
}
.instructions.minimized {
  background-color: transparent;
  border: 0;
  margin-bottom: 0;
  /* FIXME: Added this here to temporarily fix the issue where minimizing did not remove the elements */
}
.instructions.minimized div, .instructions.minimized p, .instructions.minimized a {
  display: none;
}
.instructions.minimized i {
  line-height: 7px;
}

/* INLINE TABLE */
.inline_table_wrap {
  overflow-x: auto;
}
.inline_table_wrap table {
  min-width: 640px;
  width: 100%;
}
.inline_table_wrap table th {
  background: #e5e5e5;
  color: #222;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px;
}
.inline_table_wrap table td {
  background: #f6f6f6;
  color: #777;
  font-size: 0.85rem;
  padding: 10px;
}

.inline_table caption {
  color: #445060;
  margin-bottom: 20px;
}
.inline_table a {
  color: #2E587E;
}
.inline_table.grid {
  margin-bottom: 20px;
}
.inline_table input[type=number] {
  margin: 0;
  margin-right: 10px;
  padding: 0;
  width: 40px;
}

/* FOOTER */
footer {
  background: #71819A;
  color: #fff;
  font-size: 0.75em;
  padding: 10px 0;
  text-align: center;
}
footer a {
  border-bottom: 1px dotted #888;
  color: #fff;
  text-decoration: none;
}

/* . /FOOTER */
.category-list {
  margin-bottom: 20px;
}
.category-label {
  background-color: rgba(13, 129, 154, 0.5);
  border-radius: 2px;
  color: #fff;
  font-size: 1rem;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.category-link {
  color: #222;
  padding: 10px;
}
.category-link-description {
  font-size: 14px;
  color: inherit;
}
.category-link-title {
  font-size: 15px;
  color: rgb(13, 129, 154);
}
.category-search {
  margin-bottom: 20px;
}
.category-search input {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
  width: 260px;
}

.form_image {
  border: 1px solid #A9A9A9;
  padding: 0;
  outline: none;
  margin: 1px 1px 5px 20px;
  max-width: 128px;
  max-height: 128px;
}
.form_image:hover {
  border: 1px solid #00f;
  outline: none;
}

canvas {
  background: #ffffff;
  border: 1px solid #A9A9A9;
  padding: 0;
  outline: none;
  margin: 1px 1px 5px 20px;
}
canvas:hover {
  border: 1px solid #00f;
  outline: none;
  cursor: crosshair;
}

.form_sig {
  background: #ffffff;
  border: 1px solid #A9A9A9;
  padding: 5px;
  outline: none;
  margin: 1px 1px 5px 20px;
}
.form_sig:hover {
  border: 1px solid #00f;
  outline: none;
}

.info_li {
  margin-left: 20px;
  font-size: 14px;
  color: #222;
  list-style-type: none;
  padding: 1px;
  border: 1px solid #D4D4D5;
  background-color: #DBDCDD;
}
.info_li_short {
  font-size: 14px;
  color: #222;
  list-style-type: none;
  padding: 5px;
  background-color: rgb(235, 236, 237);
}

.box_label {
  color: #556;
  font-size: 14px;
  cursor: pointer;
}
.box_label[required=required] {
  color: #D22E2E;
}

.warning {
  background: #71819A;
  color: #fff;
  margin: 10px 0;
  padding: 10px;
}

/* DATA TABLES */
.dataTables_wrapper .col-sm-6 {
  float: none;
}
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 10px;
}

.dataTables_scrollHeadInner {
  width: 100% !important;
}

.dataTables_scroll {
  margin: 20px 0;
}
.dataTables_length {
  display: inline;
}
.dataTables_length select {
  background-color: #fff;
  border-color: #ccc;
  border-radius: 2px;
  color: #646464;
  height: 32px;
  margin: 0 10px;
}
.dataTables_filter {
  color: #777;
  display: inline;
  margin-right: 20px;
}
.dataTables_info {
  margin-top: 3px;
  color: #777;
  font-size: 0.85em;
  display: inline;
}
.dataTables_paginate {
  margin-top: 3px;
  float: right;
  display: inline;
  color: #444;
  font-size: 0.85em;
  padding: 3px;
  margin-right: 2px;
}
.dataTables_paginate a {
  border: 1px solid #e4e4e4;
  background-color: #f6f6f6;
  padding: 2px;
  margin-right: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.dataTables_paginate a.paginate_button.current {
  background-color: #71819A;
  color: #fff;
}
.dataTables_paginate a:hover {
  background-color: #71819A;
  color: #fff;
}
.dataTables_wrapper input, .dataTables_wrapper select, .dataTables_wrapper label {
  display: inline !important;
  word-break: break-word;
  white-space: initial;
}
.dataTables_wrapper select {
  max-width: 100%;
  min-width: 150px;
}
.dataTables_wrapper input[type=search] {
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  padding: 5px;
}

.dataTable {
  min-width: 100%;
  width: 100%;
  border-spacing: 0;
}
.dataTable a {
  color: #2E587E;
  white-space: initial;
  word-break: break-all;
}
.dataTable tbody tr:nth-child(odd) td, .dataTable tfoot tr:nth-child(odd) td {
  background-color: #f6f6f6;
}
.dataTable tbody tr:nth-child(odd):hover td, .dataTable tfoot tr:nth-child(odd):hover td {
  background-color: #e5e5e5;
}
.dataTable tbody tr:nth-child(even) td, .dataTable tfoot tr:nth-child(even) td {
  background-color: #fefefe;
}
.dataTable tbody tr:nth-child(even):hover td, .dataTable tfoot tr:nth-child(even):hover td {
  background-color: #e5e5e5;
}
.dataTable tbody td, .dataTable tfoot td {
  border-right: 1px solid #EFEFEF;
  font-weight: normal;
  color: #777;
  font-size: 0.85em;
  padding: 5px;
}
.dataTable tbody .buttons, .dataTable tfoot .buttons {
  padding: 0;
  text-align: center;
  white-space: nowrap;
}
.dataTable tbody .buttons a, .dataTable tfoot .buttons a {
  display: inline-block;
  word-break: normal;
}
.dataTable thead th {
  text-align: left;
  font-weight: 400;
  color: #222;
  font-size: 0.9rem;
  border: 0;
  border-bottom: 3px solid #CCC;
  margin: 0;
}
.dataTable thead tr {
  background-color: #e5e5e5;
}
.dataTable thead td {
  color: #222;
  font-size: 0.9rem;
  font-weight: 400;
  border: 0;
  border-bottom: 3px solid #CCC;
  margin: 0;
  text-align: left;
}
.dataTable thead td :last-of-type {
  text-align: right;
}
.dataTable thead td b {
  font-weight: 400;
}
.dataTable tfoot th {
  text-align: center;
  font-weight: 400;
  color: #222;
  font-size: 0.9rem;
  border: 0;
  border-bottom: 3px solid #CCC;
  margin: 0;
}
.dataTable button, .dataTable input[type=button] {
  background-color: #ddd;
  border: 0;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}
.dataTable button:hover, .dataTable input[type=button]:hover {
  background-color: #71819A;
  color: #fff;
}

.DTFC_LeftBodyWrapper {
  top: -13px !important;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
  padding: 10px;
}

table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
}

table.dataTable td,
table.dataTable th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}

table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length select {
  width: 75px;
  display: inline-block;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}

div.dataTables_wrapper div.dataTables_info {
  padding-top: 8px;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: block;
  font-family: "Glyphicons Halflings";
  opacity: 0.5;
}

table.dataTable thead .sorting:after {
  opacity: 0.2;
  content: "\e150";
}

table.dataTable thead .sorting_asc:after {
  content: "\e155";
}

table.dataTable thead .sorting_desc:after {
  content: "\e156";
}

table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  color: #eee;
}

div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody > table > thead .sorting:after,
div.dataTables_scrollBody > table > thead .sorting_asc:after,
div.dataTables_scrollBody > table > thead .sorting_desc:after {
  display: none;
}

div.dataTables_scrollBody > table > tbody > tr:first-child > th,
div.dataTables_scrollBody > table > tbody > tr:first-child > td {
  border-top: none;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}

div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}
table.dataTable.table-condensed > thead > tr > th {
  padding-right: 20px;
}

table.dataTable.table-condensed .sorting:after,
table.dataTable.table-condensed .sorting_asc:after,
table.dataTable.table-condensed .sorting_desc:after {
  top: 6px;
  right: 6px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}

table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 0;
}

table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {
  padding-left: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {
  padding-right: 0;
}

/* ./DATA TABLES */
.DTFC_LeftBodyLiner {
  overflow-y: hidden !important;
}
.DTFC_LeftBodyLiner select {
  width: calc(100% - 20px) !important;
}

table.dataTable {
  margin-bottom: 7px !important;
}

/* WARNING */
.warning-wrap.two-sites .material-icons {
  color: crimson;
}
.warning-wrap.two-sites .warning-text {
  line-height: normal;
}
.warning-wrap .material-icons {
  color: gold;
  font-size: 200px;
}
.warning-wrap .warning-text {
  color: #71819A;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4rem;
}
.warning-wrap .warning-text p {
  font-size: 2rem;
}
.warning-wrap .warning-info {
  background: #ebeced;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  max-width: 100%;
  padding: 20px;
}
.warning-wrap .warning-info .title {
  color: #506078;
  letter-spacing: 0.5px;
  margin: 0;
}
.warning-wrap #login-button {
  background: #2d9688;
  border: 0;
  border-radius: 2px;
  border-bottom: 2px solid #1d8778;
  box-shadow: 0 0 1px #aaa;
  color: #fff;
  display: block;
  font-size: 0.875rem;
  margin: 10px auto 0;
  max-width: 200px;
  outline: none;
  padding: 10px;
  width: 100%;
}
.warning-wrap.dual-enrollment {
  background: #ebeced;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  max-width: 100%;
  padding: 20px;
  max-width: 100%;
  text-align: left;
  width: 800px;
}
.warning-wrap.dual-enrollment img {
  margin-right: 20px;
  width: 200px;
}
.warning-wrap.dual-enrollment .wrap {
  align-items: flex-start;
  display: flex;
  margin-bottom: 20px;
}
.warning-wrap.dual-enrollment .warning-text {
  font-size: 1rem;
  margin-bottom: 10px;
}
.warning-wrap.dual-enrollment .material-icons {
  margin-left: 20px;
}
.warning-wrap.dual-enrollment .material-icons.red {
  color: crimson;
}
.warning-wrap.dual-enrollment .warning-info {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
}
.warning-wrap.dual-enrollment .warning-info td {
  padding: 5px 10px 5px 0;
}
.warning-wrap.dual-enrollment .search-similar-info {
  margin-bottom: 20px;
  width: 100%;
}

/* ./WARNING */
/* DUAL ENROLLMENT */
.patient-information {
  background: rgb(235, 236, 237);
  display: inline-block;
  margin: 20px 0;
  min-width: 400px;
  max-width: 100%;
  padding: 20px;
  border-radius: 5px;
}
.patient-information table {
  width: 100%;
}
.patient-information th {
  padding-right: 20px;
}
.patient-information td {
  padding: 5px 10px 5px 0;
}
.patient-information-image {
  padding: 0 !important;
  padding-left: 10px !important;
  width: 128px;
}

/* ./ DUAL ENROLLMENT */
/* JQUERY-UI CHANGES */
.ui-accordion-content {
  background-color: #7F91AD;
  color: #fff;
  padding: 8px;
  font-size: 0.9em;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
  display: none;
}

.ui-sortable {
  list-style: none;
}

.ui-tabs-nav {
  padding: 3px;
  border-bottom: 3px solid #CCC;
}

.ui-tabs ul {
  list-style: none;
}
.ui-tabs ul li {
  display: inline;
}
.ui-tabs ul li a {
  text-decoration: none;
  color: #FFDE7C;
  background-color: #222;
  padding: 3px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
.ui-tabs ul li a:hover {
  color: #FFF;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #fff;
  outline: none;
}

.ui-dialog {
  z-index: 9999;
}

/* DIALOG */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-widget-header .ui-icon {
  background-image: url("http://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_444444_256x240.png");
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* DATEPICKER */
.ui-datepicker-header {
  background-color: #000;
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0 1px 1px 0 rgb(250, 250, 250);
  -moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 0.2);
  box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0 #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  border: 0 solid #111;
  border-top-width: 1px;
}

.ui-datepicker-title {
  text-align: center;
  color: #fff;
}

.ui-datepicker-prev, .ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background: url("../images/arrow.png") no-repeat;
  line-height: 600%;
  overflow: hidden;
}

.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}

.ui-datepicker-next {
  float: right;
  background-position: center 0;
}

.calendar-icon {
  width: 34px;
}

.ui-datepicker-month, .ui-datepicker-year {
  background: #000 !important;
}

#admission_date {
  padding: 7px 10px !important;
}

.ui-datepicker {
  display: none;
  width: 235px;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker thead {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #f1f1f1));
  background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -o-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: -ms-linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  background-image: linear-gradient(top, #f7f7f7 0%, #f1f1f1 100%);
  border-bottom: 1px solid #bbb;
}
.ui-datepicker th {
  text-transform: uppercase;
  font-size: 0.7em;
  -webkit-text-size-adjust: none;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0 0 #fff;
}
.ui-datepicker tbody td {
  padding: 0;
  border-right: 1px solid #bbb;
}
.ui-datepicker tbody td:last-child {
  border-right: 0;
}
.ui-datepicker tbody td span, .ui-datepicker tbody td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0 #fff;
}
.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}
.ui-datepicker tbody tr:last-child {
  border-bottom: 0;
}

.ui-datepicker-today a {
  background: #FFDD90 !important;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  filter: dropshadow(color=#4d7a85, offx=0, offy=1);
  text-shadow: 0 1px 0 #D7BA7A !important;
  border: 1px solid #E6C985;
  position: relative;
  margin: -1px;
}

.ui-datepicker-calendar {
  background: #ededed;
  background: -moz-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ededed), color-stop(100%, #dedede));
  background: -webkit-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -o-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: -ms-linear-gradient(top, #ededed 0%, #dedede 100%);
  background: linear-gradient(top, #ededed 0%, #dedede 100%);
  -webkit-box-shadow: inset 1px 1px 0 0 rgba(250, 250, 250, 0.5);
  -moz-box-shadow: inset 1px 1px 0 0 rgba(250, 250, 250, 0.5);
  box-shadow: inset 1px 1px 0 0 rgba(250, 250, 250, 0.5);
}
.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
  background: #6eafbf;
  -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: #e0e0e0;
  filter: dropshadow(color=#4d7a85, offx=0, offy=1);
  text-shadow: 0 1px 0 #4d7a85;
  border: 1px solid #55838f;
  position: relative;
  margin: -1px;
}
.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}

/* ./DATEPICKER */
/* TIMEPICKER */
.ui-timepicker-wrapper {
  overflow-y: auto;
  height: 150px;
  width: 6.5em;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  z-index: 10001;
  margin: 0;
}

.ui-timepicker-wrapper.ui-timepicker-with-duration {
  width: 13em;
}

.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
  width: 11em;
}

.ui-timepicker-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ui-timepicker-duration {
  margin-left: 5px;
  color: #888;
}

.ui-timepicker-list:hover .ui-timepicker-duration {
  color: #888;
}

.ui-timepicker-list li {
  padding: 3px 0 3px 5px;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  list-style: none;
  margin: 0;
}

.ui-timepicker-list:hover .ui-timepicker-selected {
  background: #fff;
  color: #000;
}

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
  background: #1980EC;
  color: #fff;
}

li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
  color: #ccc;
}

.ui-timepicker-list li.ui-timepicker-disabled,
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  color: #888;
  cursor: default;
}

.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  background: #f2f2f2;
}

/* ./TIMEPICKER */
/* ./JQUERY-UI CHANGES */
.submit-button {
  background: #2d9688 !important;
  color: #fff !important;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1366px) {
  #menu_container {
    width: 300px;
  }
  .multi-reg .search-info:last-child, .multi-reg .search-similar-info:last-child {
    margin-left: 0;
  }
  .search-similar-info-wrap {
    grid-template-columns: repeat(2, 50%);
  }
}
@media screen and (max-width: 1164px) {
  caption {
    font-size: 0.875rem;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .body-container {
    margin-top: 30px;
    width: 100% !important;
  }
  .patient_details {
    display: block;
  }
  .search-similar-info-wrap {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 767px) {
  .menu_control .menu_icon#left {
    display: block;
  }
  div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
  .body-container {
    padding: 15px;
    width: calc(100% - 40px);
  }
  .dataTables_filter {
    display: block;
    margin-top: 10px;
    float: none;
  }
  .dataTables_paginate {
    display: block;
    float: none;
    margin-top: 10px;
    padding: 0;
  }
  .special_form {
    padding: 15px;
  }
  .instructions {
    padding: 15px 15px 5px 15px;
  }
}
/* CONTAINERS */
.form__container-default {
  max-width: 100%;
  width: 600px;
}

/* ./CONTAINERS */
/* BUTTONS */
.modify-button {
  background: #FFE70D !important;
  border-bottom: 2px solid #eed60c;
  color: #71819A;
  padding: 5px 16px;
}

.delete-button {
  background: #FF0000 !important;
  border: 0;
  border-bottom: 2px solid #dd0000;
  color: #fff;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}

.download-button {
  background-color: #ddd;
  border: 0;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}

/* ./BUTTONS */
/* UPLOAD */
.upload__container {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  height: 250px;
  width: 250px;
}
.upload__container.no-file {
  border: 2px dashed #71819A;
  margin-bottom: 20px;
}
.upload__container img {
  height: auto;
  width: 100%;
}
.upload__message {
  background: #f44;
  color: #fff;
  display: none;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

.progress__wrap {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  display: none;
  height: 20px;
  width: 100%;
}
.progress__wrap__bar {
  background-size: 35px 20px, 100% 100%, 100% 100%;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
  height: 20px;
  margin-top: 10px;
  width: 0;
}
.progress__wrap__bar.invalid {
  background-image: -webkit-linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25)), -webkit-linear-gradient(left, #09c, #f44);
}
.progress__wrap__bar.valid {
  background-image: -webkit-linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25)), -webkit-linear-gradient(left, #09c, #11ff77);
}
.progress__wrap__text {
  margin-top: 10px;
  text-align: center;
}

@-webkit-keyframes animate-stripes {
  100% {
    background-position: -100px 0px;
  }
}
@keyframes animate-stripes {
  100% {
    background-position: -100px 0px;
  }
}
/* ./UPLOAD */
.visible {
  display: block;
}

/* NEW CUSTOM TABLE */
.custom-table {
  font-size: 13px;
  margin-top: 30px;
  width: 100%;
}
.custom-table .btn {
  border: 0;
  border-radius: 2px;
  font-size: 13px;
}
.custom-table .action-items {
  padding: 5px;
  text-align: right;
  width: 100px;
}
.custom-table .action-items .new-button {
  min-width: 120px;
}
.custom-table textarea {
  width: 100%;
}
.custom-table .action-items, .custom-table .small-width {
  width: 1%;
  white-space: nowrap;
}
.custom-table .required-icon__wrap {
  width: auto;
  right: 0;
}
.custom-table .required select {
  border: 1px solid #cc0000;
}
.custom-table .required input:invalid, .custom-table .required textarea:invalid {
  border: 1px solid #cc0000;
}
.custom-table .required input:valid, .custom-table .required textarea:valid, .custom-table .required .selected {
  border: 1px solid #2d9688 !important;
}
.custom-table .required .material-icons.error {
  color: #cc0000;
}
.custom-table .required .material-icons.success {
  color: #2d9688;
}
.custom-table thead th {
  color: #445060;
  font-weight: 600;
  border: 0;
  margin: 0;
  text-align: left;
  padding: 5px 10px;
}
.custom-table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.custom-table tbody td {
  border-right: 1px solid #efefef;
  font-weight: normal;
  color: #445060;
  white-space: normal;
  padding: 7px;
}
.custom-table tbody td:last-child {
  border-right: 0;
  *vertical-align: middle;
  white-space: nowrap;
}
.custom-table tbody select {
  background: #fff;
  border: 0;
  border: 1px solid rgba(170, 170, 170, 0.5);
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 13px;
  outline: none;
  padding: 4px 5px;
  width: 150px;
}
.custom-table.indent thead tr th:first-child {
  padding-left: 40px;
}
.custom-table.indent tbody tr td:first-child {
  padding-left: 40px;
}

.sortable div {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.sortable div .sortable-arrow.off::after {
  opacity: 0.2;
  content: "\e150";
  font-family: "Glyphicons Halflings";
  margin-left: 10px;
  font-weight: 400;
}
.sortable div .sortable-arrow.down::after {
  opacity: 0.5;
  content: "\e155";
  font-family: "Glyphicons Halflings";
  margin-left: 10px;
  font-weight: 400;
}
.sortable div .sortable-arrow.up::after {
  opacity: 0.5;
  content: "\e156";
  font-family: "Glyphicons Halflings";
  margin-left: 10px;
  font-weight: 400;
}

/* CUSTOM TABLE */
.custom_table {
  margin-top: 30px;
  width: 100%;
}
.custom_table .button--default {
  background-color: #ddd;
  border: 0;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  color: #777;
  cursor: pointer;
  margin: 0;
  padding: 5px;
  width: 100px;
}
.custom_table .button--default:hover {
  background-color: #71819a;
  border-bottom: #506078;
  color: #fff;
}
.custom_table .button--edit {
  background: #ffe70d;
  border: 0;
  border-bottom: 2px solid #eed60c;
  color: #71819a;
  padding: 5px 16px;
  width: 100px;
}
.custom_table .button--edit:hover {
  background: #eed60c;
}
.custom_table textarea {
  width: 100%;
}
.custom_table .action-items, .custom_table .small-width {
  width: 1%;
  white-space: nowrap;
}
.custom_table .required-icon__wrap {
  width: auto;
  right: 0;
}
.custom_table .required select {
  border: 1px solid #cc0000;
}
.custom_table .required input:invalid, .custom_table .required textarea:invalid {
  border: 1px solid #cc0000;
}
.custom_table .required input:valid, .custom_table .required textarea:valid, .custom_table .required .selected {
  border: 1px solid #2d9688 !important;
}
.custom_table .required .material-icons.error {
  color: #cc0000;
}
.custom_table .required .material-icons.success {
  color: #2d9688;
}
.custom_table thead tr {
  background-color: #e5e5e5 !important;
}
.custom_table thead th {
  color: #222;
  font-size: 0.9rem;
  font-weight: 400;
  border: 0;
  border-bottom: 3px solid #CCC;
  margin: 0;
  text-align: left;
  padding: 5px 10px;
}
.custom_table tbody tr:nth-child(odd) {
  background-color: #f6f6f6;
}
.custom_table tbody td {
  border-right: 1px solid #EFEFEF;
  font-weight: normal;
  color: #777;
  font-size: 0.85em;
  white-space: normal;
  padding: 5px;
}
.custom_table tbody td:last-child {
  border-right: 0;
}
.custom_table tbody tr.patient-dose-missing {
  background: rgba(200, 13, 13, 0.05);
  border-left: 5px solid rgb(200, 13, 13);
  height: 30px;
}
.custom_table tbody tr.patient-dose-partial {
  background: rgba(200, 200, 13, 0.05);
  border-left: 5px solid rgb(200, 200, 13);
  height: 30px;
}
.custom_table tbody tr.patient-dose-complete {
  background: rgba(13, 200, 13, 0.05);
  border-left: 5px solid rgb(13, 200, 13);
  height: 30px;
}
.custom_table tbody button {
  background: transparent;
  border: 0;
}
.custom_table tbody .dose-date td, .custom_table tbody .dose-date-today td {
  padding: 0 5px;
  position: relative;
}
.custom_table tbody select {
  background: #fff;
  border: 0;
  border: 1px solid rgba(170, 170, 170, 0.5);
  border-radius: 2px;
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
  width: 150px;
}
.custom_table tbody .dose-input-label {
  position: relative;
}
.custom_table tbody .dose-input-label input {
  background: #fff;
  border: 0;
  border-radius: 2px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
  width: 100%;
}
.custom_table tbody .dose-input-label span {
  position: absolute;
  top: 20px;
  right: 37px;
  font-size: 0.875rem;
}
.custom_table tbody .patient-dose-entry-controls .populate-button {
  background: #fff;
  border: 0;
  border-radius: 2px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  box-shadow: 0 0 1px #aaa;
  color: #445060;
  font-size: 0.875rem;
  margin: 10px 0;
  outline: none;
  padding: 10px;
}
.custom_table tbody .patient-dose-entry-controls input[type=submit] {
  background: #2d9688;
  border-bottom: 2px solid #1d8778;
  color: #fff;
  margin: 10px auto 0;
  max-width: 200px;
  border-radius: 2px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  box-shadow: 0 0 1px #aaa;
  font-size: 0.875rem;
  outline: none;
  padding: 10px;
  width: 100%;
}

.search {
  margin: 20px 10px;
}

.search input {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px;
  margin-left: 10px;
}

.custom-form {
  clear: both;
  max-width: 1400px;
}
.custom-form .section {
  background: #ebeced;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}
.custom-form input, .custom-form select, .custom-form textarea, .custom-form p, .custom-form label, .custom-form span {
  font-size: 13px;
}
.custom-form label {
  margin-bottom: 5px;
}
.custom-form hr {
  border-top: 0;
  border-bottom: 1px solid #fff;
}
.custom-form .required label {
  color: crimson;
}
.custom-form .required input, .custom-form .required select, .custom-form .required textarea {
  border: 1px solid crimson !important;
}
.custom-form .required input:valid, .custom-form .required select:valid, .custom-form .required textarea:valid {
  border: 1px solid #4cae4c !important;
}
.custom-form .required .patient-referral-source__info-message {
  border: 0 !important;
  border-radius: 4px;
  background: #fff;
}
.custom-form .required .required-icon__wrap {
  height: 34px;
  padding: 0;
  bottom: 0;
}
.custom-form .required .required-icon__wrap .material-icons {
  margin: 5px 5px 0 0;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid.checked ~ .custom-control-label::before, .custom-control-input.is-valid.checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(.checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(.checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid.checked ~ .custom-control-label::before, .custom-control-input.is-invalid.checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(.checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(.checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

@media (min-width: 768px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 100%;
    *width: 100%;
  }
}
@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.2857142857%;
    *width: 14.2857142857%;
  }
}
/**
 *  The following is not really needed in this case
 *  Only to demonstrate the usage of @media for large screens
 */
@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.2857142857%;
    *width: 14.2857142857%;
  }
}
.custom-control {
  cursor: pointer;
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 2.5rem;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input.checked ~ .custom-control-label::before {
  color: #fff;
  border-color: rgb(0, 230, 77);
  background-color: rgb(0, 230, 77);
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(.checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: rgba(253, 0, 58, 0.6);
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input.checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled.checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input.checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled.checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #db001a;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 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;
  transition: transform 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, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input.checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled.checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.capacity-management {
  clear: both;
  padding-top: 10px;
  margin-bottom: 30px;
  max-width: 1400px;
  width: 100%;
}
.capacity-management h3 {
  font-size: 18px !important;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.capacity-management__warning__wrap {
  align-items: flex-start;
  display: flex;
}

.capacity-management__warning {
  letter-spacing: 0.6px;
  text-align: center;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 2px 3px #ccc;
  margin-right: 20px;
}
.capacity-management__warning h4 {
  background: #fff;
  border-radius: 15px;
  line-height: 24px;
  font-size: 16px;
  padding: 20px;
  margin: 0;
}

.capacity-management__warning-sign__wrap {
  background: rgb(255, 13, 13);
  color: #fff;
  padding: 10px;
  text-align: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.capacity-management__warning-sign__wrap.yellow {
  background: gold;
}
.capacity-management__warning-sign__wrap i {
  font-size: 48px;
}

.capacity-management__sites {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
}
.capacity-management__sites p {
  font-size: 13px;
  margin: 0;
  line-height: 26px;
  padding: 5px 10px;
  border-bottom: 1px solid #fafafa;
}

.capacity-management__sites div:last-child p:last-of-type {
  border: 0;
}

/**
CONFIRMATION POPUP
 */
.confirmation-popup {
  background: #fff;
  border: 1px solid #ccc;
  display: none;
  margin: 0 auto;
  max-width: 100%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  z-index: 9999;
}

.confirmation-popup p {
  font-size: 13px;
}

/* INSTRUCTIONS */
.dual_enrollment_verification .instructions {
  border: 0;
  margin-bottom: 20px;
  min-height: 65px;
  max-width: 1280px;
  padding: 20px 20px 20px 70px;
  position: relative;
}
.dual_enrollment_verification .instructions p {
  margin: 0;
}
.dual_enrollment_verification .instructions:before {
  align-items: center;
  background: #eef0ff;
  border: rgb(230, 231, 232);
  border-radius: 50%;
  box-sizing: border-box;
  color: #5783fb;
  content: "i";
  display: flex;
  font-family: "Monotype Corsiva", serif;
  font-size: 20px;
  font-weight: bold;
  left: 20px;
  height: 30px;
  padding-left: 11px;
  position: absolute;
  width: 30px;
}
.dual_enrollment_verification .instructions .more-info-link {
  color: #5783fb;
  display: block;
  margin: 10px 0 0 0;
}
.dual_enrollment_verification .instructions .more-info {
  display: none;
  margin-top: 10px;
}

/* ./INSTRUCTIONS */
.dual_enrollment_verification .additional-header {
  color: #506079;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin: 20px auto;
  max-width: 800px;
  letter-spacing: 0.2px;
}

/* WARNINGS */
.dual_enrollment_verification .warning {
  background: #fff;
  border: 0;
  color: #445060;
  margin-bottom: 20px;
  min-height: 65px;
  padding-left: 70px;
  position: relative;
}
.dual_enrollment_verification .warning:before {
  align-items: center;
  background: #ee4036;
  border: rgb(230, 231, 232);
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  content: "!";
  display: flex;
  font-family: "Source Serif Variable", serif;
  font-size: 20px;
  font-weight: bold;
  left: 20px;
  height: 30px;
  padding-left: 11px;
  position: absolute;
  width: 30px;
  top: 15px;
}
.dual_enrollment_verification .warning-title {
  font-weight: 600;
  margin-bottom: 7px;
}

/* ./WARNINGS */
/* NOTIFICATIONS */
.notification {
  border: 0;
  display: none;
  margin-bottom: 20px;
  min-height: 65px;
  padding-left: 70px;
  position: relative;
}
.notification.active {
  display: block;
}
.notification.warning:before {
  align-items: center;
  background: gold;
  border: rgb(230, 231, 232);
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  content: "!";
  display: flex;
  font-family: "Source Serif Variable", serif;
  font-size: 20px;
  font-weight: bold;
  left: 20px;
  height: 30px;
  padding-left: 11px;
  position: absolute;
  width: 30px;
}
.notification.danger:before {
  align-items: center;
  background: #ee4036;
  border: rgb(230, 231, 232);
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  content: "!";
  display: flex;
  font-family: "Source Serif Variable", serif;
  font-size: 20px;
  font-weight: bold;
  left: 20px;
  height: 30px;
  padding-left: 11px;
  position: absolute;
  width: 30px;
}
.notification-title {
  font-weight: 600;
  margin-bottom: 7px;
}

/* ./NOTIFICATIONS */
/* NEAR MATCH PATIENT */
.near-match-patient-wrapper {
  clear: both;
  margin-bottom: 30px;
  min-height: 140px;
  max-width: 1280px;
  width: 100%;
}
.near-match-patient-wrapper p {
  margin: 0;
  font-size: 13px;
  line-height: initial;
}
.near-match-patient-wrapper .near-match-patient {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px;
}
.near-match-patient-wrapper .near-match-patient .patient-image {
  border: 1px solid #E6E7E8;
  border-radius: 10px;
  max-height: 120px;
  position: absolute;
  width: 120px;
}
.near-match-patient-wrapper .near-match-patient div {
  padding: 0 15px;
}
.near-match-patient-wrapper .near-match-patient div:last-of-type {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.near-match-patient-wrapper .near-match-patient div:last-of-type.difference {
  margin-right: -10px;
}
.near-match-patient-wrapper .near-match-patient div p:first-of-type {
  font-weight: bold;
  margin-bottom: 10px;
}
.near-match-patient-wrapper .near-match-patient div p:last-of-type {
  font-weight: 300;
}

/* ./NEAR MATCH PATIENTS */
/**
MAIN MENU SCROLLBAR
 */
#menu {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#menu::-webkit-scrollbar {
  width: 6px;
}
#menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#menu::-webkit-scrollbar-thumb {
  background: #888;
}
#menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.resizable-photo {
  cursor: pointer;
}
.resizable-photo.opened {
  max-height: 100vh;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 99999;
  left: 50%;
  max-width: inherit;
}

.laravel-filters {
  box-sizing: border-box;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.laravel-filter {
  box-sizing: border-box;
  background: #fff;
  border-radius: 100px;
  height: 25px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.laravel-filter.selected {
  box-sizing: border-box;
  border-radius: 100px;
  height: 25px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background: #1e85eb;
  color: #fff;
}

.laravel-filters > p {
  box-sizing: border-box;
  margin: 0;
}

.laravel-table {
  box-sizing: border-box;
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
  background: #fff;
  border-radius: 5px;
  padding: 20px 32px;
  width: 100%;
}

.laravel-table th {
  box-sizing: border-box;
  color: #414c53;
  font-size: 14px !important;
  padding: 15px 20px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.laravel-table td {
  box-sizing: border-box;
  padding: 15px 20px;
  text-align: center;
  border-block: 1px solid #b6cbda;
  font-weight: 700;
  border-right: 1px solid #b6cbda;
}

.laravel-table tbody tr td:last-child {
  border-right: 0;
}

.laravel-table tbody tr:last-child td {
  border-bottom: 0;
}

.laravel-button {
  box-sizing: border-box;
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  -webkit-appearance: button;
  width: 100%;
  align-items: center;
  border-radius: 5px;
  display: flex;
  font-size: 0.875rem;
  justify-content: center;
  height: 40px;
  cursor: pointer;
  background: #1e85eb;
  color: #fff;
  font-weight: 700;
}

.laravel-table-section {
  box-sizing: border-box;
}

.laravel-table-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.laravel-table-header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.laravel-table-header-buttons::after {
  background-color: #bfd2df;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.laravel-table-header-buttons > button {
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  font-size: 14px;
  margin-right: 10px;
}

.laravel-download-icon {
  box-sizing: border-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-download.svg");
  vertical-align: middle;
}

.laravel-table-pagination-length {
  box-sizing: border-box;
  position: relative;
  color: #8a8a8a;
  padding-left: 15px;
}

.laravel-table-pagination-length > select {
  box-sizing: border-box;
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-weight: inherit;
  color: inherit;
  text-transform: none;
  appearance: none;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  -webkit-print-color-adjust: exact;
  border-radius: 5px;
  border: 1px solid #bfd2df;
  margin: 0 0 0 15px;
  width: 90px;
  background-color: #dfe5ee;
}

.laravel-table-footer {
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: flex-end;
}

.laravel-table-footer > .laravel-table-pagination-label {
  color: #616161;
  font-size: 13px;
}

.laravel-table-pagination-icon-first {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-first.svg");
}

.laravel-table-pagination-icon-prev {
  display: inline-block;
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-prev.svg");
}

.laravel-table-pagination-icon-next {
  display: inline-block;
  width: 8px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-next.svg");
}

.laravel-table-pagination-icon-last {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../images/laravel-pagination-last.svg");
}

.laravel-activity-status {
  justify-content: center;
  align-items: center;
  display: flex;
}

.laravel-activity-status > svg {
  margin-right: 1em;
}

.laravel-activity-status.active > svg > circle {
  fill: #A6D68F;
}

.laravel-activity-status.sent > svg > circle {
  fill: #3fb5d3;
}

.laravel-activity-status.failed > svg > circle {
  fill: #e42d2d;
}

.laravel-activity-status.unknown > svg > circle {
  fill: #8397A5;
}

.laravel-no-data-message {
  text-align: center;
  font-size: 14px !important;
  color: #888;
  margin: 20px 0;
}

.laravel-table td:last-child a {
  color: #0f4872;
  font-size: 14px !important;
  text-decoration-line: underline;
  width: calc(100% - 17px);
  text-align: left;
}

/*# sourceMappingURL=style.css.map */
