@import "bundle.css?v=2";

.error input,
.error textarea {
	border-bottom: 1px solid red;
}

.groupItems {
	display: none;
}

.groupItems1 {
	display: block;
}

.extraDataRow {
	display: none;
}

/* 3 COLS */
.col--1of3 {
	max-width: 33.3%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.3%;
	flex: 0 0 33.3%;
	margin-bottom: 20px;
}

@media (max-width: 1023px) {
	.cols .col--1of3 {
		max-width: 50%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		margin-bottom: 15px;
	}
}

@media (max-width: 767px) {
	.cols .col--1of3 {
		width: 100%;
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
	}
}

/* JOBS ITEM */
.job-item {
	width: 100%;
}

.job-item .job-item__title {
	background: #DBAB20;
	height: 240px;
	color: #fff;
	font-size: 32px;
	padding: 30px;
	text-align: center;
	line-height: 1.2;
	font-weight: 300;
	margin-bottom: 25px;

	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	-webkit-align-items: center; /* Safari 7.0+ */
	align-items: center;
	justify-content: center;
}

.job-item .job-item__title--bg1 {
	background: #B79125;
}

.job-item .job-item__title--bg2 {
	background: #93B379;
}


.job-item a.job-item__title{
	text-decoration: none;
}

.job-item a.job-item__title:hover{
	background: #48596D;
}

.job-item p{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.3;
}

/* NEWS SEARCH */
:root {
	--rad: .3rem;
	--dur: .3s;
	--color-dark: #48596D;
	--color-light: #fff;
	--color-brand: #DAAA1C;
	--height: 3rem;
	--btn-width: 4rem;
	--bez: cubic-bezier(0, 0, 0.43, 1.49);
}

form.news-search {
	position: relative;
	width: 100%;
	/*background: var(--color-brand);*/
	border-radius: var(--rad);
	margin-bottom: 15px;
	margin-top: 10px;
	border: 1px solid #DBDBDB;
}

form.news-search input,
form.news-search button {
	height: var(--height);
	border: 0;
	color: var(--color-dark);
	font-size: 1.0rem;
}

form.news-search input {
	outline: 0;
	width: 100%;
	background: var(--color-light);
	padding: 0 1.0rem;
	border-radius: var(--rad);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all var(--dur) var(--bez);
	transition-property: width, border-radius;
	z-index: 1;
	position: relative;
}

form.news-search button {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: var(--btn-width);
	font-weight: bold;
	background: var(--color-brand);
	border-radius: 0 var(--rad) var(--rad) 0;
}

form.news-search input:not(:-moz-placeholder-shown) {
	border-radius: var(--rad) 0 0 var(--rad);
	width: calc(100% - var(--btn-width));
}

form.news-search input:not(:-ms-input-placeholder) {
	border-radius: var(--rad) 0 0 var(--rad);
	width: calc(100% - var(--btn-width));
}

form.news-search input:not(:placeholder-shown) {
	border-radius: var(--rad) 0 0 var(--rad);
	width: calc(100% - var(--btn-width));
}
form.news-search input:not(:-moz-placeholder-shown) + button {
	display: block;
}
form.news-search input:not(:-ms-input-placeholder) + button {
	display: block;
}
form.news-search input:not(:placeholder-shown) + button {
	display: block;
}

form.news-search label {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.form__row--honey{
	display: none;
}