/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/
.recuperar_txt{ position: relative; top: 130px; padding: 10px 20px; text-align: center; }

html{
	background: url(/assets/images/agency_bg4.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body{
	font:14px/1.3 Helvetica,Arial,sans-serif;
	height: calc(100vh - 45px);
	padding-top: 150px;
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#54a6de;
}

a:hover{
	text-decoration:underline;
}

section, footer{
	display: block;
}


/*----------------------------
	Styling the forms
-----------------------------*/


#formContainer{
	width:288px;
	height:321px;
	margin:0 auto;
	position:relative;
	z-index:1;

	-moz-perspective: 800px;
	-webkit-perspective: 800px;
	perspective: 800px;
}

#formContainer form{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;

	/* Enabling 3d space for the transforms */
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;

	/* When the forms are flipped, they will be hidden */
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	/* Enabling a smooth animated transition */
	-moz-transition:0.8s;
	-webkit-transition:0.8s;
	transition:0.8s;

	/* Configure a keyframe animation for Firefox */
	-moz-animation: pulse 2s infinite;

	/* Configure it for Chrome and Safari */
	-webkit-animation: pulse 2s infinite;
}


/* Firefox Keyframe Animation */
@-moz-keyframes pulse{
	0%{		box-shadow:0 0 1px #ff0245;}
	50%{	box-shadow:0 0 8px #ff0245;}
	100%{	box-shadow:0 0 1px #ff0245;}
}

/* Webkit keyframe animation */
@-webkit-keyframes pulse{
	0%{		box-shadow:0 0 1px #ff0245;}
	50%{	box-shadow:0 0 10px #ff0245;}
	100%{	box-shadow:0 0 1px #ff0245;}
}

#login{
	background:url('/assets/images/login_form_bg.png?v=0.01') no-repeat;
	z-index:100;
}

#maintenance{
	background:url('/assets/images/login_maintenance_bg.png?v=0.01') no-repeat;
	z-index:100;
}

#restablish{
	background:url('/assets/images/login_form_bg_restaurar.png?v=0.01') no-repeat;
	z-index:100;
}

#recover{
	background:url('/assets/images/recover_form_bg.png?v=0.02') no-repeat;
	z-index:1;
	opacity:0;

	/* Rotating the recover password form by default */
	-moz-transform:rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	transform:rotateY(180deg);
}

#formContainer.flipped #login{

	opacity:0;

	/**
	 * Rotating the login form when the
	 * flipped class is added to the container
	 */

	-moz-transform:rotateY(-180deg);
	-webkit-transform:rotateY(-180deg);
	transform:rotateY(-180deg);
}

#formContainer.flipped #recover{

	opacity:1;

	/* Rotating the recover div into view */
	-moz-transform:rotateY(0deg);
	-webkit-transform:rotateY(0deg);
	transform:rotateY(0deg);
}


/*----------------------------
	Inputs, Buttons & Links
-----------------------------*/

#login .flipLink, #recover .flipLink {
	font-weight: bold;
	height: 24px;
	overflow: hidden;
	position: absolute;
	right: 0;
	text-align: center;
	top: 220px;
	width: 100%;
	color: #000;
	padding-top: 10px;
}

#recover .flipLink{
	right:auto;
	left:0;
}

/* Not doing anything 
#login:after{
	// The "Click here" tooltip 
	width:98px;
	height:16px;
	content:'';
	background:url('/assets/images/click_here.png') no-repeat;
	position:absolute;
	right:-120px;
	top:22px;
}
*/

input[type=text],input[type=password],input[type=email]{
	/* The text fields */
	background:rgba(0,0,0,0.7);
	border: none;
	border-radius: 10px 10px 0px 0px;
	color:#eee;
	font: 15px 'Segoe UI',Arial,sans-serif;
	height: 36px;
	left: 26px;
	outline:none;
	padding: 2px;
	position: absolute;
	text-indent: 8px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	top: 130px;
	width: 234px;
}

#loginPass{
	border-radius: 0px 0px 10px 10px;
	top: 171px;
}

#recoverEmail{
	border-radius: 10px;
	top:171px;
}

