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

/* formularios */

form {
	margin:0;
	padding:0;
}

.requerido {
	display:block;
	
	font-size:14px;
	color:#F00;
}

/* input */

input {
	display:block;

	margin:0 0 10px 0;
	padding:0 5px;
	
	width:100%;
	height:40px;

	border:1px solid #CCC;
	background:#fff;
	
	font-family: 'IBM Plex Mono', monospace;
	font-size:16px;
	font-weight:300;
	color:#666;
}

/* textarea */

textarea {
	display:block;

	margin:0 0 10px 0;
	padding:5px;
	
	width:100%;
	height:195px;

	border:1px solid #CCC;
	background:#fff;
	
	font-family: 'IBM Plex Mono', monospace;
	font-size:16px;
	line-height:18px;
	font-weight:300;
	color:#666;
}

/* submit */

input[type=submit] {
    margin:auto;
	padding:0;
	
    width: 100%; max-width:550px;
	height:60px;

    background-color:#2196F3;

    border: none;
    cursor: pointer;
	
	font-size:20px;
	text-transform:uppercase;
    color:#fff;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

input[type=submit]:hover {
    background-color: #51bbff;

	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

/* cancelar */

.boton-cancelar {
	display:block;

    margin:30px auto 0 auto;
	padding:20px 0;
	
    width: 100%; max-width:550px;

    background-color:#999;

    border: none;
    cursor: pointer;
	
	font-size:20px;
	line-height:20px;
	font-weight:300;
	text-transform:uppercase;
	text-align:center;
    color:#fff;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.boton-cancelar:hover {
    background-color: #ff4a3d;

	color:#fff;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

/* checkbox */

.container {
    position: relative;

    display: block;

    cursor: pointer;

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

.container input {
    position: absolute;

    cursor: pointer;
	
    opacity: 0;
}

.checkmark {
    position: absolute; top:0; left:0;
	margin:auto;
	
    width: 100%;
    height: 40px;

    background-color: #eee;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.container:hover input ~ .checkmark {
    background-color: #ccc;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.container input:checked ~ .checkmark {
    background-color: #2196F3;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
	top:8px; right:0; left:0;
	
	margin:auto;

    width: 5px;
    height: 16px;

    border: solid white;
    border-width: 0 4px 4px 0;

    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* file */

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
	
	background:#6C9
}

.inputfile + label {
	display:block;

	margin:0;
	padding:12px 0;

	width:100%;
	height:16px;
	
	font-size:16px;
	line-height:16px;
	font-weight:300;
	text-align:center;
    text-overflow: ellipsis;
    white-space: nowrap;
	color:#fff;

    cursor: pointer;
    overflow: hidden;

	background:#2196F3;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.inputfile + label:hover {
	background:#51bbff;

	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.no-js .inputfile + label {
    display: none;
}

/* eliminar */

.eliminar {
	position:relative;
	
	margin:0;
	padding:0;
	
	width:40px;
	height:40px;
	
	float:left;
	cursor:pointer;
	
	background:#f00;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.eliminar:hover { 	background:#ff5656; }

.eliminar li {
	position:absolute; top:18px;
	list-style:none;
	
	margin:0;
	padding:0;
	
	width:100%;
	height:4px;
	
	background:#fff;
	
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.eliminar li:first-child {
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
}

.eliminar li:last-child {
	-ms-transform: rotate(135deg); /* IE 9 */
	-webkit-transform: rotate(135deg); /* Chrome, Safari, Opera */
	transform: rotate(135deg);
}

.eliminar:hover li:first-child {
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
}

.eliminar:hover li:last-child {
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
}

/* select */

.custom-select {
	position: relative;
	margin:0 0 10px 0;
	
	width:99.3%;
	
	border:1px solid #CCC;
}
.custom-select select {
	display: none;
}

.select-selected {
	background-color:#fff;
}

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

	width: 0;
	height: 0;

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

.select-selected.select-arrow-active:after {
	top: 13px;
	
	border-color: transparent transparent #666 transparent;
}

.select-items div,.select-selected {
	font-size:16px;
	line-height:16px;
	font-weight:300;
	color: #666;

	padding:10px 20px 10px 5px;
	border: 1px solid transparent;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	user-select: none;
}

.select-items {
	position: absolute;
	background-color: #fff;
	top: 100%;
	left: -1px;
	right: 0;
	width:100%;
	z-index: 99;
	border:1px solid #ccc;
}

.select-hide {
  display: none;
}

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