/*
 * D3t Product Info Widget Stylesheet
 */

#d3t-product-info {
    position: relative;
    min-height: 40px;
    margin-bottom: 10px;
    /*background-image: radial-gradient(circle farthest-corner at center, #949494 0%, #4a4a4a 100%);*/
    color: #333;
}

#d3t-product-info > div { margin: 7px 0; }
#d3t-product-info .illus { text-align: center; }
#d3t-product-info .illus > img { width: 100%; max-width: 150px; }
#d3t-product-info .name { text-transform: uppercase; font-weight: bold; font-family: Questrial, Verdana, sans-serif; color: #000000; font-size: 16px; }
#d3t-product-info .reference { font-style: italic; }
#d3t-product-info .available { font-weight: bold; color: #006621; }
#d3t-product-info .not-available { font-weight: bold; color: #981225; }
#d3t-product-info .strike { text-decoration: line-through; }
#d3t-product-info .highlight { font-weight: bold; color: #0B878F; }
#d3t-product-info .link {text-align:center;}
#d3t-product-info .link > a { background-color: #0B878F; padding: 8px 10px 6px; color: #fff; text-transform: uppercase; font-size: 12px; margin: 15px auto 0; display: inline-block; }

#d3t-product-info .spinner > p {
    font-size: 14px;
    color: #0B878F;
}

#d3t-product-info .spinner {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#d3t-product-info .spinner .ball {
    width: 20px;
    height: 20px;
    background-color: #0B878F;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: motion 1s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -moz-animation: motion 1s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    -o-animation: motion 1s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    animation: motion 1s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@-moz-keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@-o-keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@keyframes motion {
    0% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    25% {
        -webkit-transform: translateX(-50px) scale(0.3);
        transform: translateX(-50px) scale(0.3);
    }
    50% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
    75% {
        -webkit-transform: translateX(50px) scale(0.3);
        transform: translateX(50px) scale(0.3);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}
