
/*********** INFORMATION *****************************

- document:  SlideIt - CSS3 fixed sliding elements
- element:   Login and Register form - Top Right
- author:    Capelle @ Codecanyon
- profile:   http://codecanyon.net/user/Capelle

*****************************************************/


/*  ==================
    1. FONTS
    ==================  */

/** 1.1. Fonts ***************/

/* @import url(//fonts.googleapis.com/css?family=Lato:300); Delete this import if you're changing the font family */
/* lato-300 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lato-v16-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Lato Light'), local('Lato-Light'),
       url('../fonts/lato-v16-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v16-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v16-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v16-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v16-latin-300.svg#Lato') format('svg'); /* Legacy iOS */
}

/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Lato Regular'), local('Lato-Regular'),
       url('../fonts/lato-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v16-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
}


/*  ==================
    2. RESET
    ==================  */

/***** Body reset *****/



/***** Item reset *****/

#slideit * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: 300;
	font-style: normal;
	font-size: 100%;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; /* Edit this if you want to match the font with your template design */
	vertical-align: baseline;
	line-height: normal;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#slideit a {
	text-decoration: none;
}
#slideit input[type="radio"],
#slideit input[type="checkbox"] {
	display: none;
}
#slideit label {
	cursor: pointer;
}
/* === Note === If you experience issues with reset above, please adjust the selectors and values according to your template/website.
When adjusting the reset is adviced to check up the elements on your page, as they might distort. */


/*  ==================
    3. MAIN STYLES
    ==================  */

#slideit {
	z-index: 9999; /* Keep the item above all other elements on the page */
    /* position: fixed; ORIGINAL WERT */
	position: absolute;
	width: 300px; /* Width of the wrapper of the section. Adjust this value if you want wider elements */
	top: 0; /* Vertical position of the elements */
	right: 2%; /* Horizontal position of the elements */
	overflow-x: noscroll;
}

/***** Main styles *****/

#slideit section {
	margin: 0;
	overflow: hidden;
	width: 100%;
	height: 780px;
	right: 0;
	top: 0;
	position: absolute;
	z-index: 10;
	background: #fff;
	border-bottom: 6px solid #A7ABC6;
	-webkit-backface-visibility: hidden; /* Webkit transition hack */
}
#slideit section,
#slideit input#close-item:checked ~ section {
	/* Section position when closed */
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}
#slideit input#open-item:checked ~ section {
	/* Section position when opened */
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
#slideit p.info {
	font-size: 13px;
	color: #999;
	line-height: 18px;
}
#slideit p.info.small {
	font-size: 10px;
	color: #bbb;
}
#slideit p.agree {
	font-size: 10px;
	color: #999;
	display: inline-block;
	float: right;
	margin-top: 8px;
}
#slideit p.agree a {
	color: #222;
}
#slideit p.agree a:hover {
	text-decoration: underline;
}
#slideit .field {
	width: 100%;
	position: relative;
	margin: 28px 0 0 0;
	display: block;
	float: left;
}
#slideit .terms {
	/*display: inline;*/
	/*width: 110px;*/
	/*float: left;*/
	clear: both;
	position: relative;
	margin: 33px 0 0 0;
	padding-top: 20px;
}
#reset-form,
#terms-open {
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
}
#reset-form:target,
#terms-open:target {
	visibility: visible;
	opacity: 1;
}
#reset-form > form#reset,
#terms-open .terms-window {
	position: absolute;
	height: auto;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: auto;
	background: #fff;
}
#reset-form > form#reset {
	width: 320px;
	top: 50%;
	margin-top: -106px; /* Move up the form by approx half of it's height */
	padding: 30px;
}
#reset-form h1 {
	font-size: 20px;
}

#terms-open .terms-window {
	width: 50%;
	top: 10%;
}
#terms-open .terms-window span.title {
	font-size: 24px;
	padding: 30px;
	color: #fff;
	background: #0096d6;
	text-transform: uppercase;
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
#terms-open .terms-window b.subtitle {
	font-size: 16px;
	text-transform: uppercase;
	color: #222;
	padding: 30px 30px 0 30px;
}
#terms-open .terms-window p {
	padding: 0 30px 30px 30px;
}
#slideit .nav-labels {
	font-size: 14px;
	padding: 30px;
	color: #cccccc;
	background: #0096D6;
	text-transform: uppercase;
	display: block;
	width: 100%;
}
#geb_tag_label {	
	color: #999;
}
#geb_tag_div {
	margin-top: 28px;
}
#geb_tag_container .field {
	margin-top: 5px;
}

