@charset "UTF-8";

/*==========================================*/
/* COM BOTÃO PARA ABRIR - INLINE */

/* BOTÃO PARA ABRIR */
.aws-toggle-style-inline .aws-button-show {
	font-size: 22px;
	width: 42px;
	height: 32px;
	line-height: 32px;
	z-index: 99999;
}
.aws-toggle-style-inline .aws-button-show i {
	opacity: 1;
	-webkit-transition: opacity ease-in-out 0.3s;
	   -moz-transition: opacity ease-in-out 0.3s;
	        transition: opacity ease-in-out 0.3s;
}
.aws-toggle-style-inline.aws-toggleable-showing .aws-buttons-order-left .aws-button-show i,
.aws-toggle-style-inline.aws-toggleable-showing .aws-buttons-order-right .aws-button-show i {
	opacity: 0;
}

/* BOTÃO PARA FECHAR */
.aws-toggle-style-inline.aws-toggleable-visible .aws-button-toogle.aws-button-hide {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	position: absolute !important;
	top: 0px !important;
	left: 0px !important;
	width: 0px !important;
	height: 0px !important;
	overflow: hidden !important;
}

/* WRAPPER DOS CAMPOS */
.aws-toggle-style-inline .aws-container {
	display: none;
	position: absolute;
	top: 0px;
	width: 196px;
	padding: 0px;
	margin: 0px;
	z-index: 99998;
}
.aws-toggle-style-inline .aws-container[data-buttons-order="1"] {
	left: 42px;
}
.aws-toggle-style-inline .aws-container[data-buttons-order="3"] {
	left: 0px;
}
.aws-toggle-style-inline .aws-container[data-buttons-order="2"] {
	right: 0px;
}
