#header_usuario {
    background-color: #ecf0f5;
    color: #020202;
}

.layout-boxed .wrapper {
    max-width: 1250px;
    margin: 20px auto;
    min-height: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / 50%);
    position: inherit;
}

.layout-boxed {
    background: url(../../images/fondo-login1.jpg) repeat fixed;
}

#marco_direcciones {
    background-color: ffffffb8;
    color: white;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

div.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6;
    will-change: transform;
}

#img_menu {
    height: 120px;
    margin-top: 20px;
}

ul.nav li a {
    display: inline-block;
    font-size: 16px;
    padding-right: 3;
    padding-left: 3;
}

#nombre_usuario {
    margin: auto;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

.login-boton {
    margin-top: 6%;
}

#volante {
    height: 340px;
    width: 100%;
}

.color_boton {
    background-color: #000000;
    border-color: #ffffff;
}

.color_boton:hover,
.color_boton:active,
.color_boton.hover {
    background-color: red;
}

.color_boton.focus,
.color_boton:focus {
    color: #000;
    background-color: white;
    border-color: black;
}

#logo {
    width: 40%;
}

.login-box,
.register-box {
    width: 360px;
    margin: 1% auto;
    background: white;
    border: 5px solid black;
}

.login-page {
    background: url(../../images/fondo-login1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}


/* Medium only */

@media screen and (min-width: 40em) and (max-width: 63.9375em) {}


/* Small only */

@media screen and (max-width: 39.9375em) {
    .login-page {
        background: url(../../images/login-cel1.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 100% 100%;
        height: 100vh;
        padding: 0;
        margin: 0;
        list-style: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        justify-content: space-around;
    }
}