.barra-container-temporizador {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    /* border: 1px solid red; */
}

.barra-temporizador {
    /* height: 100%;
    width: 100%; */
    height: inherit;
    border-radius: inherit;
    /* background: green; */
    /* background-color: hsl(120, 100%, 45%); */
    /* transition: width 1s linear, background 0.5s ease; */
    /* background: linear-gradient(
        to right,
        #006400 0%,     
        #90ee90 25%,    
        #ffd700 50%,    
        #ff8c00 75%,    
        #dc143c 100%    
    ); */
}

.barra-temporizador > .conteudo {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transition: width 1s linear;
}

/*
.loader {
    --valor-width: 70px;
    
    width: var(--valor-width);
    height: var(--valor-width);
    border-radius: 50%;
    background: conic-gradient(
        #4caf50 0deg,
        #4caf50 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent 70%, black 71%);
    mask: radial-gradient(farthest-side, transparent 70%, black 71%);
    animation: countdown 5s linear forwards;
    position: relative;
    z-index: 100 !important;
}

.loader.collapsed {
    display: none;
}

.label-temporizador {
    position: absolute;
    z-index: 1000 !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
}
*/

.loader.collapsed {
    display: none;
}

.loader {
    --valor-width: 70px;

    min-width: var(--valor-width);
    height: var(--valor-width);
    border-radius: 50%;
    position: relative;

    background: conic-gradient(
        #4caf50 0deg,
        #4caf50 360deg
    );

    animation: countdown 5s linear forwards;
}

/* cria o "buraco" interno */
.loader::after {
    content: "";
    position: absolute;
    inset: calc(var(--valor-width) * 0.1);
    /* inset: 8px;  */
    /* background: white; */
    background: white;
    border-radius: 50%;
    z-index: 1;
}

/* texto */
.label-temporizador {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    z-index: 2; /* acima do ::after */
    font-weight: bold;
    font-size: calc(var(--valor-width) * 0.25);
}

.loader .content-informator {
    /* display: none; */
    opacity: 0;
    transform: translateY(5px); /* leve subida */
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    width: 100%;
    position: absolute;
    top: -45px;
    min-height: 20px;
    height: 20px;
    align-items: center;
}

.loader .content-informator.show {
    /* transition: .2s; */
    opacity: 1;
    transform: translateY(0);
}

.loader .content-informator::after {
    --width: 6px;
    position: absolute;
    content: "";
    display: block;
    border-left: var(--width) solid transparent;
    border-right: var(--width) solid transparent;
    border-top: var(--width) solid rgb(0 0 0 / 69%);
    top: 20px;
    left: calc(50% - var(--width)); /* borda */

    /* width */
    /* left: calc(50% - var(--width) / 2);  */
}

.loader .content-informator .back {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 69%);
}

.loader .content-informator .informator {
    font-size: 13px;
    position: relative;
    color: white;
    text-shadow: 0 0 4px rgba(0,0,0,0.8);
    margin: 0 auto;
    /* z-index: 1; */
}

@keyframes countdown {
  from {
    background: conic-gradient(#4caf50 0deg, #4caf50 360deg);
  }
  to {
    background: conic-gradient(#4caf50 0deg, #ddd 360deg);
  }
}