/*!
 *  Kwicks: Sexy Sliding Panels for jQuery - v2.2.1
 *  http://devsmash.com/projects/kwicks
 *
 *  Copyright 2013 Jeremy Martin (jmar777)
 *  Contributors: Duke Speer (Duke3D), Guillermo Guerrero (gguerrero)
 *  Released under the MIT license
 *  http://www.opensource.org/licenses/mit-license.php
 */
/*
 *  This file contains styles that are common to all kwicks instances.  Note that each kwicks instance requires
 *  additional styling - please see the examples for more info.
 */
 
/*  kwicks*/
@media only screen and (min-width: 767px) {
	#kwicksWrapp {
		display:block;
		position:relative;
		width:100%;
		height:100%;
		padding:100px;
		box-sizing:border-box;
		
		max-height:1050px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	} 
	 
	.kwicks {
		display: block;
		list-style-type: none;
		list-style: none;
		position: relative;
		margin: 0;
		padding: 0;
	}
	.kwicks > * {
		display: block;
		overflow: hidden;
		padding: 0;
		margin: 0;
	}
	.kwicks.kwicks-processed > * {
		margin: 0;
		position: absolute;
	}
	.kwicks-horizontal > * {
		float: left;
	}
	.kwicks-horizontal > :first-child {
		margin-left: 0;
	}
	.kwicks-vertical > :first-child {
		margin-top: 0;
	}
}

/* kein kwicks mehr */
@media only screen and (max-width: 767px) {
	
	
	#kwicksWrapp {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 100px 0;
		box-sizing: border-box;
		max-height: initial;
		top: 0;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}


	.kwicks > * {
		display: block;
		overflow:inherit;
		padding: 0;
		margin: 0;
	}
}