@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V1s.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V1s.ttf) format('truetype');
}
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #f3f6ff;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
div,
span,
p {
  font-size: 0.9rem;
}
a {
  text-decoration: none;
}
.logo-container {
  padding: 10px 30px;
  max-height: 80px;
  overflow: hidden;
}
.logo-container img {
  width: 10%;
}
.dropdown-component {
  position: relative;
}
.text-danger {
  color: #dc3545 !important;
}
.error-message {
  display: none;
  color: red;
  font-size: small;
  animation: shake 0.3s ease-in-out;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #7d879c;
}
.form-check-label {
  margin-bottom: 0;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #a71d2a !important;
}
.dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 51vh;
  width: 200px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 0px 15px 46px -30px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 0px 15px 46px -30px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 15px 46px -30px rgba(0, 0, 0, 0.65);
}
.dropdown input {
  margin-right: 10px;
}
.dropdown .dropdown-item {
  padding: 10px;
  flex: 1;
  min-width: fit-content;
  font-size: 0.9rem;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}
.dropdown .dropdown-item.active .bi {
  color: #1bcdbb;
}
.dropdown .dropdown-item .bi {
  font-size: 15px;
  margin-right: 10px;
  color: #d5d5d5;
}
.dropdown .dropdown-item:hover {
  background-color: #f2f2f2;
}
.sidenav {
  position: fixed;
  display: inline-block;
  height: 100vh;
  background-color: #3f526f;
  padding-top: 10vh;
  z-index: 1000;
  overflow: hidden;
}
.sidenav .nav-item {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  margin: 5px 0;
  transition: 0.2s;
  width: 300px;
  max-width: 300px;
  cursor: pointer;
}
.sidenav .nav-item i {
  margin-right: 25px;
  font-size: 1.5rem;
}
.sidenav .nav-item:hover {
  background-color: #e70004;
  transition: 0.2s;
}
.sidenav.expand {
  width: 300px;
  animation: slideOut 0.3s forwards;
  transition: 0.2;
}
.side-nav-card {
  padding: 30px;
  background-color: #f2f7ff;
  border-radius: 5px;
  margin-right: 2rem;
}
.side-nav-card .faq-side-nav-header {
  font-size: 1.5rem;
  color: #2a2a2a;
}
.side-nav-card .nav-section {
  margin-top: 20px;
}
.side-nav-card .bullet-title {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #4a4a4a;
  font-weight: 600;
}
.side-nav-card .bullet-title .bi {
  margin-right: 5px;
}
.side-nav-card .no-bullet-list {
  margin-top: 5px;
}
.contact-us-form {
  padding: 2rem;
  margin-left: 2rem;
}
.contact-us-form .form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.contact-us-form .form-item {
  margin-bottom: 20px;
}
.contact-us-form .form-item label {
  margin-bottom: 5px;
  font-weight: 600;
  color: grey;
}
.contact-us-form .form-item .textarea {
  min-height: 100px;
  padding: 10px;
  border: 1px solid rgba(160, 160, 160, 0.676);
}
@keyframes slideOut {
  0% {
    width: 65px;
  }
  100% {
    width: 300px;
  }
}
@keyframes slideIn {
  0% {
    width: 300px;
  }
  100% {
    width: 65px;
  }
}
.main-content {
  position: relative;
  display: inline-block;
  width: calc(100% - 105px);
  min-height: 100vh;
  margin-left: 65px;
  padding: 0 20px 90px 20px;
}
.main-content.white {
  background-color: white;
  padding: 2rem;
}
.content {
  padding: 20px;
}
.header-1 {
  padding: 20px;
}
.header-2 {
  margin: 0 20px;
}
.header-2 .header-text {
  color: #373737;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}
.header-2 .header-subtext {
  margin: 0;
  max-width: 80%;
}
.header-2 .header-icon {
  color: #e70004;
}
.header-2 .header-icon .bi {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #12d5c1;
  color: white;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  margin-right: 20px;
  -webkit-text-stroke: 0.5px;
}
.header-2 .header-text i {
  margin-right: 10px;
}
.header-2 p {
  font-size: 0.8rem;
  margin-top: 5px;
}
.header-2.white {
  background-color: white;
}
.card-group {
  display: flex;
  align-items: stretch;
}
.card-group .card {
  min-width: 150px;
}
.card-group .card:not(:last-of-type) {
  margin-right: 10px;
}
.card,
.card2 {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: -2px 20px 45px -24px rgba(0, 0, 0, 0.3);
}
.card.purple,
.card2.purple {
  background-color: #3f526f;
  color: white;
}
.card.purple .icon-btn-group span,
.card2.purple .icon-btn-group span {
  color: white;
  border-color: white;
}
.card .card-title,
.card2 .card-title {
  padding-left: 50px;
  color: #272727;
}
.card2 {
  padding: 30px 20px;
  box-shadow: -2px 20px 35px -24px rgba(0, 0, 0, 0.3);
}
.noshadow {
  box-shadow: none;
}
.icon-card-1 {
  min-width: 200px;
  padding: 10px 20px;
}
.icon-card-1 .card-icon .bi {
  font-size: 3rem;
  -webkit-text-stroke: 0.1px;
  margin-right: 20px;
}
.icon-card-1 .value {
  color: #e70004;
  font-size: 1.5rem;
  font-weight: 600;
}
.icon-card-2 {
  height: calc(100% - 40px);
  background-color: white;
}
.icon-card-2 .bi {
  font-size: 3rem;
  -webkit-text-stroke: 0.1px;
}
.icon-card-2 .x-center .bi {
  color: #525151;
  margin-left: 10px;
}
.icon-card-2 h3 {
  font-size: 1.2rem;
}
.icon-card-2 p {
  font-size: 0.8rem;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.table thead th {
  text-align: left;
  padding: 10px;
}
.table thead tr:first-of-type th {
  text-align: center;
  padding: 15px;
  background-color: #3f526f;
  font-weight: 600;
  color: #404757;
}
.table thead tr:first-of-type th:first-of-type {
  border-top-left-radius: 5px;
  padding-left: 15px;
}
.table thead tr:first-of-type th:last-of-type {
  border-top-right-radius: 5px;
  padding-right: 15px;
}
.table thead tr:last-of-type th {
  background-color: #e9ebf5;
}
.table thead tr:last-of-type th:first-of-type {
  border-bottom-left-radius: 5px;
  padding-left: 15px;
}
.table thead tr:last-of-type th:last-of-type {
  border-bottom-right-radius: 5px;
  padding-right: 15px;
}
.table thead tr:last-of-type th input,
.table thead tr:last-of-type th select {
  border: none;
  width: calc(100% - 20px);
}
.table thead tr:last-of-type th select {
  border-right: 5px solid white;
}
.table td {
  text-align: center;
  vertical-align: middle;
}
.table tbody td {
  padding: 5px;
}
.table tbody tr:nth-of-type(even) {
  background-color: #f3f3f8;
}
.table tbody tr:nth-of-type(odd) {
  background-color: white;
}
.table tbody td.pill-group {
  width: 10%;
  padding: 10px 0;
}
.table tbody td.pill-group .pill {
  max-width: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 0;
}
.table tbody div.center-block {
  display: block;
}
.table tbody div.center-block button {
  margin: auto;
}
.filters-container .all-filters {
  font-weight: 600;
  color: #5a5a5a;
}
.filters-container .all-filters i {
  -webkit-text-stroke: 1px;
  margin-left: 5px;
}
.filters-container .filter-set {
  margin-right: 10px;
  margin-bottom: 10px;
  flex: 1;
}
.filters-container .filter-set label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-size: 0.9rem;
  padding-left: 2px;
  color: #767985;
}
.filters-container .filter-set:last-of-type {
  margin-right: 0;
}
.filters-container input.filter-input {
  width: calc(100% - 20px);
}
.pill-filters {
  margin: 15px 0;
}
.pill-group {
  font-weight: 600;
  color: #949494;
}
.pill-group .pill {
  margin-right: 5px;
}
.pill {
  display: inline-block;
  background: none;
  padding: 3px 7px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 5px;
  background-color: #e7e7e7;
  color: #737373;
  font-size: 11px;
  font-weight: 600;
}
.pill.sm {
  font-size: 11px;
}
.pill.filled.purple {
  background-color: #3f526f;
  color: white;
}
.pill.filled.yellow {
  background-color: #e70004;
  color: #282828;
}
.pill.filter {
  padding: 7px 15px;
}
.pill.filter b {
  opacity: 0.8;
}
.pill .bi-x-lg {
  -webkit-text-stroke: 1px;
  margin-left: 10px;
}
.pill b {
  font-weight: 600;
}
.pill .remove-tag {
  cursor: pointer;
}
.tag-group {
  display: flex;
  justify-content: flex-start;
}
.tag-group .tag {
  background-color: #e7e7e7;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 12px;
}
.tag-group .tag .bi {
  margin-left: 10px;
  cursor: pointer;
  -webkit-text-stroke: 1px;
}
.btn-group {
  display: flex;
}
.btn-group .btn:not(last-of-type) {
  margin-right: 10px;
}
.btn.cancel-btn[style='display: none;'] + .btn.confirm-btn {
  margin-left: auto;
}
.upload-inbox-text {
  max-width: 250px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.9rem;
}
.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 5px;
  outline: none;
  border: 0;
  font-size: 0.8rem;
  font-weight: 600;
  max-height: 36px;
  min-height: 36px;
  min-width: fit-content;
  transition: 0.2s;
}
.btn .bi {
  font-size: 0.9rem;
  -webkit-text-stroke: 0.5px;
}
.btn .bi-caret-down-fill {
  font-size: 0.6rem;
}
.btn .bi-left,
.btn .bi:first-of-type {
  margin-right: 10px;
}
.btn .bi-right {
  margin-left: 10px;
}
.btn.gray {
  background-color: #4e525c;
  color: white;
}
.btn.gray.bordered {
  background: none;
  border: 2px solid #4e525c;
  color: #4e525c;
}
.btn.purple {
  background-color: #3f526f;
  color: white;
}
.btn.green {
  background-color: #2bb52b;
  color: white;
}
.btn.red {
  background-color: #f7595e;
  color: white;
}
.btn.red:hover {
  color: #3f526f;
  background-color: white;
}
.btn.white {
  background-color: #ffffff;
  color: #2e2e2e;
}
.btn.blue {
  background-color: #3f526f;
  color: white;
}
.btn.turquiose {
  background-color: #1bcdbb;
  color: white;
}
.btn.lg {
  padding: 10px 30px;
}
.btn:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  filter: saturate(180%);
  transition: 0.3s;
}
.btn.inactive {
  background-color: #eaeaea;
  color: grey;
  pointer-events: none;
}
.btn.btn-icon {
  background: none;
}
.btn.btn-icon i.bi {
  margin-right: 0;
  color: grey;
  font-size: 20px;
  -webkit-text-stroke: 0.5px;
}
.btn.btn-icon:hover {
  box-shadow: none;
  color: #2a2a2a;
}
.btn.disabled {
  pointer-events: none;
  background-color: grey;
}
.btn.go-to .bi-arrow-right {
  transform: translate(0, 0);
  transition: 0.2s;
}
.btn.go-to:hover .bi-arrow-right {
  transform: translate(10px, 0);
  transition: 0.2s;
}
.search-input {
  outline: 1px solid rgba(160, 160, 160, 0.676);
  padding: 3px 10px;
  border-radius: 5px;
}
.search-input input {
  border: 0;
  outline: none;
}
footer {
  background-color: rgba(0, 0, 0, 0.065);
  padding: 2rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-left: -15px;
}
footer span {
  font-size: 0.8rem;
  color: grey;
}
footer img {
  width: 25%;
  max-width: 200px;
}
input {
  padding: 7px 10px;
  outline: none;
  border: 1px solid rgba(160, 160, 160, 0.676);
  border-radius: 2px;
}
input[type="checkbox"] {
  height: 15px;
  width: 15px;
}
select {
  padding: 7px 10px;
  outline: 1px solid #ababab;
  border: 0;
  border-right: 5px solid white;
  border-radius: 2px;
  width: 100%;
}
.icon-btn-group {
  margin-left: 50px;
}
.icon-btn-group .icon-btn:not(:last-of-type) {
  margin-right: 5px;
}
.icon-btn {
  cursor: pointer;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid grey;
  font-size: 12px;
  color: grey;
}
.icon-btn.bi-plus-lg {
  font-size: 15px;
  -webkit-text-stroke: 1px;
}
.icon-btn:hover {
  color: #323232;
  border-color: #323232;
  transition: 0.3s;
}
.pagination {
  padding: 20px;
}
.pagination .page {
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  box-shadow: -2px 5px 15px -5px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}
.pagination .page.active {
  background-color: #1bcdbb;
  color: white;
}
.pagination-settings {
  margin-right: 20px;
  margin-left: auto;
}
.pagination-settings span {
  min-width: fit-content;
  margin-right: 15px;
  font-weight: 600;
  color: #8f919e;
}
.modal {
  background-color: white;
  height: auto;
  border-radius: 10px;
  box-shadow: -2px 5px 15px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 30px 40px;
  max-height: 73vh;
}
.modal .modal-header {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.modal .modal-header h3 {
  font-weight: 600;
}
.modal .modal-header .close-btn {
  font-size: 2rem;
  cursor: pointer;
}
.modal .modal-body {
  font-size: 1rem;
  border-radius: 10px;
  max-height: 57vh;
  overflow: hidden;
  padding: 0 30px;
  margin: 0 -30px;
  overflow-y: auto;
  background-color: white;
}
.modal .modal-footer {
  margin-top: 20px;
  justify-content: flex-end;
}
.modal .modal-footer .btn:not(:first-of-type) {
  margin-left: 10px;
}
.modal .modal-footer.space-between {
  justify-content: space-between;
}
.dialog-message {
  text-align: center;
  width: 100%;
}
.dialog-icon > .bi.bi-check-circle-fill {
  font-size: 50px;
  color: #20a720;
}
.dialog-icon > .bi {
  font-size: 50px;
  color: #939393;
}
.form .form-item-group {
  margin-bottom: 20px;
}
.form .form-item-group.bottom5 {
  margin-bottom: 5px;
}
.form .form-item {
  margin-bottom: 15px;
}
.form .form-item:not(:last-of-type) {
  margin-right: 20px;
}
.form .form-item label {
  margin-bottom: 5px;
  color: #272727;
  font-size: 0.9rem;
  font-weight: 500;
}
.form .form-item > input {
  min-height: 36px;
  max-height: 36px;
  padding: 0px 10px;
  border-radius: 5px;
}
.form .icon-input {
  border: 1px solid rgba(160, 160, 160, 0.676);
  padding: 2px 10px;
  border-radius: 5px;
}
.form .icon-input .bi {
  color: grey;
}
.form .icon-input input {
  border: 0;
  width: 100%;
}
.list-group {
  display: flex;
  flex-direction: column-reverse row-reverse;
  flex-wrap: wrap;
  padding: 20px;
}
.list-group .list-item {
  padding: 10px 20px;
}
.list-group .list-item .list-item-num {
  font-size: 25px;
  margin-right: 20px;
  color: gray;
}
.list-group .list-item .list-item-col {
  justify-content: center;
  text-align: center;
  margin-left: auto;
  background-color: #d5e0fc;
  margin-right: 15px;
  padding: 0 20px;
  height: 55px;
  border-radius: 5px;
}
.list-group .list-item .list-item-col span:not(.value) {
  line-height: 0.7rem;
  font-size: 0.7rem;
  color: #4e4e4e;
  margin-top: 5px;
}
.list-group .list-item .list-item-col .value {
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.list-group .list-item .list-value {
  font-weight: 600;
}
.list-group .list-item span {
  margin: 0;
}
.date-input-group input:first-of-type {
  margin-right: 5px;
}
.columns-selection-btn {
  margin-left: auto;
}
.columns-selection-btn .bi {
  margin-left: 10px;
  margin-right: 0 !important;
}
.overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  padding-top: 7vh;
  background: rgba(0, 0, 0, 0.272);
  z-index: 99;
  top: 0;
  left: 0;
}
.legend-group .legend {
  padding: 10px 20px;
  border-radius: 5px;
  color: #3f526f;
}
.legend-group .legend .legend-label {
  margin-right: 10px;
  color: #626d7e;
  line-height: 0.5rem;
}
.legend-group .legend .legend-val {
  font-weight: 700;
  font-size: 2.5em;
}
.tile-container .tile {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px;
}
.tile-container .tile .badge {
  border-radius: 15px;
  color: #3823d6;
  background-color: #eae8fe;
  padding: 5px 7px;
  margin-left: 7px;
  font-size: 11px;
  font-weight: 500;
}
.tile-container .main-text {
  font-size: 15px;
  line-height: 14px;
  font-weight: 600;
}
.tile-container .sub-text {
  font-size: 12px;
  color: grey;
}
.tile-container .tile .img-container {
  border-radius: 100px;
  height: 45px;
  width: 45px;
  min-height: 45px;
  min-width: 45px;
  max-height: 45px;
  max-width: 45px;
  overflow: hidden;
  margin-right: 15px;
}
.tile-container .tile .img-container img {
  width: 100%;
}
.search-results.tile-container .tile {
  padding: 10px 15px 10px 10px;
  margin-right: 10px;
}
.search-results.tile-container .tile .img-container {
  height: 25px;
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  max-height: 25px;
  max-width: 25px;
  margin-right: 10px;
}
.employee-tile {
  cursor: pointer;
}
.left10 {
  margin-left: 10px;
}
.left20 {
  margin-left: 20px;
}
.right20 {
  margin-right: 20px;
}
.right10 {
  margin-right: 10px;
}
.bottom20 {
  margin-bottom: 20px;
}
.bottom10 {
  margin-bottom: 10px;
}
.top20 {
  margin-top: 20px;
}
.top10 {
  margin-top: 10px;
}
.top5 {
  margin-top: 5px;
}
.left20 {
  margin-left: 20px;
}
.col10 {
  width: 10%;
}
.col20 {
  width: 20%;
}
.col30 {
  width: 30%;
}
.col40 {
  width: 40%;
}
.col50 {
  width: 50%;
}
.col60 {
  width: 60%;
}
.col70 {
  width: 60%;
}
.col90 {
  width: 90%;
}
.col95 {
  width: 95%;
}
.col100 {
  width: 100%;
}
.three-cols > * {
  width: calc(100% / 3);
}
.flex,
.column,
.x-center,
.xy-center,
.y-center,
.space-between {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.column {
  flex-direction: column;
}
.x-center,
.xy-center {
  align-items: center;
}
.y-center,
.xy-center {
  justify-content: center;
}
.x-start {
  align-items: flex-start;
}
.space-between {
  justify-content: space-between;
}
.space-around {
  justify-content: space-around;
}
.left-auto {
  margin-left: auto;
}
.grey {
  color: grey;
}
.turquiose {
  color: #12d5c1;
}
.black {
  color: #313131;
}
.red {
  color: #d24444;
}
.hidden {
  display: none !important;
}
g text {
  font-weight: 700;
}
#top10Bar svg > g {
  transform: translateY(-30px);
}
.width500 {
  max-width: 500px;
}
.height119 {
  min-height: 119px;
}
.opacity0 {
  opacity: 0;
  pointer-events: none;
}
.margin0 {
  margin: 0 !important;
  margin-right: 0;
  margin-left: 0;
}
.x-axis-label,
.y-axis-label {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  z-index: 1;
  color: #3f526f;
  font-size: 17px;
  letter-spacing: 0.3px;
}
.y-axis-label {
  left: 40px;
  text-align: left;
  transform: rotate(-90deg);
  width: 50px;
  top: 300px;
}
.x-axis-label {
  bottom: 80px;
}
