/* ========= INFORMATION ============================

- document:  Slick Modals - HTML5 and CSS3 powered modal popups
- author:    Capelle @ Codecanyon
- profile:   http://codecanyon.net/user/Capelle
- version:   3.0

==================================================== */

/* ========================
   Reset and basics
   ======================== */

/* Main wrapper */
.slickModal * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	vertical-align: baseline;
	line-height: normal;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.slickModal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
}
.isActive {
	visibility: visible;
	opacity: 1;
	z-index: 999999999;
	background: rgba(0,0,0,0.4);
}
.slickModal.isActive,
.isActive .overlay2 {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
}
.slickModal,
.slickModal.isActive .window {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.slickModal.isActive .window {
	-webkit-transform: rotate(0deg) scale(1);
	-moz-transform: rotate(0deg) scale(1);
	-ms-transform: rotate(0deg) scale(1);
	transform: rotate(0deg) scale(1);
}
.slickModal.isActive .overlay2,
.slickModal.isActive .window {
	opacity: 1;
}

/* Overlay defaults */
.overlay2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	opacity: 0;
	z-index: 1;
	background: rgba(0,0,0,0.8);
}

/* Window defaults */
.window {
	display: inline-block;
	width: 500px;
	height: 300px;
	padding: 40px;
	position: absolute;
	margin: auto;
	background: #fff;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 2;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	opacity: 0;
	-webkit-transition-property: rotate, transform, opacity, scale, perspective;
	-moz-transition-property: rotate, transform, opacity, scale, perspective;
	-ms-transition-property: rotate, transform, opacity, scale, perspective;
	transition-property: rotate, transform, opacity, scale, perspective;
}

/* ========================
   Background defaults
   ======================== */

