/**
 * Contador de promociones
 *
 * @author Difadi.com   <soporte@difadi.com>
 * @author Laura Gutiérrez <lgutierrez@difadi.com>
 */

 #promotion-counter {
    text-align: center;
    margin: 0 !important;
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #8cc63fb8;
    z-index: 9;
    padding: 10px 0;
}

#promotion-counter .promotion-counter-title {
    height: 20px;
}

#promotion-counter .promotion-counter-title p {
    margin: 0;
}

#closeDfdTopBar {
    position: absolute;
    right: 15px;
    color: white;
    font-size: 25px;
    padding-top: 5px;
    cursor: pointer;
}

#promotion-counter>p {
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 0px;
    font-size: .8em;
    margin-bottom: 0;
}

#promotion-counter .counter {
    display: flex;
    padding-top: 10px;
    margin: 10px 0 5px 0;
    padding-top: 0 !important;
    padding-bottom: 0px !important;
    font-size: 1.2em;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#promotion-counter .counter .numbers {
    display: flex;
    margin: 0 20px;
}

#promotion-counter .counter .numbers>div {
    width: 80px;
    text-align: center;
}

#promotion-counter .dfd_tempo_tick {
    font-size: 22px;
    font-weight: bolder;
    color: black !important;
}

#promotion-counter .numbers>div>p {
    margin-top: 0.3em;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: black;
}

#promotion-counter .counter .title_counter,
#promotion-counter .counter .button_counter{
    margin: 10px 0;
}
#promotion-counter .counter .title_counter>p {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 900;
}

#promotion-counter .counter .button_counter>a {
    background-color: black;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    height: auto;
    box-shadow: var(--box-shadow);
    border-radius: 25px;
}

#promotion-counter .counter .button_counter>a:hover {
    background-color: var(--color-bg-1);
    color: black;
}

@media(max-width:991px) {
    #promotion-counter .promotion-counter-title {
        height: auto;
    }
}

@media(max-width:768px) {
    #promotion-counter{
        position: relative;
    }
    #promotion-counter .promotion-counter-title span{
        font-size: 12px;
    }
    #promotion-counter .counter{
        margin: 0;
    }
    #promotion-counter .counter .title_counter>p{
        font-size: 13px;
    }

    #promotion-counter .dfd_tempo_tick{
        font-size: 14px;
    }
    #promotion-counter .numbers>div>p{
        font-size: 8px;
    }
    #promotion-counter .counter .button_counter>a{
        font-size: 10px;
    }
    #promotion-counter .counter .numbers>div{
        width: 50px;
    }
    #promotion-counter .counter .title_counter, #promotion-counter .counter .button_counter{
        margin: 0;
    }

    #promotion-counter .counter .button_counter i{
        font-size: 12px;
    }

    #promotion-counter .counter .numbers
    {
        margin: 0 5px;
    }


}