
/*********** INFORMATION *****************************

- document:  SlideIt - CSS3 fixed sliding elements
- element:   Simple Footer - Full Width - Closed
- author:    Capelle @ Codecanyon
- profile:   http://codecanyon.net/user/Capelle

*****************************************************/


/*  ==================
    1. FONTS
    ==================  */

/** 1.1. Fonts ***************/



/*  ==================
    2. RESET
    ==================  */

/***** Body reset *****/

/* === Note === Delete this body reset - it's for demo purpouses only */

/***** Item reset *****/

#slideit * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: 300;
	font-style: normal;
	font-size: 100%;
	/*font-family: 'Oswald', sans-serif !important;*/
	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 label {
	cursor: pointer;
}
#slideit input[type="radio"] {
	display: none;
}
/* === 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;
	width: 100%; /* Width of the wrapper of the section. Adjust this value if you want wider elements */
	bottom: 0; /* Vertical position of the elements */
	left: 0; /* Horizontal position of the elements */
}

/***** Form styles *****/

#slideit section {
	margin: 0;
	overflow: hidden;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
	position: absolute;
	z-index: 10;
	background: #fff;
	border-bottom: 6px solid #d11920;
	-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 section .wrap {
	padding: 30px;
	position: relative;
	float: left;
	text-align: center;
	width: 100%;
}
#slideit .title {
	display: block;
	margin-top: 14px;
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 33px;
	color: #fff;
	background-color: #d11920;
	margin-bottom: 7px;
}

#slideit ul  {
	margin-left: 0px;
	padding-left: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 14px;

}

#slideit ul li > a {
	color: #000000;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	/*font-family: 'Raleway', sans-serif;*/
	font-weight: bold;
	line-height: 25px;
	padding-bottom: 14px;
	padding-top: 14px;
	display: block;
	padding-left: 14px;
	padding-right: 14px;
	list-style-type: none;
	border-bottom: 1px solid #dddddd;
	background-color: #ffffff;

}

/* Mobile Menu sticky code (current selected)*/
#slideit nav li:hover a,
#slideit nav li.current a { background-color:  #d11920;
	color: #ffffff;
font-weight: bold;}















#slideit .links a {
	color: #bbb;
	font-size: 12px;
	line-height: 3.5em;
	display: inline-block;
	margin: 16px 10px 10px 10px;
}
#slideit .links a:hover,
#slideit .links a:focus {
	color: #222;
}
#slideit .links a:before {
	content: "\25CF";
	padding-right: 4px;
}
#slideit p.copyright {
	font-size: 11px;
	color: #bbb;
	line-height: 14px;
	display: block;
	margin: 10px auto 0 auto;
	padding-top: 20px;
	width: 50%;
	border-top: solid 1px #f0f0f0;
}
#slideit p.copyright span {
	font-size: 14px;
	display: inline-block;
	padding-right: 4px;
	vertical-align: top;
	margin-top: -1px;
}

/***** Main labels *****/

#slideit label.open,
#slideit label.close {
	text-align: center;
	position: absolute;
}
#slideit label.open {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	background: #d11920;
	width: 100px;
	bottom: -50px;
	left: 0;
	right: 0;
	top: auto;
	margin: 0 auto;
	padding: 10px 0;
	text-transform: uppercase;
	z-index: 1;
}
#slideit input#close-item:checked ~ label.open {
	bottom: 0;
}
#slideit label.open:hover,
#slideit label.open:focus {
	background: #222;
	color: #fff;
}
#slideit label.close {
	right: 30px;
	left: auto;
	top: 0px;
	bottom: auto;
	font-size: 42px;
	line-height: 36px;
	background-color: #000000;
	color: #fff;
	width: 42px;
	z-index: 999;
}
#slideit label.close:hover,
#slideit label.close:focus {
	background: #000000;
}

/***** Transitions *****/

#slideit label,
#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;
}
#slideit section {
	-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: bottom 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-moz-transition: bottom 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-ms-transition: bottom 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-o-transition: bottom 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	transition: bottom 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
}


/*  ==================
    4. MEDIA QUERIES
    ==================  */

/***** Max width 640px *****/

@media screen and (max-width:640px){
	#slideit p.copyright {
		width: 100%;
	}
}

/***** Max width 480px *****/

@media screen and (max-width:480px){
	#slideit section .wrap {
		text-align: left;
	}
	#slideit .links a {
		width: 100%;
		display: block;
		margin-left: 0;
	}
	#slideit p.copyright {
		float: left;
		margin: 10px 0 0 0;
	}
}