* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font: 16px "Open Sans", Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .nav, .nav a {
  font: 500 1.1rem "Oswald", sans-serif;
}

a {
  color: #40717b;
  text-decoration: none;
}
a:hover, a:focus, a:active, a:visited {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  left: 10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

img {
  max-width: 100%;
}

button {
  display: block;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.btn {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  background: #40717b;
  color: #fff;
  display: inline-block;
}
.btn:not([disabled]) {
  cursor: pointer;
}
.btn.btn-sm {
  padding: 5px 15px;
}
.btn.btn-std {
  padding: 5px 40px;
  font-size: 1.2rem;
}
.btn.btn-lg {
  padding: 15px 50px;
}

.btn-std button#submit {
  line-height: 1.3em;
}

/* Header Styles */
.headerUpper {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.6784313725);
  background: #40717b;
  min-height: 35px;
  color: #fff;
}

.headerUpperContent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 35px;
}

.headerMessage {
  margin-left: auto;
}
.headerMessage p {
  margin: 0;
  padding: 5px 0;
}

.headerMessage a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3098039216);
}

.maintenanceNotice {
  position: relative;
}

.maintenanceTrigger {
  padding: 5px 0;
  color: #fff;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3098039216);
}
.maintenanceTrigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.maintenancePopup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1000;
  width: 400px;
  max-width: calc(100vw - 30px);
  padding: 25px 35px 25px 25px;
  color: #2b4242;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.maintenancePopup[hidden] {
  display: none;
}
.maintenancePopup h1 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}
.maintenancePopup p {
  margin: 0;
  line-height: 1.5;
}

.maintenancePopupClose {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 5px;
  color: #40717b;
  font-size: 1.25rem;
  line-height: 1;
}
.maintenancePopupClose:focus-visible {
  outline: 2px solid #40717b;
  outline-offset: 1px;
}

.headerLower {
  padding: 30px 0;
  color: #40717b;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.logo img {
  max-height: 150px;
}

.loginPromptWrapper .logo img {
  max-height: 75px;
}
.loginPromptWrapper h3 {
  margin: 1.5rem 0 1rem;
  color: #1e212a;
  letter-spacing: 0;
  font-family: Roboto, Helvetica, sans-serif;
  font-weight: 700;
}
.loginPromptWrapper p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.loginPromptWrapper .loginBtn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4px 1rem;
  min-height: 3.25rem;
  background-color: #40717b;
  color: #fff;
  border-radius: 4px;
}

.nav {
  text-align: right;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.nav li {
  height: 100%;
}
.nav li.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
}
.nav li.has-submenu:hover .submenu {
  transform: translateY(0);
  opacity: 1;
}
.nav li.has-submenu span {
  display: flex;
  align-items: center;
}
.nav a {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
}
.nav span {
  text-transform: uppercase;
  padding: 5px 0 5px 10px;
}
.nav > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #40717b;
  transform: translateX(-100%);
  transition: transform 0.25s ease-in-out;
}
.nav > li > a:hover:before {
  transform: translateX(0);
}
.nav svg {
  font-size: 1.4rem;
  margin-right: 10px;
}

.submenu {
  position: absolute;
  top: 100%;
  background: #ffffff;
  border: 2px solid #2c4142;
  padding: 5px;
  right: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 10;
}

#headerSearchForm {
  position: relative;
  width: 410px;
  max-width: 100%;
  margin-left: auto;
}
#headerSearchForm input {
  background: #40717b;
  color: #fff;
  padding-left: 40px;
  border: none;
  border-radius: 0;
}
#headerSearchForm input:focus-visible {
  outline: none;
  box-shadow: 2px 2px 7px -2px rgba(0, 0, 0, 0.6588235294);
}
#headerSearchForm input::placeholder {
  color: #fff;
}

.searchIcon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #fff;
}

/* general page rules */
.pageWrapper {
  display: flex;
  min-height: calc(100vh - 220px - 72px);
  padding: 50px 15px;
  background: #fff;
}

.areaTitle {
  margin-top: 15px;
  text-transform: uppercase;
}

h1.areaTitle {
  margin-top: 40px;
}

.titleLower {
  display: flex;
  align-items: end;
}

