#progressbar, #progressbar-element-found {
    position: relative;
    display: table-cell;
    background-color: rgb(188, 195, 195);
    border-radius: 5px;
    width: 60%; 
    height:60%;
}
#progressbarinner, #progressbarinner-element-found, .progress-bar-category-inner {
    background-color: #5900ff;
    height: 100%;
    min-width: 1%;
    border-radius: 5px;
}
#progressbar-element-found {
    margin-top: 60px;
    height: 30px;
}
#progressbartext,#progressbartext-element-found {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3c3c3c;
    font-weight: bold;
    z-index: 1;
}
#new-element-category-name {
    margin-top: 10px;
    color: #3c3c3c;
    font-weight: bold;
}
.progress-bar-inner-td {
    text-align: center; 
    width: 6%;
}
.progress-bar-category-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3c3c3c;
    font-weight: bold;
    z-index: 1;
}
#progress-categories {
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
    background-color: white;
    position: absolute;
    width: 100%;
    padding: 2% 0px;
    display: none;
    border-radius: 5px;
    z-index: 99999;

}
#progress-categories > table {
    margin: auto;
}
.progress-bar-category-icon {
    width: 100%;
    min-width: 30px;
}
.category-progressbar {
    position: relative;
    background-color: rgb(188, 195, 195);
    height:3vh;
    margin-left: 2%;
    border-radius: 5px;
}

@media (orientation: portrait) {
    #progressbar {
        margin: 0% 1%;
    }
    #progressbartext {
        font-size: 16px;
    }
    #progress-categories {
        top: 18%;
    }
    #progressbarinner, .progress-bar-category-inner {
        min-width: 4%;
    }
    .progress-bar-category-text {
        font-size: 11px;
    }
    #progress-categories > table > tbody > tr > td {
        padding: 6px 6px;
    }
        
}
@media (orientation: landscape) {
    #progressbar {
        margin: 0% 2%;
    }
    #progressbartext {
        font-size: 17px;
    }
    #progress-categories {
        bottom: 10%;
    }
    .progress-bar-category-text {
        font-size: 13px;
    }
    #progress-categories > table > tbody > tr > td {
        padding: 8px 12px;
    }
}