.c {
	padding: 0 3vw;
	margin: 0 auto;
	max-width: 75rem;
}

.cf {
	width: 100vw;
	left: -3vw;
	position: relative;
}

.message {
	color: #0c5460;
	background-color: #d1ecf1;
	border-color: #bee5eb;
	margin: 1rem 0;
	padding: .8rem 1rem;
	display: table;
	font-size: .95rem;
	
}

.message.success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.message.error {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

#header {
	background: #fff;
}

#header .c {
	display: flex;
	gap: 2rem;
}

#logo {
	width: 75%;
	max-width: 10rem;
	margin: 1rem 0;
}

#top {
	width: 100%;
	text-align: right;	
}

#top .user .name {
	display: none;
}

#top form label {
	display: none;
}

#top .profile {
	display: block;
	font-size: 0;
	width: 2rem;
	height: 2rem;
	background: no-repeat center center url("https://www.ferien4kids.at/fileadmin/templates/img/icon_account.png");
	background-size: contain;
	margin: 2.5rem auto .5rem;
}

#top form .profile {
	width: 1.5rem;
	height: 1.5rem;
}

#top form input {
	font-size: 1rem;
	padding: .3rem .5rem;
	margin-top: .3rem;
	border: .063rem solid #fff;
	width: 100%;
}

#top form input[type=submit] {
	padding: .55rem;
}


#nav-user {
	margin-top: 1rem;
	border-top: .063rem solid #fff;
}

#nav-user li {
	margin-top: .6rem;
	list-style: none;
}

#nav-user a {
	font-size: 1.1rem;
	text-decoration: none;
	color: #fff;
}
#nav-user a:focus,
#nav-user a:hover {
	color: #0c384f;
}


#res-nav {
	z-index: 13;
	position: absolute;
	right: 2rem;
	background: transparent;
	width: 3rem;
	top: 2rem;
	height: 2.5rem;
	padding: 0;
}

.nav-open #res-nav {
	position: fixed;
}

#res-nav:before,
#res-nav:after,
#res-nav span {
	content: "";
	position: absolute;
	left: .5rem;
	right: .5rem;
	bottom: .5rem;
	background: #4cafe1;
	height: .3rem;
	border-radius: .1rem;
	
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

#res-nav:before {
	top: .5rem;
}

#res-nav span, 
.nav-open #res-nav:before,
.nav-open #res-nav:after {
	top: calc(50% - .15rem);
}

.nav-open #res-nav span {
	background: transparent;
}

.nav-open #res-nav:before,
.nav-open #res-nav:after {
	z-index: 2;
	background: #fff;
}

#top {
	position: fixed;
	display: flex;
	flex-wrap: wrap;
	width: 14rem;
	right: -18rem;
	background: #4cafe1;
	padding: 5rem 2rem 1rem;
	top: 0;
	bottom: 0;
	overflow: scroll;
	z-index: 10;
	
	-webkit-transition: right .2s;
	-moz-transition: right .2s;
	-o-transition: right .2s;
	transition: right .2s;
}

.nav-open #top {
	right: 0;
}

.nav-open #res-nav:before {
	height: .3rem;
	transform: rotate(-45deg);
}

.nav-open #res-nav:after {
	height: .3rem;
	transform: rotate(45deg);
}

#nav {
	order: -1;
}

#nav li {
	list-style: none;
	margin-top: .6rem;
	position: relative;
}

#nav li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
}
#nav li a:hover,
#nav li.current-menu-item a {
	color: rgb(255,189,0);
}

#nav .sub-menu a {
	font-size: .95rem;
	margin-left: 1.2rem;
}


#main {
	background: #fff;
	padding-bottom: 4rem;
}

#footer {
	padding: 4rem 3vw;
	display: flex;
	gap: 8vw;	
}

#footer .logo {
	width: 32%;
	max-width: 10.2rem;
	
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

#footer .content div + div {
	margin-top: 2rem;
}

#footer p,
#footer a {
	margin-bottom: 0;
	color: #fff;
	font-size: .85rem;
	text-decoration: none;
}

#footer strong {
	display: block;
	padding-bottom: 1rem;
}

#footer p + p {
	margin-top: 1rem;
}

#footer li {
	list-style: none;
}

#footer .social-media img {
	max-width: 3rem;
	padding-bottom: .7rem;
}

#footer .social-media a {
	display: inline-block;
	line-height: 1.5;
	border-bottom: .063rem solid #fff;
	margin-bottom: .3rem;
}




