﻿.loading-container {
    color: white;
}

.dot_loader,
.dot_loader:before,
.dot_loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: dotloader 1.8s infinite ease-in-out;
    animation: dotloader 1.8s infinite ease-in-out;
}

.dot_loader {
    color: #ffdd10;
    font-size: 8px;
    margin: 0 auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.dot_loader:before,
.dot_loader:after {
    content: "";
    position: absolute;
    top: 0;
}

.dot_loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.dot_loader:after {
    left: 3.5em;
}

@keyframes dotloader {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
/*
body.destinationpayment .loading-container,
body.destinationpayment .dot_loader {
    color: #ffdd10;
}
body.destinationpayment #page .loading-container,
body.destinationpayment #page .dot_loader {
    color: #ffdd10;
}*/