    /*stuff for the scrollbar*/
    .scrollable {
      height: 100px;
      /* or any value */
      overflow-y: scroll;
    }

    .scrollarea-content {
      min-height: 101%;
    }

    ::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 7px;
    }

    ::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: rgba(0, 0, 0, .5);
      box-shadow: 0 0 1px rgba(255, 255, 255, .5);
    }