#moreLinks{
    order: 3;
}
#moreLinks .more-link{
    align-items: center;
    margin-bottom: 10px;
}


#moreLinks .more-link > a{
    min-width: 250px;
    display: flex;
    align-items: center;
    background-color: rgba(2,58,58,0.06);
    text-align: center;
    padding: 0.625rem 1rem;
    border: none;
    color: #023a3a;
    border-radius: 0.25rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all 200ms linear;
}
#moreLinks .more-link > a:hover {
    background-color: rgba(153,201,67,0.25);
}
#moreLinks .more-link div {
    margin-top: 10px;
    margin-left: 0;
}
#moreLinks .more-link div a{
    color: #292929;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}
#moreLinks .more-link > div a:not(:last-child):after {
    content: '|';
    padding: 0 10px;
}

@media (min-width:1025px) {
    #moreLinks .more-link{
        display: flex;
    }
    #moreLinks .more-link div {
        margin-left: 2rem;
    }
}