::-webkit-scrollbar {
    width: 6px;
	
}
::-webkit-scrollbar-track {
    background-color: #eee;
    border-left: 0px solid #ccc;
	border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    background-color: #aaa;
	border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}


.loader {
        margin:0px auto;
        margin-top:20%;
        border: 5px solid #f3f3f3; /* Light grey */
        border-top: 5px solid #62cb31; /* Blue */
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

    @-webkit-keyframes spin {
      0% { -webkit-transform: rotate(0deg); }
      100% { -webkit-transform: rotate(360deg); }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }