.evoProgressBar{
    width: 100%;
    text-align: center;
    height: 3em;
    line-height: 3em;
    margin-bottom: 0.5em;
    margin-top: 0.5em;

    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0.4em;
}
.evoProgressBar::-webkit-progress-bar {
    background-color: whiteSmoke;
    border-radius: 0.4em;
}
.evoProgressBar[value]::-webkit-progress-value::before {
    content: '80%';
    position: absolute;
    right: 0;
    top: -125%;
}


.evoProgressBar1{
    border:1px solid #66AFE9;
    color: whiteSmoke !important;
}
.evoProgressBar1::-moz-progress-bar{
    background: #66AFE9 !important;
    border-radius: 0.4em;
}
.evoProgressBar1::-webkit-progress-value{
    background: #66AFE9 !important;
    border-radius: 0.4em;
}

.evoProgressBar2{
    border:1px solid rgba(0, 0, 0,80);
    color:rgba(0, 0, 0,80);
}
.evoProgressBar2::-moz-progress-bar{
    background: rgba(0, 0, 0,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar2::-webkit-progress-value{
    background: rgba(0, 0, 0,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar3{
    border:1px solid rgba(37, 77, 110,80);
    color: whiteSmoke !important;
}
.evoProgressBar3::-moz-progress-bar{
    background: rgba(37, 77, 110,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar3::-webkit-progress-value{
    background: rgba(37, 77, 110,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar4{
    border:1px solid rgba(247, 150, 71,80);
    color: whiteSmoke !important;
}
.evoProgressBar4::-moz-progress-bar{
    background: rgba(247, 150, 71,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar4::-webkit-progress-value{
    background: rgba(247, 150, 71,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar5{
    border:1px solid rgba(182, 52, 52,80);
    color: whiteSmoke !important;
}
.evoProgressBar5::-moz-progress-bar{
    background: rgba(182, 52, 52,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar5::-webkit-progress-value{
    background: rgba(182, 52, 52,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar6{
    border:1px solid rgba(0, 204, 0,80);
    color: whiteSmoke !important;
}
.evoProgressBar6::-moz-progress-bar{
    background: rgba(0, 204, 0,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar6::-webkit-progress-value{
    background: rgba(0, 204, 0,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar7{
    border:1px solid rgba(0, 149, 182,80);
    color: whiteSmoke !important;
}
.evoProgressBar7::-moz-progress-bar{
    background: rgba(0, 149, 182,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar7::-webkit-progress-value{
    background: rgba(0, 149, 182,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar8{
    border:1px solid rgba(48, 214, 200,80);
    color: whiteSmoke !important;
}
.evoProgressBar8::-moz-progress-bar{
    background: rgba(48, 214, 200,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar8::-webkit-progress-value{
    background: rgba(48, 214, 200,80) !important;
    border-radius: 0.4em;
}

.evoProgressBar9{
    border:1px solid rgba(191, 191, 191,80);
    color: whiteSmoke !important;
}
.evoProgressBar9::-moz-progress-bar{
    background: rgba(191, 191, 191,80) !important;
    border-radius: 0.4em;
}
.evoProgressBar9::-webkit-progress-value{
    background: rgba(191, 191, 191,80) !important;
    border-radius: 0.4em;
}

.evoSpiner, .evoSpinera, .evoSpinerb{
    display: inline;
    margin-right: 0.2em;
}

/* Spinner Core*/
.evoSpiner:before, .evoSpinera:before, .evoSpinerb:before{

    content: "";

    box-sizing: border-box;


    display: block;
    /*position: absolute;*/
    /*top: 50%;
    left: 50%;*/

    width: 24px;
    height: 24px;
    /*margin-top: -30px;
    margin-left: -30px;*/
    border-radius: 50%;
}
/* Spinner MARK I */
.evoSpiner:before{
    border: 3px solid lightgray;
    animation: spinner 0.7s linear infinite;
}
/* Spinner MARK II */
.evoSpinera:before {
    border: 2px solid transparent;
    animation: spinner 0.7s ease infinite;
}
/* Spinner MARK III */
.evoSpinerb:before {
    border-right: 2px solid transparent;
    animation: spinner 0.7s linear infinite;
}
/* Spinner Animation */
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
/* Spinner Colors */
.evoSpiner1:before{
    border-top-color: #66AFE9;
}
.evoSpinera1:before{
    border-top-color: #66AFE9;
    border-bottom-color: #66AFE9;
}
.evoSpinerb1:before{
    border-top: 2px solid #66AFE9;
}

.evoSpiner2:before{
    border-top-color: rgba(0, 0, 0,80);
}
.evoSpinera2:before{
    border-top-color: rgba(0, 0, 0,80);
    border-bottom-color: rgba(0, 0, 0,80);
}
.evoSpinerb2:before{
    border-top: 2px solid rgba(0, 0, 0,80);
}

.evoSpiner3:before{
    border-top-color: rgba(37, 77, 110,80);
}
.evoSpinera3:before{
    border-top-color: rgba(37, 77, 110,80);
    border-bottom-color: rgba(37, 77, 110,80);
}
.evoSpinerb3:before{
    border-top: 2px solid rgba(37, 77, 110,80);
}

.evoMater{
    width: 100%;
    height: 2.9em;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

.evoMater1::-moz-meter-bar{
    background: #66AFE9 !important;
    border-radius: 0.4em;
}
.evoMater1::-webkit-meter-optimum-value{
    background: #66AFE9 !important;
    border-radius: 0.4em;
}

.evoMater2::-moz-meter-bar{
    background: rgba(0, 0, 0,80) !important;
    border-radius: 0.4em;
}
.evoMater2::-webkit-meter-optimum-value{
    background: rgba(0, 0, 0,80) !important;
    border-radius: 0.4em;
}

.evoMater3::-moz-meter-bar{
    background: rgba(37, 77, 110,80) !important;
    border-radius: 0.4em;
}
.evoMater3::-webkit-meter-optimum-value, .evoMater3::-webkit-meter-even-less-good-value, .evoMater3::-webkit-meter-suboptimum-value{
    background: rgba(37, 77, 110,80) !important;
    border-radius: 0.4em;
}

.evoMater4::-moz-meter-bar{
    background: rgba(247, 150, 71,80) !important;
    border-radius: 0.4em;
}
.evoMater4::-webkit-meter-optimum-value{
    background: rgba(247, 150, 71,80) !important;
    border-radius: 0.4em;
}

.evoMater5::-moz-meter-bar{
    background: rgba(182, 52, 52,80) !important;
    border-radius: 0.4em;
}
.evoMater5::-webkit-meter-optimum-value{
    background: rgba(182, 52, 52,80) !important;
    border-radius: 0.4em;
}

.evoMater6::-moz-meter-bar{
    background: rgba(0, 204, 0,80) !important;
    border-radius: 0.4em;
}
.evoMater6::-webkit-meter-optimum-value{
    background: rgba(0, 204, 0,80) !important;
    border-radius: 0.4em;
}

.evoMater7::-moz-meter-bar{
    background: rgba(0, 149, 182,80) !important;
    border-radius: 0.4em;
}
.evoMater7::-webkit-meter-optimum-value{
    background: rgba(0, 149, 182,80) !important;
    border-radius: 0.4em;
}

.evoMater8::-moz-meter-bar{
    background: rgba(48, 214, 200,80) !important;
    border-radius: 0.4em;
}
.evoMater8::-webkit-meter-optimum-value{
    background: rgba(48, 214, 200,80) !important;
    border-radius: 0.4em;
}

.evoMater9::-moz-meter-bar{
    background: rgba(191, 191, 191,80) !important;
    border-radius: 0.4em;
}
.evoMater9::-webkit-meter-optimum-value{
    background: rgba(191, 191, 191,80) !important;
    border-radius: 0.4em;
}