.sksHeader {
  background-color: #9fb1bb;
  opacity: 85%;
  width: 140px;
  height: 100svh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 10;
  border-right: 2px solid white;
}
.sksHeader > div:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -20px;
}
.sksHeader > div:first-of-type > h1 {
  display: block;
  margin: 40px auto 24px;
  padding-left: 0px;
  text-align: center;
}
.sksHeader > div:first-of-type > h1 > a > img {
  width: 100px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.sksHeader > div:first-of-type > h1 > a > p {
  text-indent: 0;
  margin-top: -14px;
  margin-right: -2px;
  font-size: 24px;
  letter-spacing: 3px;
  color: #004aad;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.sksHeader > div:first-of-type > h1:before {
  display: none;
}
.sksHeader > div:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sksHeader > div:last-of-type > ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 140px;
  padding-left: 0px;
  font-size: 22px;
  font-weight: normal;
}
.sksHeader > div:last-of-type > ul > li {
  font-weight: bold;
}
.sksHeader > div:last-of-type > ul > li > a {
  display: block;
  padding: 18px 20px;
  text-align: center;
  color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.sksHeader > div:last-of-type > ul > li:last-child {
  margin-top: 40px;
}
.sksHeader > div:last-of-type > ul > li:last-child > a {
  background-color: #448db3;
  margin: 0px 14px;
  border-radius: 8px;
  padding: 12px 20px;
}
@media (max-width: 767px) {
  .sksHeader {
    display: none;
  }
}

.sksHeader_Selected {
  background-color: #f06a74;
}
.sksHeader_Selected > a {
  color: #f2f2f2 !important;
}

.sksHeader_Focused {
  transition: all 0.5s ease;
}
.sksHeader_Focused:hover {
  background-color: #f06a74;
  transition: all 0.5s ease;
}