body
{
	background-color: #F1F1F1 !important;
	padding-top: 56px;
}

a
{
	text-decoration: none;
	color: #ED1E79;
}

.text-primary
{
	color: #ED1E79 !important;
}

.border-primary
{
	border-color: #ED1E79 !important;
}

.btn-primary
{
	background-color: #ED1E79 !important;
	border-color: #ED1E79 !important;
}

.navbar::after
{
	content: "";
	box-shadow: 0 2px 4px 0 rgba(155,169,187,.3);
	display: block;
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 2px;
	bottom: 0;
}

ol li a
{
	color: #ED1E79 !important;
}

i.text-primary
{
	color: #ED1E79 !important;
}

.nav-masthead .active
{
	border-bottom-color: #ED1E79 !important;
}

.link-logo
{
	color: #FFF;
	text-decoration: none;
}

.link-logo:hover
{
	color: red;
}

.text-bg-dark
{
	color: #fff !important;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus
{
	color: #333;
	text-shadow: none; /* Prevent inheritance from `body` */
}

.process-loader
{
	background-color: rgba(0, 0, 0, .2);
	/*background-color: transparent;*/
	bottom: 0;
	left: 0;
	margin: auto;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.process-loader .circular
{
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	display: block;
	height: 120px;
	left: 50%;
	margin: -60px;
	position: fixed;
	top: 50%;
	width: 120px;
}

.process-loader .path
{
	-webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	stroke-dasharray: 1,200;
	stroke-dashoffset: 0;
	stroke-linecap: round;
}

.loader-wait
{
	background-color: #FFF;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes dash {

	0% {
		stroke-dasharray: 1,200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89,200;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 89,200;
		stroke-dashoffset: -124;
	}
}

@keyframes dash {

	0% {
		stroke-dasharray: 1,200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89,200;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 89,200;
		stroke-dashoffset: -124;
	}
}

@-webkit-keyframes color
{
	100%, 0%
	{
		stroke: #ED1E79;
	}
}

@keyframes color
{
	100%, 0%
	{
		stroke: #ED1E79;
	}
}