/*
	BUTTONS
================================================== */

.regularButton {
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	border: none;
	padding: 0;
	margin: 0;
}

.regularButton.small {
	height: 20px;
	line-height: 20px;
	font-size: 12px;
}

.regularButton/*.bordered*/ {
	height: 28px;
	line-height: 28px;
	border: 1px solid;
	padding-right: 5px;
}

.regularButton.small/*.bordered*/ {
	height: 18px;
	line-height: 18px;
	border: 1px solid;
}

.regularButton/*.bordered*/ .buttonCounter {
	min-width: 12px;
	height: 12px;
	padding: 3px;
	font-size: 10px;
	border-radius: 12px;
	margin-left: 10px;
	line-height: 16px;
	margin-right: 5px;
}

.regularButton.massiveFormElement {
	height: 40px;
	line-height: 40px;
	font-size: 16px;
}


/* WHITE */
.regularButton.white {
	color: #6e6e6e;
	background-color: #ffffff;
}

.regularButton.white.bordered {
	border-color: #6e6e6e;
}

.regularButton.white .buttonCounter {
	background-color: #6e6e6e;
	color: #ffffff;
	font-weight: normal;
}

/* GREY */
.regularButton.grey {
	color: rgb(110, 110, 110);
	background-color: #ffffff;
}

/* GREEN */
.regularButton.green {
	/*color: rgb(66, 166, 89);*/
	color: #ffffff;
	background-color: rgb(0, 134, 0);
}

.regularButton.green .buttonCounter {
	/*background-color: rgb(66, 166, 89);*/
	line-height: 14px;
	background-color: rgb(0, 134, 0);
	color: #ffffff;
}

.regularButton.green.bordered {
	/*border-color: rgb(66, 166, 89);*/
	border-color: rgb(0, 134, 0);
}

/* BLUE */
.regularButton.blue {
	color: #ffffff;
	background-color: rgb(0, 80, 150);
}

.regularButton.blue .buttonCounter {
	background-color: #ffffff;
	color: rgb(0, 80, 150);
}

.regularButton.blue.bordered {
	border-color: rgb(0, 80, 150);
}

/* RED */
.regularButton.red {
	color: #ffffff;
	background-color: rgb(213, 0, 0);
}

.regularButton.small.withIconRight_mobile .icon.right {
	right: 1px;
}

.regularButton.withIconRight_mobile {
	padding-right: 30px;
}

.regularButton.withIconRight_mobile .icon {
	position: absolute;
	top: 0;
	width: 30px;
	height: 30px;
	background: transparent no-repeat scroll center center;
}

.regularButton.small.withIconRight_mobile .icon {
	top: 1px;
	width: 16px;
	height: 16px;
}

.regularButton.withIconRight_mobile .icon.right {
	right: 0;
}

.regularButton.noIcons {
	padding: 0 5px;
}

/*
	FORM TEXT
================================================== */

.form-text.quickSearch {
	width: 100%;
	border: 1px solid #b8b8b8;
	-webkit-box-shadow: inset 1px 1px 1px 0 #dddddd;
	-moz-box-shadow: inset 1px 1px 1px 0 #dddddd;
	box-shadow: inset 1px 1px 1px 0 #dddddd;
}

/*
	RADIO
================================================== */

.form-fieldContainer label {
	display: block;
	margin-bottom: 10px;
}

.form-fieldContainer label:last-of-type {
	margin-bottom: 0;
}

.form-fieldContainer label input {
	margin-left: 0 !important;
}

/*
	EXTRA FORMS
================================================== */

.formWithHelpBlock {
}

.formWithHelpBlock > .field {
	width: 100%;
	margin-bottom: 15px;
}

.formWithHelpBlock > .help {
	margin-bottom: 15px;
}