/*
=============================================
- Woo Product Delivery Date Public Style
=============================================
*/

/* Generic Message Style */
.woo-pdd-message .message {
    color: #ff0000
}
/* Loader Style */
.woopdd-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 30px;
}
.woopdd-loader div {
    position: absolute;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #f2f2f2;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.woopdd-loader div:nth-child(1) {
    left: 8px;
    animation: woopdd-loader1 0.6s infinite;
}
.woopdd-loader div:nth-child(2) {
    left: 8px;
    animation: woopdd-loader2 0.6s infinite;
}
.woopdd-loader div:nth-child(3) {
    left: 32px;
    animation: woopdd-loader2 0.6s infinite;
}
.woopdd-loader div:nth-child(4) {
    left: 56px;
    animation: woopdd-loader3 0.6s infinite;
}
@keyframes woopdd-loader1 {
    0% {
    transform: scale(0);
    }
    100% {
    transform: scale(1);
    }
}
@keyframes woopdd-loader3 {
    0% {
    transform: scale(1);
    }
    100% {
    transform: scale(0);
    }
}
@keyframes woopdd-loader2 {
    0% {
    transform: translate(0, 0);
    }
    100% {
    transform: translate(24px, 0);
    }
}