/*
Note that this progressbar css file is for rendering progressbar with known & static values 
To render progressbar with dynamic values, refer to the practice tests js file for reference
*/

.progress-wrapper {
    padding: 0 0 10px;
}

.progress {
    background-color: #ebebeb;
    border-radius: 6px;
    width: 100%;
    height: 10px;
    box-shadow: none;
    overflow: visible;
    margin-bottom: 2px;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.progress .progress-bar {
    background-color: #87c52e;
    border-radius: 6px;
    box-shadow: none;
    position: relative;
}

.progress .progress-bar .value-min, 
.progress .progress-bar .value-current {
    display: block;
    position: absolute;
}

.progress .progress-bar .value-min {
    bottom: -25px;
    left: 0px;
    width: 50px;
    text-align: left;
    color: #333;
}

.progress .progress-bar .value-current {
    min-width: 48px;
    padding: 2px 3px;
    border-radius: 20px;
    color: #fff;
    top: -35px;
    right: -23px;
    background-color: #87c52e;
}

.progress .progress-bar .value-current:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid #87c52e;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.progress .progress-bar .value-current.red {
	background-color: #ff6045;
}

.progress-wrapper .target {
    font-size: 12px;
    text-align: right;
    font-family: "Roboto-Medium";
    margin-bottom: 0;
    margin-top: 6px;
}

.progress-wrapper .target .taget-point {
    font-size: 14px;
}


.progress-wrapper .target .target-tooltip {
    top: -2px;
    position: relative;
}

.progress-wrapper .target img {
    margin-left: 3px;
}

.progress-wrapper .target .target-tooltip > span {
	width: 185px;
    position: absolute;
    right: -12px;
    top: 25px;
    font-size: 12px;
    color: #666;
    padding: 7px;
    text-align: left;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    background-color: #ebebeb;
    z-index: 99;
    border-radius: 5px;
    display: none;	
}

@media only screen and (min-width: 992px) {
	.progress-wrapper .value-min .target-tooltip > span {
	    left: -5px;
	    right: auto;
	}	
}

.progress-wrapper .target .target-tooltip > span:before {
	content: "";
    position: absolute;
    top: -8px;
    right: 10px;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ebebeb;
}

.progress-wrapper .target .target-tooltip:hover > span {
	display: block;
}