#msgFlashContainer {
  position: absolute;
  bottom: 80%;
  padding: 20px 30px;
  border: 2px solid #d86f6f;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
#msgFlashContainer.fade {
  opacity: 0;
  visibility: hidden;
}

/* Dashboard Styles */
.area {
  padding: 50px 15px 50px;
  background: #fff;
}
.area.dashboard {
  display: flex;
}

.campusItem {
  display: flex;
  margin-top: 25px;
}

.campusImage {
  width: 33%;
  max-width: 300px;
}

.campusDetails {
  margin-left: 40px;
}

.dashboardContent_cont {
  background: #fff;
  padding: 5px 27px;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.4196078431);
}

.pagesTools {
  position: absolute;
  top: 15px;
  right: 15px;
}

.locationsInfo {
  display: flex;
}

.locationsListWrapper {
  width: 50%;
}

/* entry page */
.entryWrapper {
  align-items: center;
  min-height: 100vh;
  height: fit-content;
  background: #f7f7f7;
}

.loginPromptWrapper, .loginNotifications {
  text-align: center;
  width: 500px;
  margin: auto;
}

.loginNotifications.area {
  padding: 2rem;
}
.loginNotifications h1 {
  font-size: 1.5rem;
  margin-top: 0;
}
.loginNotifications p {
  margin-bottom: 0;
}

/* Areas Styles */
.area {
  padding: 2.85715rem;
  max-width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  border: 0 solid transparent;
}
.area.area-white {
  background: #fff;
}
.area.area-borderless {
  border: none;
}

/* search page styles */
.searchResultList li {
  border: 2px solid #636262;
  border-radius: 3px;
  margin-bottom: 25px;
  padding: 30px;
}

.searchValues {
  display: flex;
  flex-direction: column;
}
.searchValues ul {
  border: none;
  display: flex;
  flex-wrap: wrap;
}
.searchValues li {
  border: none;
  padding: 0 15px;
  margin-bottom: 0;
  border-radius: 0;
}
.searchValues li:last-child {
  border: none;
}

.searchLocation {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.searchLocation svg {
  color: #9b9b9b;
  padding: 0 5px;
  font-size: 0.88rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px 25px;
  background: transparent;
  padding: 0 15px;
}
.pagination .paginationControls,
.pagination .paginationLimit,
.pagination .paginationNav {
  display: flex;
  align-items: center;
}
.pagination .paginationControls {
  gap: 10px;
}
.pagination label {
  width: auto;
  margin-bottom: 0;
  font-size: inherit;
}
.pagination .paginationNav {
  gap: 7px;
  height: 40px;
  font-weight: 600;
}
.pagination .paginationNav svg {
  font-size: 0.8rem;
  margin-right: 0;
}
.pagination .paginationNav.disabled {
  opacity: 0.35;
}
.pagination .paginationSelect {
  width: auto;
  height: 40px;
  min-width: 64px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background-color: #eee;
  color: #2b4242;
  font: 600 1rem "Open Sans", Arial, sans-serif;
  padding: 0 10px;
  cursor: pointer;
}
.pagination .paginationTotal {
  white-space: nowrap;
}
.pagination .paginationLimit {
  gap: 8px;
  white-space: nowrap;
}

.detailTitle {
  font-weight: 800;
  padding-bottom: 15px;
}

.breadcrumbs {
  width: 100%;
}
.breadcrumbs svg {
  margin: 0 11px;
}

/* Import Styles */
.campusManagerContent {
  padding: 25px;
}
.campusManagerContent h2 {
  margin-top: 0;
}

#parentResourcePreview h2 {
  margin-top: 0;
}

.fileDetails {
  display: none;
  padding: 10px 0;
}

.inputWrapper {
  position: relative;
  width: 300px;
  margin-bottom: 27px;
  max-width: 100%;
}
.inputWrapper.wysiwygWrapper {
  width: 100%;
}

.importForm {
  position: relative;
}

.customStyles {
  opacity: 0;
  height: 0;
  width: 0;
  color: #fff;
}

.inputDescription {
  margin-bottom: 12px;
  display: inline-block;
}

label {
  width: 100%;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 10px;
}

