﻿loading-message .spinner-wrapper .spinner {
    margin: 20px auto;
}

loading-message.width-95 .spinner-wrapper {
    width: 95%;
}

.spinner-wrapper {
    position: absolute;
    width: 100%;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 50px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0DB9F0;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
    z-index: 99;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner-wrapper .loading-message {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 35px auto 10px auto;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: 468px 0
    }

    100% {
        background-position: -468px 0
    }
}

.calc-list-loading-item {
    background: #fff;
    border: 1px solid;
    border-color: #e5e6e9 #dfe0e4 #d0d1d5;
    border-radius: 3px;
    padding: 12px;
    margin: 0 auto;
    min-height: 33px;
}

.animated-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 7px;
    position: relative;
    margin: 11px 7px 0 7px;
}