/* Student site cusomisations only */

/* ==========================================================================
   CONTENT BLOCK
============================================================================= */
.colourBlock{
  background-color: var(--theme-neutral-grey-light-2);
  padding: 3rem;
  margin-block-end: 3rem;
  border-radius: .5rem;
  margin-block-start: 2.5rem;
  
  .yellow{
        background-color: var(--bg-yellow);
  }
  
  h2:first-child, h3:first-child, h4:first-child{
    margin-top:0.2rem;
    }
}

/* ==========================================================================
   CTA CONTENT BANNER - STYLE UPDATE
============================================================================= */
.cta__ContentBanner {
    background-color: #f0f0f0;
    padding: 1.5rem 1.5rem 2rem 1.5rem;

    .fullWidth {
        padding: 0;
    }

    .img-left,
    .img- {
        color: var(--color-text);
        display: flex;
        gap: 1em;
        row-gap: normal;
        flex-wrap: wrap;
        flex-direction: column-reverse;

        .btn__wrapper {
            display: flex;
            gap: 1em;
            flex-wrap: wrap;
        }

        .banner__image {
            height: auto;
            width: 100%;
            display: block;
        }

        .banner__image-wrapper {
            display: block;
            justify-content: center;
            overflow: hidden;
            height: 240px;
            /* margin-top: -1rem; */
        }
    }

    .img-right {
        color: var(--color-text);
        display: flex;
        gap: 1em;
        row-gap: normal;
        flex-wrap: wrap;
        flex-direction: column-reverse;

        .btn__wrapper {
            display: flex;
            gap: 1em;
            flex-wrap: wrap;
        }

        .banner__image {
            height: auto;
            width: 100%;
            display: block;
        }

        .banner__image-wrapper {
            display: block;
            justify-content: center;
            overflow: hidden;
            height: 240px;
            /* margin-top: -1rem; */
        }
    }
}

@media (min-width: 768px) {
    .cta__ContentBanner {

        .img-left,
        .img- {
            flex-wrap: nowrap;
            flex-direction: row-reverse;

            .banner__image-wrapper {
                align-items: stretch;
                border-radius: 0 170px 170px 0;

                display: flex;
                justify-content: center;
                overflow: hidden;
                width: 50%;
                /* height: 260px; */
            }

            .cta__Contents {
                width: 70%;
                align-content: center;
                padding-left: 1.5rem;

            }
        }

        .img-right {
            flex-wrap: nowrap;
            flex-direction: row;

            .banner__image-wrapper {
                align-items: stretch;
                border-radius: 170px 0 0 170px;

                display: flex;
                justify-content: center;
                overflow: hidden;
                width: 50%;
                /* height: 260px; */
            }

            .cta__Contents {
                width: 70%;
                align-content: center;
                            padding-left: 1.5rem;
                            .fullWidth{
                                padding:0;
                            }

            }
        }
    }
}
/* end:  CTA CONTENT BANNER - STYLE UPDATE
============================================================================= */


.footer--sitewide {
    padding: 8rem 0 5rem 2rem;
}

/*.footer--sitewide__nav .links__container ul {*/
/*    margin-left: -15px;*/
/*}*/

.navigation-rebrand .navigation-rebrand__level--1.expanded .navigation-rebrand__level--2,
.navigation-rebrand__wrapper {
    max-width: 95%;
}

.multi-column-content__cta {
    font-size: 1.5rem;
}

/* nested lists */


.main-list {
    list-style-type: decimal;
    counter-reset: item;
    margin-left: 0;
    padding-left: 2em;
}

.main-list .sub-list {
    list-style-type: lower-alpha;
    counter-reset: subitem;
}

.main-list .main-item {
    counter-increment: item;
}

.main-list .main-item:before {
    content: counter(item) ". ";
}

.main-list .sub-item:before {
    content: counter(subitem, lower-alpha) ". ";
    counter-increment: subitem;
}

.main-list li {
    padding-left: 0.5rem;
}

.main-list .sub-item {
    padding-left: 0;
}

/* end nested lists */


/* Styled ordered list */
.list__styled {
    counter-reset: list-counter;
}

