.cc-campus-tray {
  opacity: 0;
  width: 0;
  margin-left: 84px;
  padding: 16px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition: all 0.1s ease-in;
  box-shadow: 0 0.375rem 0.4375rem rgba(0, 0, 0, 0.1), 0 0.625rem 1.75rem rgba(0, 0, 0, 0.25);
}

.ic-app-header__menu-list-link:hover {
  color: #ffffff;
}

.css-hhosnl-view-listItem__mobile-campus {
  color: rgb(3, 116, 181);
}

.css-hhosnl-view-listItem__mobile-campus-container {
  display: flex;
  align-items: center;
}

.css-hhosnl-view-listItem__mobile-campus-container a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.ic-app-header__menu-list-link--active {
  color: var(--ic-brand-global-nav-menu-item__text-color--active);
}
.ic-app-header__menu-list-link--active:hover {
  color: var(--ic-brand-global-nav-menu-item__text-color--active);
}

.ic-app-header__menu-list-link--active svg path {
  fill: var(--ic-brand-global-nav-menu-item__text-color--active);
}

.cc-campus-tray--visible {
  opacity: 1;
  width: calc(28em - 116px);
}

.cc-campus-tray--visible__mobile {
  opacity: 1;
  width: calc(100% - 30px);
  margin-left: 0;
}

.cc-campus-tray--full-screen {
  width: calc(100% - 120px);
}

.cc-campus-tray__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cc-campus-tray__header {
  padding-bottom: 4px;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-campus-tray__header h2 {
  display: flex;
  align-items: center;
}

.cc-campus-tray__header h2 > span {
  margin-right: 8px;
}

.cc-campus-tray__header button {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
}

.cc-campus-tray__header button:disabled {
  cursor: default;
}

.cc-active-campus-full-screen__hidden {
  display: none !important;
}

.cc-campus-tray__header svg {
  width: 20px;
  height: 20px;
}

.cc-campus-tray-content {
  width: 100%;
  height: 100%;
  padding: 24px 0;
}

.cc-campus-tray-content iframe {
  border: 0;
}

body.primary-nav-transitions .ic-app-header__menu-list-item .ic-app-header__menu-list-link--label {
  display: none;
} 

/* Loading styles */

.cc-campus-loader {
  position: relative;
  margin: 0px auto;
  width: 80px;
  height: 80px;
}
.cc-campus-loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.cc-campus-circular-loader {
  -webkit-animation: rotate-cc-campus-loader 2s linear infinite;
          animation: rotate-cc-campus-loader 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.cc-campus-circular-loader-path {
  stroke-dasharray: 150,200;
  stroke-dashoffset: -10;
  -webkit-animation: dash-cc-campus-loader 1.5s ease-in-out infinite, color-cc-campus-loader 6s ease-in-out infinite;
          animation: dash-cc-campus-loader 1.5s ease-in-out infinite, color-cc-campus-loader 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate-cc-campus-loader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-cc-campus-loader {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash-cc-campus-loader {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash-cc-campus-loader {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color-cc-campus-loader {
  0% {
    stroke: #4F40FB;
  }
  40% {
    stroke: #4F40FB;
  }
  66% {
    stroke: #4F40FB;
  }
  80%, 90% {
    stroke: #4F40FB;
  }
}
@keyframes color-cc-campus-loader {
  0% {
    stroke: #4F40FB;
  }
  40% {
    stroke: #4F40FB;
  }
  66% {
    stroke: #4F40FB;
  }
  80%, 90% {
    stroke: #4F40FB;
  }
}
