/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #EC993D;
    border-radius: 10px;
  }

div.scroll {
    /* background-color: #fed9ff; */
    height: 67vh;
    overflow-x: hidden;
    overflow-y: scroll;

    padding: 20px;
  }