body {
	margin: 0;
	cursor: pointer;
    background-color: #2A2A2E;
    color: white;
	font-family: sans-serif;
}

.border-radius {
    border-radius: 5px;
}

.color-red{
	color: #DC3545;
}

.color-blue{
	color: #007BFF;
}

.color-green{
	color: #28A745;
}

.background-red{
	background-color: #DC3545;
	color: white;
}

.background-blue{
	background-color: #007BFF;
	color: white;
}

.background-green{
	background-color: #28A745;
	color: white;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #343a40;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #343a40;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #f8f9fa;
}

/* Animations Start */

.zoomOut {
	-webkit-animation-duration: 0.5s;
}

.zoomIn {
	-webkit-animation-duration: 0.5s;
}

.flash {
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
}

/* Animations End */