.form {padding: 20px;}
.form label {padding-left: 0px; padding-right: 0px; text-align: center;}

.formulario input::-webkit-input-placeholder {color: #c2c2c2;}/* Chrome/Opera/Safari */
.formulario input ::-moz-placeholder {color: #c2c2c2;}/* Firefox 19+ */
.formulario input :-ms-input-placeholder {color: #c2c2c2;}/* IE 10+ */
.formulario input :-moz-placeholder {color: #c2c2c2;}/* Firefox 18- */

.formulario textarea::-webkit-input-placeholder {color: #c2c2c2;}/* Chrome/Opera/Safari */
.formulario textarea ::-moz-placeholder {color: #c2c2c2;}/* Firefox 19+ */
.formulario textarea :-ms-input-placeholder {color: #c2c2c2;}/* IE 10+ */
.formulario textarea :-moz-placeholder {color: #c2c2c2;}/* Firefox 18- */

.formulario .btn {margin: 0 15px;}


/* Formularios Select */
.formulario label {color: #666;}
.formulario input {color: #000; border: none; background: #f7f7f7; height: 50px; border-radius: 0px; text-align: center; text-transform: uppercase;}
.formulario textarea {display: block; width: 100%; height: 200px; padding: 10px; border: none; background: #f7f7f7; border-radius: 0px; text-align: center; text-transform: uppercase;}
.formulario select {border: solid 1px #EAEAEA; border-radius: 0px; height: 100% !important;}

.formulario .form-group {margin-bottom: 40px;}

.formulario .slc {
    font-size: 14px;
    position: relative;
    height: 50px;
	border: none;
	margin-bottom: 40px;
    background: #f7f7f7 url(../img/arrow-down.png) no-repeat;
    background-position: calc(100% - 10px) center;
	background-size: 17px 13px;
    /* -webkit-border-radius: 4px;
    border-radius: 4px; */
}
.formulario .slc::before {
    position: absolute;
    right: 5px;
    top: 13px;
    z-index: -1;
    content: "\f078";
    /* font-family: "fontawesome";
    font-size: 14px;
    color: #000; */
    /* background: #fff url(../img/arrow-down.png) no-repeat center right;
	background-size: 30px 30px;
    -webkit-border-radius: 4px;
	border-radius: 4px; */
}
.formulario .slc select {
    border: 0;
    width: 100%;
    height: 36px;
    color: #999;
    padding: 0px 25px 0 10px;
    text-align: center;
    text-align-last: center;
    text-transform: uppercase;
    background: transparent;

    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}
.formulario .slc select::-ms-expand {
    display: none;
}
.slc-asesor,
.slc-fecha,
.slc-hora {
	padding: 0px 45px;
}
.slc-asesor:before,
.slc-fecha:before,
.slc-hora:before {
	content: "";
	width: 18px;
	display: block;
	position: absolute;
	pointer-events: none;
	left: 15px;	top: 0;	bottom: 0;
}
.slc-asesor:before {
	background: url(../img/icon-form-asesor.svg) no-repeat center;
	background-size: contain;
}
.slc-fecha:before {
	background: url(../img/icon-form-date.svg) no-repeat center;
	background-size: contain;
}
.slc-hora:before {
	background: url(../img/icon-form-hora.svg) no-repeat center;
	background-size: contain;
}
/* Formularios radios */
.formulario .radios {
    padding: 0 10px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: middle;
}
.formulario .radios input[type="radio"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.formulario .radios input[type="radio"] + label {
    margin: 0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    padding-left: 30px;
    display: inline-block;
}
.formulario .radios input[type="radio"] + label:before {
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    border: 1px solid #ccc;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
.formulario .radios input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.formulario .radios input[type="radio"]:checked + label:after {
	opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.formulario .radios input[type="radio"] + label:after {
    content: '';
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    position: absolute;
    background: #0C2D5D;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
/* Formularios Checkboxes */
.checkboxes {
    margin-bottom: 5px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.checkboxes input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.checkboxes input[type="checkbox"] + label {
    color: #666;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    line-height: 34px;
    position: relative;
    padding-left: 30px;
    display: block;
}
.checkboxes input[type="checkbox"] + label:before {
    content: '';
    top: calc(50% - 10px);
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    border: 1px solid #ccc;
}
.checkboxes input[type="checkbox"] + label:after {
    content: '';
    font-family: FontAwesome;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
    top: 10px;
    left: 3px;
    width: 14px;
    height: 14px;
    position: absolute;
    background: #0C2D5D;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.checkboxes input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkboxes input[type="checkbox"]:checked + label:after {
    opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* .checkboxes input[type="checkbox"] + label a {
    text-decoration: underline;
} */

@media (max-width: 480px) {
    .formulario .form-group {margin-bottom: 20px;}
}