/* Blur */
.blurred {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
}
/* Scale */
.scaled {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

/* ========================
   Modal window positions
   ======================== */

/* Center */
.window.center {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Top */
.window.topLeft {
	top: 0;
	left: 0;
}
.window.topCenter {
	top: 0;
	left: 0;
	right: 0;
}
.window.topRight {
	top: 0;
	right: 0;
}

/* Bottom */
.window.bottomLeft {
	bottom: 0;
	left: 0;
}
.window.bottomCenter {
	bottom: 0;
	left: 0;
	right: 0;
}
.window.bottomRight {
	bottom: 0;
	right: 0;
}

/* On side */
.window.right {
	top: 0;
	right: 0;
	bottom: 0;
}
.window.left {
	top: 0;
	left: 0;
	bottom: 0;
}

/* ========================
   Modal window transitions
   ======================== */

/* Fade */
.window.fade {
	opacity: 0;
}

/* Zoom */
.window.zoomIn {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}
.window.zoomOut {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

/* Slide */
.window.slideTop {
	-webkit-transform: translateY(-25%);
	-moz-transform: translateY(-25%);
	-ms-transform: translateY(-25%);
	transform: translateY(-25%);
}
.window.slideBottom {
	-webkit-transform: translateY(25%);
	-moz-transform: translateY(25%);
	-ms-transform: translateY(25%);
	transform: translateY(25%);
}
.window.slideLeft {
	-webkit-transform: translateX(-25%);
	-moz-transform: translateX(-25%);
	-ms-transform: translateX(-25%);
	transform: translateX(-25%);
}
.window.slideRight {
	-webkit-transform: translateX(25%);
	-moz-transform: translateX(25%);
	-ms-transform: translateX(25%);
	transform: translateX(25%);
}

/* Rotate */
.window.rotateIn {
	-webkit-transform: rotate(720deg) scale(0);
	-moz-transform: rotate(720deg) scale(0);
	-ms-transform: rotate(720deg) scale(0);
	transform: rotate(720deg) scale(0);
}
.window.rotateOut {
	-webkit-transform: rotate(720deg) scale(1.5);
	-moz-transform: rotate(720deg) scale(1.5);
	-ms-transform: rotate(720deg) scale(1.5);
	transform: rotate(720deg) scale(1.5);
}

/* Flip */
.window.flipHorizontal {
	-webkit-transform: rotateY(-90deg);
	-moz-transform: rotateY(-90deg);
	-ms-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}
.window.flipVertical {
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	-ms-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
}

/* Perpective */
.window.perspectiveTop {
	-webkit-transform: perspective(300px) rotateX(-90deg);
	-moz-transform: perspective(300px) rotateX(-90deg);
	-ms-transform: perspective(300px) rotateX(-90deg);
	transform: perspective(300px) rotateX(-90deg);
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
}
.window.perspectiveBottom {
	-webkit-transform: perspective(300px) rotateX(90deg);
	-moz-transform: perspective(300px) rotateX(90deg);
	-ms-transform: perspective(300px) rotateX(90deg);
	transform: perspective(300px) rotateX(90deg);
	-webkit-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	transform-origin: bottom center;
}
.window.perspectiveLeft {
	-webkit-transform: perspective(200px) rotateY(90deg);
	-moz-transform: perspective(200px) rotateY(90deg);
	-ms-transform: perspective(200px) rotateY(90deg);
	transform: perspective(200px) rotateY(90deg);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	transform-origin: center left;
}
.window.perspectiveRight {
	-webkit-transform: perspective(200px) rotateY(-90deg);
	-moz-transform: perspective(200px) rotateY(-90deg);
	-ms-transform: perspective(200px) rotateY(-90deg);
	transform: perspective(200px) rotateY(-90deg);
	-webkit-transform-origin: center right;
	-moz-transform-origin: center right;
	-ms-transform-origin: center right;
	transform-origin: center right;
}

/* ========================
   Transition timing defaults
   ======================== */

.slickModal .linear {
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	transition-timing-function: linear;
}
.slickModal .ease {
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	transition-timing-function: ease;
}
.slickModal .ease-in {
	-webkit-transition-timing-function: ease-in;
	-moz-transition-timing-function: ease-in;
	-ms-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}
.slickModal .ease-out {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.slickModal .ease-in-out {
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

/* ========================
   Close buttons
   ======================== */

/* Basics */
.closeModal,
.openModal {
	cursor: pointer;
}
.slickModal .close {
	position: absolute;
	top: -20px;
	right: 0;
	z-index: 10;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 700;
	transition: all 0.1s ease;
}
.slickModal .close:before {
	white-space: nowrap;
	display: block;
	position: relative;
	transition: all 0.1s ease;
}

/* Labeled button */
.slickModal .close.labeled:before {
	color: #000;
	content: "close";
	font-size: 8px;
	text-transform: uppercase;
	background: linear-gradient(to right, #000 50%, #000 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	padding: 6px 12px;
	margin-top: -10px;
}
.slickModal .close.labeled:hover:before {
	background-position: left bottom;
	color: #000;
}

/* Text button */
.slickModal .close.text:before {
	color: #000;
	content: "Close";
	font-size: 9px;
	text-transform: uppercase;
}

/* Tag button */
/*.slickModal .close.tag:before {
	color: #000;
	content: "\00d7";
	background: #000;
	text-align: center;
	font-size: 15px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	margin-top: 20px;
	opacity: 0.2;
}*/
.slickModal .close.tag:hover:before {
	opacity: 1;
}

/* Icon button */
.slickModal .close.icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	overflow: hidden;
	margin: 34px 12px 0 0;
	opacity: 0.7;
}
.slickModal .close.icon:hover:before {
	color: #000;
}
.slickModal .close.icon:before,
.slickModal .close.icon:after {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #000;
}
.slickModal .close.icon:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.slickModal .close.icon:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.slickModal .close.icon:hover {
	opacity: 1;
}

/* Demo */

.window * {
	font-family: Arial, sans-serif;
	font-weight: 300;
	text-align: left;
	line-height:1.42857143;
}
.window .title {
	font-size: 30px;
	font-weight: 700;
}
.window h1, .window h2, .window h3{
	font-family: 'Helvetica45Light',Arial, sans-serif;
}
.window .title,
.window p,
.window h3 ,
.window h2 {
	color: #000;
	opacity: 1;
}
.window h2{
	font-size: 20px;
	margin-bottom: 5px;
}
.window h3{
	color: #c52170;
	font-size: 18px;
	margin: 15px 0;
}
.window .topIcon {
	content: "";
	display: block;
	background: url("down.png") 0 0 no-repeat;
	width: 32px;
	height: 32px;
	margin: 0 auto 20px auto;
}
.window form {
	display: block;
	margin: 30px 0;
}
.window input,
.window textarea,
.window form input.send {
	border-style: solid;
	border-color: transparent transparent #fff transparent;
	border-width: 1px;
	font-size: 12px;
	color: #000;
	background: transparent;
	display: block;
	width: 100%;
	/*padding: 12px;*/
	margin-bottom: 16px;
	text-align: left;
}
.window form input.send {
	background: #ef6161;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 1px;
	border: none;
	margin-top: 30px;
	display: block;
	text-align: center;
}
.window form input.send:hover {
	background: #fff;
	color: #222;
}
.window .bottomClose {
	font-weight: 700;
	color: #fff;
	font-size: 12px;
}

/* ========================
   Responsive queries
   ======================== */

/* 
   Note: Media queries use breakpoints upon which the target elements change their settings/values. Below is an example which sets the modal window to 96% of screen width and the inner title font size at 24px when screen viewport is at 480px width or below (mobiles, low-res tablets etc). You can target specific viewport width, height, their min/max breakpoints, media types and other settings. Within those rules you can then adjust every element and it's css attributes.

   Check out more at:
   http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
*/

@media screen and (max-width: 480px) {
	/* Create responsive modal window */
    .slickModal .window {
    	width: 96% !important; /* Side note: To override the jQuery plugin settings you need to use !important attribute at the end of every value which is initialized with the plugin */
    }
    /* Reduce the size of the main title */
    .slickModal .window .title {
    	font-size: 24px;
    }
    /* Let's center the close icon */
    .slickModal .close.icon {
    	right: 20px;
    	/*left: 0;*/
    	margin: 0 auto;
    }
}
@media screen and (max-height: 480px) {
	/* Show the scrollbars so the user can scroll down the modal's content */
    .slickModal {
    	overflow: scroll;
    }
    /* Stick the overlay so it covers whole screen */
    .slickModal .overlay2 {
    	position: fixed;
    }
}

@font-face{font-family:'FontAwesome';src:url('../../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}

#popup-1 .startbutton_bewerbung{width:147px; height:39px;bottom: 63px;position: absolute;right: 20px;}

#popup-1 .startbutton_bewerbung2{width:147px; height:39px;bottom: 63px;position: absolute;right: 20px;}

#popup-1  img.startbutton_bewerbung2:hover{
  opacity:0;
}

#popup-1-mobile .startbutton_bewerbung_mobile{width:193px; height:28px;bottom: 10px;position: absolute;right: 20px;}

#popup-1-mobile .startbutton_bewerbung2_mobile{width:193px; height:28px;bottom: 10px;position: absolute;right: 20px;}

#popup-1-mobile  img.startbutton_bewerbung2_mobile:hover{
  opacity:0;
}

#popup-chat .popup-chat-button {
    display: block;
    position: absolute;
    cursor: pointer;
    bottom: 39px;
    left: 101px;
    width: 160px;
    height: 42px;
}
#popup-chat .popup-chat-ds {
    display: block;
    position: absolute;
    cursor: pointer;
    bottom: 3px;
    left: 6px;
    width: 130px;
    height: 15px;
}
/*
#popup-chat .popup-chat-button{
    display: block;
    position: absolute;
	cursor: pointer;
	top: 75px;
    right: 9px;
    width: 145px;
    height: 30px;
}
#popup-chat .popup-chat-ds{
    display: block;
    position: absolute;
	cursor: pointer;
	bottom: 3px;
    right: 22px;
    width: 134px;
    height: 15px;
}
*/

#popup-chat .close{
    display: block;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-weight: 700;
    height: 33px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.1s ease 0s;
    width: 29px;
    z-index: 10;
}

#popup-exp-int .popup-exp-int-button{
    display: block;
    position: absolute;
	cursor: pointer;
	bottom: 74px;
    left: 20px;
    width: 177px;
    height: 40px;
}

#popup-exp-int-mobile .popup-exp-int-button{
    display: block;
    position: absolute;
	cursor: pointer;
	top: 171px;
    left: 20px;
    width: 177px;
    height: 40px;
}

