﻿p, ul, ol {
    margin-bottom: 8px;
}

section {
    padding-top: 4px;
    padding-bottom: 4px;
}
img {
    padding: 0;
    margin: 0;
}
.banner {
    width: 100%;
}

.card-image {
    width: 100%;
    display: block;
}
.avatar {
    height: 120px;
    width: 120px;
    border-radius: 20%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer ul {
    margin: 0;
    padding: 0;
}
.footer ul ul {
    margin-left: 20px;
    padding: 0;
}
.footer li {
    list-style-type: none;
}

@keyframes AnimatedProgressBarInfinite {
    from {
        margin-left: -50%;
    }

    to {
        margin-left: 100%;
    }
}

.progress-bar-infinite {
    width: 50%;
    animation-name: AnimatedProgressBarInfinite;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        border-radius: 50%
    }
    50% {
        -webkit-transform: rotate(180deg);
        border-radius: 20%
    }
    100% {
        -webkit-transform: rotate(360deg);
        border-radius: 50%
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        border-radius: 50%
    }
    50% {
        transform: rotate(180deg);
        border-radius: 20%;
    }
    100% {
        transform: rotate(360deg);
        border-radius: 50%
    }
}