@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px;
}

body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  background: rgba(240, 240, 240, 0.8980392157);
  font-size: 1rem;
}

a {
  transition: all 0.3s;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  /*min-height: calc(100vh - $navbar_max_height - $footer_max_height);*/
  transition: all 0.3s;
  width: 90%;
  margin: 0 auto;
  overflow-y: auto;
  padding: 0 0.75rem;
  /* Makes sure footer "sticks" to the bottom by telling content to take up remaining space available in window */
  flex: 1;
  position: relative; /* Necessary for absolute positioning of child elements to position relative to this container */
}

#footer.login {
  margin-top: 0;
}

.heading-primary {
  font-size: 4.5rem;
}

.ui-autocomplete,
.ui-front {
  z-index: 1059;
}

.bottom-buffer-1 {
  margin-bottom: 10px;
}

/* This will primarily be used to force the color of svg images to be white */
.white-filter {
  filter: grayscale(1) brightness(4);
}

.usafeBlueOne {
  color: #008080;
}

.usafeBlueTwo {
  color: #00AFAC;
}

.usafeBlueThree {
  color: #124C83;
}

.usafeYellow {
  color: #ECAC00;
}

.usafeGrey {
  color: #BFBFBF;
}

.usafeRedOne {
  color: #982039;
}

.usafeRedTwo {
  color: #840000;
}

.usafeTextOne {
  color: #404040;
}

.usafeTextTwo {
  color: #262626;
}

.content-link {
  color: #008080;
  font-weight: 700;
}

.support-email-link {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  transition: none;
}
.support-email-link:hover {
  text-decoration: underline;
  color: #0150a4;
}
.support-email-link:focus {
  color: #007bff !important;
}
.support-email-link:focus:hover {
  text-decoration: underline;
  color: #0150a4 !important;
}

#resource-table, #scheduled-table, #cha-table, #sent-table {
  font-size: 1.4rem;
}
#resource-table thead, #resource-table tbody tr, #scheduled-table thead, #scheduled-table tbody tr, #cha-table thead, #cha-table tbody tr, #sent-table thead, #sent-table tbody tr {
  width: 100%;
  table-layout: fixed;
}

/* This vertically centers the content 
   within a box using flex positioning */
.u-color-red {
  color: red !important;
}

.u-color-white {
  color: white !important;
}

.u-underline {
  text-decoration: underline !important;
}

.u-default-font {
  font-size: 1.4rem !important;
}

.usafeus_btn--blue-one {
  font-size: 1.3rem;
  font: normal normal normal 1.535882rem/2.0734415925rem Open Sans;
  font-weight: bold;
  background-color: #00AFAC;
  color: white;
  border-radius: 2rem;
  transition: all 0.3s;
}
.usafeus_btn--blue-one:hover {
  background-color: #008080;
  color: white;
}
.usafeus_btn--blue-one:active {
  outline: none;
  color: white;
  border: none;
}
.usafeus_btn--blue-one:focus {
  outline: none;
  color: white;
}
.usafeus_btn--blue-two {
  background-color: #00AFAC;
  color: white;
}
.usafeus_btn--blue-two:hover {
  background-color: #008080;
  border-color: #008080;
  color: white;
}
.usafeus_btn--blue-two:active {
  outline: none;
  color: white;
}
.usafeus_btn--blue-two:focus {
  outline: none;
  color: white;
}
.usafeus_btn--white {
  background-color: white;
}
.usafeus_btn--grey {
  background-color: #BFBFBF;
  color: black;
}
.usafeus_btn--add-phone {
  background-color: red;
  color: white;
}
.usafeus_btn--bold {
  font-weight: bold;
}