.list__styled ol {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.list__styled li {
    position: relative;
    margin-bottom: 4rem;
    list-style-type: none;
    padding-left: 0;
}

.list__styled li:first-child {
    margin-top: 5rem;
}

.list__styled li:last-child {
    margin-bottom: 5rem;
}

.list__styled li::before {
    counter-increment: list-counter;
    content: counter(list-counter);
    font-size: 2rem;
    font-weight: 300;
    background-color: #eeeeee;
    color: #1a1a1a;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    left: 0;
    margin-left: -2rem;
    font-family: Worldly Light, Open Sans, Arial, sans-serif;
    padding-top: 4px;
    padding-left: 0px;
}

.list__styled h2,
.list__styled h3,
.list__styled h4 {
    margin-bottom: 1rem;
    margin-left: 50px;
    margin-top: -1px;
    font-family: var(--font-family-open-sans);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.4;
}

.list__styled p {
    margin-left: 50px;
}
/* end list */


/* anchor link fix */
:target:not(#skipSubNav) {
    padding-top: 100px;
}

/* End anchor link fix */


/* start alerts */
.alert {
    padding: 12px 20px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    color: #fff;
    background-color: #2ab27b;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: left;
}

.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.alert strong {
    font-weight: bold;
    margin-right: 10px;
}

.alert a.alert-link {
    text-decoration: underline;
    color: inherit;
}

.alert-success {
    background-color: #2ab27b;
}

.alert-info {
    background-color: #2a9fd6;
}

.alert-warning {
    background-color: #f89406;
}

.alert-danger {
    background-color: #bd362f;
}

.alert-neutral {
    color: inherit;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
}

.alert-dismissible .close {
    position: absolute;
    top: 50%;
    right: 10px;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
    transform: translateY(-50%);
}

.alert-dismissible .close:hover,
.alert-dismissible .close:focus {
    color: inherit;
    text-decoration: none;
    opacity: 0.75;
}
/* end alerts */


/* embeded news */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.news_card {
    background-color: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: calc((100% / 4) - 0.75rem);
}

@media (max-width: 1024px) {
    .news_card {
        width: calc((100% / 2) - 0.75rem);
    }
}

@media (max-width: 767px) {
    .news_card {
        width: 100%;
    }

    .news_card img {
        display: none !important;
        margin-bottom: 2rem;
        /* updated for news card layout */
    }
}


.news_card:hover {
    box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.0625), 0 5px 5px rgba(0, 0, 0, 0.055), 0 7px 14px rgba(0, 0, 0, 0.0625);
    transform: translateY(-4px);
}

.news_card a {
    color: inherit;
    text-decoration: none;
}

.news_card img {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    /* updated for news card layout */
}

.news_card h2 {
    font-family: "Worldly Regular", Arial, sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;

    padding-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;

}

.news_card h2 a {
    font-family: "Worldly Regular", Arial, sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    display: inline-block;
    padding-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.news_card h3 {
    font-family: "Worldly Regular", Arial, sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;

    padding-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;

}

.news_card h3 a {
    font-family: "Worldly Regular", Arial, sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    display: inline-block;
    padding-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.news_card .date {
    color: #6b6b6b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.27;
    margin-left: 1rem;
    padding-left: 1rem;
}

.news_card p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
}


.news_card:hover {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.0625), 0 5px 5px rgba(0, 0, 0, 0.055);
    transform: translateY(-4px);
}

/* end news */

/* Emergency banner height fix */

.emergency {
    padding: 25px 0 40px;
}

@media (min-width: 1750px) {

    .navigation-rebrand .navigation-rebrand__level--1.expanded .navigation-rebrand__level--2,
    .navigation-rebrand__wrapper {
        max-width: 1750px;
    }
}

@media only screen and (max-width: 1299px) and (min-width: 800px) {
    .navigation-rebrand__level--3-item:nth-of-type(n+6) {
        display: none;
    }
}

@media screen and (min-width: 981px) {
    .navigation-rebrand {
        margin: 0 50px;
    }
}


/* end Emergency banner height fix */

/* horizontal rule fix */

hr {
    height: 1px;
}

/* end horizontal rule fix */

/* banner background colours for program banner */

.bg-light-grey {
    --bg-color-strip: #f0f0f0;
    background-color: #f0f0f0;
}

.bg-white {
    --bg-color-strip: #ffffff;
    background-color: #ffffff;
}

.cta-column__heading {
    color: var(--theme-neutral-charcoal-dark-1), #1a1a1a;
}

@media screen and (min-width: 981px) {
    .col-img img {
        height: calc(100% - 20%)
    }
}

/* end banner background colours for program banner */


