/* Header Blockc */
#headerBlock {
  font-family: var(--default-font);
}
#headerBlock .row {
  justify-content: space-between;
}
.subPageNav {
  display: flex;
  min-height: 10px;
  background: var(--brand-color);
}
.headerLeft {
  width: 245px;
  display: flex;
  padding-left: 15px;
}

.headerLeft a {
  display: flex;
  height: 100%;
  align-items: center;
}

/* Main Navigation */
.mainnav {
  display: flex;
  flex: 1;
  height: 100%;
}
.mainnav ul {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.mainnav ul.nav li {
  background: var(--light-gray);
  height: 85px;
  margin-left: 1px;
  margin-right: 1px;
  width: 85px;
}
.mainnav ul.nav li a {
  height: 100%;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 0px;
  background: transparent;
  color: var(--black-color);
}
.mainnav ul.nav li a span.icon {
  display: block;
  height: 35px;
}
.mainnav ul.nav li a svg * {
  stroke: var(--black-color);
}
.mainnav ul.nav li a:hover,
.mainnav ul.nav li.current a {
  color: var(--brand-color);
}
.mainnav ul.nav li a:hover svg *,
.mainnav ul.nav li.current a svg * {
  stroke: var(--brand-color);
}

/* Header Right Navigation */
.headerRight {
  align-items: center;
  justify-content: center;
  display: flex;
  padding-right: 15px;
}

.headerRight nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.headerRight nav ul li {
  margin-left: 1px;
  margin-right: 1px;
  position: relative;
}
.headerRight ul.popnav {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: none;
  position: absolute;
  width: 200px;
  height: auto;
  right: -0px;
  padding: 10px;
  background: white;
  box-shadow: 0 0 10px #999999;
  z-index: 999;
}
.headerRight ul.popnav li {
  display: block;
}

.headerRight li:hover ul.popnav {
  display: block;
}
.headerRight li ul.popnav li a {
  display: block;
  padding: 10px;
  border-bottom: solid 1px var(--border-color);
  background: white;
  font-size: 12px;
  color: var(--primary-color);
}
.headerRight li ul.popnav li:last-child a {
  border: none;
}
.headerRight nav ul li a.dashboard,
.headerRight nav ul li a.config {
  display: flex;
  width: 37px;
  height: 50px;
  justify-content: center;
  text-align: center;
  background: var(--light-gray);
  align-items: center;
}
.headerRight nav ul li a.course,
.headerRight nav ul li a.user {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  text-align: center;
  background: var(--light-gray);
  align-items: center;
  color: var(--primary-color);
  padding: 0px;
}
.headerRight nav ul li a.course img,
.headerRight nav ul li a.user img {
  width: 50px;
  height: 50px;
}
.headerRight nav ul li a:hover,
.headerRight nav ul li.current a {
  color: var(--brand-color);
}
.headerRight nav ul li a:hover svg *,
.headerRight nav ul li.current a svg * {
  stroke: var(--brand-color);
}

/* Sub Page Nav */
.subPageNav nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.subPageNav nav ul li a {
  min-height: 35px;
  font-size: 14px;
  font-family: var(--default-font);
  color: white;
  font-weight: 600;
  display: block;
  line-height: 35px;
  padding-left: 15px;
  padding-right: 15px;
}
.subPageNav nav ul li.current a {
  color: var(--black-color);
  background: white;
}