.force-line-break {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.rounded-top-10 th:first-child {
  border-top-left-radius: 10px;
}
.rounded-top-10 th:last-child {
  border-top-right-radius: 10px;
}

.modal-title-cutoff {
  display: inline-block;
  text-overflow: ellipsis;
  /* After $chars characters, cut off the text with an ellipsis */
  overflow: hidden;
  white-space: nowrap;
  max-width: 37ch;
}

.sticky-thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

th {
  position: relative;
  z-index: 10;
  background-color: transparent;
  padding: 12px;
  text-align: left;
  overflow: hidden;
}

[usafe-title]:hover:after {
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 0.3s;
  visibility: visible;
}

[usafe-title]:after {
  content: attr(usafe-title);
  background-color: #00AFAC;
  color: #FFF;
  font-size: 17px;
  position: absolute;
  padding: 1px 5px 2px 5px;
  bottom: -0.3rem;
  left: -0.5rem;
  white-space: nowrap;
  box-shadow: 1px 1px 3px #222222;
  opacity: 0;
  border: none;
  border-radius: 2rem;
  z-index: 99999;
  visibility: hidden;
}

[usafe-title] {
  position: relative;
}

.fs-1rem {
  font-size: 1rem;
}

.login__navbar {
  background-color: #008080;
  color: white;
  padding: 1%;
}
.login__navbar__nav-link {
  display: inline-flex;
  align-items: center;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  font-size: 2rem;
}
.login__content {
  display: flex;
  justify-content: space-between;
}
.login__logo {
  /* Prevent it from exceeding container width */
  max-width: 20%;
  /* Maintain aspect ratio */
  height: auto;
}
.login__heading {
  text-align: center;
  display: inline-flex;
  align-items: center;
  font-size: 2.25rem;
}
.login__body {
  font-size: 1.5rem;
}
.login__box {
  color: white;
  background-color: #008080;
  padding: 2rem 1rem 0 1rem;
  border-radius: 2rem;
}
.login__box__heading {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.login__box__footer {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.login__box__footer p {
  margin: 0;
}
.login__box__footer p:first-child {
  margin-bottom: 1rem;
}
.login__box__footer__contact-link {
  text-decoration: underline;
}
.login__form__input-label {
  font-weight: 400;
  font-size: 1.2rem;
}

.legal-links {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  transition: none;
}
.legal-links:hover {
  text-decoration: underline;
  color: #0150a4;
}
.legal-links:focus {
  color: #007bff !important;
}
.legal-links:focus:hover {
  text-decoration: underline;
  color: #0150a4 !important;
}

.login-footer {
  background-color: #008080;
  color: white;
  padding-bottom: 0.5%;
  text-align: center;
  padding-top: 1%;
}

body {
  display: flex;
  flex-direction: column;
}

.password-reset {
  font-size: 1.4rem;
  /* This provides some better alignment of the logo with the other reset password
  and login pages */
  padding-bottom: 5rem;
}
.password-reset__logo {
  max-width: 100%;
}
.password-reset__heading {
  text-align: center;
  margin-top: -1rem;
  font-size: 3rem;
  color: #008080;
}
.password-reset__form__input-label {
  font-weight: 400;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .password-reset {
    overflow: hidden;
  }
}
:root {
  --usafe-logo-max-height: 40px;
}

.nav-item:hover > .dropdown-menu {
  display: block;
}
.nav-item.logout-wrapper:hover .dropdown-menu {
  display: block;
}
.nav-item .dropdown-menu {
  border-radius: 0.75rem;
}
.nav-item.logout-wrapper {
  /* Make the teal background only cover the necessary portion */
  width: min-content;
  /* Adds a transparent border */
  border-bottom: 13px solid transparent;
  /* Note: This can cause overlapping issues (see below z-index property setting) */
  transform: translateY(7px);
  /* Fix the overlapping problem with the logout button */
  z-index: 1;
}

.us-navbar-change-campus__dropdown {
  max-height: 565px;
  overflow-y: auto;
}

#navbar .navbar {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  /* This div is the div container for the hamburger bar content (i.e. what gets hidden when
  the page gets too small to show everything from right to left) */
  /* Make campus header and hambar sit side-by-side */
  /* Necessary to preserve the centering of all 
  nav-items while giving border to logout dropdown */
  /* When the navbar contents are in the hamburger bar, we need
     these styles to keep this content at the top right of the navbar */
}
#navbar .navbar > div {
  /* We only want to center the content when it's not shrunk into a hamburger bar 
  (we obviously don't need to center the hamburger bar) */
}
@media (min-width: 992px) {
  #navbar .navbar > div {
    justify-content: center;
  }
}
#navbar .navbar-toggler {
  max-height: min-content;
}
#navbar .navbar .usafe-campus-header-and-hambar {
  display: inline-flex;
  justify-content: space-between;
}
#navbar .navbar-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  #navbar .navbar .usafeus-logo-and-dashboard-version {
    position: absolute;
    top: 15px;
    right: 0;
  }
  #navbar .navbar .usafeus-logo-and-dashboard-version #dashboard-version-number {
    top: var(--usafe-logo-max-height) !important;
  }
}
#navbar .navbar .usafeus-logo-and-dashboard-version {
  display: flex;
  /* Stacks items vertically (i.e. like a stack of books) */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Make hidden by default but then show upon hover */
}
#navbar .navbar .usafeus-logo-and-dashboard-version .nav-link {
  max-height: calc(var(--usafe-logo-max-height));
}
#navbar .navbar .usafeus-logo-and-dashboard-version #dashboard-version-number {
  opacity: 0;
  color: #124C83;
  /* Position relative to the container it's in */
  position: absolute;
  /* Dynamically push the text past the logo image before it */
  top: calc(var(--usafe-logo-max-height) + 20px);
}
#navbar .navbar .usafeus-logo-and-dashboard-version:hover #dashboard-version-number {
  opacity: 1;
}
#navbar li.nav-item > a {
  font-weight: bold;
  font-size: 13px;
  /* important to override bootstrap */
  padding-left: 8px !important;
  padding-right: 8px !important;
}
#navbar .col-md-6 {
  color: #3EC0BA;
  font-weight: bold;
  flex: 1;
}
#navbar .col-md-6 > div {
  border-bottom: #3EC0BA solid 3px;
  padding-bottom: 2px;
  margin-bottom: 4px;
}

.us-navbar {
  font-size: 1.1rem;
  flex-grow: unset !important;
  /* This is the parent element of the &__logo element */
  /* This should apply to the logout button in the logout dropdown */
  /* These styles ensure the columns stay in their defined width */
  /* Style for the dropdown box */
  /* Style for smaller screens */
}
.us-navbar .nav-link:hover {
  color: #007c7c;
}
.us-navbar-logo-anchor {
  /*width: calc(25px + $navbar_side_logo_boxes_width);*/
  text-align: right;
}
.us-navbar__logo {
  max-height: inherit;
}
.us-navbar ul li a {
  color: #124C83;
  font-weight: 500;
  /* This makes the link for the page the user is on show differently */
}
.us-navbar ul li a.active-link {
  color: #00AFAC;
}
.us-navbar ul li a.logout-anchor {
  border-radius: 0.375rem;
  color: #00AFAC;
  /* The color change is applied to the nested button, so we need this
  transition setting here */
  transition: all 0.3s !important;
}
.us-navbar ul li a.logout-anchor:hover {
  color: #124C83 !important;
}
.us-navbar ul li a button {
  color: inherit;
  font-weight: bold;
}
.us-navbar ul li a button:hover {
  color: inherit;
}
.us-navbar-logout__dropdown {
  /* This is to fix the offset of the dropdown content so it's not
  touching the teal Logout button */
  top: calc(3.25rem + 7px);
  /* Stop size auto-adjustment bug for teal background and button */
  min-width: auto !important;
}
.us-navbar #logout-btn {
  color: white;
}
.us-navbar-app-content__dropdown .tab-content {
  white-space: nowrap;
  flex-wrap: nowrap !important;
  width: 100%;
}
.us-navbar-app-content__dropdown .tab-content > * {
  width: auto !important;
}
.us-navbar-app-content__dropdown .tab-content li {
  min-width: max-content;
}
.us-navbar-analytics__dropdown {
  width: 21rem;
}
.us-navbar__version-number {
  color: black;
  text-align: center;
}
.us-navbar .dropdown-menu.us-navbar-contact__dropdown {
  max-width: 350px; /* Increase width */
  min-width: 250px; /* Ensure it doesn't get too narrow */
  max-height: 150px; /* Reduce vertical length */
  padding: 10px; /* Adjust padding for better spacing */
  overflow-wrap: break-word; /* Ensure long text wraps */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Compatibility for older browsers */
  overflow-y: auto; /* Add scroll if content exceeds max height */
}
@media (max-width: 768px) {
  .us-navbar .dropdown-menu.us-navbar-contact__dropdown {
    max-width: 90%; /* Shrink for mobile */
    font-size: 0.9rem; /* Slightly smaller text size */
  }
}

.us-footer {
  max-height: 100px;
  width: 100%;
  padding: 5px 0;
  background: #FFFFFF 0% 0% no-repeat padding-box;
}
.us-footer > * {
  display: inline-flex;
  justify-content: center;
}
.us-footer img {
  max-height: 100%;
}
.us-footer__logo {
  height: 4rem;
  width: auto;
}
.us-footer__copyright {
  color: #124C83 !important;
  /* This one should be styled a little differently (some space
     should exist in between the two policy links) */
  justify-content: space-evenly !important;
}
.us-footer__bolded_underlined {
  font-weight: bold !important;
  text-decoration: underline !important;
}