#popup-exp-int .close, #popup-exp-int-mobile .close{
    display: block;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    z-index: 10;
}
 #popup-exp-int-mobile .close{
     /*margin-right: 45px;	 */
 }

#popup-xmas .close{
    display: block;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    z-index: 10;
}

#popup-xmas .popup-xmas-button{
    display: block;
    position: absolute;
	cursor: pointer;
	bottom: 81px;
    right: 58px;
    width: 100px;
    height: 94px;
}


#popup-xmas-mobile .popup-xmas-button {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 105px;
    left: 130px;
    width: 70px;
    height: 60px;
}

/* Design June
#popup-tc .popup-tc-button, #popup-exit-tc .popup-tc-button{
    display: block;
    height: 40px;
    width: 265px;
    bottom: 20px;
    position: absolute;
    right: 20px;
}
*/
/*Design August*/
#popup-tc .popup-tc-button, #popup-exit-tc .popup-tc-button, #popup-tc-en .popup-tc-button {
    display: block;
    height: 420px;
    width: 650px;
    bottom: 0px;
    position: absolute;
    right: 0px;

}



#popup-tc .close, #popup-exit-tc  .close, #popup-tc-en .close{	
    display: block;
    height: 50px;
    width: 50px;
    margin-top: 20px;
}
/* Design June
#popup-tc-mobile .popup-tc-button{
	width: 185px;
    height: 42px;
    display: block;
    bottom: 18px;
    position: absolute;
    left: 65px;
}
*/
/*Design August*/
#popup-tc-mobile .popup-tc-button, #popup-tc-en-mobile .popup-tc-button {
    width: 320px;
    height: 360px;
    display: block;
    bottom: 0px;
    position: absolute;
    left: 0px;
 
}

