app-root {
    display: block;
    min-height: 240px;
}

.preload-container {
    background: #fff;
    box-sizing: border-box;
    max-width: 632px;
    margin: 0 auto;
    padding: 40px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 712px) {
    .preload-container {
        border-radius: 6px;
        box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
    }
}

.skeleton {
    background-color: #dee2e6;
    border-radius: 2px;
    display: block;
    height: 24px;
    margin: 4px 0;
}

.skeleton.pulse {
    animation: pulse 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .skeleton.pulse {
        animation: none;
    }
}
  
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.donordock-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 8px 8px;
}

.donordock-seal a {
    border: 1px solid transparent;
    border-radius: 4px;
    display: flex;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}

.donordock-seal a:hover,
.donordock-seal a:focus {
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
}

ul.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.footer-links li {
    padding: 4px;
}

.footer-links,
.footer-links a:link,
.footer-links a:visited {
    color: #40454d;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 200ms ease-in-out;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #000;
    text-decoration: underline;
}
