/* Global */
img,
video {
    vertical-align: middle;
}

.genericContent ul {
    list-style: disc;
    padding-left: 20px;

    > li {
        list-style: disc;
    }
}

/* Header */
/* Menu */
.web-top-nav {
    width: 950px;
    background: #E60000;
    color: #FFF;

    .lvl-1 {
        display: flex;
        
        > li {
            padding: 10px 15px;

            > a {
                font-size: 14px;
                font-weight: 700;
                color: inherit;
                text-decoration: none;
                padding: 9px 15px;
                background: transparent;
                border-radius: 8px;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                
                &:hover {
                    background: #FFF;
                    color: #333;
                }
            }

            &.active {
                > a {
                    background: #FFF;
                    color: #333;
                }
            }

            + li {
                border-left: 1px solid #bd0000;
            }
        }
    }
}

/* Footer */
.web-footer {
    clear: both;
    margin-top: 20px;
}

/* Footer Menu */
.web-footer-nav {
    width: 950px;

    .lvl-1 {
        display: flex;

        > li {
            > a,
            > .w-fa {
                font-size: 11px;
                padding: 1px 7px;
                text-decoration: none;
                display: flex;
                align-items: center;
            }

            + li {
                border-left: 1px solid #727272;
            }
        }
    }
}

/* Aside Menu */
.web-aside-nav {
    min-height: 30vh;
}