
/*********** INFORMATION *****************************

- document:  SlideIt - CSS3 fixed sliding elements
- element:   Simple search form - Right
- 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: 400;
	font-style: normal;
	font-size: 100%;
	font-family: 'Open Sans', 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"] {
	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;
	width: auto;
	height: 100%;
	top: 0; /* Vertical position of the elements */
	right: 0; /* Horizontal position of the elements */
}

/***** Form styles *****/

#slideit section {
	margin: 0;
	overflow: hidden;
	width: 260px;
	height: auto;
	right: 0;
	top: 150px;
	position: absolute;
	z-index: 10;
	background: #e6e6e6;
            -moz-border-radius-topleft: 8px;
        border-top-left-radius: 8px;
        -moz-border-radius-bottomleft: 8px;
        border-bottom-left-radius: 8px;
  
	-webkit-backface-visibility: hidden; /* Webkit transition hack */
	/* Section animation upon opening */
	-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 section,
#slideit input#close-item:checked ~ section {
	/* Section position when closed */
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
#slideit input#open-item:checked ~ section {
	/* Section position when opened */
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
#slideit section .wrap {
	padding: 30px;
	position: relative;
	border-bottom: 6px solid #013d15;
}
#slideit .field {
	width: 100%;
	position: relative;
	display: block;
}

/***** Labels *****/

#slideit label.open,
#slideit label.close {
	text-align: center;
	position: absolute;
}
#slideit label.open {
	font-size: 12pt;
	color: #333333;
	background: #fff;
	width: 100px;
	top: 150px;
	right: -101px;
	left: auto;
	bottom: auto;
	margin: 0 auto;
	padding: 10px 0;
	z-index: 1;
          -moz-border-radius-topleft: 8px;
        border-top-left-radius: 8px;
        -moz-border-radius-bottomleft: 8px;
        border-bottom-left-radius: 8px;
}
#slideit input#close-item:checked ~ label.open {
	-webkit-transition: right 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-moz-transition: right 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-ms-transition: right 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	-o-transition: right 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	transition: right 0.3s ease 0.4s, background 0.1s ease, color 0.1s ease;
	right: 0;
}
#slideit label.open:hover,
#slideit label.open:focus {
	background: #222;
	color: #fff;
}
#slideit label.close {
	right: 0px;
	left: auto;
	top: 0;
	bottom: auto;
	font-size: 20px;
	background: #013d15;
	color: #fff;
	width: 22px;
	z-index: 999;
}
#slideit label.close:hover,
#slideit label.close:focus {
	background: #757786;
}

/***** Inputs *****/

#slideit input {
	display: block;
	width: 100%;
	border-bottom: solid 1px #ddd;
	padding: 0 20px 6px 30px;
	font-size: 14px;
	color: #222;
	position: relative;
}
#slideit input:hover,
#slideit input:focus {
	border-bottom-color: #222;
	outline: none;
}
#slideit input.search-btn {
	content: "";
	background: #fff url("img/search.png") no-repeat right;
	width: 20px;
	height: 20px;
	cursor: pointer;
	border: none;
	outline: none;
	position: absolute;
	top: -2px;
	left: 0;
	padding: 0;
}
#slideit input.search-btn:hover,
#slideit input.search-btn:focus {
	background: #fff url("img/search-focus.png") no-repeat right;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}

/***** Placeholders *****/

::-webkit-input-placeholder {
	color: #999;
}
#slideit input:focus::-webkit-input-placeholder {
	color: #ccc;
}
#slideit textarea:focus::-webkit-input-placeholder {
	color: #ccc;
}
:-moz-placeholder {
	color: #999;
}
#slideit input:focus:-moz-placeholder {
	color: #ccc;
}
#slideit textarea:focus:-moz-placeholder {
	color: #ccc;
}
::-moz-placeholder {
	color: #999;
}
#slideit input:focus::-moz-placeholder {
	color: #ccc;
}
#slideit textarea:focus::-moz-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #999;
}
#slideit input:focus:-ms-input-placeholder {
	color: #ccc;
}
#slideit textarea:focus:-ms-input-placeholder {
	color: #ccc;
}
.ie9-placeholder {
	color: #999 !important;
}
.ie9-placeholder:focus {
	color: #ccc !important;
}

/***** Transitions *****/

#slideit label,
#slideit input {
	-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;
}