#search {
	background: center top / auto 55rem no-repeat url("../img/bg_hero_search.jpg");
	min-height: 55rem;
	margin-bottom: 4rem;
	padding-bottom: 1rem;
	position: relative;
}

#search:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50rem;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, transparent 0%,rgb(172, 219, 126) 4rem,rgb(162, 202, 83) 100%);
}

#search h1 {
	position: relative;
	z-index: 2;
	font-weight: 700;
	font-size: 3rem;
	color: #fff;
	text-align: center;
	padding: 4rem 0;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 0 .9rem rgba(0,0,0,.6);
}


#search form {
	position: relative;
	z-index: 2;
	background: rgba(255,189,0,.86);
	padding: 0 4.5vw 4.5vw;
}

#search h2 {
	color: #4cafe1;
	font-size: 2.2rem;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: .3rem solid #4cafe1;
	margin: 4.5vw 0 .7rem;
	text-shadow: .06rem .06rem .12rem rgba(0,0,0,.4);
	position: relative;
	z-index: 5;
}

#search .col {
	clear: both;
}

#search .optionsbox {
	position: relative;
}

#search p + .options {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
}

#search label[for=f-search-jobfilter] {
	position: absolute;
	left: 0;
	top: 0;
	width: 2.2rem;
	height: 2.2rem;
	opacity: .55;
	font-size: 0;
	z-index: 5;
	background: center center / 50% auto no-repeat url("../img/icon_magnifying_glass.svg");
}

#search #f-search-jobfilter + .options {
	width: calc(100% + .6rem);
}

#search label {	
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#search p + .options label {
	display: block;
	position: relative;
	cursor: pointer;
	width: calc(50% - .3rem);
}

#search #f-search-jobfilter + .options label {
	float: left;
}

#search .options label input {
	visibility: hidden;
	display: block;
	margin: 0;
	height: 0;
}

#search .optionsbox > input,
#search .optionsbox > p,
#search .options label span {
	background: #fff9e6;
	position: relative;
	text-align: center;
	display: block;
	z-index: 1;
	font-size: 1rem;
	padding: .6rem 0;
	text-shadow: .02rem .02rem .05rem rgba(162,160,155,.5);
	
	-webkit-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.2);
	
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
#search .options label input:checked + span {
	color: #fff;
	background: #4cafe1;
}
@media (hover: hover) {
	#search .options label:hover span {
		color: #fff;
		background: #4cafe1;
	}
}

#search .optionsbox:hover input.off:not(:checked) + span {
	padding: 0;
	height: 0;
	margin-bottom: 0;
	visibility: hidden;
	width: 0;
	color: transparent;
}

#search .options label[for^="f-search-job"] span {
	text-align: left;
	padding-left: .6rem;
	padding-right: .6rem;
	width: calc(42.5vw - 1.5rem);
	margin: 0 .6rem .6rem 0;
	cursor: pointer;
}

#search .optionsbox > input {
	text-align: left;
	height: 2.2rem;
	width: 100%;
	padding: .4rem .6rem .4rem 2.2rem;
	border-radius: 0;
	margin-bottom: .6rem;
}

#search .optionsbox > p {
	display: none;
}

#search .options label em {
	font-style: normal;
	font-size: 70%;
	opacity: .5;
}

#search form > p {
	display: none;
}

#search input[type=submit] {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 700;
	border-radius: 0;
	margin-top: 2rem;
}


.location img {
	display: block;
	margin: 0 auto .9rem;
}

.location .btn {
	display: table;
	margin: 1rem auto 0;
}

.location + .location {
	margin-top: 2.2rem;
	border-top: .063rem solid #ccc;
}


.location-jobs h2 {
	margin-top: 4rem;
}

.location-jobs li {
	list-style: none;
}

.location-jobs li img,
.single-job h1 + img {
	float: left;
	padding: 0 .5rem .1rem 0;
	max-width: 32%;
}

.location-jobs li .btn {
	margin: .8rem 0 0 auto;
	display: table;
}

.location-jobs li + li {
	margin-top: 1.8rem;
	border-top: .063rem solid #ccc;
}



#application-user > div + div {
	margin-top: 4em;
}


#application-details {
	max-width: 35rem;
	margin: 0 auto;
}

#application-details h1,
#application-details .final {
	text-align: center;
}


form.application h2 {
	margin: 3.5rem 0 1rem;
}

.fieldgroup-description {
	margin-bottom: 1.5rem;
}

form .row {
	margin-bottom: 1.3rem;
}

form .row label {
	padding-bottom: .5rem;
	display: inline-block;
	line-height: 1.3;
}

form .row label + .instructions {
	margin-top: -.3rem;
	line-height: 1.1;
}

