#loader-text {
    font-family: "Frutiger W01", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    width: 100px;
    text-align: center;
    margin-left: 2px;
}
.wrapper-loader {
    position: absolute;
    top: 50vh;
    left: 50vw;
}
.loader {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.loader-circle {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    margin: 20px 20px 0;
}
.loader-circle div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ED1A3A;
    border-radius: 50%;
    animation: loader-circle 1.2s linear infinite;
}
.loader-circle-digital div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #00538d !important;
    border-radius: 50%;
    animation: loader-circle 1.2s linear infinite;
}
.loader-circle div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}
.loader-circle div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.loader-circle div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}
.loader-circle div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.loader-circle div:nth-child(5) {
    animation-delay: -0.4s;
    top: 9px;
    left: 18px;
}
.loader-circle div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}
.loader-circle div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}
.loader-circle div:nth-child(8) {
    animation-delay: -0.7s;
    top: 41px;
    left: 9px;
}
.loader-circle div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}
.loader-circle div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}
.loader-circle div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}
.loader-circle div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}
@keyframes loader-circle {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
