
/*
===============================================================================

 template: styles

===============================================================================
*/

/* -------------------------------------------------------------
I-Service 2018 - Stylesheet
------------------------------------------------------------- */

/* -------------------------------------------------------------
Grid Debug
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.debug p {
	padding: 15px 0;
	margin: 0 !important;
	text-align: center;
	background: #eee;
}

.debug .wrapper .wrapper-center {
	background: #fff;
}

/* -------------------------------------------------------------
Default settings
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

	*:focus, *:active {
		outline: none;
	}

html {
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 62.5%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

	html.loaded .transition {
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8em;
	color: #2e2d2c;
}

a,
a:visited,
a:active {
	color: #ee7f01;
	text-decoration: underline;
	cursor: pointer;
}

	a:hover {
		opacity: 0.75;
		text-decoration: underline;
		cursor: pointer;
	}

	a:focus,
	a:active {
		outline: none;
	}

.hidden {
	left: -100000px;
	overflow: hidden;
	position: absolute;
	top: -100000px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 28px;
}

h1 {
	color: #2e2d2c;
	text-align: center;
	font-size: 24px;
	margin: 0 0 1.8em;
	font-weight: normal;

}

p {
	margin: 0 0 18px 0;
}

ul {
	margin: 0 0 18px 13px;
}

ol {
	margin: 0 0 18px 25px;
}

li {
	margin: 0 0 5px 0;
}

	ul li {
		list-style: disc outside none;
	}

	ol li {
		list-style: decimal-leading-zero outside none;
	}

img,
a img {
	border: none;
	background: rgba(255, 255, 255, 0.0);
}

/* -------------------------------------------------------------
Forms
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

input[type="text"],
input[type="number"],
input[type="email"],
input[type="submit"],
select,
textarea,
button,
a.searchb {
	width: 100%;
	padding: 7px 10px;
	border: 0;
	margin: 0;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #404040;
	border-radius: 0;
	line-height: 21px;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="submit"],
textarea {
	padding: 8px 10px;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
	border: 1px solid #ccc;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	height: 120px;
}

select {
	padding: 7px 10px;
	background: url("https://res.onoffice.de/template/images/template/dropdown2.png") center right 6px no-repeat #fff;
}

button,
a.searchb {
	background: #ee7f01;
	color: #fff;
	cursor: pointer;
	padding: 8px 10px 10px;
}

button:hover,
a.searchb:hover {
	opacity: 0.75;
}

::-webkit-input-placeholder { color: #777; }
::-moz-placeholder { color: #777; }
:-moz-placeholder { color: #777; }
:-ms-input-placeholder { color: #777; }

.no-padding {
	padding: 0 !important;
}

.no-border {
	border: none !important;
}

.no-margin {
	margin: 0 !important;
}

.transition {
	transition: 0.3s ease-in-out-all;
	-o-transition: 0.3s ease-in-out-all;
	-ms-transition: 0.3s ease-in-out-all;
	-moz-transition: 0.3s ease-in-out-all;
	-webkit-transition: 0.3s ease-in-out-all;
}

.clear {
	clear: both;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.center {
	text-align: center;
}

/* -------------------------------------------------------------
Wrapper
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.wrapper {
	min-height: 100%;
	width: 100%;
}

	.wrapper * {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.wrapper .wrapper-center {
		min-height: 100%;
		padding: 15px 0 0 0;
		margin: 0 auto;
		position: relative;
	}

	/* -------------------------------------------------------------
	Monitor
	1320px / unlimited
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 1321px ) {

		.wrapper .wrapper-center {
			max-width: 960px;
		}

	}

	/* -------------------------------------------------------------
	Tablet horizontal / Laptop
	960px / 1319px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 961px ) and ( max-width: 1320px ) {

		.wrapper .wrapper-center {
			max-width: 880px;
		}

	}

	/* -------------------------------------------------------------
	Tablet vertical
	640px / 959px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 641px ) and ( max-width: 960px ) {

		.wrapper .wrapper-center {
			max-width: 100%;
		}

	}

	/* -------------------------------------------------------------
	Phone horizontal
	480px / 639px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 481px ) and ( max-width: 640px ) {

		.wrapper .wrapper-center {
			max-width: 100%;
		}

	}

	/* -------------------------------------------------------------
	Phone vertical
	320px / 479px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( max-width: 480px ) {

		.wrapper .wrapper-center {
			max-width: 100%;
		}

	}

/* -------------------------------------------------------------
Grid
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.full,
.half,
.one-third,
.one-fourth,
.one-fifth,
.one-sixth,
.two-thirds,
.two-fifth,
.three-fifth,
.three-fourth,
.five-sixth {
	padding: 0 5px;
	margin: 0 0 15px 0;
	float: left;
	display: inline;
}

.full {
	width: 100%;
}

.half {
	width: 50%;
}

.one-third {
	width: 33.333333%;
}

.one-fourth {
	width: 25%;
}

.one-fifth {
	width: 20%;
}

.one-sixth {
	width: 16.666667%;
}

.two-thirds {
	width: 66.666667%;
}

.two-fifth {
	width: 40%;
}

.three-fifth {
	width: 60%;
}

.three-fourth {
	width: 75%;
}

.five-sixth {
	width: 83.333333%;
}

	/* -------------------------------------------------------------
	Phone horizontal
	480px / 639px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 481px ) and ( max-width: 640px ) {

		.full,
		.half,
		.one-third,
		.one-fourth,
		.one-fifth,
		.one-sixth,
		.two-thirds,
		.two-fifth,
		.three-fifth,
		.three-fourth,
		.five-sixth {
			width: 100%;
			float: none;
			display: block;
		}

	}

	/* -------------------------------------------------------------
	Phone vertical
	320px / 479px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( max-width: 480px ) {

		.full,
		.half,
		.one-third,
		.one-fourth,
		.one-fifth,
		.one-sixth,
		.two-thirds,
		.two-fifth,
		.three-fifth,
		.three-fourth,
		.five-sixth {
			width: 100%;
			float: none;
			display: block;
		}

	}

.iservice-frame {
	padding: 0 15px;
}

.jumpbox {
	margin: 0 0 40px 0;
}

	.jumpbox a {
		display: inline-block;
		background-color: #fff;
		text-align: center;
		width: 32px;
		line-height: 32px !important;
		color: #ee7f01;
		text-decoration: none;
		line-height: 1em;
		margin: 0 2px;
	}

	.jumpbox a:hover {
		background-color: #666;
		color: #fff;
	}

	.jumpbox a.selected {
		background-color: #ee7f01;
		color: #fff;
	}

.iservice-frame-search .column {
	margin: 0;
}

.iservice-frame-count {
	margin: 0 0 100px;
	padding: 0;
	position: relative;
	text-align: center;
}

	.iservice-frame-count i {
		display: none;
	}
	.iservice-frame-count strong {
		font-size: 75px;
		color: #2e2d2c;
		line-height: 90px;
		font-weight: normal;
	}
	.iservice-frame-count span {
		color: #2e2d2c;
		font-size: 25px;
	}
	.iservice-frame-count span.start-page {
		line-height: 35px;
		display: block;
	}

.iservice-frame-headline h2 {
	text-align: center;
	color: #ee7f01;
	font-size: 22px;
	margin: 0 0 40px;
	font-weight: normal;
}

/* I-Service Listobject */
.int-obj-outer {
	width: 100%;
	padding: 0 20px;
	margin: 0 0 60px 0;
	float: left;
}

