
/* add a dropdown triangle to the Drupal Calendar megamenu */
@media screen and (min-width: 768px) {
a.menu__link--events.menu__link:after {
    color: #999;
    content: "\25BC";
    font-size: 0.5em;
    margin-left: 0.5rem;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    vertical-align: middle;
}
}

