/**
 * Checkator jQuery Plugin
 * A plugin for radio and checkbox elements
 * version 1.1, Dec 20th, 2013
 * by Ingi P. Jacobsen
 */

/* RESET */
input[type=radio],
input[type=checkbox] {
	margin-bottom: 0;
}

/* SOURCE ELEMENT (when checkator is enabled on an element) */
.checkator_source {
	position: relative;
	z-index: 2;
	display: block;
   
}

/* SHARED SETTING */
.checkator_holder { /* Holder for the new element */
	display: inline-block;
	position: relative;
    margin-right: 10px !important;
   
   
}
.checkator_element { /* New element */
    width: 25px;
    height: 25px;
    border: 2px solid #abadb3;
	background-color: transparent;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.checkator_source:checked+.checkator_element:after { /* Checked element dot */
	background-color: white;
	display: block;
	content: '';
	top: 20%;
	right: 20%;
	bottom: 20%;
	left: 20%;
	position: absolute;
}
.checkator_source:focus+.checkator_element { /* Focused element */
	border: 2px solid rgba(255, 255, 255, 1);
}
.checkator_source:hover+.checkator_element { /* Hovered element */
	/* Bug: There is a bug in chrome preventing this from working correctly */
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.7);
}


/* RADIO SETTINGS */
.checkator_element.radio {
	border: 2px solid rgba(255,255,255, 0.5);
	border-radius: 50% !important;
	height: 25px;
	width: 25px;
}
.checkator_element.radio:after {
	border: 2px solid rgba(255,255,255, 0.5);
	border-radius: 50% !important;
	
}

/* CHECKBOX SETTINGS */
.checkator_element.checkbox { /* New element */
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	height: 25px;
	width: 25px;
}
