.menu__subitem:hover .menu__subitem-items {
    opacity: 1;
    visibility: visible;
  }
  
  .menu__subitem-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 28px;
    display: flex !important;
    align-items: flex-start;
    height: unset !important;
    gap: 10px;
    break-inside: avoid;
  }
  .menu .menu__subitem .menu__subitem-item:hover {
    color: #1ab2f2;
  }
  
  .menu__subitem-item-desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .menu__subitem-item-img {
    width: 28px;
    display: flex;
    flex-shrink: 0;
  }
  .menu__subitem-item-name {
    text-transform: none;
    line-height: 1;
    font-size: 15px;
  }
  .menu__subitem-item-text {
    text-transform: none;
    font-weight: 400;
    line-height: 1.1;
    font-size: 13px;
  }
  .has-subitems {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }
  
  .menu .has-submenu:after {
    display: none;
  }
  
  .menu .has-submenu::before {
    content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='5 3 15 15' fill='none' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M17 10.5L12.5 15L8 10.5' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    align-items: center;
  }
  
  .has-subitems:before {
    content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='5 5 15 15' fill='none' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M17 10.5L12.5 15L8 10.5' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    color: #fff;
    width: 72px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    transition: all 0.2s;
  }
  
  .has-subitems.active-sub-items:before {
    transform: rotate(-180deg);
    line-height: 42px;
  }
  
  .has-subitems.active-sub-items:after {
    display: none;
  }
  
  .menu__subitem-items {
    display: none;
  }
  
  @media screen and (min-width: 1017px) {
    .menu__subitem-items {
      position: absolute;
      left: 100%;
      top: 0;
      background: #383d45;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-left: 1px solid #ccc;
      padding: 20px 0 25px;
      min-width: 660px;
      z-index: 1;
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      align-content: start;
      row-gap: 20px;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.2s;
      transition: all 0.2s;
      min-height: 100%;
      max-height: calc(100vh - 170px);
      overflow-y: auto;
      scrollbar-width: thin;
    }
    .menu .menu__sublist {
      display: grid !important;
      width: 250px;
    }
    .has-subitems:before,
    .has-subitems:after {
      display: none;
    }
    .has-subitems {
      position: unset;
    }
  }