@charset "utf-8";
/* CSS Document */
.input{
	width: 100%;
	margin-bottom: 20px;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

label{
	margin: 10px 25px 0px 0px;
	display: block;
	text-align: right;
}

.button {
	color: #ffffff;
	border: none;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.caution {
	background-color: #FF0105;
}

.caution:hover {
	background-color: #D9272A;
	
}

.normal {
	background-color: #33b5e5;
}

.normal:hover {
	background-color: #0099cc;
}

/* CHECKBOX y RADIO */
.custom {
	display: block;
	position: relative;
	text-align: left;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/*  Personalizada para los checkbox */
.checkmark_check  {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #33b5e5;
}

/*  Personalizada para los radio */
.checkmark_radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #33b5e5;
  border-radius: 50%;
}

/* Cuando te posicionas en el checkbox o radio */
.custom:hover input ~ .checkmark_check, .custom:hover input ~ .checkmark_radio {
  background-color: #0099cc;
}

/* Cuando activas el checkbox o radio */
.custom input:checked ~ .checkmark_check, .custom input:checked ~ .checkmark_radio {
  background-color: #33b5e5;
}

.checkmark_check:after, .checkmark_radio:after {
  content: "";
  position: absolute;
  display: none;
}

.custom input:checked ~ .checkmark_check:after, .custom input:checked ~ .checkmark_radio:after {
  display: block;
}

/* Configuras la marca del checkbox */
.custom	.checkmark_check:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Configuras la marca del radio */
.container .checkmark_radio:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}