.bg_red_soft
{
	background-color: #b51818 !important;
	color: #fff !important;
}

.bg_blue_soft
{
	background-color: #007bff !important;
	color: #fff !important;
}

.bg_gray_soft
{
	background-color: #d2db9f !important;
}

.bg_green
{
	background-color: #165a14 !important;
	color: #FFF;
}
.bg_orange
{
	background-color: #e45d28 !important;
	color: #FFF;
}



.web_link
{
	color: #FFF !important;
	font-weight: bold;
}

.web_link:hover
{
	color: #F5F5F5 !important;
}

.cita_title
{
	font-size: 60px;
	font-weight: bold;
} /* 3.75rem = 60px */

.cita_text
{
	font-size: 32px;
	color: #5f6368;
} /* 2rem = 32px */

.cita_paragraph
{
	font-size: 18px;
	color: #5f6368;	
} /* 1.125rem = 18px */

.cita_subtitle
{
	font-size: 24px;
	color: #5f6368;
	font-weight: bold;
} /* 1.5rem = 24px */

.form_input_label
{
	font-size: 20px;
	color: #444;
} /* 1.25rem = 20px */

.seccion_title
{
	font-size: 24px;
	font-weight: bold;
} /* 1.5rem = 24px */

.card_text
{
	font-size: 13px;
}

.card_date
{
	font-size: 10px;
	font-weight: bold;
}

.footer
{
	font-size: 13px;
}


.spinner_box
{
	position: fixed;
	background-color: rgba(255, 255, 255, 0.8);
	width: 100%;
	height: 100%;
	z-index: 100;
	display: none;
}

.spinner {
   position: fixed;
   left: 46%;
   top: 50%;
   height:100px;
   width:100px;
   margin:0px auto;
   -webkit-animation: rotation .8s infinite linear;
   -moz-animation: rotation .8s infinite linear;
   -o-animation: rotation .8s infinite linear;
   animation: rotation .8s infinite linear;
   border-left:10px solid #ffcab5;
   border-right:10px solid #ffcab5;
   border-bottom:10px solid #ffcab5;
   border-top:10px solid #e45d28;
   border-radius:100%;
} /* rgba(0,174,239,.15);  rgba(0,174,239,.8); */

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}