/* container mw */
ul.mw-flex-cont, a.mw-flex-a {
    display: -webkit-box !important;
    display: flex !important;
}
ul.mw-flex-cont {
    list-style-type: none !important;
    max-width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* items mw */
li.mw-flex-box {
    margin: 0rem 1rem 1rem 0rem !important;
    padding: 0 !important;
    border: 1px solid #000;
    -webkit-box-flex: 1;
    flex: 1 0 0px;
    flex-basis: 20%;
}
/* links mw */
a.mw-flex-a {
    -webkit-box-pack: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    padding: 4.8rem 0rem 5rem 0rem;
}
/* links mw */
a.mw-flex-a:hover {
    color: #27E06E;
}
li.mw-flex-box:hover {
    border: 1px solid #27E06E;
}
/* graceful shift mw */
a.mw-flex-a::before {
    background: none !important;
}
li.mw-flex-box::before {
    display: none !important;
}
/* queries wide mw */
@media only screen and (max-width:920px) {
    a.mw-flex-a {
        padding: 3.2rem 0rem 3.5rem 0rem;
    }
}