input, textarea {
  border: 2px solid #bdbdbd;
  border-radius: 3px;
  font-family: "Open Sans", sans-serif;
}
input[hidden], textarea[hidden] {
  display: none;
}

select, .styledInput {
  background: #40717b;
  border-radius: 3px;
  border: none;
  color: #fff;
  padding: 5px;
}

select, input {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
}
select:active, select:focus, select:focus-within, select:focus-visible, input:active, input:focus, input:focus-within, input:focus-visible {
  border: none;
}

input[type=file] {
  font-size: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  border: none;
}

label[for=fileupload] {
  margin-top: 7px;
}

#select-items {
  position: absolute;
  visibility: visible;
  opacity: 1;
  width: 100%;
  z-index: 10;
  overflow: hidden;
  color: #fff;
}
#select-items.select-hide {
  visibility: hidden;
  opacity: 0;
}
#select-items div {
  padding: 10px;
  background: #555;
  border-top: 1px solid #444;
}

.validateBtn {
  background: #e23b3b;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.resourcePreviewContainer {
  position: relative;
}

#resourcePreview {
  height: 150px;
  width: 150px;
  position: relative;
}

#previewImageHolder {
  display: flex;
  height: 100%;
  width: 100%;
}
#previewImageHolder img {
  object-fit: cover;
  position: relative;
  display: block;
}

#resourcePreviewContainer .inputWrapper {
  margin-bottom: 0;
}

.resourcePreviewActions {
  display: flex;
}
.resourcePreviewActions .btn:first-child {
  margin-right: 10px;
}

.imageSelected #previewImageDetails,
.imageSelected .resourcePreviewActions {
  margin-top: 15px;
}
.imageSelected #fileBtn {
  display: none;
}

#fileBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cdcdcd;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#campusManagerForm {
  width: 100%;
}

#parentResourceField:not(.active),
#parentCampusField:not(.active),
#parentTypeField:not(.active),
fieldset#panelFields:not(.active),
#resourcePreviewContainer:not(.active) {
  display: none;
}

#resourcePreviewContainer:not(.imageSelected) .resourcePreviewActions {
  display: none;
}

fieldset {
  border: none;
  margin-left: 0;
  padding-left: 0;
}

.formDataMessage, .pristine-error {
  color: #f00;
}

.text-help, .formDataMessage {
  position: absolute;
}

.campusManagerContent h2 {
  font-size: 2em;
  font-weight: 300;
}

.parentDetails:not(.active) {
  display: none;
}
.parentDetails .parentDetailsWrapper {
  display: flex;
  gap: 50px;
}
.parentDetails .parentDetailsWrapper > div {
  width: 100%;
}

/* Resources Styles */
.page-title {
  position: relative;
}

.area_panelContent {
  padding-top: 0;
}

.breadcrumbs {
  width: 100%;
  color: #979797;
  margin-bottom: 12px;
}
.breadcrumbs a:only-child svg {
  display: none;
}

.resourceImage {
  display: inline-block;
  padding: 15px;
  border: 2px solid #636262;
  border-radius: 3px;
}

.area_links a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

table {
  border: 2px solid #636262;
  border-radius: 3px;
}

.panelTable td {
  padding: 5px 10px;
}

.panelTable td:nth-child(odd) {
  text-align: center;
}

.panelTable textarea {
  width: 100%;
}

textarea.editField {
  min-height: 150px;
}

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

.editContentActions {
  display: flex;
  align-items: end;
}

.panelDetails li:not(:last-child) {
  margin-bottom: 4px;
}
.panelDetails li strong {
  margin-right: 10px;
}

.editing .panelDetails li {
  min-height: 35px;
}
.editing .panelDetails label {
  font-weight: 700;
  font-size: 1rem;
  display: inline;
  margin-right: 10px;
}
.editing .panelDetails select {
  display: inline;
  width: auto;
  background: transparent;
  color: #333;
  border-bottom: 1px solid;
  border-radius: 0px;
}
.editing .panelDetails select:focus-visible {
  border: 1px solid;
  outline: none;
}

.area_account {
  position: relative;
}

.accountImage {
  max-width: 200px;
}

.btn-edit {
  text-align: center;
  margin-left: auto;
}