/* The login page footer should be a bit larger than the regular footer */
.login-footer .us-footer__logo {
  height: 5rem;
}

.current-campus-header {
  /*width: $navbar_side_logo_boxes_width;*/
}
.current-campus-header .col:first-child {
  flex-grow: 1; /* The name should grow to take up more space than the campus selection */
}
.current-campus-header__logo {
  height: auto;
}
.current-campus-header img {
  width: 50px;
  height: 50px;
}
.current-campus-header .current-campus-name {
  color: #124C83;
  font: normal normal 12px Open Sans;
}

.main-dashboard {
  font-size: 1.3rem;
}
.main-dashboard__content .main-dashboard__card-btn {
  width: 6em;
}
.main-dashboard .container {
  display: flex; /* Flex on the main container to ensure row-based layout */
  flex-wrap: wrap; /* Allow wrapping for cards in smaller screens */
  gap: 1rem; /* Space between cards */
}
.main-dashboard .row {
  width: 100%; /* Ensure row spans the full width */
}
.main-dashboard .col-md-3 {
  display: flex;
  flex-direction: column; /* Stacks card content vertically */
}
.main-dashboard .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space out card content */
  height: 100%; /* Ensure all cards stretch to the tallest one */
  padding: 1rem; /* Add padding inside the card */
  box-sizing: border-box;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1607843137);
}
.main-dashboard .card-body {
  display: flex;
  flex-direction: column;
  /* Ensure content is centered up and down (this makes "Social Media Posts" card body centered) */
  justify-content: center;
  /* Ensures the card body takes up available space */
  flex-grow: 1;
}
.main-dashboard .card-text {
  flex-grow: 1; /* Pushes the "Go" button down if the description is short */
}
.main-dashboard .main-dashboard__card-btn {
  margin-top: 1rem; /* Add spacing above the button */
}
.main-dashboard__announcements {
  background-color: #124C83;
  border-radius: 1.125rem;
}
.main-dashboard__card {
  border-radius: 0.5rem;
}
.main-dashboard__card .card-title {
  color: #124C83;
}
.main-dashboard__card-body {
  flex-grow: 1;
}
.main-dashboard__card-body__icon {
  height: 75px;
  width: 75px;
}
.main-dashboard__card-body__social_media_posts_icon {
  max-height: 185px;
  max-width: 185px;
  width: 80% !important;
  margin: auto;
}
.main-dashboard .social_media_posts_content_card {
  display: flex;
  /* Stacks items vertically (i.e. like a stack of books) */
  flex-direction: column;
  justify-content: center;
}
.main-dashboard .social_media_posts {
  width: 8em;
}
.main-dashboard__card-btn {
  font-size: 1.3rem;
  background-color: #00AFAC;
  color: white;
  font-weight: bold;
  border-radius: 2rem;
  transition: all 0.3s;
}
.main-dashboard__card-btn:hover {
  background-color: #008080;
  color: white;
}

.staff__icon {
  height: 100px;
}
.staff__i {
  height: 100px;
  padding-left: 10px;
}
.staff__modal {
  font-size: 1.3rem;
}
.staff__modal .modal-title {
  color: #124C83;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: large;
}
.staff__modal label {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
}
.staff__modal .modal-content {
  padding: 1rem;
}
.staff__modal .modal-header {
  border: none;
}
.staff__modal .form-control {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.staff__modal .modal-text {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
}
.staff__modal .modal-footer {
  border-top: none;
}
.staff__modal .form-control::placeholder {
  color: #bdbdbd;
}
.staff__modal #payload, .staff__modal #edit_payload {
  height: 85px;
}
.staff__modal button[type=Submit] {
  border-radius: 50px;
  width: 100%;
  height: 3.839707rem;
  margin-top: 0.5rem;
  background-color: #00AFAC;
}
.staff__modal button[type=Submit]:hover {
  background-color: #008080;
}
.staff__modal button[type=Submit].btn-danger {
  background-color: #982039;
  border: none;
  transition: 0.3s;
}
.staff__modal button[type=Submit].btn-danger:hover {
  background-color: #840000;
}
.staff__modal .add-subresource {
  border-radius: 30px;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  font-size: 2rem;
  font-weight: 600;
  border-color: transparent;
  background-color: #00AFAC;
  line-height: 1;
}
.staff__modal .add-subresource:hover {
  background-color: #008080;
}
.staff__message {
  width: 100%;
}

.action-glyphicon {
  padding: 5px;
  color: white;
  background-color: #008080;
  border-color: #52aac4;
  border-radius: 0.313rem;
}

.glyphicon-btn {
  border: none;
  background-color: transparent;
}

.action-glyphicon:hover {
  background: #00AFAC;
  cursor: pointer;
}

.resource-file-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 6px; /* clearance for card hover lift */
}

.resource-file__filter {
  display: flex;
  justify-content: flex-start;
}
.resource-file__filter > label {
  flex: 1;
}

.resource-file__card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 1.4rem;
  text-align: left;
  padding: 5px;
  background-color: #ebebeb;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: 233px;
  transition: height 0.5s ease, margin-bottom 0.5s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  min-height: 270px;
  white-space: normal;
  /* Card hover lift (fallback when JS tilt is not active) */
}
.resource-file__card:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.18);
}
.resource-file__card__thumbnail {
  height: 135.047264px;
  width: 135.047264px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 1rem;
}

