/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



.circular-progress{
    position: relative;
    height: 266.66px;
    width: 266.66px;
    border-radius: 50%;
    background: conic-gradient(#011345 3.6deg, #ededed 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px !important;

}
.circular-progress::before{
    content: "";
    position: absolute;
    height: 195.54px;
    width: 195.54px;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px !important;
}   
.progress-value{
    position: relative;
    font-size: 71.10px;
    font-weight: 600;
    color: #011345;
}

.circular-progress {
    text-align: center;
    margin: 0 auto;
}



/* Adicione margem à esquerda em dispositivos xs (extra small) */
@media (max-width: 575.98px) {
    .custom-margin-xs {
        margin-left: 1rem;
    }

    .circular-progress{
        position: relative;
        height: 133.33px;
        width: 133.33px;
        border-radius: 50%;
        background: conic-gradient(#011345 3.6deg, #ededed 0deg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        padding: 10px !important;
    
    }
    .circular-progress::before{
        content: "";
        position: absolute;
        height: 97.77px;
        width: 97.77px;
        border-radius: 50%;
        background-color: #fff;
        padding: 10px !important;
    }   
    .progress-value{
        position: relative;
        font-size: 35.55px;
        font-weight: 300;
        color: #011345;
    }
}

/* Adicione margem à esquerda em dispositivos sm (small) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .custom-margin-sm {
        margin-left: 6rem; /* Ajuste o valor da margem à esquerda conforme necessário */
    }
}

/* Adicione margem à esquerda em dispositivos md (medium) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .custom-margin-md {
        margin-left: 13rem; /* Ajuste o valor da margem à esquerda conforme necessário */
    }
}