#popup-tc-mobile .close, #popup-tc-en-mobile .close{
	display: block;
    width: 50px;
    height: 50px;
    margin-top: 20px;
    margin-right: 45px;
    /*margin-right: 12px;*/
}

/*five minutes bewerbung*/
#popup-fm-mobile .popup-fm-button {
    width: 320px;
    height: 360px;
    display: block;
    bottom: 0px;
    position: absolute;
    left: 0px;
 
}

#popup-fm-mobile .close{
	display: block;
    width: 50px;
    height: 50px;
    margin-top: 20px;
    margin-right: 0;
}
#popup-fm .close, #popup-exit-fm  .close{	
    display: block;
    height: 50px;
    width: 50px;
    margin-top: 20px;
}

#popup-fm .popup-fm-button, #popup-exit-fm .popup-fm-button {
    display: block;
    height: 420px;
    width: 650px;
    bottom: 0px;
    position: absolute;
    right: 0px;

}



/**/
/* Design June
#popup-tc-str .popup-tc-button, #popup-exit-tc .popup-tc-button{
    display: block;
    height: 40px;
    width: 265px;
    bottom: 20px;
    position: absolute;
    right: 20px;
}
*/
/*Design August*/
#popup-tc-str .popup-tc-button, #popup-exit-tc .popup-tc-button {
    display: block;
    height: 420px;
    width: 650px;
    bottom: 0px;
    position: absolute;
    right: 0px;
   
}


#popup-tc-str .close, #popup-exit-tc  .close{	
    display: block;
    height: 50px;
    width: 50px;
    margin-top: 20px;
}

#popup-tc-str-mobile .popup-tc-button{
	width: 185px;
    height: 42px;
    display: block;
    bottom: 18px;
    position: absolute;
    left: 65px;
}

#popup-tc-str-mobile .close{
	display: block;
    width: 50px;
    height: 50px;
    margin-top: 20px;
    margin-right: 45px;
}

/**KONTAKT*ALT*******************************/

#popup_whatsapp .close.icon, #popup_telefon .close.icon, #popup_chat_offline .close.icon, #popup_chat_online .close.icon{
	/*margin: 22px 2px 0 0;*/
	margin: 30px 10px 0 0;
	width: 25px;
	height: 26px;
	opacity:1;
}

#popup_whatsapp .close.icon:hover, #popup_telefon .close.icon:hover, #popup_chat_offline .close.icon:hover, #popup_chat_online .close.icon:hover{
	opacity:0.3;
}

#popup_whatsapp .wa-headline, #popup_telefon .tel-headline, #popup_chat_offline .ch-off-headline, #popup_chat_online .ch-on-headline{
	padding: 40px 0 0 40px;
	width: 395px;
    font-size: 27px;
    font-weight: lighter;
    /*line-height: 35px;*/
	font-family: "Helvetica", Arial, sans-serif;
}

#popup_telefon .tel-headline{
	height: 100px;
}

#popup_telefon .tel-button a, #popup_chat_online .ch-on-button{
	position: absolute;
	bottom: 0;
	display: block;
	margin: 27px 30px;
	width: 267px;
	height: 50px;
	cursor: pointer;
}

#popup_telefon .tel-instructions{
	padding: 40px 62px 40px 40px;
	width: 395px;
}

#popup_telefon .tel-instructions a, #popup_chat_offline .ch-off-instructions a, #popup_chat_online .ch-on-instructions a{
	color: #333;
	text-decoration: underline;
}

#popup_telefon .tel-contact, #popup_chat_offline .ch-off-contact, #popup_chat_online .ch-on-contact{
	position: absolute;
	right: 0;
	bottom: 10px;
	color: #fff;
	padding: 0 20px;
	top:315px;
}

#popup_telefon .tel-contact .tel-name, #popup_chat_offline .ch-off-contact .ch-off-name, #popup_chat_online .ch-on-contact .ch-on-name{
	display: block;
	padding-top: 20px;
	font-size: 18px;
}

#popup_chat_offline .ch-off-phone{
	display:block;
	padding: 15px 0;
	font-size: 18px;
}

#popup_chat_offline .ch-off-instructions{
	width: 395px;
	padding: 40px 0 0 40px;
}

#popup_chat_offline .ch-off-contact-link{
	cursor: pointer;
}

#popup_chat_online .ch-on-instructions{
	position: absolute;
	bottom: 100px;
	width: 395px;
	padding: 40px 0 0 30px;	
}

