/**
 * Verificare TVA
 *
 * @author Robert C. Chiribuc
 * @copyright The Bug Software Development & Consulting
 */

/* =======================================================
   1. WIDGET
   ======================================================= */
#verificare-tva-loader {
    display: none;
    height: 4px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

#verificare-tva-loader:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 4px;
    background-color: #2980b9;
    animation: loading 2s linear infinite;
}

@keyframes loading {
    from {
        left: -200px;
        width: 30%;
    }
    50% {
        width: 30%;
    }
    70% {
        width: 70%;
    }
    80% {
        left: 50%;
    }
    95% {
        left: 120%;
    }
    to {
        left: 100%;
    }
}

#verificare-tva-response ul {
    padding: 0!important;
    margin: 0!important;
}

#verificare-tva-response ul li {
    border-top: 1px solid #dedede!important;
    border-bottom: 1px solid #dedede!important;
    list-style-type: none!important;
    margin-bottom: 8px;
}

#verificare-tva-response ul li .vat-label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

#verificare-tva-response ul li .vat-result {
    display: block;
}

#verificare-tva-response ul li .vat-result-date {
    display: block;
}

#verificare-tva-response ul li .vat-true {
    color: #41a62a;
}

.vat-false,
#verificare-tva-response ul li .vat-false {
    color: #f00;
}