
#progressContainer {

    display: flex;

    transition: all 0.08s ease-in-out;

    margin-top: 10px;

    border: #AE9B70 3px solid;

    width: 100%;

    height: 30px;

    max-height: 200px;

    border-radius: 10px;

    overflow: visible !important;

    flex-direction: row;

}

.disabled{
    filter: grayscale(80%);
}
.positionedElement {

    display: block;

    height: 100%;
    width:0!important;

    transition: width,transform 0.2s;

    transform: translateY(30px)!important;

}
.positionedElement:nth-child(2n){
    transform: translateY(-30px)!important;
    transition: width,transform 0.2s;

}
.positionedElement:first-child{
    border-radius: 5px 0 0 5px;
}
.positionedElement:last-child{
    border-radius: 0 5px 5px 0;

}
.frame{
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.frame main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    height: 60vh;
    background-color: white;
    padding:0 10px 0 10px;
    z-index: 0;
}
.frame .hbar{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 90%;
    border: 2px #AE9B70 solid;
    border-radius: 20px;
    transition: all 0.3s;
    min-height: 191px!important;
    min-width: 40px;
    max-width: 206px;
    overflow-x: hidden;
    background-color: white;



}
.hbar .progress-bar{
    align-self: flex-start!important;
    transition: all 1s;
}
.progress-root{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.5s;
    background-position: center;
    padding: 50px;
    min-height: 191px!important;
    max-height: 400px;
}
.iprogress-root:nth-of-type(1){
}
.iprogress-root:nth-of-type(2){
    transform: translateX(-100%);
}
.iprogress-root:nth-of-type(3){
    transform: translateX(-200%);
}
.iprogress-root:nth-of-type(4){
    transform: translateX(-300%);

}
.progress-root img{
    position: absolute;
    z-index: -1;
    object-fit: contain;
    width: 0;
    height: 0;
    transform-origin: center;
    transition: width, height 0.2s ease-in-out;
    transform: translateX(5px);
}
.progress-bar{
    width:100%;
}
.meter{
    position: relative;
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    width: 10px;
    height: 90%!important;
    min-height: 191px!important;
    z-index: -1;

}
.meter span{
    width: 10px;
    height: 5px;
    background-color: #ae9b70;
    display: block;
    border-right: 30px #ae9b70 solid;
    min-height: 1px;
    max-height: 5px;
    box-sizing: border-box;
    text-align: left;
    margin-right: 20px;
}
.meter h5{
    position: absolute;
    left: -25px;
    overflow: visible;
    float: left;
    font-size: 0.8rem;
}
.meter h5:nth-child(1n+2){
    right: 10px;
}
.meter h5:nth-child(1){
    top:-3%
}
.meter h5:nth-child(3){
    top: 7%;
}
.meter h5:nth-child(5){
    top:17%;
}
.meter h5:nth-child(7){
    top:26%;
}
.meter h5:nth-child(9){
    top:36%;
}
.meter h5:nth-child(11){
    top:46%;
}
.meter h5:nth-child(13){
    top:56%;
}
.meter h5:nth-child(15){
    top:65%;
}
.meter h5:nth-child(17){
    top:75%;
}
.meter h5:nth-child(19){
    top:85%;
}
.meter span:first-of-type{
    z-index: -1;
}
.meter span:nth-child(11){
    display: none!important;
}
#firstbar{
    transition-delay: 1.5s;

}
#secondbar{
    transition-delay: 1s;

}
#thirdbar{
    transition-delay: 0.5s;
}
#fourthbar{
}
.viewtable tr{
    padding: 10px;
    transition: background-color 0.3s;

}
.viewtable tr:hover{
    background-color: #AE9B70;
    transition: background-color 0.3s;
}
.viewtable tr{
}
.viewtable tr th{

}
.viewtable th p{
    margin: 0;
}
@media screen and (max-width: 600px){
    .frame main{
        flex-direction: column;
        width: 90%!important;
        height: auto;
    }
    .iprogress-root:nth-of-type(1){
    }
    .iprogress-root:nth-of-type(2){
        transform: translateY(-100%);
    }
    .iprogress-root:nth-of-type(3){
        transform: translateY(-200%);
    }
    .iprogress-root:nth-of-type(4){
        transform: translateY(-300%);

    }

}