.sidebar {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100px;
  height: calc(100vh - 100px);
  background-color: #161b26;
  padding: 20px;
  overflow: auto;
  text-align: center;
}

.sidebar__menu ul li {
  margin-bottom: 12px;
}
.sidebar__menu ul li a {
  background-color: #181D29;
  border-radius: 16px;
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  line-height: 4;
  border: 2px solid transparent;
  transition: all 0.6s ease-in-out;
}
.sidebar__menu ul li a path {
  fill: rgba(255,255,255,0.7);
}
.sidebar__menu ul li:hover a {
  border-color: #00f5a3;
  transition: all 0.6s ease-in-out;
}
.sidebar__menu ul li:hover a svg path {
  fill: #00f5a3;
  transition: all 0.6s ease-in-out;
}
.sidebar__menu ul .active a {
  border-color: #00f5a3;
  transition: all 0.6s ease-in-out;
}
.sidebar__menu ul .active a svg path {
  fill: #00f5a3;
  transition: all 0.6s ease-in-out;
}
.sidebar__menu ul .for-mobile {
  display: none;
}

.sidebar__games {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px solid #242B3E;
}
.sidebar__games .sidebar__game {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #181D29;
  border-radius: 16px;
  margin: 0 auto 12px;
}
.sidebar__games .add__game {
  background-color: #0B0D13;
  border: 2px solid #242B3E;
  border-radius: 16px;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.site__language {
  position: fixed;
  top: auto;
  bottom: 20px;
  left: 37px;
  right: auto;
  text-align: center;
}

@media (max-width: 1600px) {
  .site__language {
    left: 28px;
  }
}
.language__item span {
  display: block;
  color: #404B66;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.language__item img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

@media (max-width: 1600px) {
  .sidebar {
    top: 88px;
    width: 80px;
    height: calc(100vh - 88px);
  }
  .sidebar__menu ul li a {
    width: 40px;
    height: 40px;
    line-height: 2.5;
    border-radius: 12px;
  }
  .sidebar__menu ul li a svg {
    width: 20px;
  }
  .sidebar__games .sidebar__game {
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 12px;
  }
  .sidebar__games .sidebar__game img {
    width: 20px;
  }
  .sidebar__games .add__game {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .sidebar__games .add__game img {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .sidebar__games, .site__language {
    display: none;
  }
  .sidebar {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    padding: 0 15px;
    border-top: 1px solid #242B3E;
    overflow: hidden;
  }
  .sidebar__menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar__menu ul li {
    flex: 1;
    margin: 0;
  }
  .sidebar__menu ul li a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
    border: none;
    margin: auto;
    background-color: transparent;
  }
  .sidebar__menu ul .for-mobile {
    display: block;
  }
}
@media screen and (min-width: 320px) and (max-width: 812px) and (orientation: landscape) {
  .sidebar__links {
    height: 100%;
    overflow: auto;
  }
}
.sidebar.custom__scroller-desktop .mCSB_scrollTools.mCSB_2_scrollbar {
  display: none !important;
}