.int-obj {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	border-bottom: 2px solid #ee7f01;
	padding: 10px;
	box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.5);
}

	.int-obj .infos {
		margin: 0;
	}

		.int-obj .infos .two-thirds,
		.int-obj .infos .one-third {
			margin: 0;
		}

		.int-obj .infos span.id {
			display: block;
			width: 100%;
			margin: 0 0 10px;
			color: #ee7f01;
			font-size: 14px;
			line-height: 130%;
		}

		.int-obj .infos .single-info {
			width: 33.33%;
			float: left;
			padding: 0 10px 0 0;
			word-break: break-word;
			margin: 0 0 20px 0;
		}

		.int-obj .infos .single-info.betreuer,
		.int-obj .infos .single-info.bemerkung {
			width: 100%;
		}

			.int-obj .infos .single-info strong.big {
				display: block;
				width: 100%;
				font-size: 16px;
			}

			.int-obj .infos .single-info span.small {
				display: block;
				width: 100%;
				font-size: 14px;
				color: #7e7e7e;
			}

			.int-obj .infos .single-info.bemerkung span.small {
				line-height: 150%;
				font-size: 12px;
			}

	.int-obj a.button {
		margin: 0;
		background-color: #ee7f01;
		color: #fff;
		text-decoration: none;
		line-height: 21px;
		display: inline-block;
		text-align: center;
		padding: 8px 15px 9px;
		position: absolute;
		right: 0;
		bottom: 20px;
	}

	/* -------------------------------------------------------------
	Tablet vertical
	640px / 959px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 641px ) and ( max-width: 960px ) {

		.int-obj-outer {
			padding: 0 15px;
			margin: 0 0 30px 0;
		}

	}

	/* -------------------------------------------------------------
	Phone horizontal
	480px / 639px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( min-width: 481px ) and ( max-width: 640px ) {

		.int-obj-outer {
			width: 100%;
			padding: 0 15px;
			margin: 0 0 30px 0;
		}

		.int-obj {
			padding: 15px;
		}

	}

	/* -------------------------------------------------------------
	Phone vertical
	320px / 479px
	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

	@media only screen and ( max-width: 480px ) {

		.int-obj-outer {
			width: 100%;
			padding: 0 15px;
			margin: 0 0 30px 0;
		}

		.int-obj {
			padding: 15px;
		}

	}

/*ERWEITERUNGEN*/

