.menuTop {
    float: left;
    width: 100%;
}
.menuTop .row {
    /*float: left;*/
}
.menuTop .row.top {
    padding: 0.5em 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: #036cb4;
    color: #fff;
}
.menuTop .row.tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}
.menuTop .row.tabs .tab {
    flex-grow: 1;
    flex-basis: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: #0978b5;
    padding: 1em 0.25em;
    font-weight: 600;
    cursor: pointer;
}
.menuTop .row.tabs .tab.noGrow {
    flex-grow: 0;
}
.menuTop .row.tabs .tab.active {
    background-color: #078ab8;
}
.menuTop .row.tabs .tab.settings { width: 3em; padding: 0; }
.menuTop .row.tabs .tab span {
    color: #fff;
}
.menuTop .row.tabs .tab img {
    height: 1.5em;
}
.menuTop .row.buttons {
    font-size: 12px;
}
.menuTop .row.buttons .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 1em 0;
}
.menuTop .row.buttons .container .button{
    display: block;
    width: 7em;
    padding: 0.1em;
    text-decoration: none;
    color: #333;
}
.menuTop .row.buttons .container .button:visited{

}
.menuTop .row.buttons .container .button .content {
    width: 100%;
    padding: 0.2em;
    /*background-color: #f1f3fb;*/
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
}
.menuTop .row.buttons .container .button:hover .content{
    border-color: #83ccf6;
}
.menuTop .row.buttons .container .button.active .content {
    background-color: #d7f0ff;
    border-color: #43a3da;
    border-color: #83ccf6;
}
.menuTop .row.buttons .container .button .content .iconContainer,
.menuTop .row.buttons .container .button .content .descriptionContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menuTop .row.buttons .container .button .content .iconContainer {
    height: 2.5em;
    /*background-color: red;*/
}
.menuTop .row.buttons .container .button .content .descriptionContainer {
    height: 2.7em;
    text-align: center;
    /*background-color: green;*/
    line-height: 1em;
}
.menuTop .row.buttons .container .button .content .iconContainer img {
    width: 2em;
    height: auto;
}
.menuTop .row.buttons .container .button .content .iconContainer img.resize125 {
    width: 1.25rem;
}