.campus_analytics {
  font-size: 1.4rem;
}
.campus_analytics__form {
  padding: 15px 0;
}
.campus_analytics__form__date_container {
  font-size: 0;
}
.campus_analytics__content_container .us-folder__tabs {
  /* We want this to make the tab titles to be completely flat (just one level of text) */
  width: 90%;
}
.campus_analytics__navigation {
  max-width: 80%;
  margin-bottom: 1.535883rem;
}
.campus_analytics__navigation_btn {
  display: inline-block;
  padding: 1.151912rem 0.767941rem;
  border-radius: 2.399817rem;
  background-color: #7A7A7A;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold !important;
}
.campus_analytics__navigation_btn:hover {
  background-color: #5a5a5a !important;
  color: #fff !important;
}
.campus_analytics__navigation_btn--active {
  background-color: #008080;
}
.campus_analytics__navigation_btn--active:hover {
  background-color: #006666 !important;
  color: #fff !important;
}
.campus_analytics__main_content__btn {
  text-align: center;
  width: 11.135149rem;
  margin-left: 10px;
  margin-bottom: 10px;
}
.campus_analytics__hidden {
  display: none;
}
.campus_analytics__nav_button {
  background: #3EC0BA 0% 0% no-repeat padding-box;
  color: #fafdfd;
  border-radius: 2.457412rem;
  top: 27.569094rem;
  left: 7.525825rem;
  width: 15.205238rem;
  height: 4.83803rem;
  display: inline-flex; /* or flex */
  justify-content: center;
  align-items: center;
  align-items: center;
  text-align: center;
  font: normal normal normal 1.535883rem/2.150236rem Open Sans;
  font-weight: bold !important;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  margin: auto;
  margin-bottom: 2.841383rem;
}
.campus_analytics__page_header {
  /* Layout Properties */
  width: 52.987952rem;
  height: 3.839707rem;
  /* UI Properties */
  text-align: left;
  font: normal normal bold 20px Open Sans;
  letter-spacing: 0rem;
  color: #0D4D84;
  opacity: 1;
}
.campus_analytics__page_subheader {
  color: #124C83;
  margin-bottom: 10px;
  text-align: left;
  font: normal normal normal 1.4rem Open Sans;
  letter-spacing: 0rem;
  opacity: 1;
}
.campus_analytics__mailto_link {
  color: #0000EE; /* Classic hyperlink blue */
  text-decoration: underline;
}
.campus_analytics__mailto_link:hover {
  color: #551A8B; /* Classic visited-link purple or any color you prefer */
  text-decoration: underline;
}
.campus_analytics__date_input {
  /* Layout Properties */
  top: 35.248507rem;
  left: 14.13012rem;
  width: 7.679413rem;
  /* UI Properties */
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
  display: inline-flex; /* or flex */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.35rem 0.5rem;
  border-left: none;
  border-radius: 0 0.375rem 0.375rem 0;
}
.campus_analytics__date_input_label {
  /* Layout Properties */
  /* UI Properties */
  text-align: left;
  font: normal normal bold 1.535883rem/3.071765rem Open Sans;
  letter-spacing: 0px;
  color: #0D4D84 !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: bold !important;
  font-family: Open Sans !important;
  opacity: 1;
  align-items: center;
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.campus_analytics__nav_button_inactive {
  background-color: #E5E5E5;
  color: #909090;
}
.campus_analytics__date_input_button {
  background: #3EC0BA 0% 0% no-repeat padding-box;
  border-radius: 2.457412rem;
  opacity: 1;
  margin-left: 1rem;
  text-align: center;
  font: normal normal normal 1rem Open Sans;
  font-weight: bold !important;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}
.campus_analytics__card {
  /* Layout Properties */
  top: 41.776008rem;
  left: 8.140178rem;
  width: 100%;
  height: 41rem;
  /* UI Properties */
  background: #F8F8F8 0% 0% no-repeat padding-box;
  border-radius: 1.689471rem;
  opacity: 1;
}
.campus_analytics__card.training-card {
  height: 45rem;
}
.campus_analytics__chart_header_wrapper {
  /* ??? */
  position: relative;
  width: 100%;
  min-height: 7.989942rem;
  /* UI Properties */
  text-align: left;
  font: normal normal bold 1.843059rem/2.764589rem Open Sans;
  letter-spacing: 0rem;
  opacity: 1;
  padding-top: 2.611001rem;
  padding-left: 3.225354rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .campus_analytics__chart_header_wrapper {
    padding-top: 0;
    font-size: 1.5rem !important;
    justify-content: space-around;
  }
}
.campus_analytics__chart_header {
  text-align: left;
  font: normal normal bold 1.843059rem/2.764589rem Open Sans;
  letter-spacing: 0rem;
  color: #0D4D84;
}
@media (max-width: 1000px) {
  .campus_analytics__chart_header {
    line-height: 2rem;
  }
}
.campus_analytics__chart_subheader {
  height: 2.3rem;
  text-align: left;
  font: normal normal bold 1.543059rem/1.364589rem Open Sans;
  letter-spacing: 0rem;
  color: #0D4D84;
  margin-top: 0px;
  padding-top: 0px;
}
.campus_analytics__ha_header {
  font: normal normal bold 1.843059rem/2.764589rem Open Sans;
  color: #0D4D84 !important;
}
.campus_analytics__table {
  height: 80%;
}
.campus_analytics__ha_subheader {
  font: normal normal bold 1.4rem/1.364589rem Open Sans;
  color: #0D4D84 !important;
}
.campus_analytics__chart_training_completions {
  /* Layout Properties */
  display: flex;
  justify-content: center;
  /* UI Properties */
  mix-blend-mode: multiply;
  opacity: 1;
}
.campus_analytics__chart_training_completions #tm_total_header {
  text-align: left;
  font: normal normal bold 1.843059rem Open Sans;
  letter-spacing: 0rem;
  color: #0D4D84;
  margin-top: 0 !important;
}
.campus_analytics__chart_inner {
  /* ??? */
  max-width: 90%;
  margin: auto;
  overflow-x: auto;
}
.campus_analytics__analytics_chart {
  /* Layout Properties */
  top: 51.144893rem;
  left: 14.437297rem;
  width: 51.528863rem;
  height: 25.956417rem;
  /* UI Properties */
  mix-blend-mode: multiply;
  opacity: 1;
}
.campus_analytics__spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007f7f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  margin: auto;
  display: block;
  margin-left: 22.5rem;
  margin-top: 10rem;
}
.campus_analytics__training_spinner {
  display: inline-block;
  margin: unset;
  margin-top: -5rem;
  position: relative;
  top: 1.25rem;
  left: 0.5rem;
}
.campus_analytics__module_label {
  display: block;
  margin-top: 10rem !important;
  text-align: center;
  font-size: 8rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.campus_analytics__table_wrapper {
  width: 90% !important;
  height: 100% !important;
  padding: auto !important;
  margin: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-content {
  font-size: 1.4rem;
}
.app-content #training-module-text {
  color: #124C83;
  margin-bottom: 1.5rem;
}
.app-content #training-module-header {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
  margin-bottom: 1.5rem;
}
.app-content #survey_url {
  width: 650px;
}
.app-content__header .heading--primary {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
  margin-bottom: 3.5%;
}
.app-content__header .heading--content {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
  margin-bottom: 0;
}
.app-content .nav-tabs {
  border-bottom: 0 !important;
}
.app-content #survey-link-update-submit-btn {
  background-color: #00AFAC;
  color: #fff;
  transition: background-color 0.3s ease;
  opacity: 1;
  font-weight: bold;
}
.app-content #survey-link-update-submit-btn:hover {
  background-color: #008080;
}
.app-content #myTab {
  width: 50%;
}
.app-content #myTab .nav-item {
  width: 32%;
}
.app-content #myTab .nav-item .nav-link {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  width: 100%;
  height: 100%;
  font: normal normal bold 16px Open Sans;
  color: #124C83;
  border-bottom: 0 !important;
}
.app-content #myTab .nav-item .nav-link img {
  width: 24px;
  height: 24px;
}
.app-content #myTab .nav-item #helpful-answers-tab {
  background: #C1DCDC 0% 0% no-repeat padding-box;
}
.app-content #myTab .nav-item #find-help {
  background: #FFFFFF 0% 0% no-repeat padding-box;
}
.app-content #myTabContent #find-help,
.app-content #myTabContent #training-modules {
  background: #FFFFFF 0% 0% no-repeat padding-box;
}
.app-content #myTabContent #helpful-answers {
  background: #C1DCDC 0% 0% no-repeat padding-box;
}
.app-content__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.563rem;
  background-color: #00AFAC;
  position: static !important;
  transition: 0.3s;
}
.app-content__card-btn {
  text-align: left !important;
  padding: 0 !important;
}
.app-content__card .card-title {
  font: normal normal bold 15px Open Sans;
}
.app-content__card > a {
  color: white;
}
.app-content__card:hover {
  background-color: #008080;
  color: white;
}
.app-content__card-body {
  flex-grow: 1;
}
.app-content__card-body__icon {
  height: 75px;
  width: 75px;
}
.app-content__note .note--primary {
  font-size: 1rem;
  float: right;
  display: flex;
  background: #124C83 0% 0% no-repeat padding-box;
  border-radius: 15px;
  /* Acts as a "default" appearance for the note, can be changed in JavaScript and HTML as necessary */
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: 0.3s;
}
.app-content__note p {
  /* UI Properties */
  padding: 5px;
  text-align: center;
  font: normal normal normal 15px Open Sans;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  transition: 0.3s;
}
.app-content__add-btn {
  width: 11.826296rem;
  height: 3.839707rem;
  background: #3EC0BA 0% 0% no-repeat padding-box;
  border-radius: 2.457412rem;
  opacity: 1;
  text-align: center;
  font: normal normal normal 1.535882rem/2.0734415925rem Open Sans;
  font-weight: bold;
  letter-spacing: 0px;
  color: #FFFFFF;
  transition: 0.3s;
}
.app-content__add-btn:hover {
  background-color: #008080;
  color: white;
}
.app-content__actions-column {
  width: 100px;
  text-align: center;
}

