/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}*/


.progressbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    margin: 0;
}
.circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.circle::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #001f3f;
    opacity: 0.8;
}
.circle::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    border: 10px solid #4d4c51;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.75), 0 -2px 2px rgba(255,255,255,0.5), inset 0 4px 2px rgba(0,0,0,0.25), inset 0 -2px 2px rgba(255,255,255,0.5);
}
.circle .number {
    position: relative;
    color: #fff;
    z-index: 10;
    line-height: 1em;
    font-size: 1.4em;
}
.progressbar-container .circle h4 {
    position: relative;
    color: #fff;
    z-index: 10;
    font-weight: 500;
    font-size: 0.6em;
    text-transform: uppercase;
    line-height: 0.6em;

}
.progressbar-container .circle span {
    font-weight: 500;
    font-size: 0.5em;
}

.progress-box {
 display: flex;
 
 padding-left: 20px;

}

.progress-box .rect {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 120px;
}

.progress-box .rect::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 40px;
    border-radius: 10px;
    background: #333;

    border: 8px solid #4d4c51;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.75), 0 -2px 2px rgba(255,255,255,0.5), inset 0 4px 2px rgba(0,0,0,0.25), inset 0 -2px 2px rgba(255,255,255,0.5);
}
.progress-box .rect .rectnum {
    position: relative;
    color: #7FDBFF;
    z-index: 10;
    line-height: 1em;
    font-size: 1.2em;
}