#popup_whatsapp .wa-headline{
	height: 200px;
}

#popup_whatsapp .wa-phone, #popup_telefon .tel-phone{
	padding: 30px 40px 0;
	font-size: 18px;
	height: 99px;
}

#popup_whatsapp .wa-phone .number, #popup_telefon .tel-phone .number{
	color: #c3016f;
	padding-bottom:5px;
}

#popup_whatsapp .wa-phone .info, #popup_telefon .tel-phone .info{
	font-size: 14px;
}

#popup_whatsapp .wa-instructions{
    padding: 25px 40px;
    font-size: 18px;
	color:#fff;
}

#popup_whatsapp .wa-instructions ol{
	color:#fff;
	font-size:14px;
	list-style-position: inside;
}

#popup_whatsapp .wa-instructions ol li{
	padding-top:5px;
}

/**KONTAKT*AKTUELL***************************/

.popup-contact .close.icon:before, .popup-contact .close.icon:after{
	background:none !important;
}
.popup-contact-ap{
    position: absolute;
    bottom: 0;
	width: 198px;
    height: 194px;
    color: #fff;
    padding: 20px;	
}
.popup-contact-ap .popup-contact-ap-name{
	display: block;
    padding-top: 20px;
    font-size: 18px;	
}
.popup-contact-ap .popup-contact-ap-name span{
	padding-bottom:10px;
	border-bottom: 2px solid #fff;
}
.popup-contact-info{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 494px;
    height: 394px;
    padding: 20px;
}
.popup-contact-info b{
	display:block;
	margin-bottom:5px;
	font-weight:bold;
}
.popup-contact-info ol{
	list-style-position: inside;
}
.popup-contact-info ol li{
	line-height: 1.7;
}
.popup-contact-info a{
	color: #000;
	text-decoration: underline;
	cursor:pointer;
}
.popup-contact-img{
	width:100%;
	margin-top:50px;
	text-align:center;
}
.popup-contact-info .popup-contact-headline{
	font-size:27px;
	margin-bottom:30px;
}
.popup-contact-info .popup-contact-subheadline{
	color:#c3016f;
	font-size:18px;
	margin-bottom:30px;
}
.popup-contact-info .popup-contact-subheadline span{
	display:block;
	color: #333;
	font-size:14px;
}
.popup-contact-info .popup-contact-button{
	display:block;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	background-color:#c3016f;
	padding:15px;
	width:250px;
	height: 50px;
	margin: 40px auto 0;
	cursor:pointer;
}
.popup-contact-info .popup-contact-privacy{	
	display:block;
	font-size: 12px;
	text-align:center;
	margin: 30px auto 15px;
	width:250px;
}

/*POPUP CHAT NEU*/

#popup_chat_online .popup-contact-ap, #popup_chat_offline .popup-contact-ap{
	position: absolute;
    top: 120px;
    color: #595959;
    margin-left: 125px;
    padding-left: 25px;
    padding-top: 38px;
	width:auto;
	height:auto;
	font-size:13px;
}

#popup_chat_online .popup-contact-info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 0;
}

#popup_chat_online .popup-contact-ap-name, #popup_chat_offline .popup-contact-ap-name, #popup_telefon .popup-contact-ap-name{
	display: block;
    padding-top: 0; 
    font-size: 14px;
    font-weight: bold;
}

#popup_chat_online .popup-contact-info .popup-contact-privacy {
    display: block;
    font-size: 10px;
    text-align: left;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 9px;
	width:100%;
}

#popup_chat_offline .popup-contact-info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 365px;
    height: auto;
    padding: 9px 20px;
}

#popup_chat_offline  .popup-contact-info .popup-contact-headline {
    font-size: 27px;
    margin-bottom: 15px;
}

#popup_chat_offline  .popup-contact-info .popup-contact-subheadline {
    color: #c3016f;
    font-size: 18px;
    margin-bottom: 15px;
}

#popup_telefon .popup-contact-info {
    position: absolute;
    top: 126px;
    left: 175px;
    width: 299px;
    height: auto;
    padding: 20px;
}
#popup_telefon .popup-contact-info a{
    color: #c3016f;
}

#popup_telefon .popup-contact-ap{
	position: absolute;
	top: 220px;
	color: #595959;
	margin-left: 0;
	padding-left: 10px;
	padding-top: 38px;
	width: auto;
	height: auto;
	font-size: 13px;
}

#popup_telefon .popup-contact-info{
	font-size:13px;
}

#popup_telefon .popup-contact-info .popup-contact-subheadline, #popup_telefon .popup-contact-info .popup-contact-subheadline-2 {
    color: #c3016f;
    font-size: 15px;
	margin-bottom: 0;
}

