nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    nav ul li a {
        display: block;
        padding: 10px 15px;
        color: #000;
        text-decoration: none;
        -webkit-transition: 0.2s linear;
        -moz-transition: 0.2s linear;
        -ms-transition: 0.2s linear;
        -o-transition: 0.2s linear;
        transition: 0.2s linear;
    }

        /* nav ul li a:hover {
        background: rgba(253, 233, 234, 0.6);
    }*/

        nav ul li a .fa {
            width: 16px;
            text-align: center;
            margin-right: 5px;
            float: right;
        }

    nav ul li ul li a {
        border-left: 4px solid transparent;
        padding: 10px 20px;
    }

        nav ul li ul li a:hover {
            /*border-left: 4px solid #e31f24;*/
            background: #fde9ea;
            color: #e31f24;
        }

        nav ul li ul li a.active {
            border-left: 4px solid #e31f24;
            background: #fde9ea;
            color: #e31f24;
            /*background: rgba(253, 233, 234, 0.6);*/
        }


.accordion-collapse {
    border: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: #ff9800;
    box-shadow: none;
    border-bottom: none;
}

.accordion-button::after {
    width: auto;
    height: auto;
    content: "+";
    font-size: 40px;
    background-image: none;
    font-weight: 100;
    color: #1b6ce5;
    transform: translateY(-4px);
}

.accordion-button:not(.collapsed)::after {
    width: auto;
    height: auto;
    background-image: none;
    content: "-";
    font-size: 48px;
    transform: translate(-5px, -4px);
    transform: rotate(0deg);
}
.e-multi-column {
    text-transform: uppercase;
}

/* Dashboard content: less gap under header (Patient Portal, Appointments) */
.dashboard__body main {
    padding: 16px 20px 28px;
}

.dashboard__body main .page {
    padding-top: 12px;
    padding-bottom: 32px;
}

@media screen and (max-width: 767.98px) {
    .dashboard__body main {
        padding: 12px 12px 20px;
    }

    .dashboard__body main .page {
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .dashboard__body main .ius-card {
        padding: 16px;
    }

    .dashboard__body main .container.container-x {
        max-width: 100%;
    }

    .dashboard__body main .ius-table.table-responsive {
        margin-left: -4px;
        margin-right: -4px;
        padding-left: 4px;
        padding-right: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}