/*hide-window*/
.hide-window{
	background: rgba(0,0,0,0.9);
	padding: 5px;
	position: fixed;
	top:0;
	left:-310px;
	min-height: 150px;
	width: 310px;
	z-index: 500;
	transition: all 0.3s ease 0s;
}
.show-window{
	border:1px solid #3E3E3F;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 500;
	transition: all 0.6s ease 0s;
}
.show-window a{
	border-radius: 3px;
	background:#3E3E3F;
	color: #fff;
	font-weight: bold;
	float: right;
    padding: 0.2em 0.6em;
}
.show-window h3{
	color: #969696;
	text-align: center;
	margin-top: 2em;
	width: 100%;
}
.form-flotante{
	padding: 6px 4px;
}
#item_form{
	color:#fff;
}
.form-flotante input[type="password"],.form-flotante input[type="text"],.form-flotante textarea,
.form-flotante input[type="email"]{
	background: transparent;
	box-sizing: border-box;
	color: #969696;
	display: block;
	font-family: Arial;
	font-size: 0.9em;
	margin-bottom: 5px;
	padding: 5px 3px;
	width:100%;
}
.form-flotante textarea{
	resize: none;
}
.form-flotante input[type="button"]:hover{
	cursor: pointer;
}
/*fin de hide-window*/
