/* Scroll-bar Customizations */

/* width */
::-webkit-scrollbar {

	width: 8px;

	border-radius: 5px;

	transition: 0.2s;

}

/* Track */
::-webkit-scrollbar-track {

	background: transparent;

}

/* Handle */
::-webkit-scrollbar-thumb {

	background: rgba(255, 255, 255, 0.375);

	border-radius: 4px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {

	background: rgba(255, 255, 255, 0.5);

	border-radius: 5px;

}

/* Handle active*/
::-webkit-scrollbar-thumb:active {

	background: rgba(255, 255, 255,0.25);

}

::placeholder {

	color: rgb(191,191,191);

}