/* ==========================================================================
     BUTTONS & LINKS
  ============================================================================= */

    /* start button fixes (2 Nov 23 DSL-1308)*/
        .button+.button {
            margin: 1rem;
        }

        .button[class*="primary"] {
            --button-outline--color-hover: #ffffff;
            --button-outline--background-hover: #006D88;
            --button-outline--border-hover: #006D88;
        }
    /* end button fixes (2 Nov 23 DSL-1308) */

    .button[class*="__outline"][class*="white"] {
    --button-outline--background: transparent;
    --button-outline--color: var(--color--white, #ffffff);
    --button-outline--border: var(--color--white, #ffffff);
    --button-outline--background-hover: var(--theme-neutral-grey-light-2);
    --button-outline--color-hover: var(--theme-neutral-charcoal-base);
    --button-outline--border-hover: var(--color--white, #ffffff);
    }

    .button_wrapper,
    .button_wrapper .button {
        display: flex;
        row-gap: 12px;
        column-gap: 10px;
        justify-content: center;
        text-align: center;
        min-width: 230px;
        margin: 0;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: space-around;
        align-items: center;
    }

    @media screen and (min-width: 741px) {
        .button_wrapper {
            justify-content: flex-start;
        }
        .button_wrapper .button {
            min-width: 80px;
        }
    }

/* end:    BUTTONS & LINKS 
  ============================================================================= */

/* start new style for wellbeing pages with lead text with large padding (2 Nov 23 DSL-1317) */
.lead.narrow {
    margin: 5rem 20rem 5rem 20rem;
}

@media screen and (max-width:1204px) {
    .lead.narrow {
        margin: 5rem auto;
    }
}

/* end new style for wellbeing pages with lead text with large padding */

/* ==========================================================================
     EMBEDED CALENDAR (ELFSIGHT) - STYLE OVERRIDES
  
     COLUMN OPTIONS
     -- 4 columns = .eCal_4column
     -- 3 columns = .eCal_3column
     -- 2 columns = .eCal_2column
============================================================================= */

    @media screen and (min-width:1204px) {
        .eCal_5column .eapp-events-calendar-grid-item {
            width: 20% !important;
        }
        
        .eCal_4column .eapp-events-calendar-grid-item {
            width: 25% !important;
        }

        .eCal_3column .eapp-events-calendar-grid-item {
            width: 33.33% !important;
        }

        .eCal_2column .eapp-events-calendar-grid-item {
            width: 50% !important;
        }
    }

    .eCal_5column .eapp-events-calendar-grid-item {
        min-width: 20% !important;
    }
    
    .eCal_4column .eapp-events-calendar-grid-item {
        min-width: 25% !important;
    }

    .eCal_3column .eapp-events-calendar-grid-item {
        min-width: 33.33% !important;
    }

    .eCal_2column .eapp-events-calendar-grid-item {
        min-width: 50% !important;
    }

    .eapp-events-calendar-events-calendar-component {
        padding: 0 !important;
        background-color: rgb(255, 255, 255) !important;
    }

    .eapp-events-calendar-events-calendar-header {
        margin-bottom: 0 !important;
    }

    .eapp-events-calendar-controls-component {
        margin-top: 5px !important;
    }

    .eapp-events-calendar-layout-pastEvents {
        margin-top: 15px !important;
    }

    .eapp-events-calendar-layout-pastEventsTitle {
        display: none;
    }

/* end: EMBEDED CALENDAR (ELFSIGHT) 
============================================================================= */

/* ==========================================================================
     GET IN TOUCH BANNER - STYLE OVERRIDES & FIXES
============================================================================= */

    /* Fix horizontal scroll on Apple and small screens */

        .get-in-touch-strip__wrapper--pill::before,
        .get-in-touch-strip__wrapper--pill::after {
            width: calc((100vw - 100%)/2);
        }

    /* Update link colour in contact banner */
        a.get-in-touch-strip__link {
            color: #373636;
            text-decoration: underline;
        }

        a.get-in-touch-strip__link:hover {
            text-decoration: none;
        }

    /* Fix to stop height being too small when only 2 CTAs */
        .get-in-touch-strip__list {
            min-height: 8rem;
        }
        
    /* Allow multiple lines of text */
         @media screen and (max-width: 768px) {
             .get-in-touch-strip__wrapper--pill .get-in-touch-strip__header{
            padding-block: 5rem;
            }
         }
        .get-in-touch-strip__wrapper--pill .get-in-touch-strip__header{
            max-width: 440px;
            padding-block: 6.2rem;
            padding-right: 9.5rem;
        }

        @media screen and (min-width:767px) {
            .get-in-touch-strip__wrapper--pill .get-in-touch-strip__header{
                    max-width: 35%;
                }
        }

/* end: GET IN TOUCH BANNER 
============================================================================= */


/* ==========================================================================
    CUSTOM CONTENT BLOCK
============================================================================= */
    
    .ccb-strip__wrapper {
        --bg-color-strip: none;
        background: var(--bg-color-strip);
        padding: 3.2rem 3rem;
        display: flex;
        gap: 1.6rem;
        flex-direction: column;
        color: var(--color-text);
    }

    .ccb-strip__wrapper.sqz-full-width--all {
        padding: 3.2rem 0;
        margin:0;
        max-width:100%;
    }

    .ccb-charcoal-bg {
        --bg-color-strip: var(--color-charcoal-base2);
        --color-text: var(--color--white);
    }


    .ccb-pink-bg {
        --bg-color-strip: var(--color-pink-base);
        --color-text: var(--color--white);
    }

    .ccb-yellow-bg {
        --bg-color-strip: var(--color-yellow-base);
        --color-text: var(--color-charcoal-base2);
    }

    .ccb-teal-bg {
        --bg-color-strip: var(--color-teal-base);
        --color-text: var(--color--white);
    }

    .ccb-orange-bg {
        --bg-color-strip: var(--color-orange-base);
        --color-text: var(--color-charcoal-base2);
    }

    .ccb-light-grey-bg {
        --bg-color-strip: var(--color-grey-light);
        --color-text: var(--color-charcoal-base2);
        /* color: var(--color-white); */
    }

    .ccb__wrapper__content {
        font-size: 1.6rem;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }
    
    .ccb-strip__wrapper h2:first-of-type,
    .ccb-strip__wrapper h3:first-of-type,
    .ccb-strip__wrapper h4:first-of-type {
    margin-top: 0;
    }
    
    .ccb-strip__wrapper p + h2:first-of-type,
    .ccb-strip__wrapper p + h3:first-of-type,
    .ccb-strip__wrapper p + h4:first-of-type {
    margin-top: 2em;
    }
/* end: CUSTOM CONTENT BLOCK
============================================================================= */


/* ==========================================================================
     MULTI-COLUMN CONTENT TOOL - STYLE OVERRIDES & FIXES
============================================================================= */

    .multi-column-content__wrapper .sqz-flex {
    gap: 3rem;
    }

/* end: MULTI-COLUMN CONTENT TOOL
============================================================================= */

/* CTA COLUMN */
    .multi-column-content__wrapper h3 a {
        text-decoration: none;
        /*color: var(--color--teal);*/
    }
    
    .multi-column-content__wrapper h3 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: -3px;
    }

/* ==========================================================================
    TAB CONTENT TOOL - STYLE UPDATES FOR VERTICAL LAYOUT
============================================================================= */

 .verticalTabs .deakin-tabs__control-list {
     flex-direction: column;
     width: 30%;
     background-color: var(--color--grey);
     /* padding: 1rem;*/
     margin-top: 0;
     border-radius: 6px 0 0 6px;
     overflow-x:hidden;
 }

 .verticalTabs .deakin-tabs__control-separator {
     display: none;
 }

 .verticalTabs {
     display: flex;
     border-radius: 6px;
     border: 1px solid var(--color--grey);
     /*max-height: 47rem;*/
 }

 .verticalTabs .deakin-tabs__control-list li a {
    width: 93%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    background-color: var(--color--white);
 }

 .verticalTabs .deakin-tab-control__link {
     border-bottom: 0;
     border-left: 6px solid var(--color--grey-med);
     color: var(--color-charcoal-dark1);
     border-radius: 6px;
     font-weight:600;
     margin:1rem;
 }

 .verticalTabs .deakin-tab-control__link--active,
 .verticalTabs .deakin-tab-control__link--active:active,
 .verticalTabs .deakin-tab-control__link--active:focus,
 .verticalTabs .deakin-tab-control__link--active:hover {
     border-color: var(--theme-secondary-light-1);
 }

 .verticalTabs .deakin-tab-control__item {
     /*margin: 1rem;*/
 }

 .verticalTabs .deakin-tabs__panels {
     overflow-y: auto;
     width: 70%;
 }

 .verticalTabs ul{
    margin-block: 0;
 }
 
 .verticalTabs .deakin-tab-control__link:focus, 
 .verticalTabs .deakin-tab-control__link:hover {
    text-decoration: underline;
    box-shadow: 2px 2px 8px -4px var(--color--charcoal);
}
 .verticalTabs .deakin-tab-control__link--active{
    box-shadow: 2px 2px 8px -4px var(--color--charcoal);
    margin-right: -1rem;
    padding-right: 1rem;
 }
 
 
 
@media screen and (min-width:740px) {
  .tabsAccord {
    display: none
  }
}

@media screen and (max-width:740px) {
  .verticalTabs  {
    display: none
  }
}

/* end:  TAB CONTENT TOOL
============================================================================= */

/* ==========================================================================
    CAMPUS LOCATION - TAB LAYOUT
============================================================================= */
    .cl_heroImage--wrapper {
        margin-block-end: 2rem;
        margin-block-end: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        height: 300px;
    }

    .cl_heroImage {
        max-width: 100%;
        height: auto;
    }

    .cl_icon {
        --_icon-size: 3.6rem;
        --_icon-background: var(--color--black);
        --_icon-color: var(--color--white);
        display: flex;
        gap: 1.2rem;
        flex-wrap: wrap;

        span {
            width: var(--_icon-size);
            height: var(--_icon-size);
            display: inline-flex;
            place-content: center;
            place-items: center;
            font-size: var(--_icon-fontsize);
            line-height: 1;
            font-style: normal;
            font-weight: --_icon-weight;
            border-radius: 99999px;
            background-color: var(--_icon-background);
            color: var(--_icon-color);
        }

        .fas {
            --_icon-fontsize: 1.8rem;
            --_icon-weight: 600
        }

        [class*=ico-] {
            --_icon-fontsize: 3.2rem;
            --_icon-weight: 400;
        }

    }

    #cl-online {
        h3 {
            margin-bottom: .5rem;
        }

        .header {
            margin-top: .6rem;
        }

        .preHeader {
            font-size: 18px;
            font-weight: 400;
            line-height: 27px;
            margin-bottom: .5rem;
            display: block;
        }

        .address {
            font-size: 16px;
            line-height: 27px;
            margin-top: 0;
        }

        h4 {
            margin-bottom: .6rem !important;
        }
    }

    .cl_info--wrapper,
    .cl_visit,
    .cl_call {
        display: flex;
        column-gap: 2rem;
        row-gap: 1rem;
        flex-direction: row;
        width: 100%;
    }

    .cl_visit--info,
    .cl_call--info {
        width: 100%;
    }

    @media screen and (max-width: 980px) {

        .cl_info--wrapper,
        .cl_visit,
        .cl_call {
            flex-direction: column;
        }
        
        .cl_heroImage--wrapper{
            height:200px;
        }
        
        .cl_heroImage{
            max-width:150%;
        }
    }

    .cl_hours {
        background-color: var(--theme-neutral-grey-light-2);
        padding: 1.5rem 1rem 0.2rem;
        margin-block-end: 3rem;
        border-radius: .5rem;
        margin-block-start: 2.5rem;

        table {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        table tbody tr td,
        table tbody tr th,
        table tfoot tr td,
        table tfoot tr th,
        table thead tr td,
        table thead tr th {
            border-collapse: collapse;
            border: 0;
            /*width: 50%;*/
        }

        h3 {
            margin: 0 1rem;
            font-size: 1.8rem;
        }
    }
    
/* end:  CAMPUS LOCATION - TAB LAYOUT
============================================================================= */

/* ==========================================================================
   PROGRAM BANNER
============================================================================= */

@media screen and (max-width: 600px) {
   .prbanner{
    img {
        max-width: 200px;
    }
    .sqz-flex {
        flex-direction: column-reverse;
        --gap:2rem;
    }
} 
}
@media screen and (min-width: 600px) {
   .prbanner{
    img {
        max-width: 200px;
    }
    .sqz-flex {
        flex-direction: row;
    }
} 
}

/* end:  PROGRAM BANNER
============================================================================= */

/* ==========================================================================
     BREADCRUMB PADDING
============================================================================= */
.des-breadcrumb a {
    padding: 5.5px 3.5px;
}

.des-breadcrumb ol li, .des-breadcrumb ul li {
    padding: 3.5px 0;
}

/* == MAIN MENU ON MOBILE =================================================== */
.navigation-rebrand__item--return{
    width: 28px;
    height: 28px;
    padding: 4px;
}

.navigation-rebrand .navigation-rebrand__level--2-placeholder ul li.back a.navigation-rebrand__item--link, .navigation-rebrand .navigation-rebrand__level--3-placeholder ul li.back a.navigation-rebrand__item--link{
    align-items: center;
    padding-left: 5px;
    font-size:1.6rem;
}

.navigation-rebrand__nav-next:after{
    width: 26px;
    height: 26px;
    padding: 4px;
}



/* end:  BREADCRUMB PADDING
============================================================================= */

