/* You can add custom CSS here */

body {
    padding-top: 50px;
}

.footer {
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.sticky-div
{
    margin:0;
    top:0;
    position: sticky;
    background-color: lightgoldenrodyellow;    
    font-weight: bolder;
    z-index:100;
}


.outer-container {
    display: grid;
    grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
    font-size: small;
}

.full-width {
    grid-column-start: 1;   
    grid-column: span 8;
}

    .bottom-separator {
        margin-bottom: 20px;
        box-shadow: 0 4px 2px -2px gray;
    }

.cell {
    grid-column: auto;
    grid-row: auto;
    padding: 10px;
    border: 1px solid #ccc;
}

.long-word {
    word-wrap: break-word;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.footer{
    position: relative;
    overflow: clip;
}


