.container-double-chance{
    border-radius: 7px;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
}

.container-double-chance .title-double-chance{
    color: #242424;
    font-size: 1em;
    font-weight: 400;
    margin-bottom: -5px;
}

.container-double-chance .valid-double-chance{
    color: #242424;
    font-size: .85em;
    font-weight: 300;
}

.container-double-chance {
    position: relative;
    width: 100%;
}

.progress-bar-double-chance {
    position: relative;
    width: 100%;
    height: 40px; 
    border-radius: 7px;
    overflow: hidden;
    margin-top: 10px;
}

@keyframes progress-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0; 
    }
}

.progress-bar-double-chance p.timer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: .85em;
    font-weight: 500;
    color: #242424;
    z-index: 1; 
}