/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 8 Aug, 2017, 6:03:39 PM
    Author     : siddheshgirkar
*/
body{
    background-color:#3F63D3;  
}

.progress-bar{
    position: relative;
    float:left;
    width: 100%;

}
.percent_details{
    font-size: 2em;
    color: #861f41;
    position: absolute;
    bottom: 0em;
    left: 0;
    margin: 0;
    width: 100%;
    line-height: 24px;
    font-family: lato_medium;

}
.percent_txt{                 
    color: #861f41;
    position: absolute;
    width: 100%;
    font-family: lato_light;
    margin: 0em;

}

.barOverflow{ 
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 70px;
    margin: 0 auto;
}

.bar{
    position: absolute;
    top: 0; left: 0;
    width: 150px; height: 150px; 
    border-radius: 50%;
    box-sizing: border-box;
    border: 7px solid lightgray;       
    background: white;
}

.green_color
{
    border-bottom-color: #33cc33; 
    border-right-color: #33cc33;
}

.red_color
{
    border-bottom-color: red; 
    border-right-color: red;
}


@media only screen and (max-width: 900px) and (min-width: 767px){
    .percent_details
    {
        font-size:1.5em;
    }
}