.find_help__table {
  /* Force grey rows to be darker as intended */
}
.find_help__table thead {
  background-color: #3EC0BA;
}
.find_help__table thead th {
  color: white;
  background-color: #3EC0BA;
}
.find_help__table th, .find_help__table td {
  padding: 10px 20px;
}
.find_help__table.table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: #e9e9e9 !important;
}
.find_help__table .empty-table {
  text-align: center;
}

.subresource-spacer {
  line-height: 3px;
  margin-bottom: 3px;
}

.find-help {
  position: absolute;
  top: 0;
  right: 0;
}
.find-help .app-content__note .note--primary {
  opacity: 1;
}

.helpful-answers__table {
  margin-top: 10px;
  border-radius: 12px;
}
.helpful-answers__table thead {
  background-color: #F0F0F0;
}
.helpful-answers__table thead tr {
  background-color: #3EC0BA;
}
.helpful-answers__table thead th {
  color: white;
  background-color: inherit;
}
.helpful-answers__table thead th:first-child {
  border-top-left-radius: 10px;
}
.helpful-answers__table thead th:last-child {
  border-top-right-radius: 10px;
}
.helpful-answers__table th {
  box-sizing: border-box;
  padding: 10px 20px;
  max-width: 400px;
}
.helpful-answers__table td {
  box-sizing: border-box;
  padding: 10px 20px 0px 20px;
  max-width: 400px;
}
.helpful-answers__table tbody tr {
  height: 73px;
}
.helpful-answers__table tbody tr.row-customized td {
  color: #124C83 !important;
}
.helpful-answers__table tbody tr.row-customized-from-default td {
  color: #4CAF50 !important;
}
.helpful-answers__table tbody tr.sticky-thead {
  height: 40px;
}
.helpful-answers__table.table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: #e9e9e9 !important;
}
.helpful-answers__table .empty-table {
  text-align: center;
}
.helpful-answers__table .invisible-section-label {
  background: #3EC0BA;
  color: white;
  text-align: center;
  border-radius: 0px;
  position: sticky;
  top: 40px;
  box-shadow: none;
}
.helpful-answers__table .invisible-section-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.helpful-answers__table #ha-key-blue {
  color: #124C83;
}
.helpful-answers__table #ha-key-green {
  color: #4CAF50;
}
.helpful-answers__table #ha-key-red {
  color: #ff0000;
}
.helpful-answers__table .fa-exclamation-triangle {
  cursor: pointer;
}
.helpful-answers__table .custom-info-trigger {
  cursor: pointer;
  outline: none;
  position: relative;
}
.helpful-answers__table .custom-tooltip {
  width: 500px;
  background: #124C83;
  color: #FFF;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 10;
  right: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.helpful-answers__table #ha-key-blue {
  color: #124C83;
}
.helpful-answers__table #ha-key-green {
  color: #4CAF50;
}
.helpful-answers__table #ha-key-red {
  color: #ff0000;
}
.helpful-answers__table #ha-key-blue {
  color: #124C83;
}
.helpful-answers__table #ha-key-green {
  color: #4CAF50;
}
.helpful-answers__table #ha-key-red {
  color: #ff0000;
}
.helpful-answers__table .fa-exclamation-triangle {
  cursor: pointer;
}
.helpful-answers__table .custom-info-trigger {
  cursor: pointer;
  outline: none;
  position: relative;
}
.helpful-answers__table .custom-tooltip {
  width: 500px;
  background: #124C83;
  color: #FFF;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 10;
  right: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.helpful-answers__search-input {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-left: none;
  border-radius: 0 0.375rem 0.375rem 0;
}
.helpful-answers__search-label {
  color: #0D4D84;
  font-weight: bold;
  font-family: Open Sans;
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.helpful-answers__form-check {
  appearance: none;
  width: 10px;
  height: 12px;
  border: 2px solid #00AFAC;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.helpful-answers__form-check:checked {
  background-color: #00AFAC;
  border-color: #00AFAC;
}
.helpful-answers__expanded {
  overflow: visible;
  white-space: normal;
}
.helpful-answers__collapsed {
  overflow: hidden;
  text-overflow: ellipsis;
}
.helpful-answers__question {
  display: inline-block;
  max-width: 90%;
}
.helpful-answers__answer {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.persona-radio-group {
  height: 23.6px;
  font-size: 1rem;
}

#original-ha-wrapper {
  display: none;
  margin: 1rem 0rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f8f8;
}

#original-ha-answer * {
  margin-top: 0 !important;
}

.row-strikethrough {
  text-decoration: line-through;
}

#cha-table {
  font-size: 1.4rem;
}

