.overflow-block {
    overflow: auto;
}

/* Select Buttons */
/******************/
ul.select-btns {
    display:         flex;
    flex-wrap:       wrap;
    justify-content: flex-start;
    margin:          0;
    padding:         0;
    list-style:      none;
}

ul.select-btns li {
    list-style-type: none;
    line-height:     2.5em;
    margin:          0 5px;
}

ul.select-btns li button { width: 100%; }

ul.select-btns li.selected button {
    cursor:             default !important;
    background-color:   #679AC4 !important;
    color:              #162e51 !important;
    border-color:       #162e51 !important;
    -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
            box-shadow: none !important;
}
ul.select-btns li.selected:hover button { color: #162e51; }
/******************/
/* Select Buttons */