form .row input[type=submit] {
	margin-top: 1.3rem;
}

.req {
	font-size: 75%;
	color: #4cafe1;
	display: inline-block;
	vertical-align: top;
	margin: -.15rem .05rem 0 .05rem;
}

.acf-checkbox-list li,
.acf-radio-list li {
	list-style: none;
}

.acf-range-wrap input[type=range] {
	margin-right: 1rem;
	vertical-align: text-top;
}


#chats {
	max-width: 60rem;
	margin: 0 auto;
}

#chat-users {
	margin-bottom: 3rem;
}

#chat-users li {
	list-style: none;
	font-size: 1rem;
	padding: .4rem;
	min-width: 12rem;
	max-width: 18rem;
}

#chat-users li + li {
	border-top: .063rem solid #000;
}

#chat-users li span {
	font-size: .7rem;
	display: block;
	padding-top: .125rem;
	opacity: .7;
	color: inherit;
}

#chat-messages {
	padding-bottom: 3rem;
}

#chat-messages:after {
	content: "";
	display: block;
	clear: both;
}

#chat-messages li {
	list-style: none;
	max-width: 60%;
	padding: .5rem;
	margin-bottom: .6rem;
	border-radius: .313rem;
	clear: both;
	position: relative;
	background: #f0f0f1;
	float: left;
}

#chat-messages li:before {
	content: "";
	position: absolute;
	right: -.375rem;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
}

#chat-messages li.left:before {
	left: -.375rem;
	border-width: 0 .9rem .9rem 0;
	border-color: transparent #f0f0f1 transparent transparent;
}

#chat-messages li.right {
	float: right;
	color: #fff;
	background: #2271b1;
}

#chat-messages li.right:before {
	border-width: .9rem .9rem 0 0;
	border-color: #2271b1 transparent transparent transparent;
}

#chat-messages time {
	color: #50575e;
	font-size: .6rem;
	display: block;
	line-height: 1.25;
	padding-bottom:.2rem;
}

#chat-messages li.right time {
	color: #f0f0f1;
	text-align:right;
}

#chat-messages img {
	display: block;
	width: calc(100% - .375rem);
	max-width: 25rem;
	margin: .313rem auto 0;
	height: auto;
}

#chat-messages em {
	display: block;
	margin-top: .25rem;
	font-size: .7rem;
	color: #fff;
}

#chat-messages a {
	color: #fff;
}

#chat-message {
	position: relative;
}

#chat-message textarea {
	resize: none;
	width: calc(100% - 8rem);
	height: 5rem;
	margin-bottom: .5rem;
	background: #f0f0f1;
}

#chat-message input[type=file] {
	font-size: 11px;
}

#chat-message input[type=submit] {
	position: absolute;
	top: 0;
	right: 0;
	width: 7rem;
	height: 5rem;
	text-align: center;
	background: #2271b1;
	color: #fff;
	border: none;
	font-size: 1.1rem;
	cursor: pointer;
}
#chat-message input[type=submit]:hover {
	background: #135e96;
}

.chat-load-old {
	display: table;
	margin: 0 auto 10px;
	border: 1px solid #000;
	padding: 3px 6px;
	border-radius: 5px;
	cursor: pointer;
}


.shifts-list .shift {
	position: relative;
	background: #edf9f9;
	border-top: .063rem solid #edf9f9;
	padding: .5rem .5rem .5rem 2.5rem;
}

.shifts-list .shift:nth-child(2n) {
	background: #e7efef;
	border-color: #e7efef;
}

.shifts-list .shift.shift-unconfirmed {
	background: #ffbd00;
	border-color: #ffbd00;
}

.shifts-list .shift-unconfirmed + .shift-unconfirmed {
	border-color: #fff;
}

.shifts-list .shift p {
	margin-bottom: 0;
}

.shifts-list .shift-check {
	position: absolute;
	left: .6rem;
	width: 1rem;
	text-align: center;
	top: calc(50% - .5rem);
}

.shifts-list .shift-check input {
	border: .1rem solid #4cafe1;
	width: 1rem;
	height: 1rem;
	border-radius: 0;
}

.shifts-list time {
	padding-left: .4rem;
}

.shift-location small {
	display: block;
	margin-bottom: .3rem;
}

.shifts-list *[class*=btn] {
	padding: .3rem .5rem;
}

.shifts-list .shift + p {
	margin-top: 1rem;
}

#login-form {
	max-width: 20rem;
	margin: 0 auto;
}

#login-form h1,
#login-form .login-submit {
	padding-top: 1rem;
	text-align: center;
}