#slideit .nav-labels span {
	display: inline-block;
	margin: -4px 6px 0 6px;
	text-transform: uppercase;
	font-size: 12px;
	vertical-align: middle;
}
#slideit input#login:checked ~ .nav-labels label.log-lb,
#slideit input#register:checked ~ .nav-labels label.reg-lb {
	color: #fff;
}
#slideit .login-form,
#slideit .register-form {
	padding: 0 30px 30px 30px;
	position: absolute;
	visibility: hidden;
	opacity: 0;
}
#slideit .login-form {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}
#slideit .register-form {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

#slideit input#login:checked ~ .login-form,
#slideit input#register:checked ~ .register-form {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
}
#slideit .clrfx-1 {
	display: block;
	width: 100%;
	margin: 10px 0;
	float: left;
}

/***** Labels, Inputs and Buttons *****/

#slideit label.open,
#slideit label.close,
#slideit a.lightbox-close {
	text-align: center;
	position: absolute;
}
#slideit label.open {
	font-size: 11px;
	color: #222;
	background: #0096d6;
	width: 145px;
	top: -50px;
	left: 0;
	right: 0;
	bottom: auto;
	margin: 0 auto;
	padding: 10px 0;
	text-transform: uppercase;
	z-index: 1;
}
#slideit input#close-item:checked ~ label.open {
	top: 0;
}
#slideit label.open:hover,
#slideit label.open:focus {
	background: #222;
	color: #fff;
}
#slideit label.close,
#slideit a.lightbox-close {
	right: 0px;
	left: auto;
	top: 0;
	bottom: auto;
	font-size: 20px;
	background: #999999;
	color: #fff;
	width: 22px;
}
#slideit label.close:hover,
#slideit label.close:focus,
#slideit a.lightbox-close:hover,
#slideit a.lightbox-close:focus {
	background: #757786;
}

#slideit .close {
	opacity: 1.0 !important;
	right: 0px;
}

#slideit a.reset-pass {
	display: inline-block;
	background: #0096d6;
	padding: 4px 6px;
	margin-top: 20px;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
}
#slideit a.reset-pass:hover {
	background: #757786;
}
#slideit input {
	display: block;
	width: 100%;
	border-bottom: solid 1px #ddd;
	padding: 0 20px 4px 3px;
	font-size: 13px;
	color: #222;
	position: relative;
}
#slideit input:hover,
#slideit input:focus {
	border-bottom-color: #222;
	outline: none;
}
#slideit input.send {
	display: inline-block;
	clear: both;
	background: #0096D6;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 8px 26px;
	cursor: pointer;
	margin: 30px 0 0 0;
	width: auto;
	border: none;
}
#slideit input.send:hover,
#slideit input.send:focus {
	background: #0096D6;
	border: none;
	outline: none;
}
#slideit .terms label {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	left: 0;
	top: 4px;
	background: #fff;
	border: solid 2px #C2C6E2;
}
#slideit .terms label:after {
	opacity: 0;
	visibility: hidden;
	content: "";
	position: absolute;
	width: 8px;
	height: 4px;
	background: transparent;
	top: 4px;
	left: 3px;
	border: 2px solid #C2C6E2;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#slideit .terms input:checked + label:after {
	opacity: 1;
	visibility: visible;
}
/***** Input, selectbox and textarea *****/

#slideit input,
#slideit select,
#slideit textarea {
	display: block;
	width: 100%;
	border-bottom: solid 1px #ddd;
	padding: 0 20px 4px 3px;
	font-size: 13px;
	color: #222;
	position: relative;
}
#slideit select {
	padding-right: 0;
	padding-left: 0;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#slideit select.grayed {
	color: #aaa;
}
#slideit select > option {
	background: #C2C6E2;
	color: #fff;
}
#select-arrow,
#select-arrow-svg {
	background: #fff url('img/select.png') no-repeat right;
	width: 30px;
	height: 20px;
	position: absolute;
	right: 0;
	top: -1px;
	pointer-events: none;
	vertical-align: middle;
	outline: none;
	border: none;
	z-index: 3;
}
#slideit select:hover ~ #select-arrow,
#slideit select:focus ~ #select-arrow,
#slideit select:hover ~ #select-arrow-svg,
#slideit select:focus ~ #select-arrow-svg {
	background: #fff url('img/select-focus.png') no-repeat right;
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
	#select-arrow-svg {
		display: none; /* <-- Hide svg arrow in webkit browsers and IE9/10 (pointer events don't work in those IE) */
	}
}
x:-o-prefocus, #select-arrow {
	display: none; /* <-- Hack for Opera 12 */
}
#slideit textarea {
	resize: none;
	height: 22px;
	overflow: hidden;
}
#slideit input:hover,
#slideit input:focus,
#slideit select:hover,
#slideit select:focus,
#slideit textarea:hover,
#slideit textarea:focus {
	border-bottom-color: #222;
	outline: none;
}
/***** Validations *****/

