.veil .page__content:after,
.veil .modal__content:after {
  content: '';
  position: fixed;
  top: 0;
  background-color: rgba(158, 158, 158, 0.35);
  bottom: 0;
  right: 0;
  left: 0;
  background-image: url(static/img/loading.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  -webkit-animation: fadein 1s ease 1 normal forwards;
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
