#wot-sidenav-ctw{
  position: fixed;
  top: 0;              
  bottom: 0;           
  left: 24px;         
  left: auto;
  transform: none;    
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
}

#wot-sidenav-ctw::before{
  content:"";
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0;
  opacity: 0;
  transition: opacity 160ms ease;
  top: 35px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

#wot-sidenav-ctw:hover::before,
#wot-sidenav-ctw:hover:focus-within::before { opacity: 1; }

#wot-sidenav-ctw.ctw-nav--hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
  pointer-events: none;
}

#wot-sidenav-ctw .ctw-nav__inner {
  position: fixed; 
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  top: 0;                
  bottom: 0;                
  left: 0;              
  right: auto;
  transform: none;          
  height: auto;     
  display: inline-flex;
  flex-direction: column;
  gap: 10px; 
  padding: 10px 8px;
  background: transparent;
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: auto;
}

#wot-sidenav-ctw:hover .ctw-nav__inner,
#wot-sidenav-ctw:hover:focus-within .ctw-nav__inner {
  border-radius: 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

#wot-sidenav-ctw .ctw-nav__item {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 6px 10px;
  user-select: none;
  color: #5d5c56;
  position: relative;
}

#wot-sidenav-ctw .ctw-nav__item:hover {
  background: rgba(255,255,255,0.08);
  color: #f9f5e1;
}

#wot-sidenav-ctw .ctw-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  flex: 0 0 auto;
}

#wot-sidenav-ctw .ctw-nav__item:hover .ctw-nav__dot {
  background:#f9f5e1;
}

#wot-sidenav-ctw .ctw-nav__item.ctw-nav__item--active .ctw-nav__dot {
  background-color: #f9f5e1;
}

#wot-sidenav-ctw .ctw-nav__item.ctw-nav__item--active {
  background: rgba(255,255,255,0.10);
  color: #f9f5e1;
}

#wot-sidenav-ctw .ctw-nav__label {
  text-transform: uppercase;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  order: -1;
  transition: max-width 140ms ease, opacity 140ms ease;
}

#wot-sidenav-ctw:hover .ctw-nav__label {
  max-width: 260px;
  opacity: 1;
}

@media (max-width: 767px) {
  #wot-sidenav-ctw { display: none; }
}

#wot-sidenav-ctw .ctw-nav__item:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 14px;           
  top: 29px;   
  width: 1px;
  height: 17px;
  background: #7a796e;
  pointer-events: none;
}