﻿/*Menu*/
.MenuUniversumDerecha ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.MenuUniversumDerecha li {
    display: block;
    position: relative;
    float: left;
}

    .MenuUniversumDerecha li a, .dropbtn {
        display: block;
        color: #A5B3AE;
        padding: 14px 16px;
        text-decoration: none;
        font-family: Lato;
    }

        .MenuUniversumDerecha li a:hover, .SubMenu:hover .dropbtn {
            color: white;
            cursor: pointer;
            /*background-color:  #A5B3AE*/
        }

.SubMenu-Cont {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    /*min-width: 250px;*/
    margin-left: 1%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    right: 0;
}

    .SubMenu-Cont a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .SubMenu-Cont a:hover {
            background-color: #A5B3AE;
            border-radius: 10px;
        }

.SubMenu:hover .SubMenu-Cont {
    display: block;
}


/*Fin Menu*/


.Mobiletopnav {
    background-color: #333;
    overflow: hidden;
}

    /* Style the links inside the navigation bar */
    .Mobiletopnav a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        z-index: 1;
    }

        /* Change the color of links on hover */
        .Mobiletopnav a:hover {
            background-color: #ddd;
            color: black;
        }

        /* Add an active class to highlight the current page */
        .Mobiletopnav a.active {
            background-color: #4CAF50;
            color: white;
        }

    /* Hide the link that should open and close the topnav on small screens */
    .Mobiletopnav .icon {
        display: none;
    }

@media screen and (max-width: 600px) {
    .Mobiletopnav a:not(:first-child) {
        display: none;
    }

    .Mobiletopnav a.icon {
        float: right;
        display: block;
        z-index: 1;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
    .Mobiletopnav.responsive {
        position: relative;
    }

        .Mobiletopnav.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .Mobiletopnav.responsive a {
            float: none;
            display: block;
            text-align: left;
            z-index: 1;
        }
}