#popup_telefon .popup-contact-info span{
	display:block;
	margin-bottom:15px;
}

#popup_telefon .popup-contact-subheadline-2{
	margin-top: 10px;
}

#popup_telefon .popup-contact-info .popup-contact-button{
	color:#fff;
	margin-top: 80px;
}

/* POPUP Newsletter*/
#popup-newsletter, #popup-newsletter-mobile{
	font-family: "Helvetica45Light", Arial, sans-serif;
	font-size: 14px;
}

#popup-newsletter .window form, #popup-newsletter-mobile .window form{
	margin:0;
}

#popup-newsletter .window input, #popup-newsletter .window textarea, #popup-newsletter .window form input.send,
#popup-newsletter-mobile .window input, #popup-newsletter-mobile .window textarea, #popup-newsletter-mobile .window form input.send{
	margin-bottom:0;
}

#popup-newsletter-mobile .isActive{
	z-index: 99999999;
}

#popup-newsletter .window{
	overflow:hidden;
}

#popup-newsletter-mobile .window{
	background-color:#fff;
}

#popup-newsletter #newsletter_content{
	padding:18px 20px;
}

#popup-newsletter-mobile #newsletter_content{
	/*padding:12px 15px;*/
	padding:18px 20px;
}

#popup-newsletter #newsletter_content .row, #popup-newsletter-mobile #newsletter_content .row{
	padding-bottom:10px;
}

#popup-newsletter .nl_1_h3{
	font-size:28px;
	padding-bottom: 15px;
	line-height:32px;
}

#popup-newsletter .nl_1_h4{
	padding-bottom: 5px;
}

#popup-newsletter-mobile .nl_1_h3{
	font-size:21px;
	padding-bottom: 15px;
	padding-right: 10px;
}

#popup-newsletter input[type="text"], #popup-newsletter select, #popup-newsletter-mobile input[type="text"], #popup-newsletter-mobile select{
	border-radius:0;
	/*border:1px solid #000;*/
	border:1px solid #888;
	padding-left: 10px;
	width: 97%;
	font-size:12px;
}

#popup-newsletter-mobile input[type="text"], #popup-newsletter-mobile select{
	border-radius:0;
	/*border:1px solid #000;*/
	border:1px solid #888;
	padding-left: 5px;
	padding-top:11px;
	-webkit-appearance: none;
}

#popup-newsletter-mobile select{
	padding-top:0;
}
#popup-newsletter-mobile input[type="submit"] {
	padding-top:10px;
	background-color:#c3016f;
	color:#fff;
}

#popup-newsletter input[type="submit"], #popup-newsletter-mobile input[type="submit"] {
	border:0px;
	font-size: 20px;
	background-color:#c3016f;
	color:#fff;
	max-width: 50%;
	padding:10px;
	text-align:center;
	margin: 0 auto;	
}

#popup-newsletter .form-group, #popup-newsletter-mobile .form-group{	
	padding-bottom: 15px;
}

#popup-newsletter .checkbox input[type="checkbox"]{
	width: 17px;
    height: 17px;
    margin-top: 0;
	border-radius:0;
}

#popup-newsletter .checkbox{
	margin-left: 20px;
	margin-bottom: 10px;
	font-size:11px;
}
#popup-newsletter-mobile .checkbox{
	margin-left: 20px;
	margin-bottom: 10px;
	font-size:12px;
}
#popup-newsletter .checkbox label::after{
	padding-top: 2px;
    font-size: 13px;
}
#popup-newsletter-mobile .checkbox label::after{
	padding-top: 1px;
    font-size: 13px;	
    width: 20px;
    height: 20px;
}
#popup-newsletter .checkbox label::before, #popup-newsletter-mobile .checkbox label::before{
	/*border:1px solid #000;*/
	border:1px solid #888;
	border-radius:0;
}

#popup-newsletter #agb span{
	text-decoration:none;
	font-size:11px;
	margin-top:3px;
}

#popup-newsletter span{
	display:block;
	font-size:12px;
	text-decoration: underline;
	margin-top:13px;
	cursor:pointer;
}

#popup-newsletter-mobile a.closeModal{
	display:block;
	font-size:12px;
	text-decoration: underline;
	padding:10px;
	margin-top: 5px;
	cursor:pointer;
}

#popup-newsletter-mobile select.iOSselect {
    -webkit-appearance: none;
    background-color: white;
    background-image: url('/fileadmin/lp_kolo/img/lp_brand/iOS-select-arrow.jpg');
    background-position : 97% center;
    background-repeat: no-repeat;
    padding-right: 1.5em;
	color:#a9a9a9;
	-webkit-text-fill-color:#a9a9a9;
}

