/* Minification failed. Returning unminified contents.
(66,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '#margin-left'
 */

* {
    box-sizing: inherit;
    transition-property: all;
    transition-duration: .6s;
    transition-timing-function: ease;
}

body {
    box-sizing: border-box;
}

.content-body section.contenido ul.lista-detalle > li {
    padding: 11px 3px 0 3px;
    border-bottom: 1px solid #ffffff;
}

.content-body section.contenido ul.form-type > li > span:first-child {
    display: block;
    width: 100%;
    margin-bottom: 3px;
}

.content-body section.contenido ul.form-type {
    width: 390px;
}

ul.form-type > li {
    height: 48px !important;
}

li > span {
    width: 100%;
}

#contenedor-ingreso {
    display: table;
    padding-top: 5px;
}

#form-ingreso {
    padding-top: 20px;
}

.parrafo {
    width: 100%;
    font-family: "NissanLight2", Nunito;
    font-size: 16px;
    padding-right: 40px;
    color: #595959;
}

.titulo {
    font-family: "NissanLight2", Nunito;
    font-size: 53px;
    font-weight: normal;
}

.content-titulo {
    background-color: #EFEFEF;
    padding-left: 30px;
    padding-bottom: 30px;
}

img {
    #margin-left: -30px;
    width: 100%;
    height: 250px;
}

.mover{
    margin-right: auto;
}

.btn-ingresar {
    background: #c3002f !important;
    font-family: "NissanLight2", Nunito;
    border-radius: 15px 15px 15px 15px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: white;
    text-decoration: none;
    float: none;
}

.btn-ingresar:hover {
    color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 4px 16px rgba(49, 138, 172, 1);
    transition: all 0.2s ease;
}

.btn-solicitar {
    margin: 0px;
    padding: 0px;
    background: #c3002f !important;
    color: white;
}

.lista-detalle form-type {
    font-family: "NissanLight2", Nunito;
}

.container-btn-solicitar {
    margin: 0px;
    padding: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #c3002f !important;
    font-family: "NissanLight2", Nunito;
}

.navegacion {
    font-family: "NissanLight2";
}

.navegacion ol li {
    margin-bottom: 10px;
}

.navegacion > ol > li > a {
    margin-top: 50px;
    color: black;
    text-decoration: none;
    font-size: 20px;
}

.navegacion > ol > li > a:hover {
    opacity: 0.5;
}

#password {
    border-bottom: 1px solid #C3002F;
}

.container-btn-solicitar > ol > li > a {
    text-decoration: none;
    color: white;
}

.container-validate{
    margin-left: 32px;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

input {
    border: none;
    outline: none !important;
    box-shadow: none;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #c3002f;
    font-size: 16px;
}

input:focus {
    border-top: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid rgba(255, 255, 255, .5);
    border-left: 1px solid rgba(255, 255, 255, .5);
}

.container-input {
    width: 100vh;
    height: 50px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.container-input input {
    font-family: "NissanLight2",Arial,sans-serif !important;
    width: 100%;
    height: 100%;
    background: none;
    color: gray;
    padding-top: 20px;
    border: none;
    outline: 0px;
    font-size: 16px;
    padding-left: 15px;
}

.container-input .lbl-rut {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid #c3002f;
}

.container-input .lbl-clave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid #c3002f;
}

.container-input .lbl-rut:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #c3002f;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.container-input .lbl-clave::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #c3002f;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.text-rut {
    position: absolute;
    bottom: 5px;
    left: 0;
    transition: all 0.3s ease;
    color: gray;
}

.text-clave {
    position: absolute;
    bottom: 5px;
    left: 0;
    transition: all 0.3s ease;
    color: gray;
}


.container-input input:focus + .lbl-rut .text-rut, .container-input input:valid + .lbl-rut .text-rut {
    transform: translateY(-100%);
    font-size: 14px;
    color: gray;
}

.container-input input:focus + .lbl-clave .text-clave, .container-input input:valid + .lbl-clave .text-clave {
    transform: translateY(-100%);
    font-size: 14px;
    color: gray;
}

.container-input input:focus + .lbl-rut:after, .container-input input:valid + .lbl-rut:after {
    transform: translateX(0%);
}

.container-input input:focus + .lbl-clave:after, .container-input input:valid + .lbl-clave:after {
    transform: translateX(0%);
}

@media only screen and (min-width:320px) and (max-width:768px) {
    #primer-col, #segund-col{
        max-width: 436px;
        width: 100%;
    }

    #row-alone{
        height: 20px;
    }

    .container-input {
        width: 85%;
    }
}

