.home-menu {
    padding: 0.5em;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

.home-menu {
    background: #2d3e50;
}

.pure-menu.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
    margin-right: auto;
}

.pure-menu-heading {
    justify-content: left;
}

.pure-menu-list {
    justify-content: right;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}

.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    z-index: 2;
    top: 13%;
    width: 100%;
    min-height: 12%;
    background: white;

}

/* We want to give the content area some more padding */
.content {
    padding: 1em 1em 3em;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
.content-head-ribbon {
    color: white;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    color: #1f8dd6;
}

.content-subhead i {
    margin-right: 7px;
}

.customer-counter {
    text-align: center;
    font-size: 5em;
}

.home-text {
    text-align: center;
    font-size: 1.5em;
}

.center {
    align-content: center;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}


table {
    max-width: 100%;
}

table.scrollable tbody {
    max-height: 300px;
    overflow-y: auto;
    display: block;
}

table.scrollable thead {
    position: sticky;
    z-index: 1;
}