@media screen and (max-width: 1260px) and (min-width: 768px) {
  .table-of-content {
    width: 100%;
  }
  .table-of-content .table-of-content__mobile-button {
    display: flex;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 0 30px 0 9px;
    background: #000000;
    cursor: pointer;
    position: relative;
    height: 34px;
    align-items: center;
    color: white;
    border-radius: 6px;
  }
  .table-of-content .table-of-content__mobile-button:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    right: 9px;
    background: url(../../../../images/icons/bold_arrow_white.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .table-of-content .table-of-content__content {
    display: none;
    height: calc(100% - 70px);
    opacity: 1;
    overflow: auto;
    position: fixed;
    top: 78px;
    width: 100%;
    z-index: 100000000000000020000;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-height: 100%;
    left: 0;
    right: 0;
  }
  .table-of-content .table-of-content__content > ul {
    padding-bottom: 90px;
  }
  .table-of-content .table-of-content__content > ul > li.has-child {
    position: relative;
  }
  .table-of-content .table-of-content__content > ul > li.has-child:after {
    content: "";
    width: 18px;
    height: 18px;
    top: 2px;
    right: 15px;
    position: absolute;
    background: url(../../../../images/icons/bold-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .table-of-content .table-of-content__content > ul > li.has-child.active:after {
    transform: rotateZ(-180deg);
  }
  .table-of-content .table-of-content__content > ul > li.active > a {
    position: relative;
  }
  .table-of-content .table-of-content__content > ul > li.active ul {
    display: flex;
  }
  .table-of-content .table-of-content__content ul {
    margin-top: 20px;
    gap: 20px;
  }
  .table-of-content .table-of-content__content ul li a {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    width: 720px;
  }
  .table-of-content .table-of-content__content ul li.active > a {
    color: #FFFFFF;
    font-weight: 400 !important;
  }
  .table-of-content.opened .table-of-content__mobile-button {
    height: 78px;
    border-radius: 0;
    font-size: 16px;
    line-height: 24px;
    padding-left: 15px;
  }
  .table-of-content.opened .table-of-content__mobile-button:after {
    background: url(../../../../images/icons/close_icon_active.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .table-of-content.opened .table-of-content__content {
    display: block;
  }
}