#popup-newsletter #data-error, #popup-newsletter-mobile #data-error{
	font-size: 13px;
	margin-bottom: 10px;
}

#popup-newsletter-mobile .window{
	-webkit-overflow-scrolling: touch;
	overflow-y:scroll;
}

#popup-newsletter .close.icon{
	opacity: 1;
	margin:0;
     margin-top: 25px;
    margin-right: 10px;
}

#popup-newsletter-mobile .close.icon{
	opacity: 1;
	margin:0;
     margin-top: 27px;
    right: 5px;
}

#popup-newsletter .close.icon:before, #popup-newsletter .close.icon:after{
	background:#fff;
	height: 2px;
}

#popup-newsletter .text-center .closeModal, #popup-newsletter-mobile .text-center .closeModal{
	text-align:center;
	margin:13px auto;
}

/*Ende POPUP Newsletter*/


/*POPUP MA-Infoabend 2018*/

#popup-ma-info-mobile .window{
	width:315px !important;
}

#popup-ma-info .popup-ma-info-button{
	display: block;
	position: absolute;
	cursor: pointer;
	/*bottom: 33px;
	left: 93px;
	width: 266px;
	height: 40px;*/
	width: 100%;
	height:100%;
}

#popup-ma-info-mobile .popup-ma-info-button{
	display: block;
	position: absolute;
	cursor: pointer;
	/*bottom: 57px;
	left: 20px;
	width: 265px;
	height: 40px;*/
	width: 100%;
	height:100%;
}

#popup-ma-info .close{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 53px;
    height: 54px;
    z-index: 10;
}
 #popup-ma-info-mobile .close{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
	height: 30px;
    z-index: 10;
 }

/*POPUP HH Rabatt 2018*/

#popup-hh-rabatt-mobile .window{
	width:315px !important;
}

#popup-hh-rabatt .popup-hh-rabatt-button{
	display: block;
	position: absolute;
	cursor: pointer;
	width: 100%;
	height:100%;
}

#popup-hh-rabatt-mobile .popup-hh-rabatt-button{
	display: block;
	position: absolute;
	cursor: pointer;
	width: 100%;
	height:100%;
}

#popup-hh-rabatt .close{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 53px;
    height: 54px;
    z-index: 10;
}
 #popup-hh-rabatt-mobile .close{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
	height: 30px;
    z-index: 10;
 }
 
#popup-form .window, #popup-form .container-fluid, #popup-form-mobile .window, #popup-form-mobile .container-fluid{
	 background:none;
 }
 
#popup-form .content-body{
	background: url('/fileadmin/popup/images/nachruecken/popup_background_ws19.png') no-repeat;
}

#popupform{
	margin-top: 180px;
	padding-left: 350px;
	padding-right: 160px;
	font-size: 13px;
}

#popupform .intro{
	margin: 10px 0;
}

#popupform .popup-form-error {
    color: #C3016F;
    font-size: 12px;
    border: none;
    margin: 10px 0;
	font-weight:bold;
}

#popupform .form-control{
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;	
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

#popupform .selector{
	margin-left: 15px;
}

#popupform .error{
    border: 1px solid #C3016F;
}

#popupform .checkbox input[type="checkbox"] {
    height: 18px;
    margin-left: -16px;
    position: absolute;
    width: 18px;
	border: 2px solid #C3016F;
}

#popupform .ds{
	font-size:12px;
}

#popupform .cb-padding{
	padding-left: 17px;
}

#popupform .checkbox input[type="checkbox"]{
    height: 18px;
    margin-left: -16px;
    position: absolute;
    width: 18px;
}
#popupform .checkbox {
  padding-left: 20px;
  font-size:12px;
}
#popupform .checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 15px;
}
#popupform .checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0;
  margin-left: -20px;
  border: 2px solid #c3016f;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
#popupform .checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 5px;
  padding-top: 1px;
  font-size: 16px;
  color: #555555;
}

#popupform .checkbox input[type="checkbox"],
#popupform .checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
#popupform .checkbox input[type="checkbox"]:focus + label::before,
#popupform .checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
#popupform .checkbox input[type="checkbox"]:checked + label::after,
#popupform .checkbox input[type="radio"]:checked + label::after {
  font-family: 'FontAwesome';
  content: "\f00c";
}
#popupform .checkbox input[type="checkbox"]:disabled + label,
#popupform .checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
#popupform .checkbox input[type="checkbox"]:disabled + label::before,
#popupform .checkbox input[type="radio"]:disabled + label::before {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

#popupform span.customSelect {
	background-color: #fff;
	text-align:left;
	color:#999999;
	border:1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px 5px;	
	height:35px;
	background: url('../../microsites/expressbewerbung/img/select-arrow2b.jpg') no-repeat right -1px;
}

