/*---Transition---*/
.transition{
    -webkit-transition: all 0.5s ease 0s !important;
    -moz-transition: all 0.5s ease 0s !important;
    -ms-transition: all 0.5s ease 0s !important;
    -o-transition: all 0.5s ease 0s !important;
    transition: all 0.5s ease 0s !important;
}
.mod_gammes{
    padding-bottom: 2rem;
    content-visibility: auto;
    contain-intrinsic-size: auto auto;
}
.mod_gammes .colors{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row wrap;
    gap:5px;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.mod_gammes .colors>p{
    color:#0C0F13;
    width:100%;
}
.mod_gammes .colors img,
.mod_gammes .color_button{
    width:25px;
    height:25px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.mod_gammes .slick-slider .slick-track{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row wrap;
    align-items: stretch;
}
.list_gammes{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:15px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .list_gammes{
        grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 600px) {
    .list_gammes{
        grid-template-columns: repeat(1,1fr);
    }
}
.mod_gammes .slider_gammes .slick-slide{
    padding:10px 5px 35px 5px;
    height: inherit !important;
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.list_gammes .gamme_starway,
.mod_gammes .slider_gammes .gamme_starway{
    height:100% !important;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    background-color:white;
    position: relative;
    cursor: pointer;
}
.list_gammes .gamme_starway:hover,.list_gammes .gamme_starway:active,
.mod_gammes .slider_gammes .gamme_starway:hover,.mod_gammes .slider_gammes .gamme_starway:active{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.list_gammes .content_gamme_image,
.mod_gammes .slider_gammes .content_gamme_image{
    height:100% !important;
    transition: transform 330ms ease-in-out;
}
.list_gammes .gamme_starway span,
.mod_gammes .slider_gammes .gamme_starway span{
    position: absolute;
    display:inline-flex;
    justify-content: center;
    text-align: center;
    left:0;
    right:0;
    bottom:0;
    font-family: "Prompt", sans-serif;
    font-weight: 800;
    font-style: italic;
    color:#74838A;
    opacity:0.1;
    font-size:100px;
    line-height: 80px;
}
.list_gammes .gamme_starway .content_gamme,
.mod_gammes .slider_gammes .content_gamme{
    display:none;
    position: absolute;
    top:0;
    width:100%;
    bottom:0;
    right:0;
    flex-flow: column;
    align-items: flex-end;
    text-align: right;
    padding:10px 20px 10px 0;
    font-size: 0.8rem;
}
.list_gammes .gamme_starway .content_gamme .teaser,
.mod_gammes .slider_gammes .content_gamme .teaser{
    font-weight: 600;
    font-size: .9rem;
    max-width:55%;
    margin-bottom: 1rem;
}
@media only screen and (min-width: 1300px) {
    .list_gammes .gamme_starway .content_gamme .teaser,
    .mod_gammes .slider_gammes .content_gamme .teaser{
        max-width:35%;
    }
}
.list_gammes .gamme_starway .content_gamme p,
.mod_gammes .slider_gammes .content_gamme p{
    margin:0;
}
.list_gammes .gamme_starway:hover .content_gamme_image,.list_gammes .gamme_starway:active .content_gamme_image,
.mod_gammes .slider_gammes .gamme_starway:hover .content_gamme_image,.mod_gammes .slider_gammes .gamme_starway:active .content_gamme_image{
    transform: translateX(-200px) translateY(20px) scale(1.4);
}
.content_gamme_image{
    position: relative;
}
.content_gamme_image.qfc::before{
    content:'';
    background-image: url('/bundles/clickonstarway/img/logo-que-choisir-2023.svg');
    background-size:contain;
    background-repeat: no-repeat;
    z-index:5;
    display:block;
    width:80px;
    height:37px;
    position: absolute;
    left:15px;
    top:15px;
}
@media only screen and (min-width: 1300px) {
    .list_gammes .gamme_starway:hover .content_gamme_image,.list_gammes .gamme_starway:active .content_gamme_image,
    .mod_gammes .slider_gammes .gamme_starway:hover .content_gamme_image,.mod_gammes .slider_gammes .gamme_starway:active .content_gamme_image{
        transform: translateX(-280px) translateY(50px) scale(1.4);
    }
    .content_gamme_image.qfc::before{
        width:158px;
        height:74px;
    }
}
.list_gammes .gamme_starway:hover>span,.list_gammes .gamme_starway:active>span,
.mod_gammes .slider_gammes .gamme_starway:hover>span, .mod_gammes .slider_gammes .gamme_starway:active>span{
    display: none;
}
.list_gammes .gamme_starway:hover .content_gamme,.list_gammes .gamme_starway:active .content_gamme,
.mod_gammes .slider_gammes .gamme_starway:hover .content_gamme, .mod_gammes .slider_gammes .gamme_starway:active .content_gamme{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-around;
}
.list_gammes .gamme_starway .content_gamme .content_info,
.list_gammes .gamme_starway .content_gamme .nota_bene,
.mod_gammes .slider_gammes .content_gamme .content_info,
.mod_gammes .slider_gammes .content_gamme .nota_bene{
    max-width:60%;
}
@media only screen and (min-width: 1300px) {
    .list_gammes .gamme_starway .content_gamme .content_info,
    .list_gammes .gamme_starway .content_gamme .nota_bene,
    .mod_gammes .slider_gammes .content_gamme .content_info,
    .mod_gammes .slider_gammes .content_gamme .nota_bene{
        max-width:35%;
    }
}
.list_gammes .gamme_starway .content_gamme h3,
.mod_gammes .slider_gammes .content_gamme h3{
    color:#EF153B;
}
.list_gammes .gamme_starway .content_gamme .technologie,
.mod_gammes .slider_gammes .content_gamme .technologie{
    color:#74838A;
    opacity:0.4;
}
.list_gammes .gamme_starway .content_gamme .button_container,
.mod_gammes .slider_gammes .content_gamme .button_container{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row nowrap;
    gap:20px;
}
.list_gammes .gamme_starway .content_gamme .nota_bene,
.mod_gammes .slider_gammes .content_gamme .nota_bene{
    color:#74838A;
}
.nav_outils,
.nav_outils li{
    list-style-type: none !important;
    margin:0 !important;
}
@media only screen and (max-width: 600px) {
    .nav_outils li{
        padding:0 !important;
    }
}
.mod_gammes .nav_outils{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    gap:5px;
}
.mod_gammes .nav_outils li.qfc{
    display:none;
    /*text-indent:-50000px;
    background-image:url('../img/logo-que-choisir-2023.svg');
    background-size: contain;
    background-position: center;
    display: block;
    width: 50px;
    height: 30px;
    font-size: 0;
    background-repeat: no-repeat;*/
}
.mod_gammes .nav_outils li.new{
    background-color:#11D680;
    color:white;
    padding:0 5px;
    text-transform: uppercase;
}
.mod_gammes .nav_outils li.equip{
    background-color:#ffa600;
    color:white;
    padding:0 5px;
    text-transform: uppercase;
}
.mod_gammes .nav_outils li.premier{
    background-color:#ffa600;
    color:white;
    padding:0 5px;
    text-transform: uppercase;
}
.mod_gammes #nav_gamme{
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-flow: row nowrap;
    gap:10px;
    justify-content: center;
    align-items: center;
}
.mod_gammes .prev-btn, 
.mod_gammes .next-btn{
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color:white;
    border:1px solid rgba(45,12,12,0.2);
    font-size:0.9rem;
    padding:10px;
    color:black;
    font-weight: 600;
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    gap:5px;
}
.mod_gammes #nav_gamme a:hover,
.mod_gammes #nav_gamme a:active{
    background-color:#2D0C0C;
    color:white;
}
.mod_gammes #nav_gamme i{
    color:#EF153B;
    font-size: 1rem;
    margin:0 3px;
    font-weight: 600;
}
@media only screen and (max-width: 844px) {
    .mod_gammes{
        padding-bottom: 2rem;
        padding-top:2rem;
    }
    .sm_gammes{
        display:grid;
        grid-template-columns: repeat(2,1fr);
        gap:10px;
    }
    .sm_gammes>div{
        background-color: white;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        display:flex;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        flex-flow:column;
        justify-content: space-between;
        padding-bottom:10px;
    }
    .sm_gammes .colors{
        justify-content: center;
    }
    .sm_gammes .nav_outils li.qfc,
    .sm_gammes .nav_outils li{
        width:100%;
        text-align: center;
        font-size:0.8rem;
    }
    .sm_gammes .colors img, .sm_gammes .color_button{
        width:19px;
        height:19px;
    }
    .sm_gammes .button_container{
        display:flex;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        flex-flow:column;
        gap:5px;
    }
}