.menuactive{
	border-radius: 0 !important;
	background: #2185d0 !important;
}

.red_bg{
	background: #db2828 !important;
	color: white !important;
}

.blue_bg{
	background: #1c71b1 !important;
	color: white !important;
}

.green_bg{
	background: #21ba45 !important;
	color: white !important;
}

.orange_bg{
	background: #f2711c !important;
	color: white !important;
}

.purple_bg{
	background: #a333c8 !important;
	color: white !important;
}

.teal_bg{
	background: #00b5ad !important;
	color: white !important;
}

.violet_bg{
	background: #6435c9 !important;
	color: white !important;
}

.grey_bg{
	background: #767676 !important;
	color: white !important;
}

.red_txt{
	color: #db2828 !important;
}

.blue_txt{
	color: #1c71b1 !important;
}

.green_txt{
	color: #21ba45 !important;
}

.orange_txt{
	color: #f2711c !important;
}

.purple_txt{
	color: #a333c8 !important;
}

.teal_txt{
	color: #00b5ad !important;
}

.violet_txt{
	color: #6435c9 !important;
}

.grey_txt{
	color: #767676 !important;
}

a {
  text-decoration: none;
}

.link{
	cursor:pointer !important;
}


.disabled{
	cursor: not-allowed;
	pointer-events: none;
	text-decoration: none;
	color: #CCC;
}

#panel{
	padding-top: 40px !important;
	/*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;*/
}

#menu::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#menu::-webkit-scrollbar{
	width: 0px;
	background-color: #F5F5F5;
}

#menu::-webkit-scrollbar-thumb{
	background-color: #000000;
	border: 0px solid #555555;
}

#preloader {
	z-index: 1000;
	background: #CCC;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}
#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #9370DB;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #BA55D3;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #FF00FF;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
	0%   {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	0%   {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@media screen and (max-width: 766px) {
  	.hide_on_mobile {
	    visibility: hidden;
	    clear: both;
	    float: left;
	    margin: 10px auto 5px 20px;
	    width: 28%;
	    display: none !important;
  	}
}

@media screen and (min-width: 766px) {
  	.hide_on_desktop {
	    visibility: hidden;
	    clear: both;
	    float: left;
	    margin: 10px auto 5px 20px;
	    width: 28%;
	    display: none !important;
  	}
}