#left-menu-panel {
  display: none;
  background-color: var(--cb-white);
  width: calc(100% - 40px);
  max-width: 250px;
  height: 100vh;
  margin: 0;
  padding: 0 0 16px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  animation: slideToRight 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  transition: all 0.45s ease-in-out;
}
#left-menu-panel.show {
  display: block;
}
#left-menu-panel.show + #overlay-menu-opened {
  display: block;
}
#left-menu-panel .top {
  display: flex;
  padding: 6px 0 14px 25px;
}
#left-menu-panel .top a#left-menu-link2 {
  width: 41px;
  height: 36px;
  padding: 6px 0 0 0;
  color: var(--cb-fg_color);
  font-size: 20px;
  line-height: 20px;
  text-align: left;
}
#left-menu-panel .top a.logo {
  display: flex;
  width: 142px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}
#left-menu-panel .top a.logo img {
  height: 36px;
}
#left-menu-panel > ul {
  display: block;
  height: calc(100vh - 72px);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
  scrollbar-width: thin;
}
#left-menu-panel li {
  line-height: 1.2;
}
#left-menu-panel li a {
  display: block;
  padding: 8px 21px;
  color: var(--cb-fg_color);
  line-height: 0;
  font-size: 0;
}
#left-menu-panel li a i.left, #left-menu-panel li a i.right {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
}
#left-menu-panel li a i.left {
  margin: 2px 8px 2px 0;
}
#left-menu-panel li a i.right {
  display: none;
  margin: 2px 0 2px 8px;
  vertical-align: top;
}
#left-menu-panel li a i.whatsapp {
  background: url("images/icon-whatsapp.svg") no-repeat center center;
  background-size: 18px 18px;
}
#left-menu-panel li a .text {
  display: inline-block;
  width: calc(100% - 28px);
  font-size: 16px;
  line-height: 24px;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#left-menu-panel li a .forum-icon {
  background-color: var(--cb-fg_color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 2px 8px 2px 0;
  border-radius: 100%;
  vertical-align: top;
}
#left-menu-panel li a:hover, #left-menu-panel li a:focus {
  background-color: var(--cb-bg_color2);
}
#left-menu-panel li.mobile {
  display: none;
}
#left-menu-panel li.sep {
  margin: 12px 0;
  padding: 0 16px;
}
#left-menu-panel li.sep:after {
  content: "";
  display: block;
  background-color: var(--cb-border_color);
  height: 1px;
}
#left-menu-panel li.title {
  padding: 8px 21px;
  color: var(--cb-fg_color);
  font-size: 18px;
  font-weight: 600;
}
#left-menu-panel li.search {
  padding: 8px 21px;
}
#left-menu-panel li.search input {
  width: 100%;
  padding: 0 1em;
  height: 40px;
  line-height: 3.123em;
  font-size: 1em;
  font-weight: 400;
  background-color: var(--cb-bg_color);
  border: 0.0625em solid var(--cb-border_color);
  border-radius: 0.313em;
  color: var(--cb-secondary_fg_color);
}
#left-menu-panel li.info-footer {
  padding: 8px 21px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
#left-menu-panel li ul {
  display: none;
  padding: 0;
  list-style: none;
}
#left-menu-panel li ul.show {
  display: block;
}
#left-menu-panel li ul li a {
  padding-left: 32px;
}
#left-menu-panel li.with-submenu a .text {
  width: calc(100% - 56px);
}
#left-menu-panel li.with-submenu a i.right {
  display: inline-block;
}

#overlay-menu-opened {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
}

#default-header #header-left-menu-content {
  width: 41px;
  line-height: 32px;
  position: relative;
}
#default-header #header-left-menu-content #left-menu-link {
  color: var(--cb-fg_color);
  margin-top: 6px;
}
#default-header #header-left-menu-content + .socialv-logo.navbar-brand {
  justify-content: center;
}