@charset "UTF-8";
/* CSS Document */

form {
	margin: auto;
	padding: 0;
    
    width: 100%;
}

input {    
	width: 96%;
}

.doble-col { width: 44%; float: left;}
.doble-col-margen { margin: 0 4% 25px 0; }

.triple-col { width: 26.666666666666667%; float: left;}
.triple-col-margen { margin: 0 4% 25px 4%; }

textarea {
    width: 95.8%;
	height: 80px;
}

input, textarea {
	margin: 0 0 25px 0;
	padding: 10px 2%;

	border: none;
    box-shadow: 0 0 10px 0 #999;

	background: #fff;
    
	font-family: 'Muli', sans-serif;
    font-size: 100%;
    line-height: 100%;
    font-weight: 300;
	color: #999;
}

/* select */

.custom-select {
	position: relative;
	
	margin: 0 0 25px 0;
	padding: 0 1%;
    
    width: 98%;

	border: none;
    box-shadow: 0 0 10px 0 #999;

	background: #fff;
    
	font-family: 'Muli', sans-serif;
    font-weight: 300;
    text-align: left;
	color: #828282;
}

.custom-select select {
	display: none;
}

.select-selected {
}

.select-selected:after {
	position: absolute; top: 48%; right: 10px;
	content: "";

	width: 0;
	height: 0;

	border: 6px solid transparent;
	border-color: #828282 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
	top: 30%;
	
	border-color: transparent transparent #828282 transparent;
}

.select-items div, .select-selected {
	padding: 10px 20px 10px 5px;
	border: none;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	user-select: none;
}

.select-items {
	z-index: 1;
	position: absolute; top: 85%; right: 0; left: 0;

	width: 100%;
    
	background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 15px 0 #541001;
    
    overflow: hidden;
}

.select-hide {
      display: none;
}

.select-items div:hover, .same-as-selected {
    background: #999;
    color: #fff;
}

::-webkit-input-placeholder, :-ms-input-placeholder {
    color: #999;
}

::-moz-placeholder, :-moz-placeholder {
    color: #999;
    opacity: 1;
}


.boton {
    margin: 0;
    padding: 30px 0;
    
    width: 100%;

    border: none;
    
    background: #6883a6;
    
    cursor:pointer;

    font-size: 130%;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}

.boton:hover {
	background: #666;
}

/* The container */
.container {
    position: relative;
    display: block;

    margin: 0 40px 10px 0;
    padding: 0 0 0 32px;
    
    float: left;

    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #3c81e7;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}