#drag-and-drop-resources {
  font: normal normal bold 12px Open Sans;
  color: #00afac;
}
#drag-and-drop-resources > p {
  margin-bottom: 0;
}

.alert {
  position: relative;
  width: 100%;
}

#app-content-desc {
  color: #124C83;
}

.text-muted {
  line-height: 12px;
}

.h-0 {
  height: 0;
}

.remove_field {
  font-size: 15px;
  transition: 0.3s;
}
.remove_field:hover {
  color: #124C83;
}
.sticky-thead thead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(240, 240, 240, 0.8980392157);
  z-index: 1;
  pointer-events: none;
}

.engagement-materials__header .heading--primary {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
  margin-bottom: 3.5%;
}
.engagement-materials__description {
  font-size: 1.4rem;
}
.engagement-materials__examples {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #3EC0BA;
  padding: 5px;
  display: inline;
  transition: color 0.3s;
  font-weight: bold;
}
.engagement-materials__examples:hover {
  color: #124C83;
}
.engagement-materials__input-group {
  display: flex !important;
  align-items: center !important;
  max-width: 99% !important;
  text-wrap: nowrap !important;
  text-overflow: ellipsis !important;
  margin-bottom: 20px;
}
.engagement-materials__input-group-text {
  flex: 0 0 auto !important;
  margin-right: calc(var(--bs-border-width) * -1); /* adjust spacing if needed */
  border-radius: 0.375rem !important;
}
.engagement-materials__custom-inline {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important; /* Let children shrink */
  white-space: nowrap !important;
  max-width: 99% !important;
}
.engagement-materials__custom-inline-text {
  flex: 0 0 auto !important;
  color: #0D4D84 !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: bold !important;
  font-family: Open Sans !important;
  /* set max-width based on screen size with a calc expressed in absolute size */
  /* ::after */
}
.engagement-materials__input-group-outer-div {
  padding: 0 !important;
}
.engagement-materials__material-title {
  /*Open Sans, Bold, size 24, and color #124C83*/
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #124C83;
  display: inline;
  cursor: pointer;
}
.engagement-materials__material-desc {
  /*Open Sans, Regular, size 18, in black.*/
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.5s ease, opacity 0.35s ease 0.1s;
}
.engagement-materials__material-header {
  height: 55px;
  overflow: hidden;
}
.engagement-materials__download-ico {
  transition: color 0.3s ease, filter 0.3s ease;
}
.engagement-materials__download-ico:hover {
  color: #008080;
  filter: drop-shadow(0 0 6px rgba(0, 128, 128, 0.55));
}
.engagement-materials__download-button {
  font-size: 1.5rem;
  margin-top: auto;
}
.engagement-materials__download-button-link {
  /* UI Properties */
  text-align: center;
  font-style: normal;
  font-variant: normal;
  font-weight: bold;
  font-family: Open Sans;
  letter-spacing: 0px;
  height: 7.44680851%;
  color: #FFFFFF;
  opacity: 1;
  padding: auto;
}
.engagement-materials__toggle-desc {
  cursor: pointer;
  display: inline-block;
  color: #124C83;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s;
  height: 20px;
  transform-origin: bottom;
  user-select: none;
}
.engagement-materials__sort-label {
  padding: 0rem 1rem 0rem;
}
.engagement-materials__thumbnail {
  max-height: 130px;
  max-width: 130px;
  height: auto;
  width: auto;
  margin-top: 10px;
}
.engagement-materials__thumbnail_warapper {
  height: 130px;
  width: 130px;
  margin: auto;
  padding: 0px;
  margin-top: 10px;
}
.engagement-materials__variable_image_thumbnail_wrapper {
  height: 150px;
  width: 200px;
  margin: auto;
  padding: 0px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.engagement-materials__variable_image_thumbnail {
  max-height: 150px;
  max-width: 200px;
  margin-top: 10px;
}
.engagement-materials__filtering-message {
  font-size: 1.6rem;
  color: #124C83;
  font-weight: bold;
  padding: 1rem 0rem 0rem 3rem;
}
.engagement-materials__campus-specific {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}
.engagement-materials__campus-specific-flag {
  position: relative;
  left: -10px;
  top: -20px;
  color: #124C83;
  font-size: xx-large;
  height: 0;
}
.engagement-materials__campus-specific-note {
  display: inline;
  float: right;
  margin-right: 10px;
  opacity: 0;
  transition: 0.3s;
}
.engagement-materials__campus-specific-note span {
  color: #124C83;
}
.engagement-materials__filters {
  position: relative;
  z-index: 1;
  background: #fff;
}
.engagement-materials__content-pane {
  /* Stops the dropdowns from overlapping the content on page scroll */
  transform: translateZ(0);
}

.em-tab-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

/* ── Skeleton shimmer loading ── */
@keyframes em-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.em-skeleton-row {
  /* let the row display like normal card grid */
}

.em-skeleton-card {
  pointer-events: none;
}

.em-skeleton__thumb {
  width: 200px;
  height: 150px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 800px 150px;
  animation: em-shimmer 1.5s infinite linear;
}

.em-skeleton__title {
  width: 75%;
  height: 14px;
  margin: 12px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 800px 14px;
  animation: em-shimmer 1.5s infinite linear;
}
.em-skeleton__title--short {
  width: 50%;
  margin-top: 8px;
}

/* ── Staggered card fade-in ── */
@keyframes em-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.em-card-animate {
  opacity: 0;
  animation: em-card-enter 0.35s ease forwards;
  /* Once the entrance animation finishes, clear it so hover transform works */
}
.em-card-animate.em-card-entered {
  animation: none;
  opacity: 1;
}

/* ── #3 Blur-up image loading ── */
.em-img-blurup {
  filter: blur(12px);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.em-img-blurup.em-img-loaded {
  filter: blur(0);
  opacity: 1;
}

/* ── #5 Scroll-reveal cards (below the fold) ── */
.em-card-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.em-card-reveal.em-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── #6 Tab content crossfade ── */
.em-results-fade {
  transition: opacity 0.25s ease;
}

.bootstrap-select {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center;
  width: auto !important;
}
.bootstrap-select .btn.dropdown-toggle {
  background-color: var(--bs-body-bg) !important;
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
  /* no right border radius */
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.filter-option-inner-inner {
  color: #000 !important;
}

.push_notification {
  font-size: 1.6rem;
}
.push_notification .app-content__note {
  position: absolute;
  top: 0;
  right: 0;
}
.push_notification .app-content__note .note--primary {
  opacity: 1;
}
.push_notification__header {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
}
.push_notification__header--secondary {
  color: #124C83;
  font-size: 2.4rem;
  font-weight: bold;
}
.push_notification__text {
  color: #124C83;
  margin-bottom: 30px;
  text-align: left;
  font: normal normal normal 1.4rem Open Sans;
  letter-spacing: 0rem;
  opacity: 1;
}
.push_notification__link_style {
  font-size: 1.4rem;
  text-decoration: underline;
  color: black;
  transition: color 0.3s !important;
}
.push_notification__link_style:hover {
  color: #3EC0BA;
}
.push_notification__schedule_button {
  width: 11.826296rem;
  height: 3.839707rem;
  background: #3EC0BA 0% 0% no-repeat padding-box;
  border-radius: 2.457412rem;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  line-height: 2.0734415925rem;
  font-family: "Open Sans";
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}
.push_notification__schedule_button:hover {
  background-color: #008080;
  color: white;
}
.push_notification__copy_button {
  width: 7rem;
  height: 3.839707rem;
  background: #3EC0BA 0% 0% no-repeat padding-box;
  border-radius: 2.457412rem;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  line-height: 2.0734415925rem;
  font-family: "Open Sans";
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}
.push_notification__copy_button:hover {
  background-color: #008080;
  color: white;
}
.push_notification__examples {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #3EC0BA;
  padding: 5px;
  display: inline-block;
  transition: color 0.3s;
  font-weight: bold;
}
.push_notification__examples:hover {
  color: #124C83;
}
.push_notification__table {
  table-layout: auto;
  width: 100%;
  font-size: 14px;
  border-bottom-color: #e9e9e9 !important;
}
.push_notification__table.table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: #e9e9e9 !important;
}
.push_notification__table th {
  background-color: #3EC0BA;
  font-family: "Open Sans", sans-serif;
  border: none !important;
  color: white;
}
.push_notification__table__wrapping-td {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}
.push_notification__table__date-td {
  width: 150px;
}
.push_notification__table__username-td {
  max-width: 100px;
  width: 100px;
  word-wrap: break-word;
}
.push_notification__table__title-td {
  max-width: 150px;
  width: 150px;
  word-wrap: break-word;
}
.push_notification__table__link-td {
  width: 200px;
}
.push_notification__table__actions {
  width: 2%;
  text-wrap: wrap;
}
.push_notification__modal p {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
}
.push_notification__modal label {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
  margin-top: 5px;
}
.push_notification__modal label.error {
  margin-top: -15px;
  position: relative;
  top: 15px;
}
.push_notification__modal .modal-dialog {
  --bs-modal-width: 600px;
}
.push_notification__modal .modal-title {
  color: #124C83;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
}
.push_notification__modal .modal-content {
  padding: 1rem;
}
.push_notification__modal .modal-header {
  border: none;
  font-size: large;
}
.push_notification__modal .emoji-wysiwyg-editor::before {
  color: #bdbdbd !important;
}
.push_notification__modal #payload, .push_notification__modal #edit_payload {
  height: 65px;
}
.push_notification__modal .form-control {
  font-size: 1.4rem;
}
.push_notification__modal .form-control::placeholder {
  color: #bdbdbd;
}
.push_notification__modal button[type=Submit]:not(.btn-danger) {
  width: 100%;
  height: 3.839707rem;
  background: #3EC0BA 0% 0% no-repeat padding-box;
  border-radius: 2.457412rem;
  text-align: center;
  font-style: normal;
  font-variant: normal;
  line-height: 2.0734415925rem;
  font-family: "Open Sans";
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
  margin-top: 15px;
}
.push_notification__modal button[type=Submit]:not(.btn-danger):hover {
  background-color: #008080;
  color: white;
}
.push_notification__modal button[type=Submit].btn-danger {
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
}
.push_notification__modal .emoji-picker-container {
  font-size: 1.4rem;
}
.push_notification__modal #pushNotificationPopupMessage {
  margin-top: 5rem;
}
.push_notification .dataTables_info {
  font-size: 14px;
}
.push_notification #scheduled-table_info {
  font-size: 14px;
}
.push_notification .table-bordered > :not(caption) > * {
  border-width: 0;
}
.push_notification .table-bordered > :not(caption) > * > * {
  border-width: 0;
}
.push_notification #global-notification-info {
  font-size: 14px;
}
.push_notification .float-right-note {
  float: right;
  text-align: right;
  position: relative;
  right: 10px;
}
.push_notification thead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 1;
  pointer-events: none;
}

