body
{
	background-color: #F3F4F7 !important;
	padding-top: 90px;
	padding-bottom: 90px;
}

a
{
	text-decoration: none;
}

ol li a
{
	color: #5E17EB !important;
}

h1.text-primary,
h2.text-primary,
h3.text-primary,
h4.text-primary,
h5.text-primary,
h6.text-primary,
i.text-primary
{
	color: #5E17EB !important;
}

.btn.btn-primary
{
	background-color: #5E17EB;
}

[ng-click]
{
	cursor: pointer;
}

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

.bg-dark.bg-marca
{
	background-color: #5E17EB !important;
}

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

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

.card
{
	box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
	border-radius: 8px;
	border-width: 0px;
	transition: box-shadow 200ms ease-in-out 0s;
}

.card:hover
{
	box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 3px 14px 3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px;
}

.bi
{
	fill: currentColor;
	vertical-align: -.125em;
}

.nav-scroller
{
	height: 2.75rem;
	overflow-y: hidden;
	position: relative;
	z-index: 2;
}

.nav-scroller .nav
{
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-wrap: nowrap;
	margin-top: -1px;
	overflow-x: auto;
	padding-bottom: 1rem;
	text-align: center;
	white-space: nowrap;
}

.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: #191919;*/
	background-color: #FFF;
	/*background-image: url(../img/loading.gif);*/
	/* background-image: url(../img/loader.gif); */
	background-position: center;
	background-size: auto;
	background-repeat: no-repeat;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}

.dws-loader-component
{
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
}

.dws-loader-component::before
{
	background-color: #FFF;
	/* background-image: url(../img/loader-component.gif); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: '';
	border-radius: 4px;
	color: #000;
	height: 40px;
	line-height: 48px;
	position: absolute;
	width: 40px;
	z-index: 99999;
	border-style: solid;
	border-width: 1px;
	border-color: #CCC;
	margin: 2px -20px;
	left: 50%;
}

.dws-loader-component::after
{
	position: absolute;
	content: 'Cargando componente';
	left: 0;
	right: 0;
	text-align: center;
	top: 45px;
	z-index: 999999;
}

@-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: #5E17EB;
	}
}

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