body {
  overflow: hidden;
  font-family: "Segoe UI", Roboto, sans-serif !important;
  font-size: 16px; }

.icon-20 {
  font-size: 20px; }

.icon-30 {
  font-size: 30px; }

.main-layout {
  display: flex; }

.txt-type {
  color: #4ca8fb; }

.bside-panel {
  width: 70px;
  position: relative;
  transition: width 1s; }
  .bside-panel.opened {
    width: 400px; }

.bside {
  background-color: #fff;
  box-shadow: 1px 1px 2px 2px #bdbdbd;
  display: flex;
  width: 400px;
  height: 100vh;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 10;
  font-size: 16px;
  transition: right 1s;
  padding: 20px; }
  .bside .menu-icon {
    cursor: pointer;
    transition: transform 0.3s;
    font-size: 30px;
    height: 30px; }
  .bside .lang-drop-down {
    height: 30px; }
    .bside .lang-drop-down .lang-list > .lang-item {
      padding: 1rem;
      cursor: pointer; }
      .bside .lang-drop-down .lang-list > .lang-item:hover {
        background-color: whitesmoke; }
  .bside .title {
    margin-top: 1rem; }
  .bside .story-menu {
    margin-left: 1rem;
    flex-grow: 1; }
  .bside .story-list-container .story-list {
    padding-left: 1rem; }
    .bside .story-list-container .story-list .group-name {
      font-weight: bold;
      letter-spacing: .3rem;
      font-size: 1.5rem;
      color: #a8a8a8; }
    .bside .story-list-container .story-list > .story-list-item {
      padding: 0.5rem; }
    .bside .story-list-container .story-list .story-link {
      display: flex;
      position: relative;
      color: #10011C;
      transition: .3s ease-out; }
      .bside .story-list-container .story-list .story-link::before {
        content: ' ';
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        background: #000;
        transition: .1s;
        z-index: -1; }
      .bside .story-list-container .story-list .story-link:hover, .bside .story-list-container .story-list .story-link.active {
        color: white; }
        .bside .story-list-container .story-list .story-link:hover::before, .bside .story-list-container .story-list .story-link.active::before {
          width: 100%;
          transition: .3s; }
  .bside .story-list-container .collapse-heading-wrapper {
    border: none;
    padding: 0; }

.content {
  height: 100vh;
  padding: 2rem 4rem;
  background-color: rgba(230, 230, 230, 0.5);
  overflow: auto;
  flex-grow: 1; }
  .content .header {
    border-bottom: 1px solid #808080;
    margin-bottom: 2rem; }
  .content .story-wrapper {
    padding: 2rem;
    background-color: #fff; }
  .content .block-header {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
    line-height: 3.2; }