.find_help {
  font-size: 1.6rem;
}
.find_help__header {
  color: #124C83;
  font: normal normal bold 20px Open Sans;
  margin-bottom: 1rem;
}
.find_help__header--secondary {
  color: #124C83;
  font-size: 2.4rem;
  font-weight: bold;
}
.find_help__text {
  color: #124C83;
  margin-bottom: 30px;
  text-align: left;
  font: normal normal normal 1.382294rem/2.150236rem Open Sans;
  letter-spacing: 0rem;
  opacity: 1;
}
.find_help__schedule_button {
  border-radius: 50px;
  background-color: #00AFAC;
  color: white;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Open Sans", serif;
  transition: 0.3s;
}
.find_help__schedule_button:hover {
  background-color: #008080;
}
.find_help__examples {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #3EC0BA;
  padding: 5px;
  display: inline-block;
  transition: color 0.3s;
  font-weight: bold;
}
.find_help__examples:hover {
  color: #124C83;
}
.find_help__table {
  table-layout: auto;
  width: 100%;
  padding-top: 10px;
  font-size: 14px;
}
.find_help__table.table-striped > tbody > tr:nth-of-type(odd) > td {
  background-color: #e9e9e9 !important;
}
.find_help__table th {
  background-color: #3EC0BA;
  border: none;
  color: white;
}
.find_help__table td {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 350px !important;
}
.find_help__table__date-username-td {
  width: 15%;
}
.find_help__table__expandable-row {
  cursor: pointer;
}
.find_help__title {
  display: inline-block;
  max-width: 90%;
  vertical-align: middle;
}
.find_help__expanded-title {
  white-space: normal;
  overflow: visible;
}
.find_help__short-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.find_help__cell {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.find_help__modal p {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
}
.find_help__modal label {
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  font-weight: 600;
  font-size: 14px;
}
.find_help__modal .modal-dialog {
  --bs-modal-width: 600px;
}
.find_help__modal .modal-title {
  color: #124C83;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
}
.find_help__modal .modal-content {
  padding: 1rem;
}
.find_help__modal .modal-header {
  border: none;
  font-size: large;
}
.find_help__modal .emoji-wysiwyg-editor::before {
  color: #bdbdbd !important;
}
.find_help__modal .form-control {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.find_help__modal .form-control::placeholder {
  color: #bdbdbd;
}
.find_help__modal button[type=Submit]:not(.btn-danger) {
  border-radius: 50px;
  background-color: #3EC0BA;
  color: white;
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
  transition: 0.3s;
}
.find_help__modal button[type=Submit]:not(.btn-danger):hover {
  background-color: #008080;
}
.find_help__modal button[type=Submit].btn-danger {
  color: white;
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
}
.find_help__modal .emoji-picker-container {
  font-size: 1.4rem;
}

.usafe-form {
  /* styling that applies to any form that has the usafe-form class. Naming 
  convention will avoid any conflicts with Bootstrap or other css plugin dependencies. 
  Requires forms to "opt-in", i.e. adding this will not affect any existing forms because 
  no forms have this class applied to it.*/
  /* Styling for teal buttons with white text */
  /* Naming means "transition 0.3s background-color" */
}
.usafe-form__input {
  /* styling common to all form inputs. This is the "element" portion of BEM */
}
.usafe-form__input--w39 {
  /* the "modifier" part of BEM. This can be used on any form input
  to set the width to 39% */
  width: 39%;
}
.usafe-form__input--pd5 {
  padding: 5px;
}
.usafe-form__input--ft1pt5rem {
  font-size: 1.5rem;
}
.usafe-form__btn-w15rem {
  width: 15rem;
}
.usafe-form__btn-h3pt5rem {
  height: 3.5rem;
}
.usafe-form__btn-bradius3pt2rem {
  border-radius: 3.2rem;
}
.usafe-form__btn-bold {
  font-weight: bold;
}
.usafe-form__btn-bgteal {
  background-color: #00AFAC;
  color: #fff;
  opacity: 1;
}
.usafe-form__btn-transitionpt3sbgcolor {
  transition: background-color 0.3s ease;
}
.usafe-form__btn-transitionpt3sbgcolor:hover, .usafe-form__btn-transitionpt3sbgcolor:active {
  background-color: #008080 !important;
  color: white !important;
}
.usafe-form__file-label {
  font-weight: bold;
  margin: 0.5rem;
}
.usafe-form__file-input {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.usafe-form__bootstrap-multiselect-custom {
  display: inline-flex !important;
  flex: 1 1 auto !important;
  min-width: 0 !important; /* Key to allow actual shrinking */
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  text-wrap: none !important;
  overflow-wrap: none !important;
  width: 10px !important; /* seems rediculous, but prevents multiselects from overflowing/line-wrapping */
  max-width: 12vw !important;
  /* different rule for small screens */
  /* different rule for medium screens */
  /* different rule for large screens */
  /* different rule for extra large screens */
  /* different rule for extra extra large screens */
  /* ::after */
}
@media (max-width: 576px) {
  .usafe-form__bootstrap-multiselect-custom {
    max-width: 14vw !important;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .usafe-form__bootstrap-multiselect-custom {
    max-width: 15vw !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .usafe-form__bootstrap-multiselect-custom {
    max-width: 16vw !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .usafe-form__bootstrap-multiselect-custom {
    max-width: 17vw !important;
  }
}
@media (min-width: 1200px) {
  .usafe-form__bootstrap-multiselect-custom {
    max-width: 20vw !important;
  }
}
.usafe-form__bootstrap-multiselect-custom::after {
  color: #3EC0BA;
  font-size: 2rem;
}
.usafe-form__multi-line-input {
  height: 30px;
  overflow: auto;
  word-wrap: break-word;
  resize: none !important;
  padding-right: 30px;
}
.usafe-form__char-count {
  float: right;
  font-size: 1rem;
  color: #888;
  margin-top: -15px;
  position: relative;
  top: 15px;
}
.usafe-form__select-placeholder {
  cursor: pointer;
}
.usafe-form__select-placeholder.placeholder-option {
  color: rgba(128, 128, 128, 0.6);
}
.usafe-form__select-placeholder > option {
  color: black;
}
.usafe-form__checkbox-sm {
  width: 1.04rem;
  height: 1.04rem;
}
.usafe-form__bubble_shadow_content {
  border: solid 1px #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1607843137);
}

/* Styling for JS Validate 
Default Classes Used by the JS Validate 
error: Applied to the <label> elements that display the error messages.
valid: Optionally added to valid fields when configured.
error on input elements: Applied to invalid form fields for styling.
*/
/* Style error messages */
label.error {
  color: red;
  font-size: 12px;
  margin-left: 5px;
  display: block;
  margin-top: 0.25rem;
}

#messageModal {
  --bs-modal-width: 670px;
  color: #124C83;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  border: none;
  font-size: large;
}

#messageModal .modal-content {
  padding: 1rem;
  margin-top: 12rem;
}

#deleteModal .modal-content {
  margin-top: 12rem;
}
#deleteModal .modal-content .delete_modal__name {
  display: inline-block;
  text-overflow: ellipsis;
  /* After $chars characters, cut off the text with an ellipsis */
  overflow: hidden;
  white-space: nowrap;
  max-width: 40ch;
}

#messageModal .modal-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px;
}

#messageModal .message-text {
  /* Keep all parts of the messsage text on one line */
  display: inline-flex;
  font-size: large;
  font-family: "Open Sans", sans-serif;
  color: #124C83;
  text-align: center;
  margin: 0;
}

