/**
 * @file
 * Visual styles for buttons.
 */

.cta-button a {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 1rem 2.25rem 1rem 1.75rem;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 25px;
  color: #ffffff;
  background-color: #03a3ec;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.5);
  transition: box-shadow 0.25s ease-in-out;
}

.cta-button a:hover {
  color: #ffffff;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.5);
}

.cta-button a:after {
  content: "»";
  position: absolute;
  font-size: 20px;
  right: 20px;
  bottom: 12px;
  color: #ffffff;
  transition: right 0.25s ease-in-out;
}

.cta-button a:hover:after {
  right: 17px;
  transition: right 0.25s ease-in-out;
}

.cta-button.ministry-email svg {
  display: none;
}