#popupform span.customSelect.changed {
	background-color: #fff;
}

#popupform .customSelectInner {
	background: transparent;
}

#popupform .hasCustomSelect{
	min-width:330px;
}

#popupform input[type="submit"]{
	background-color: #C3016F !important;
    color: #fff;
    padding: 20px;
    border-radius: 100px;
    max-width: 300px;
    font-size: 16px;
    border: 1px solid #C3016F;
	text-align:center;
    margin: 20px auto 0;
}

#popup-form  .intro-danke{
    margin-top: 100px;
    margin-left: 355px;
    padding: 10px;
}

#popup-form .closebutton{
	background-color: #C3016F !important;
    color: #fff;
    padding: 20px;
    border-radius: 100px;
    max-width: 300px;
    font-size: 16px;
    border: 1px solid #C3016F;
	text-align:center;
    margin: 20px 150px;
	cursor: pointer;
}

#popup-form-mobile #popupform-mobile{
	background-color:#fff;
	width:85%;
	color: #000;
	margin: 0 auto;
	padding: 20px;
}

#popup-form-mobile a, #popupform a{
	color:#000;
}

#popup-form-mobile .goto{
	color: #fff;
    background: #c3016f;
    padding: 10px;
    display: block;
    width: 150px;
    margin-top: 20px;
    margin: 20px auto 5px;
    text-align: center;
	border-radius: 100px;
}
#popup-form .close, #popupform-mobile .close{
	color: #fff;
}

#popup-form .close.icon:before, #popup-form .close.icon:after,
#popup-form-mobile .close.icon:before, #popup-form-mobile .close.icon:after{
	background:#fff;
}


/****VR TOUR***/


#popup-vr-tour .close{	
    display: block;
    height: 50px;
    width: 50px;
    margin-top: 20px;
}

#popup-vr-tour-mobile .close{
	display: block;
    width: 50px;
    height: 50px;
    margin-top: 20px;
	margin-right:91px;
}

#popup-vr-tour .popup-vr-tour-button-desktop{
	display: block;
    width: 155px;
    height: 43px;
    position: absolute;
    bottom: 20px;
    right: 190px;
	cursor:pointer;
}

#popup-vr-tour .popup-vr-tour-button-headset{
	display: block;
    width: 155px;
    height: 43px;
    position: absolute;
    bottom: 20px;
    right: 20px;
	cursor:pointer;
}

#popup-vr-tour-mobile .popup-vr-tour-button-desktop{
	display: block;
    height: 43px;
    width: 132px;
    position: absolute;
    bottom: 80px;
    left: 16px;
	cursor:pointer;
}

#popup-vr-tour-mobile .popup-vr-tour-button-headset{
	display: block;
    height: 43px;
    width: 132px;
    position: absolute;
    bottom: 80px;
    right: 107px;
	cursor:pointer;
}

/**POPUP Infoprompt **/

#popup-ma-infoprompt .close, #popup-ma-infoprompt-mobile .close{
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	z-index: 10;
}
 
#popup-ma-infoprompt .popup-ma-infoprompt-ja{
	position:absolute;
	bottom:20px;
	left:20px;
	display:block;
	width:290px;
	height:50px;
	cursor:pointer;
}
 
#popup-ma-infoprompt .popup-ma-infoprompt-nein{
	position:absolute;
	bottom:20px;
	right:20px;
	display:block;
	width:290px;
	height:50px;
	cursor:pointer;
}
 
#popup-ma-infoprompt-mobile .popup-ma-infoprompt-ja{
	position:absolute;
	bottom: 18px;
    left: 20px;
    display: block;
    width: 132px;
    height: 45px;
	cursor:pointer;
}
 
#popup-ma-infoprompt-mobile .popup-ma-infoprompt-nein{
	position:absolute;
	bottom:18px;
	right:20px;
	display:block;
	width:132px;
	height:45px;
	cursor:pointer;
}


/**POPUP Master Webinare **/

#popup-ma-webinarprompt .close, #popup-ma-webinarprompt-mobile .close{
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	height: 50px;
	z-index: 10;
}
 
#popup-ma-webinarprompt .popup-ma-webinarprompt{
	position:absolute;
	bottom:20px;
	left:80px;
	display:block;
	width:290px;
	height:50px;
	cursor:pointer;
}
 
 
#popup-ma-webinarprompt-mobile .popup-ma-webinarprompt{
	position:absolute;
	bottom: 45px;
    left: 20px;
    display: block;
    width: 380px;
    height: 45px;
	cursor:pointer;
}
 
img.lp-sm-img-mobile{max-width:100%;}
