﻿/******************************/
/*         CHECKBOX		      */
/******************************/

/**
 * Checkbox Five
 */
.checkboxFive {
    display:inline-block;
	position: relative;
}
/**
 * Create the box for the checkbox
 */
.checkboxFive label {
	position: absolute;
	width:11px;
	height: 11px;
	top: 2px;
  	left: 0;
	background: #fff;
	border:2px solid #388DAE;
}
/**
 * Display the tick inside the checkbox
 */
.checkboxFive label:after {
	opacity: 0;
	content: '';
	position: absolute;
	width: 6px;
	height: 3px;
	background: transparent;
	top: 2px;
	left: 1.5px;
	border: 2px solid #333;
	border-top: none;
	border-right: none;
 
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/**
 * Create the checkbox state for the tick
 */
.checkboxFive input[type=checkbox]:checked + label:after {
	opacity: 1;
}
