/* GENERAL */
body {
	font-family: 'Open Sans', sans-serif;
	color: white;
	font-size: 18px;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
}
h1, h2, h3, h4, h5, a, .nav-link {
	font-family: 'Raleway', sans-serif;
}
input {
	border-radius: 0.5!important;
	box-shadow: none!important;
}
footer {
	font-size: 10px !important;
}
.row, .container-fluid {
	margin: 0px;
	padding: 0px;
}
.separator {
	height:85px;
}
.bg-custom-1 {
	background-color: #d63e14;
}
.bg-custom-2 {
	background-color: #0087b0;
}
.bg-custom-3 {
	background-color: #f2710b;
}
.bg-custom-4 {
	background-color: #3d9975;
}
.bg-custom-5 {
	background-color: #913d89;
}
.bg-custom-6 {
	background-color: #404040;
}
.btn-custom-color-1 {
	color: white;
	background-color: #d63e14;
	border-color: #d63e14;
}
.btn {
	border-radius: 0 !important;
}
.cursor-pointer{
	cursor: pointer!important;
}
/* SCROLLBAR */
::-webkit-scrollbar {
	width: 4px;
}
::-webkit-scrollbar-track {
	background: white;
}
::-webkit-scrollbar-thumb {
	background: #404040;
}
::-webkit-scrollbar-thumb:hover {
	background: #404040;
}
/* NAVBAR */
.navbar {
	padding: 0 !important;
}
.nav-link {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8) !important;
}
.nav-link:hover {
	color: rgba(255, 255, 255, 1) !important;
}
.nav-item {
	padding-right: 2px;
	padding-left: 2px;
}
.navbar-toggler-icon {
	color: white !important;
}
/* BUTTON PULSE */
@keyframes shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(255,193,7,0.8);
	}
	100% {
		box-shadow: 0 0 0 6px rgba(255,193,7,0);
	}
}
.btn-pulse {
	animation: shadow-pulse 1s infinite;
}
/* MODAL */
.modal-content {
	border: 0 !important;
	border-radius: 0 !important;
}
.modal, .modal-content {
	background-color: #404040;
}
/*ALERT*/
.alert-box {
	position: fixed;
	z-index: 999999;
	width: 350px;
	top: 40px;
	left: 50%;
	transform: translate(-50%, 0);
	box-shadow: 0px 0px 36px -5px rgba(0,0,0,0.75);
}
/* COLORS BOOSTRAP*/
.btn-danger, .bg-danger {
	background-color: #d63e14 !important;
	color: white;
}
.btn-warning, .bg-warning {
	background-color: #f2710b !important;
	color: white;
}
.btn-success, .bg-success {
	background-color: #3d9975 !important;
	color: white;
}
.btn-info, .bg-info {
	background-color: #0087b0 !important;
	color: white;
}
.btn-primary, .bg-primary {
	background-color: #1f91f3 !important;
	color: white;
}
.btn-secondary, .bg-secondary {
	background-color: #444 !important;
	color: white;
}
.btn-purple, .bg-purple {
	background-color: #913d89 !important;
	color: white;
}
.text-danger {
	color: #d63e14 !important;
}
.text-warning {
	color: #f2710b !important;
}
.text-success {
	color: #3d9975 !important;
}
.text-info {
	color: #0087b0 !important;
}
.text-primary {
	color: #1f91f3 !important;
}
.text-secondary {
	color: #444 !important;
}
.text-default {
	color: #9E9E9E !important;
}