#deleteUser {
  margin-top: 20px;
  margin-left: 20px;
  line-height: 1.4em;
}

.editPanel .inputWrapper {
  width: auto;
}

.pageActions {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
}

.inlineInput strong, .inlineInput input {
  display: inline;
  width: auto;
}

.formResults {
  position: fixed;
  background: #fff;
  box-shadow: 4px 4px 10px #c7c7c7;
  border: 2px solid #2d4242;
  border-radius: 3px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 233px;
  min-height: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 100;
}
.formResults:empty {
  opacity: 0;
  visibility: hidden;
}

.userListHeading,
.userItem {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.userListHeading span,
.userItem span {
  padding: 9px 15px;
  display: flex;
  align-items: center;
}

.vsb-main .vsb-menu :not(.multi) li.active {
  margin-left: 0;
}
.vsb-main .vsb-menu :not(.multi) li.active:before {
  margin-left: -11px;
}
.vsb-main li.short {
  overflow: visible;
}

.userListHeading {
  font-weight: 700;
  background: #2c4242;
  color: #fff;
}

.userItem {
  border-bottom: 1px solid #999;
}
.userItem img {
  width: 150px;
}
.userItem span {
  border-right: 1px solid #999;
}
.userItem span:first-child {
  border-left: 1px solid #999;
}

.panelSchedule {
  width: 100%;
}

/* footer styles */
footer {
  background: #40717b;
  padding: 25px 0;
  text-align: center;
}

.copyright {
  font-weight: 100;
  color: #fff;
}
.copyright a {
  color: #fff;
}

#notificationBox {
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1000;
  background: rgba(64, 113, 123, 0.7411764706);
  color: #fff;
  backdrop-filter: blur(3px);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2117647059);
  padding: 67px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s cubic-bezier(0.13, 0.57, 0.52, 0.94), display 0s 0.5s, visibility 0s 0.5s, z-index 0s 0.5s;
}
#notificationBox.show {
  display: flex;
  visibility: visible;
  opacity: 1;
  z-index: 1000;
  transition: opacity 0.5s cubic-bezier(0.13, 0.57, 0.52, 0.94), display 0s, visibility 0s, z-index 0s;
}

#globalMsgCloser {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s linear;
}
#globalMsgCloser:hover {
  transform: rotate(90deg);
}

/*
  resource tab element
 */
.tab-content {
  display: none;
  flex-wrap: wrap;
}
.tab-content[data-active-tab] {
  display: flex;
}

.tab-btns {
  display: flex;
}

.tab-btn {
  height: 30px;
  padding: 0 25px;
  background: #474747;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.tab-btn[data-active-tab] {
  background: #43727a;
}

.ir_scan_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/*
  functional styles
 */
.fw-light {
  font-weight: 400;
}

/* Admin Styles */
a > svg {
  margin-right: 20px;
  font-size: 2rem;
}

.selectWrapper .vsb-main {
  width: 100%;
}

/* Responsive Styles */
@media (min-width: 992px) {
  .nav {
    justify-content: flex-end;
  }
}
@media (max-width: 991.99px) {
  .nav {
    justify-content: center;
  }
  #headerSearchForm {
    margin-right: auto;
  }
  .headerLower {
    text-align: center;
  }
}
@media (max-width: 767.99px) {
  .headerUpperContent {
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
  }
  .maintenanceNotice,
  .maintenanceTrigger {
    width: 100%;
  }
  .maintenanceTrigger,
  .headerMessage {
    text-align: center;
  }
  .headerMessage {
    margin: auto;
  }
  .maintenancePopup {
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
  }
}
@media (min-width: 500px) {
  .searchValues li {
    border-right: 1px solid;
  }
  .searchValues li:first-child {
    padding-left: 0;
  }
}
@media (max-width: 499.99px) {
  .pagination {
    justify-content: center;
    padding: 0;
  }
  .pagination .paginationControls {
    width: 100%;
    justify-content: center;
  }
  .detailTitle {
    padding-bottom: 7px;
  }
  .searchValues li {
    width: 100%;
    margin-bottom: 15px;
  }
}
/*# sourceMappingURL=style.css.map */
