/**
 * Styles généraux du module Black Friday
 */

.content-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;   
    margin-top: 8px;
    margin-bottom: 5px;
}

.bf-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /*background: #1E1E1E;*/
    /*color: #FFFF00;*/
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
}

.premier-tag {
    text-transform: uppercase !important;
}

.bf-tag .material-symbols-outlined {
    /*font-size: 20px;*/
    display: contents;
}

.selectedFilters .clearAll, .selectedFilters .cf {
    background-color: #EFEFEF;
    color: #176FFF;
}

.bf-head {
    /*background: #1C1C1C;*/
    color: #176FFF;
    display: grid;
    /*grid-template-columns: 25% 75%;*/
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.bf-head .bf-head__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bf-head .bf-head__icon__desktop {
    width: 100%;
}

.bf-head .bf-head__icon__mobile {
    display: none;
}

.bf-head h1 {
    font-size: 3.75rem;
    font-weight: 700;
    color: #FFFF00;
    margin-bottom: .5rem;
}

.bf-head p {
    font-size: 1rem;
    font-weight: 400;
    color: #176FFF;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .bf-head {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .bf-head h1 {
        font-size: 2rem !important;
    }
    .bf-head .bf-head__icon__desktop {
        width: 0%;
        display: none;
    }

    .bf-head .bf-head__icon__mobile {
        display: block;
        width: 100%;
    }
}