/**
 * @file
 * Visual styles for Clean+'s more links.
 */
.more-link {
  text-align: center;
}

#block-views-block-mt-articles-home-home-block .more-link .mt-link-stylable,
#block-views-blockmt-posts-videos-promoted-block-1 .more-link .mt-link-stylable,
#block-views-block-mt-latest-block-1 .more-link .mt-link-stylable,
#block-views-block-mt-posts-videos-promoted-block-2 .more-link .mt-link-stylable {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.125;
  border-width: 0px;
  border-style: solid;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  background-color: var(--mt-color-primary);
  border-color: var(--mt-color-primary);
  color: var(--mt-color-primary-contrast);
}

#block-views-block-mt-articles-home-home-block .more-link .mt-link-stylable:hover,
#block-views-blockmt-posts-videos-promoted-block-1 .more-link .mt-link-stylable:hover,
#block-views-block-mt-latest-block-1 .more-link .mt-link-stylable:hover, 
#block-views-block-mt-posts-videos-promoted-block-2 .more-link .mt-link-stylable:hover {
  position: relative;
  padding-right: 43px;
  padding-left: 23px;
}

#block-views-block-mt-articles-home-home-block .more-link .mt-link-stylable::after,
#block-views-blockmt-posts-videos-promoted-block-1 .more-link .mt-link-stylable::after,
#block-views-block-mt-latest-block-1 .more-link .mt-link-stylable::after,
#block-views-block-mt-posts-videos-promoted-block-2 .more-link .mt-link-stylable::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 20px;
  left: unset;
  top: 50%;
  margin-top: -9px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

#block-views-block-mt-articles-home-home-block .more-link .mt-link-stylable:hover::after,
#block-views-blockmt-posts-videos-promoted-block-1 .more-link .mt-link-stylable:hover::after,
#block-views-block-mt-latest-block-1 .more-link .mt-link-stylable:hover::after,
#block-views-block-mt-posts-videos-promoted-block-2 .more-link .mt-link-stylable:hover::after {
  opacity: 1;
}