input[type=submit]{

	/* Submit button */

	opacity:0.9;
	position:absolute;
	top:262px;
	left:25px;
	width: 239px;
	height:36px;
	cursor:pointer;
	border-radius:6px;
	box-shadow:0 1px 1px #888;
	border:none;
	color:#fff;
	font:14px/36px 'Segoe UI Light','Segoe UI',Arial,sans-serif;

	/* CSS3 Gradients */

	background-image: linear-gradient(bottom, rgb(255,2,69) 50%, rgb(221,114,143) 100%);
	background-image: -o-linear-gradient(bottom, rgb(255,2,69) 50%, rgb(221,114,143) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(255,2,69) 50%, rgb(221,114,143) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,2,69) 50%, rgb(221,114,143) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(255,2,69) 50%, rgb(221,114,143) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgb(255,2,69)),
		color-stop(1, rgb(221,114,143))
	);
}

input[type=submit]:hover{
	opacity:1;
}

input::-webkit-input-placeholder {
    color:#eee;
}


/*----------------------------
	The Footer
-----------------------------*/


footer{
	background-color: #111111;
	bottom: 0;
	box-shadow: 0 -1px 2px #111111;
	height: 45px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

footer h2{
	color: #EEEEEE;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	padding: 13px 0 0;
	/*position: absolute;*/
}

footer h2 i{
	font-style:normal;
	color:#888;
}

footer a.tzine,a.tzine:visited{
	color: #999999;
	font-size: 12px;
	left: 50%;
	margin: 16px 0 0 110px;
	position: absolute;
	text-decoration: none;
	top: 0;
}

footer a i{
	color:#ccc;
	font-style: normal;
}

footer a i b{
	color:#c92020;
	font-weight: normal;
}

.overlayNotify {
		background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1031;
}

.notifyBox {
    background: #eee none repeat scroll 0 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    left: 43%;
    margin-left: -125px;
    margin-top: -75px;
    padding: 20px 20px 15px;
    border-radius: 3px;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 400px;
    z-index: 1032;
}

.size13 {
    font-size: 13px;
}

.opensans {
    font-family: "Open Sans";
}

.welcome_text {
	color: #FFFFFF;
    font-family: "Open Sans";
    margin-left: 10%;
    margin-top: 130px;
    text-align: center;
    width: 80%;
}

.notifyConten {
    padding-bottom: 20px;
}

.btn-search4 {
    /* CSS3 Gradients */

	(255,2,69) 50%, rgb(221,114,143)

	background-image: linear-gradient(bottom, rgb(255,2,69) 80%, rgb(221,114,143) 20%, rgb(221,114,143) 100%);
	background-image: -o-linear-gradient(bottom, rgb(255,2,69) 80%, rgb(221,114,143) 20%, rgb(221,114,143) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(255,2,69) 80%, rgb(221,114,143) 20%, rgb(221,114,143) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,2,69) 80%, rgb(221,114,143) 20%, rgb(221,114,143) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(255,2,69) 80%, rgb(221,114,143) 20%, rgb(221,114,143) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.8, rgb(255,2,69)),
		color-stop(0.2, rgb(221,114,143)),
		color-stop(1, rgb(221,114,143))
	);
    border-radius:6px;
	box-shadow:0 1px 1px #888;
	border:none;
	color:#fff;
    cursor: pointer;
    float: right;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 700;
    padding: 7.5px 20px;
    text-decoration: none;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
}

.btn-search4:hover {
    background: rgba(0, 0, 0, 0) -moz-linear-gradient(center top , #dd720d, #ff0245) repeat scroll 0 0;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.none {
    display: none !important;
}
/* Loader */
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.lds-ellipsis div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 6px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 26px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 45px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(19px, 0);
	}
}
#loader-container {
		align-items: center;
		justify-content: center;
		display: flex;
}

/*--------------------
	Media Queries
--------------------*/

@media (max-width: 568px) {
    body {
        padding-top: 2em;
    }
    .notifyBox {
        width: 68%;
    }
}

@media (max-width: 320px) {
    .notifyBox {
        left: 52%;
    }
}

.Registrar {
	/* CSS3 Gradients */

	background-image: linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -o-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(238,228,57) 50%, rgb(213,201,18) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.5, rgb(238,228,57)),
		color-stop(1, rgb(213,201,18))
	);
	border-radius: 5px;
	color: #FFFFFF;
	margin: auto;
	margin-top: 305px;
	padding: 10px;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	width: 217px;
}