/** Global CSS **/
.animate{
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input.error, select.error, textarea.error{
    background: url(../images/png-error.png) repeat !important;
    color: white !important;
}

/** CSS· EFFECTS **/
@keyframes shake{
    0% { transform: translate(3px, 0); }
    25% { transform: translate(-3px, 0); }
    50% { transform: translate(3px, 0); }
    75% { transform: translate(-3px, 0); }
    100% { transform: translate(0, 0); }
}

@-moz-keyframes shake{
    0% { -moz-transform: translate(3px, 0); }
    25% { -moz-transform: translate(-3px, 0); }
    50% { -moz-transform: translate(3px, 0); }
    75% { -moz-transform: translate(-3px, 0); }
    100% { -moz-transform: translate(0, 0); }
}

@-webkit-keyframes shake {
    0% { -webkit-transform: translate(3px, 0); }
    25% { -webkit-transform: translate(-3px, 0); }
    50% { -webkit-transform: translate(3px, 0); }
    75% { -webkit-transform: translate(-3px, 0); }
    100% { -webkit-transform: translate(0, 0); }
}


/** MESSAGE CSS **/
.message{
    background: url(../images/png-background-form.png) repeat;
    min-width: 60%;
    max-width: 80%;
    margin: 0px auto;
    border-radius: 7px;
}


.message.error
{
    height: 35px;
    line-height: 35px;
	animation-name: shake;
    animation-duration: 200ms;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -moz-animation-name: shake;
    -moz-animation-duration: 200ms;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -webkit-animation-name: shake;
    -webkit-animation-duration: 200ms;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

.message.loading
{
    height: 32px;
    background: url(../images/loading-ajax-dark.gif) no-repeat left center !important;
    line-height: 32px;
    color: white !important;
}

.message.success
{
    height: 32px;
    width: 32px;
    line-height: 32px;
    background: url(../images/success-ajax.png) no-repeat left center !important;
    color: #82C800 !important;
}



/**
 * Approvad CSS
**/
#wrapper{
    width: 100%;
    height: 100%;
    min-width: 980px;
}

.monserrat{
    font-family: 'Roboto', sans-serif;
}

/** CSS DEL LOGIN **/
#login{
    background: #373737;
    font-family: 'Roboto', sans-serif !important;
    height: 100%;
    position: absolute;
    left: 0px;
}

#login .logo{
    margin: 5% auto 2%;
    max-width: 500px;
    text-align: center;
}

#login .logo-voodoo{
    margin: 5% auto;
    max-width: 500px;
    text-align: center;
}

#login-form {
    max-width: 350px;
    padding: 15px;
    margin: -200px 0 0 30px;
    top: 50%;
    background: url(../images/png-background-form.png) repeat;
    /*border-radius: 0px;*/
    position: relative;
}

#login-form h2, #login-form h4{
    color: #FFF;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
}
#login-form h4{
    font-weight: lighter;
    margin-top: 2px;
    font-size: 16px;
}
#login-form h2{
    margin-top: 50px;
    font-size: 28px;
}

#login-form form{
    margin: 5% auto;
    width: 90%;
}

#login-form form div.icon{
    background: url(../images/png-div-icon.png) no-repeat center 11px silver;
    width: 30px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
}
#login-form form div.password{
    background-position: center -38px;
}

#login-form form div.input-login{
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 5px;
}

#login-form form input{
    width: 100%;
    border: none;
    padding: 0px 10px 0px 37px;
    font-size: 15px;
    height: 35px;
    line-height: 35px;
}
input:-webkit-autofill{
    background-color: transparent;
}
#login-form form input:focus, #login-form form button:focus{
    outline: none;
}

#login-form form button{
    border-radius: 0px;
}

#login-form .message{
    font-size: 12px;
    text-align: center;
    color: white;
}

#login-form .message.error{
    background-image: url(../images/png-error.png);
}

#login-form div.recordar{
    width: 49%;
    margin-top: 10px;
    color: white;
    display: inline-block;
}

#login-form div.recordar .control{
    margin-left: 17%;
}

#login-form div.recuperar{
    text-align: right;
}

#login-form div.recuperar a{
    color: #82C800;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgb(0,0,0);
}

#login-form div.recuperar a:hover{
    color:orange;
}

#login-form .logo-empresa{
    position: absolute;
    width: 100px;
    left: 50%;
    margin-left: -50px;
    top: -50px;
	text-align: center;
}

#login-form .logo-empresa img{
    max-width: 100%;
    max-height: 120px;
    border-radius: 7px;
    border: solid 4px gray;
}

.sin-registro{
    margin: 15px -15px -15px;
    padding: 10px;
    text-align: center;
    background: rgba(0,0,0,0.4);
    border-top: solid 3px #222;
}
.sin-registro h4{ display: block; }
.sin-registro a{
    color: #5cb85c;
}

/** CSS AUTOCOMPLETE **/
.fixed-autocomplete {
	max-height: 150px;
	overflow: auto;
    border-radius: 0px 0px 5px 5px;
    background-position: left bottom !important;
    box-shadow: 1px 1px 5px #333;
}