@media screen and (min-width: 700px) and (max-width: 1000px) {


}


@media screen and (min-width: 1000px){

/* ===== Scrollbar CSS ===== */

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #ebebeb;
  }

  ::-webkit-scrollbar-thumb { 
    border-radius: 20px;
    min-height: 100px;
    min-width: 100px;
    border: 0.5px solid #d5d5d5;
    background: #e1e1e1;
    box-shadow: inset 2px 2px 2px
    hsla(0,0%,100%,.25),inset -2px -2px 2px rgba(0,0,0,.25);
  }

}