* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --progress-bar-width: 200px;
    --progress-bar-height: 200px;
    --font-size: 2rem;
}

 

.circular-progress {
    width: var(--progress-bar-width);
    height: var(--progress-bar-height);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle {
    position: absolute;
    width: calc(var(--progress-bar-width) - 40px);
    height: calc(var(--progress-bar-height) - 40px);
    border-radius: 50%;
    background-color: lightgrey;
}

.percentage {
    position: relative;
    font-size: 80px; /*var(--font-size);*/
    color: #ff9b1f !important;
}

@media screen and (max-width: 800px) {
    :root {
        --progress-bar-width: 150px;
        --progress-bar-height: 150px;
        --font-size: 1.3rem;
    }
}

@media screen and (max-width: 500px) {
    :root {
        --progress-bar-width: 120px;
        --progress-bar-height: 120px;
        --font-size: 1rem;
    }
}



.button-29 {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono",monospace;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 60px;
}

    .button-29:focus {
        box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    }

    .button-29:hover {
        box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
        transform: translateY(-2px);
    }

    .button-29:active {
        box-shadow: #3c4fe0 0 3px 7px inset;
        transform: translateY(2px);
    }

.pic {
    margin: 10px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.button-19 {
    appearance: button;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
}

    .button-19:after {
        background-clip: padding-box;
        background-color: #1CB0F6;
        border: solid transparent;
        border-radius: 16px;
        border-width: 0 0 4px;
        bottom: -4px;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    .button-19,
    .button-19:focus {
        user-select: auto;
    }

        .button-19:hover:not(:disabled) {
            filter: brightness(1.1);
            -webkit-filter: brightness(1.1);
        }

        .button-19:disabled {
            cursor: auto;
        }

        .button-19:active {
            border-width: 4px 0 0;
            background: none;
        }

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 300px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #fff000;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #fff000;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}

    .ring:before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid #fff000;
        border-right: 3px solid #fff000;
        border-radius: 50%;
        animation: animateC 2s linear infinite;
    }

span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

    span:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #fff000;
        top: -6px;
        right: -8px;
        box-shadow: 0 0 20px #fff000;
    }

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}


.progress {
    position: relative;
    height: 30px;
    width: 500px;
    border: 10px solid #f4a261;
    border-radius: 15px;
}

    .progress .color {
        position: absolute;
        background-color: #5516b1;
        width: 0px;
        height: 15px;
        border-radius: 15px;
        animation: progres 15s infinite linear;
    }

@keyframes progres {
    0% {
        width: 0%;
    }

    25% {
        width: 50%;
    }

    50% {
        width: 75%;
    }

    75% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

.dh {
    animation: dha 6s infinite linear;
}
@keyframes dha {
    0% {
        transform:rotate(0deg)
    }

    25% {
        transform: rotate(25deg) ;
        
    }

    50% {
        transform: rotate(0deg)
    }

    75% {
        transform: rotate(-5deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

.dlh {
    animation: dlha 4s infinite linear;
}

@keyframes dlha {
    0% {
        margin-top:180px;
    }

    25% {
        margin-top: 190px;
    }

    50% {
        margin-top: 180px;
    }

    75% {
        margin-top: 160px;
    }

    100% {
        margin-top: 180px;
    }
}

.dll {
    animation: dlla 5s;
}

@keyframes dlla {
    0% {
        margin-left: 120px;
    }

    25% {
        margin-left: 130px;
        margin-top: 310px;
    }

    50% {
        margin-left: 120px;
        margin-top: 320px;
    }

    75% {
        margin-left: 130px;
        margin-top: 310px;
    }

    100% {
        margin-left: 120px;
        margin-top: 320px;
    }
}


.dlr {
    animation: dlra 5s;
}

@keyframes dlra {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    } 
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


.dt {
    animation: dta 4s infinite linear;
}

@keyframes dta {
    0% {
        transform:rotateZ(10deg)
    }

    25% {
        transform: rotateZ(0deg)
    }

    50% {
        transform: rotateZ(-10deg)
    }

    75% {
        transform: rotateZ(0deg)
    }

    100% {
        transform: rotateZ(10deg)
    }
}


.oh1 {
    animation: oh1a 4s infinite linear;
}

@keyframes oh1a {
    0% {
        transform: rotateY(30deg)
    }

    25% {
        transform: rotateY(0deg)
    }

    50% {
        transform: rotateY(-30deg)
    }

    75% {
        transform: rotateY(0deg)
    }

    100% {
        transform: rotateY(30deg)
    }
}


.oh2 {
    animation: oh2a 5s infinite linear;
}

@keyframes oh2a {
    0% {
        transform: rotateY(30deg);
        height:280px;
    }

    25% {
        transform: rotateY(0deg);
        height: 260px;
    }

    50% {
        transform: rotateY(-30deg);
        height: 280px;
    }

    75% {
        transform: rotateY(0deg);
        height: 260px;
    }

    100% {
        transform: rotateY(30deg);
        height: 280px;
    }
}

.oh3 {
    animation: oh3a 4s infinite linear;
}

@keyframes oh3a {
    0% {
        transform: rotateY(20deg);
        height: 280px;
    }

    25% {
        transform: rotateY(0deg);
        height: 260px;
    }

    50% {
        transform: rotateY(-20deg);
        height: 280px;
    }

    75% {
        transform: rotateY(0deg);
        height: 260px;
    }

    100% {
        transform: rotateY(20deg);
        height: 280px;
    }
}

.oh4 {
    animation: oh4a 6s infinite linear;
}

@keyframes oh4a {
    0% {
        transform: rotateY(20deg);
        height: 280px;
    }

    25% {
        transform: rotateY(0deg);
        height: 260px;
    }

    50% {
        transform: rotateY(-20deg);
        height: 280px;
    }

    75% {
        transform: rotateY(0deg);
        height: 260px;
    }

    100% {
        transform: rotateY(20deg);
        height: 280px;
    }
}

.oh5 {
    animation: oh5a 8s infinite linear;
}

@keyframes oh5a {
    0% {
        transform: rotateY(20deg);
        
    }

    25% {
        transform: rotateY(0deg);
        
    }

    50% {
        transform: rotateY(-20deg);
       
    }

    75% {
        transform: rotateY(0deg);
         
    }

    100% {
        transform: rotateY(20deg);
         
    }
}

.oh6 {
    animation: oh6a 6s infinite linear;
}

@keyframes oh6a {
    0% {
        transform: rotateY(20deg);
    }

    25% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(-20deg);
    }

    75% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(20deg);
    }
}

.ob {
    animation: oba 6s infinite linear;
}

@keyframes oba {
    0% {
        transform: scale(1);
    }



    50% {
        transform: scale(1.1);
    }



    100% {
        transform: scale(1)
    }
}



.kh {
    animation: kha 4s infinite linear;
}

@keyframes kha {
    0% {
        transform: rotateX(30deg);
        
    }

    25% {
        transform: rotateX(0deg)
    }

    50% {
        transform: rotateX(-30deg);
        
    }

    75% {
        transform: rotateX(0deg)
    }

    100% {
        transform: rotateX(30deg);
      
    }
}
