@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

@keyframes dottedLoading {
  0%,
  80%,
  100% {
    box-shadow: 0 1.5em 0 -0.9em; }
  40% {
    box-shadow: 0 1.5em 0 0; } }

@keyframes stickyFadeInUp {
  from {
    transform: translate3d(0, 0.2em, 0);
    visibility: visible;
    opacity: 0; }
  to {
    transform: translate3d(0, -50%, 0);
    opacity: 1; } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.pdf-view .title {
  color: #004a8d;
  font-size: 15px;
  font-size: 1.07143rem; }
  .pdf-view .title a {
    color: #004a8d;
    position: relative;
    padding-left: 2em;
    display: inline-block; }
    .pdf-view .title a::before {
      font-family: 'FontAwesome';
      font-style: normal;
      font-weight: normal;
      transform: translateY(-50%);
      content: '\F1C1';
      color: #c00;
      position: absolute;
      left: 0;
      top: 50%;
      z-index: 1;
      font-size: 20px; }
    .pdf-view .title a:hover {
      color: #0065c0; }

.pdf-view .description {
  padding-left: 2em;
  color: #999999; }

.webcast-view .webcast-link {
  color: #004a8d;
  position: relative;
  padding-left: 2em;
  display: inline-block;
  font-size: 15px;
  font-size: 1.07143rem; }
  .webcast-view .webcast-link::before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    transform: translateY(-50%);
    content: '\F0C1';
    color: #c00;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    font-size: 20px; }
  .webcast-view .webcast-link:hover {
    color: #0065c0; }
