.nada {}

body {
	background-color: gray;
}

.principal {
	background-color: white;
}


/******************/

/* Pasos de formulario */
.wizard-nav-tabs {
	padding: 0;
	margin-bottom: 40px;
	overflow: hidden;
	background: #F5F5F5;
	border: 1px solid #d9d8d8;
}
.wizard-nav-tabs li {
	position: relative;
	display: table-cell;
	float: left;
	list-style-type: none;
	padding: 10px 0;
	padding-left: 35px;
	box-sizing: border-box;
}
.wizard-nav-tabs li:first-child {
	padding-left: 10px;
	height: 100%;
}

.wizard-nav-tabs li:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 30px solid #F5F5F5;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	left: 100%;
	z-index: 2;
}
.wizard-nav-tabs li:before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 30px solid #DCDCDC;
	position: absolute;
	top: 50%;
	margin-top: -50px;
	margin-left: 1px;
	left: 100%;
	z-index: 1;
}

.wizard-nav-tabs-2 li {
	width: 50%;
}

.wizard-nav-tabs-3 li {
	width: 33.3333333333%;
}
.wizard-nav-tabs-4 li {
	width: 25%;
}
.wizard-nav-tabs-5 li {
	width: 20%;
}
.wizard-nav-tabs-6 li {
	width: 16.6666666667%;
}
.wizard-nav-tabs li a {
	text-decoration: none;
	color: #231F20;
}
.wizard-nav-tabs li .wizard-step {
	display: block;
	font-size: 1em;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 3px;
}
.wizard-nav-tabs li .wizard-step-description {
	display: block;
	line-height: 1.2;
}
.wizard-nav-tabs li.active .wizard-step, .wizard-nav-tabs li.active .wizard-step-description {
	color: #1A2F5A;
}
.wizard-nav-tabs li.active {
	background: #e2e9ef;
}
.wizard-nav-tabs li.active:after {
	border-left: 30px solid #e2e9ef;
}

/******************/


form .row {
	margin-bottom: 10px;
}



/*************************/
/*************************/
/*************************/
/*************************/

.control {
	font-family: arial;
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	padding-top: 3px;
	cursor: pointer;
	font-size: 14px;
	font-weight: normal;
}
	.control input {
		position: absolute;
		z-index: -1;
		opacity: 0;
	}
.control_indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
	border: 0px solid #000000;
}
.control-radio .control_indicator {
	border-radius: 50%;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
	background: #cccccc;
}

.control input:checked ~ .control_indicator {
	background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
	background: #0e6647d;
}
.control input:disabled ~ .control_indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control_indicator:after {
	box-sizing: unset;
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control_indicator:after {
	display: block;
}
.control-radio .control_indicator:after {
	left: 7px;
	top: 7px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: #ffffff;
}
.control-radio input:disabled ~ .control_indicator:after {
	background: #7b7b7b;
}