*{
    padding: 0;
    margin: 0;
}

header{
    width: 100%;
    height: 80px;
    display: block;
    top: 0;
    position: fixed;
    z-index: 100;
    /*background: #6c6c6e;*/
    background: #4e73df;
    border: 1px solid #4e73df;
}

.login{
    padding-top: 20px;
    width: 100%;
    height: 300px;
    display: block;
    margin-top: 130px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fff
}

.login h2{
    margin-bottom: 30px;
}

.login button{
    width: 100%;
    display: block;
    margin: 30px 0px;
}

.z-depth-3 {
    -webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.menu{
    display: block;
    width: 100%;
    height: auto;
    padding-left: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.menu-icon{
    position: absolute;
    margin: 10px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.menu-mobile{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background: #4e73df;
    z-index: 100;
}

.menu-mobile li{
    display: block;
    text-decoration: none;
    list-style: none;
    width: 100%;
    text-align: center;
    margin-top: 25px;
    color: #fff;
    cursor: pointer;
    border-bottom: #fff 1px solid;
}

.menu li{
    display: block;
    text-decoration: none;
    list-style: none;
    width: auto;
    text-align: center;
    margin-top: 0;
    padding: 18px 0;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.2;
}

.menu ul{
    margin: 0;
    padding: 0;
}

.menu ul .row{
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.menu ul .row .col{
    flex: 0 0 auto;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

a:hover{
    color: #fff !important;
    text-decoration: none !important;
}

.menu .active{
    border-bottom: 3px solid #fff;
}

.menu li:hover{
    border-bottom: 3px solid #fff;
}

.menu-mobile li:hover{
    border-bottom: 3px solid #fff;
}

.open{
    display: block !important;
    animation: 1s ease-out;
}

.sesion{
    display: block;
    width: 100%;
    color: #fff;
    margin-top: 0;
    font-size: 16px;
    text-align: right;
    padding-right: 20px;
    padding-top: 18px;
}

button{
    cursor: pointer;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 800px) {
    .menu{
        display: none;
    }

    .menu-icon{
        display: block;
    }

    .sesion a{
        right: 0;
        margin-right: 30px;
        position: absolute;
    }
}