.bottom-contact {
	margin: 20px 0 40px 0;
}

	.bottom-contact h1 span {
		color: #ee7f01;
	}

	.bottom-contact button {
		width: auto;
	}

	.bottom-contact .smalltext {
		font-size: 12px;
	}

.form-status-error,
.form-status-success {
	width: 320px;
	margin: 0 auto 40px;
	padding: 15px;
	font-size: 14px;
	line-height: 1.5em;
}

.form-status-error {
	border: 5px solid #a81d1d;
}

.form-status-success {
	border: 5px solid #16a412;
}

	.form-status-error * {
		color: #a81d1d !important;
	}

	.form-status-error > p {
		font-size: 16px;
		font-weight: bold;
	}

	.form-status-error > ul {
		margin: 0 0 0 18px;
	}

	.form-status-success * {
		font-size: 16px;
		color: #16a412 !important;
		margin: 0;
		font-weight: bold;
	}

/*Overwrite select2 Style*/
.select2, .select2-dropdown {
	font-size: 14px;
}

.select2-container {
	width: 100% !important;
}

.select2-container--default .select2-selection--single {
	border-radius: 0 !important;
	height: 37px !important;
	border: 1px solid #ccc !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 37px !important;
	line-height: 35px !important;
	padding: 0 20px 0 13px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 0 !important;
	height: 37px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #ee7f01 !important;
}

.select2-results li {
	margin: 0 !important;
}

.grundstuecksflaeche,
.kaltmiete {
	display: none;
}

.show_int_id {
	display: none;
	color: #999;
	line-height: 1em;
	margin: 0 0 30px;
	font-size: 16px;
}

.searchb,
a.searchb {
	width: auto;
	margin: 10px 0 0 0;
	padding: 8px 15px 9px;
	font-size: 16px;
}

a.searchb {
	padding: 10px 15px 11px;
	text-decoration: none;
	display: inline-block;
}

	.searchb i {
		font-size: 18px;
	}

.reset, .submit {
	margin: 0 0 10px;
	padding: 8px 15px 9px;
	font-size: 16px;
}

