/**
 * @file
 * Visual styles for Showcase Lite's more links.
 */
.more-link a {
  margin: 0 0 10px 0px;
  display: block;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  text-align: left;
  text-decoration: none;
}
.more-link a:hover {
  text-decoration: underline;
}
.more-link a:after {
  content: "\00bb";
    font-family: 'FontAwesome';
    font-size: 14px;
    margin-left: 10px;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -1px;
    font-weight: bold;
}

.more-link:hover a:after {
    animation: to-left 2s infinite;
    -webkit-animation: to-left 2s infinite;
    -moz-animation: to-left 2s infinite;
    -o-animation: to-left 2s infinite;
}

@keyframes to-left{
    0%{margin-left:10px;}
    50%{margin-left:20px;}
    100%{margin-left:30px; opacity:0;}
}

.region--light-typography .more-link a {
  color: #ffffff;
}
.region--light-typography.region--black-background .more-link a:hover {
  text-decoration: none;
}
@media (max-width:767px) {
  .footer__section .more-link a,
  .footer-bottom__section .more-link a,
  .subfooter__section .more-link a {
    text-align: center;
  }
}
