﻿.custom-checkbox,
.custom-radio {
	position: relative;
	margin: 4px auto;
	display: block;
}
.custom-checkbox.inline,
.custom-radio.inline {
	display: inline-block;
	margin-left: 20px;
}

.custom-checkbox label,
.custom-radio label {
	padding-left: 24px;
	margin-bottom: 0;
	font-weight: 400;
    font-family: 'LFTEtica', sans-serif;
    font-size: 13px;
    text-align: left;
}
.custom-checkbox label > span,
.custom-radio label > span {
	display: inline-block;
	width: 15px;
	height: 15px;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 1px;
	background: #fff;
	border-radius: 0px;
	border: 1px solid #425456;
	
	display: inline-block;
	border: 1px solid #425456;
	padding: 0;
	min-height: 15px;
	margin: 2px 0 0;
}
.custom-checkbox label > span:after,
.custom-radio label > span:after {
	position: absolute;
	background-color: #a9c758;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	content: '';
	opacity: 0;
}
.custom-radio label > span,
.custom-radio label > span:after {
	border-radius: 100%;
}

.custom-checkbox label > span:after {
	content: '';
	width: 16px;
	height: 8px;
	position: absolute;
	top: -1px;
	left: 2px;
	border: 3px solid #425456;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.custom-checkbox label:hover > span::after,
.custom-radio label:hover > span::after {
	opacity: 0.1;
}
.custom-checkbox input[type=checkbox],
.custom-radio input[type=radio] {
	display: none;
}
.custom-checkbox input[type=checkbox]:checked + label > span:after,
.custom-radio input[type=radio]:checked + label > span:after {
	opacity: 1;
}

/* -- Form Errors -- */
.form-group {
  position: relative; }
  .form-group.group-with-next {
    margin-bottom: 5px; }
  .form-group.form-group-end {
    margin-bottom: 30px; }
  .form-group.has-custom-error .error-holder:before {
    content: attr(data-custom-error-message);
    position: absolute;
    display: inline-block;
    padding: 1px 7px;
    background-color: #da8d49;
    color: #fff;
    font-size: 11px;
      font-family: Helvetica, Arial, sans-serif;
      font-weight: normal;
    white-space: no-wrap;
    z-index: 10;
    bottom: 100%;
    margin-bottom: 3px;
    line-height: 1.3;
    right: 0; }
  .form-group.has-custom-error .error-holder:after {
    content: '';
    position: absolute;
    border: solid transparent;
    border-top-color: #da8d49;
    border-width: 7px;
    margin-bottom: -11px;
    margin-right: 20px;
    bottom: 100%;
    right: 0;
    z-index: 11; }
  .form-group.has-custom-error .error-holder.error-left:before {
    left: 0;
    right: unset; }
  .form-group.has-custom-error .error-holder.error-left:after {
    left: 0;
    right: auto;
    margin-left: 20px;
    margin-right: auto; }
  .form-group.has-custom-error .error-holder.error-bottom:before {
    top: 100%;
    bottom: auto;
    margin-bottom: 0;
    margin-top: 3px; }
  .form-group.has-custom-error .error-holder.error-bottom:after {
    top: 100%;
    bottom: auto;
    border-bottom-color: #da8d49;
    border-top-color: transparent;
    margin-bottom: 0;
    margin-top: -11px; }