:root {
    --tlt-br-cnt: 50;
    --i: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.bodyy {
    /* width: 100vw;
    height: 100vh; */
    /* background: hsl(216, 28%, 7%);; */
    /*
    overflow: hidden; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.prog-side {
    display: flex;
    justify-content: space-between;
}

.prog-side-p {
    font-size: 10px;
    color: #000000;
}

.prog-side-p-2 {
    font-size: 10px;
    color: #a07744;
}

.prog-side-p-3 {
    font-size: 15px;
    color: #a07744;
}

.prog-side-p-4 {
    font-size: 15px;
    color: #000000;
    text-align: end;
}

.progressbar {
    width: 100%;
    justify-content: space-evenly;
}

.progresss {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.progresss i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: -10px;
    transform: rotate(calc(45deg + calc(calc(360deg / var(--tlt-br-cnt)) * var(--i))));
}

.progresss i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(197, 197, 197);
    ;
    width: 3px;
    height: 20px;
    border-radius: 999rem;
    transform: rotate(-45deg);
    transform-origin: top;
    opacity: 0;
    animation: barCreationAnimation 100ms ease forwards;
    animation-delay: calc(var(--i) * 15ms);
    box-shadow: 0 0 4px hsla(0, 0%, 4%, 0.068);
}

.progresss .selected1::after {
    background: #a07744;
    /* box-shadow: 0 0 1px hsl(44, 100%, 50%), 0 0 3px hsl(41, 100%, 30%), 0 0 4px hsl(130, 100%, 10%); */
}

.progresss .selected2::after {
    background: hsl(64, 100%, 50%);
    box-shadow: 0 0 1px hsl(64, 100%, 50%), 0 0 3px hsl(64, 100%, 30%), 0 0 4px hsl(64, 100%, 10%);
}

.progresss .selected3::after {
    background: hsl(8, 100%, 50%);
    box-shadow: 0 0 1px hsl(8, 100%, 50%), 0 0 3px hsl(8, 100%, 30%), 0 0 4px hsl(8, 100%, 10%);
}

.percent-text {
    font-size: 3rem;
    animation: barCreationAnimation 500ms ease forwards;
    animation-delay: calc(var(--tlt-br-cnt) * 15ms / 2);
}

.text1 {
    color: #a07744;
    /* text-shadow: 0 0 1px hsl(44, 100%, 50%), 0 0 3px hsl(41, 100%, 30%), 0 0 4px hsl(130, 100%, 10%); */
    opacity: 0;
    margin: 0;
    font-size: 1rem;
    display: none;
}

.text2 {
    color: hsl(64, 100%, 50%);
    text-shadow: 0 0 1px hsl(64, 100%, 50%), 0 0 3px hsl(64, 100%, 30%), 0 0 4px hsl(64, 100%, 10%);
    opacity: 0;
}

.text3 {
    color: hsl(8, 100%, 50%);
    text-shadow: 0 0 1px hsl(8, 100%, 50%), 0 0 3px hsl(8, 100%, 30%), 0 0 4px hsl(8, 100%, 10%);
    opacity: 0;
}

@keyframes barCreationAnimation {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}