  .charts .container {
    display: flex;
    align-items: stretch !important;
  }

  .charts__graph {
    width: 70% !important;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12px;
    position: relative;
    padding-bottom: 90px;
  }

  .charts__grapth-actions .left {
    left: 10px;
  }

  .charts__grapth-actions .right {
    right: 10px;
  }

  .charts__grapth-actions .left,
  .charts__grapth-actions .right {
    position: absolute;
    bottom: 10px;
    background-color: #fff;
    border: 1px solid #5b5b5b;
    outline: none;
    border-radius: 4px;
    font-size: 24px;
    line-height: 30px;
    user-select: none;
    transition: color .1s linear, background .1s linear; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 23px;
  }

  .charts__grapth-actions .left:active,
  .charts__grapth-actions .right:active {
    background-color: #000;
    color: #fff;
    transition: color .1s linear, background .1s linear; 
  }

  .charts__grapth-actions .text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 31px;
    font-size: 21px;
    color: #484848;
  }

  .charts__shops {
    width: 30% !important;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-right: 5px;
  }

  #line-chart {
    height: 380px !important;
  }
  
  .charts__shops-title {
    font-size: 30px;
  }

  .charts {
    padding-top: 30px;
  }

  .charts__shops-item {
    font-size: 25px;
    margin-bottom: 6px;
    opacity: 0.6;
    transition: opacity .2s linear;
  }

  .charts__shops-item:hover {
    opacity: 1;
    transition: opacity .2s linear;
  }

  .charts__shops-item.active {
    opacity: 1;
  }

  .charts__shops-item__logo {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }


  .charts__shops-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .charts__shops-item__info {
    display: flex;
    align-items: center;
  }

  .charts__shops-item__name {
    font-size: 19px;
  }

  .charts__shops-content {
    margin-top: 20px;
  }

  .charts__shops-item {
    margin-bottom: 10px;
  }

  .charts__shops-item__price {
    font-size: 17px;
  }

  .charts__shops-item  {
    display: flex;
    align-items: center;
  }

  .charts__graph-line {
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .charts__grapth-actions {
    display: none;
  }

  @media(max-width: 1200px) {
    .charts__shops-item__name {
      font-size: 19px !important; 
    }
  }

  @media(max-width: 1000px) {
    .charts .container {
      flex-direction: column;
    }

    .charts__graph {
      margin-top: 10px;
      width: 100% !important;
      overflow-x: auto;
    }

    #line-chart {
      width: 150%
    }

    .charts__shops {
      width: 100% !important;
    }

    .charts__shops-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 100px;
    }

    .charts__shops-item__price {
      font-size: 19px;
    }

    .charts__shops-item__info .charts__shops-item__name {
      display: none !important;
    }

    .charts__grapth-actions {
      display: block;
    }

    .charts__shops-item  {
      justify-content: stretch;
    }
  }

  @media(max-width: 550px) {
    .charts__shops-item__price {
      font-size: 18px;
    }

    .charts__shops-item__logo {
      width: 39px !important;
      height: 39px !important;
      margin-right: 7px !important;
    }

    .charts__shops-content {
      gap: 0 10px;
    }

    #line-chart {
      width: 350%
    }


    .charts__grapth-actions .text {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 27px;
      font-size: 17px;
      color: #484848;
      max-width: 104px;
    }
  }