/*These are the syles for the banner notices*/
.deptNotices {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: .5rem;
}

    .deptNotices .noticeGroup {
        margin: .5rem 0;
        position: relative;
        overflow: hidden;
        /* border-radius: 1.5rem; */
        box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
        border-top-right-radius: 0;
        margin-bottom: 1rem;
        padding: .1rem 2rem .1rem 4rem;
    }

        .deptNotices .noticeGroup.importantNotices {
            background: #fff5e2;
            border-left: 1rem solid #e38736;
        }

        .deptNotices .noticeGroup.infoNotices {
            background: #e8f7ef;
            border-left: 1rem solid #9fc1af;
        }

        .deptNotices .noticeGroup .noticeItem h1 {
            font-size: 1.15rem;
            color: #333;
            margin-bottom: 0;
            margin-top: .25rem;
            margin-left: -.5rem;
        }

        .deptNotices .noticeGroup .noticeItem {
            /* border-radius: .25rem; */
            box-shadow: none;
            /* box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.35); */
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: flex-start;
            flex: 1 1 auto;
            z-index: 1;
            position: relative;
        }

        .deptNotices .noticeGroup .noticeBody {
            display: flex;
            flex-direction: column;
            margin-bottom: .25rem;
            padding-bottom: .25rem;
            /* border-bottom: 1px solid #ccc; */
        }

        .deptNotices .noticeGroup .noticeItem:last-child .noticeBody {
            border-bottom: 0;
        }

        .deptNotices .noticeGroup .noticeIcon {
            position: absolute;
            font-size: 8rem;
            font-family: 'ccicons';
        }

    .deptNotices .importantNotices.noticeGroup .noticeIcon {
        top: -3.5rem;
        left: -4rem;
        color: #fcd8b1;
    }

    .deptNotices .infoNotices.noticeGroup .noticeIcon {
        top: -1.5rem;
        left: -4.5rem;
        color: #cee3d8;
    }
.noticeTitle{
    font-weight: bolder;
    font-size: large;
}
/**/
/*These are site notices*/
#noticeDrawer .impNotice, #noticeDrawer .infoNotice {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: .5em .5em .25em .5em;
    border-left: 0;
    border-right: 0;
}
#noticeDrawer > section {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

#noticeDrawer .noteDesc {
    font-size: 1.1rem;
    padding-top: .25rem;
    display: flex;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
}

#noticeDrawer .ccEmerTable {
    display: flex;
    flex-direction: column;
    gap: .5em;
}
/*  .deptNotices .noticeGroup.importantNotices {
            background: #fff2f2;
            border-left: 1rem solid #cc3333;
        }
*/

#noticeDrawer .noteIcon {
    font-size: 3rem;
    margin-right: 1rem;
    padding-right: .5rem;
    border-right: 2px solid #efe0e0;
    line-height: 1;
    padding-top: .25rem;
}

#noticeDrawer .impNotice {
    background: #fff5e2;
    border: 1px solid #e38736;
    border-left: 0;
    border-right: 0;
}

    #noticeDrawer .impNotice .noteIcon {
        color: #e38736;
    }

#noticeDrawer .infoNotice {
    background: #eff7ff;
    border: 1px solid var(--cc-blue);
    border-left: 0;
    border-right: 0;
}

    #noticeDrawer .infoNotice .noteIcon {
        color: var(--cc-darkBlue);
    }

#noticeDrawer .emerNotice {
    background: #fff1f1;
    border: 1px solid var(--cc-darkRed);
    padding: .5em;
    border-left: 0;
    border-right: 0;
}

#noticeDrawer .ccEmerNoticeRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1em 0;
    border: 1px solid rgba(204 0 0/.5);
}

#noticeDrawer .ccEmerNoticeTitle {
    grid-column: 1;
    font-weight: bolder;
}

#noticeDrawer .emerNotice .ccEmerNoticeBody {
    grid-column: 2;
}

#noticeDrawer .emerNotice .noteIcon {
    color: var(--cc-darkRed);
}

@media (max-width: 576px) {
    #noticeDrawer .noteIcon {
        font-size: 2rem;
    }
}