.int_contact {
	width: 50%;
	margin: 0 auto;
}

@media (max-width: 380px) {

	.iservice-frame {
		padding: 0;
	}

		.iservice-frame .container {
			padding: 0 15px;
		}

		.iservice-frame .container.iservice-frame-search {
			padding: 25px 5px;
		}

			.iservice-frame-search .input-box.one-fifth {
				width: 100%;
				margin: 0 0 30px;
			}

	.iservice-frame-headline {
		padding: 0 15px;
	}

	.iservice-listobject {
		padding: 0;
	}

		.iservice-listobject-content .one-fifth {
			width: 100%;
			float: left;
		}

			.iservice-listobject-content-link {
				width: 100%;
			}

	.reset, .submit {
		width: 100% !important;
	}

	.int_contact {
		width: 100%;
	}

	.int_search .input-box {
		margin: 0 0 10px;
	}

	.int-obj .icon {
		display: none;
	}

	.int-obj .infos {
		width: 100%;
	}

	.int-obj .infos .single-info {
		width: 100%;
		margin: 0 0 10px;
	}

	.int-obj a.button {
		position: relative;
		right: inherit;
		bottom: inherit;
		float: right;
	}

}

@media ( min-width: 381px ) and ( max-width: 480px ) {

	.iservice-frame {
		padding: 0;
	}

		.iservice-frame .container {
			padding: 0 15px;
		}

		.iservice-frame .container.iservice-frame-search {
			padding: 25px 10px;
		}
			.iservice-frame-search .input-box.one-fifth {
				width: 100%;
				margin: 0 0 30px;
			}

	.iservice-listobject {
		padding: 0;
		float: none;
	}

		.iservice-listobject-content .one-fifth {
			width: 50%;
			float: left;

		}
			.iservice-listobject-content-link {
				width: 50%;
			}

		.iservice-listobject-contact .row {
			padding: 5px 0;
		}

	.int_contact {
		width: 100%;
	}

	.int_search .input-box {
		margin: 0 0 10px;
	}

	.int-obj .icon {
		display: none;
	}

	.int-obj .infos {
		width: 100%;
	}

	.int-obj .infos .single-info {
		width: 100%;
		margin: 0 0 10px;
	}

	.int-obj a.button {
		position: relative;
		right: inherit;
		bottom: inherit;
		float: right;
	}

}

@media ( min-width: 481px ) and ( max-width: 640px ) {

	.iservice-frame-search .input-box.one-fifth {
		width: 100%;
		margin: 0 0 30px;
	}

	.iservice-frame-pagination span a.selected {
		display: inline-block !important;
	}

	.iservice-frame-pagination span a {
		display: none;
	}

	.iservice-listobject-content .one-fifth {
		width: 50%;
		float: left;
	}

		.iservice-listobject-content-link {
			width: 25%;
		}

	.iservice-listobject-contact .row {
		padding: 10px 0;
	}

	.int_search .input-box {
		margin: 0 0 10px;
	}

	.int-obj .icon {
		display: none;
	}

	.int-obj .infos {
		width: 100%;
	}

	.int-obj .infos .single-info {
		width: 50%;
		margin: 0 0 10px;
	}

}

@media ( min-width: 641px ) and ( max-width: 960px ) {

	.iservice-frame-search .input-box.one-fifth {
		/* width: 50%; */
		/* margin: 0 0 30px; */
	}

	.iservice-frame-search .submit-box.one-fifth {
		width: 100%;
	}

	.iservice-listobject-contact .row {
		padding: 15px 0;
	}

	.iservice-listobject-contact .column.input-field {
		width: 50%;
	}

	.iservice-listobject-contact .column.submit-field {
		width: 100%;
	}

	.int-obj .icon {
		display: none;
	}

	.int-obj .infos {
		width: 100%;
	}

}

/* PREIS SWITCH */

/* .kaufpreis, .kaltmiete {
	display: none;
} */

input[type="text"], input[type="email"], input[type="submit"], textarea {
	padding: 7px 10px;
}