/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
.custom-scrollbar-js,
.custom-scrollbar-css {
	height: 400px;
}


/* Custom Scrollbar using CSS */
.custom-scrollbar-css {
	overflow-y: scroll;
}

	/* scrollbar width */
	.custom-scrollbar-css::-webkit-scrollbar {
		width: 20px;
	}

	/* scrollbar track */
	.custom-scrollbar-css::-webkit-scrollbar-track {
		background: #eee;
	}

	/* scrollbar handle */
	.custom-scrollbar-css::-webkit-scrollbar-thumb {
		border-radius: 1rem;
		background-color: #00ffff;
		background-image: linear-gradient(to top, #00d2ff 0%, #3a7bd5 100%);
	}


/*
*
* ==========================================
* FOR DEMO PURPOSES
* ==========================================
*
*
body {
	min-height: 100vh;
	background-color: #00d2ff;
	background-image: linear-gradient(to right, #00d2ff 0%, #3a7bd5 100%);
}
*/