#messageModal .btn-close.position-absolute {
  /* default Bootstrap close button in top-right */
  top: 16px;
  right: 16px;
  color: #00AFAC;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.5);
}

.btn-close {
  font-size: 1.3rem;
}

.us-folder {
  font-size: 1.4rem;
  /* Container for the tab panes – applies the white background and rounded corners */
}
.us-folder p {
  padding-left: 10px;
  color: #124C83;
  text-align: left;
  font: normal normal normal 1.382294rem/2.150236rem Open Sans;
  letter-spacing: 0rem;
  opacity: 0;
  text-wrap: nowrap;
  transition: 0.3s;
}
.us-folder__tabs {
  border-bottom: 0 !important;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.us-folder__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  font: normal normal bold 16px "Open Sans", sans-serif;
  color: #124C83;
  background: #C1DCDC; /* inactive background (bluish gray) */
  padding: 0.5rem 2rem;
  cursor: pointer;
  text-align: center;
  border-bottom: 0 !important;
  transition: background-color 0.3s ease;
}
.us-folder__link img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.us-folder__link.active {
  background: #FFFFFF; /* active tab appears white */
}
.us-folder__content {
  display: block;
  padding: 20px;
  border-radius: 0 1.688rem 1.688rem 1.688rem;
  background: #FFFFFF 0% 0% no-repeat padding-box;
}

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