/* Stite Styles */
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes grow {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes grow {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
@-o-keyframes grow {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes grow {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
@-moz-keyframes poof {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: scale(1) rotate(720deg);
    opacity: 0;
  }
}
@-webkit-keyframes poof {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: scale(1) rotate(720deg);
    opacity: 0;
  }
}
@-o-keyframes poof {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: scale(1) rotate(720deg);
    opacity: 0;
  }
}
@keyframes poof {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: scale(1) rotate(720deg);
    opacity: 0;
  }
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin-grow {
  0% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
  50% {
    transform: rotate(360deg) scale(3) translateZ(0);
  }
  100% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
}
@-webkit-keyframes spin-grow {
  0% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
  50% {
    transform: rotate(360deg) scale(3) translateZ(0);
  }
  100% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
}
@-o-keyframes spin-grow {
  0% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
  50% {
    transform: rotate(360deg) scale(3) translateZ(0);
  }
  100% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
}
@keyframes spin-grow {
  0% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
  50% {
    transform: rotate(360deg) scale(3) translateZ(0);
  }
  100% {
    transform: rotate(0deg) scale(1) translateZ(0);
  }
}
html {
  -webkit-overflow-scrolling: touch;
}
.brand-nav-bar {
  position: relative;
  z-index: 1050;
  padding: 0.3rem 0;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.brand-nav-bar::-webkit-scrollbar {
  display: none;
}
.brand-nav-bar .brand-nav-content {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: left;
}
@media (min-width: 768px) {
  .brand-nav-bar .brand-nav-content {
    justify-content: center;
  }
}
.brand-nav-bar .brand-nav-content .brand-nav-icon {
  height: 100%;
  width: auto;
  padding: 2px 2px 6px;
  display: inline;
}
.brand-nav-bar .brand-nav-content .brand-nav-text {
  display: inline-block;
  margin: 0;
  padding-left: 5px;
}
.brand-nav-bar .brand-nav-content i {
  padding: 0 5px 0 2px;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo {
  height: 100%;
  width: auto;
  margin: 0 5px;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a {
  display: inline-block;
  height: 100%;
  width: auto;
  padding: 0 5px;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a img,
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a svg {
  height: 100%;
  width: auto;
}
.bounce-icon {
  animation: bounce 1s 3;
}
@media (min-width: 992px) {
  .bounce-icon {
    animation: none;
  }
}
@-moz-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.brand-nav-bar {
  background-color: #eaeaea;
}
.brand-nav-bar .brand-nav-content .brand-nav-text {
  color: #333f48;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a.current-site svg {
  fill: #333f48;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a.not-current-site {
  background-color: transparent;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a.not-current-site svg {
  fill: #778793;
}
.brand-nav-bar .brand-nav-content .brand-nav-logos .brand-nav-logo a.not-current-site:hover svg {
  fill: #333f48;
}
.bounce-icon {
  color: #333f48;
}
.brand-nav-bar {
  font-size: 0.9em;
}
.brand-nav-bar .brand-nav-content .brand-nav-text {
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}
/*Small devices (landscape phones, 576px and up)*/
/*Medium devices (tablets, 768px and up)*/
/* Large devices (desktops, 992px and up)*/
/* Extra large devices (large desktops, 1200px and up)*/


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