#slideit input:required {
	background: #fff url("img/required.png") no-repeat 100% 6px;
	box-shadow: none;
	outline: none;
}
#slideit input:hover:invalid {
	background: #fff url("img/focused.png") no-repeat 100% 6px;
	box-shadow: none;
	outline: none;
}
#slideit input:required:valid {
	background: #fff url("img/valid.png") no-repeat 100% 6px;
	box-shadow: none;
	outline: none;
}
#slideit input:focus:invalid {
	background: #fff url("img/invalid.png") no-repeat 100% 6px;
	z-index: 10;
	box-shadow: none;
	outline: none;
}

/***** Placeholders *****/

::-webkit-input-placeholder {
	color: #999;
}
#slideit input:focus::-webkit-input-placeholder {
	color: #ccc;
}
:-moz-placeholder {
	color: #999;
}
#slideit input:focus:-moz-placeholder {
	color: #ccc;
}
::-moz-placeholder {
	color: #999;
}
#slideit input:focus::-moz-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #999;
}
#slideit input:focus:-ms-input-placeholder {
	color: #ccc;
}
.ie9-placeholder {
	color: #999 !important;
}
.ie9-placeholder:focus {
	color: #ccc !important;
}

/***** Tooltips *****/

#slideit .tip {
	background: #222;
	color: #fff;
	font-size: 12px;
	padding: 10px 12px;
	text-align: center;
	position: absolute;
	top: -68px;
	left: -20px;
	opacity: 0;
	visibility: hidden;
	width: auto;
	cursor: default;
}
#slideit .tip:after {
	border-top: 6px solid rgba(0, 0, 0, 1);
	border-left: 8px solid rgba(0, 0, 0, 0);
	border-right: 8px solid rgba(0, 0, 0, 0);
	content: "";
	position: absolute;
	bottom: -6px;
	left: 28px;
}
#slideit input:focus ~ .tip {
	top: -48px;
	opacity: 1;
	visibility: visible;
	z-index: 99;
}
#slideit input:required:valid ~ .tip {
	opacity: 0;
	visibility: hidden;
}

/***** Transitions *****/

#slideit label,
#slideit input,
#slideit a {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
#reset-form,
#terms-open {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#slideit .tip {
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-ms-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
#slideit section,
#slideit .login-form,
#slideit .register-form {
	-webkit-transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
	-moz-transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
	-ms-transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
	-o-transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
	transition: all 0.4s cubic-bezier(0.2, 0.6, 0.3, 1);
}
#slideit input#close-item:checked ~ label.open {
	-webkit-transition: top 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-moz-transition: top 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-ms-transition: top 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-o-transition: top 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	transition: top 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
}


/*  ==================
    4. MEDIA QUERIES
    ==================  */

/***** Max width 640px (Adjust when shoould terms we 100% according to your content) *****/

@media screen and (max-width:640px){
	#reset-form, #terms-open {
		overflow: auto;
	}
	#terms-open .terms-window {
		width: 100%;
		top: 0;
	}
}

/***** Max width 320px *****/

@media screen and (max-width:320px){
	#slideit {
		width: 100%;
		right: 0;
	}
	#slideit section {

	height: 790px;
	}
	#slideit input#close-item:checked ~ label.open {
	top: 100px;
	}
}

/*  ==================
    5. Paypal
    ==================  */

.agb_display {
	color: red;
	font-weight: bold !important;
}

#paypal_error {
	font-weight: bold !important;
}
#buchung_icon_container {
	min-height: 150px;
	padding-top: 35px;
}

#buchung_spinner {
	font-size: 75px;

}

#buchung_success {
	text-align: center;
	color: green;
	clear: both;
}



#paypal_problem {
	text-align: center;
	color: red;
	clear: both;
}

#buchung_success img {
	width: 75px;
}

#paypal_problem img {
	width: 60px;
}

#buchung_success_texte {
	min-height: 45px;
}

#buchung_success_text_1, #paypal_success_text_1 {
	margin-top: 15px;
	margin-bottom: 45px;
	font-size: 1.5em;
}
#buchung_success_text_2, #paypal_success_text_2 {
	margin-top: 15px;
	margin-bottom: 45px;
	font-size: 1.5em;
}
#buchung_success_text_1 i, #paypal_success_text_1 i {
	font-size: 40px;
}