/* Gestion des fonts */
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url(https://static.caradisiac.com/fonts/RobotoCondensed-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(https://static.caradisiac.com/fonts/Roboto-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url(https://static.caradisiac.com/fonts/Roboto-Medium.ttf) format('truetype');
}

/*** Feuille de styles - Affichage du header ***/

/**** Reset ****/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

/**** Colors ****/
:root {
    --white-color: #fff;
    --blue-color: #275591;
    --gray-1-color: #f0f0f0;
    --gray-2-color: #c0c0c0;
    --black-1-color: #444444;
    --green-1-color: #247d00;
}

/**** Pictos ****/
.picto{
    cursor: pointer;
    height: 24px;
    width:24px;
}
.burger {
    background: url(https://static.caradisiac.com/img_site/icons-menu-black.svg) no-repeat;
    margin:13px 0 0 17px;
    display: block;
}
.close {
    background: url(https://static.caradisiac.com/img_site/icons-close-black.svg) no-repeat;
    margin:13px 0 0 17px;
    display: none;
}
.search{
    background: url(https://static.caradisiac.com/img_site/icons-search-black.svg) no-repeat;
    margin:13px 17px 0 0;
    display: block;
}
    @media only screen and (min-width: 992px) {
        .picto.burger, .picto.search {display: none; }
    }

/**** utils ****/
.column-2{
    columns: 2;
}
.column-3{
    columns: 3;
}
.column-5{
    columns: 5;
}
.floatL{
    float: left;
}
.floatR{
    float: right;
}
.truncate1,.truncate2,.truncate3,.truncate4,.truncate5{
    display: -webkit-box!important;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.truncate1{
    -webkit-line-clamp: 1;
}
 .truncate2{
    -webkit-line-clamp: 2;
}
 .truncate3{
    -webkit-line-clamp: 2;
}
 .truncate4{
    -webkit-line-clamp: 4;
}
 .truncate5{
    -webkit-line-clamp: 5;
}
.dNone{
    display: none;
}

/**** boutons ****/
.btn{
    border-radius: 4px;
    font-size: 16px;
    border:none;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: normal;
}
.btn.connection{
    background: url(https://static.caradisiac.com/img_site/icons-user.svg) 13px 9px no-repeat var(--green-1-color);
    background-size: 16px;
    color: var(--white-color);
    width: 223px;
    height: 35px;
    padding-left: 10px;
    font-size: 16px;
}
.btn-close{
    border-radius: 20px;
    color: var(--white-color);
    position: fixed;
    bottom: 30px;
    height: 40px;
    width: 120px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 16px;
    background: url(http://static.local.caradisiac.com/img_site/icons-close-white.svg) 17px 9px no-repeat var(--blue-color);
    background-size: 20px;
    padding-left: 35px;
    z-index: 1000000;
    display: none;
}
.btn-close:hover{
    cursor: pointer;
}

/**** Header ****/
.header-cara{
    text-align: center;
    position: fixed;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    z-index: 5049; /* Niveau max necessaire pour pouvoir utiliser la popin invision - FC-94*/
    top:0;
}
    /* Device Desktop */
    @media only screen and (min-width: 992px) {
        .header-cara {
            /* box-shadow: none; */
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
        }
    }
.header-cara .logo-cara{
    width: 159px;
    height: auto;
    padding: 7px 0;
}
    /* Device Desktop */
    @media only screen and (min-width: 992px) {
        .header-cara .logo-cara{
            width: 265px;
            padding: 12px 0;
        }
    }
nav{
    margin-top:10px;
}
.nav{
    background-color: var(--blue-color);
    height: 41px;
}
    @media only screen and (max-width: 992px) {
        .nav {display: none;}
    }
.navbar {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}
.dropdown {
    float: left;
    overflow: hidden;
} 
.navbar .dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: var(--white-color);
    padding: 10px;
    background-color: inherit;
    margin: 0;
    float: left;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    line-height: normal;
}

.navbar .dropdown .dropbtn a{
    color: var(--white-color);
    text-decoration: none;
}
.navbar .home .dropbtn {
    padding: 0;
}
.navbar .home .dropbtn a{
    background-color: inherit;
    color: var(--black-1-color);
    display: block;
    background: url(https://static.caradisiac.com/img_site/icons-home.svg) 9px 8px no-repeat;
    width: 43px;
    height: 41px;
}
.navbar .home .dropbtn a:hover, .navbar .home .dropbtn.active a{
    background: url(https://static.caradisiac.com/img_site/icons-home-black.svg) 9px 8px no-repeat;
}
.home .dropbtn{
    line-height: 20px;
}
.navSearch .dropbtn {
    background: url(https://static.caradisiac.com/img_site/icons-search.svg) 10px 8px no-repeat;
    width: 45px;
}
.navSearch:hover .dropbtn, .navSearch .dropbtn.active{
    background: url(https://static.caradisiac.com/img_site/icons-search-black.svg) 10px 8px no-repeat;
    width: 45px;
}
.userLink .dropbtn {
    background: url(https://static.caradisiac.com/img_site/icons-user.svg) 10px 8px no-repeat;
    width: 45px;
}
.userLink:hover .dropbtn, .userLink .dropbtn.active{
    background: url(https://static.caradisiac.com/img_site/icons-user-black.svg) 10px 8px no-repeat;
    width: 45px;
}
.userLink .dropbtn{
    line-height: 20px;
}
.navbar a{
    text-decoration: none;
}
.navbar a:hover, .navbar .dropdown:hover .dropbtn,  .navbar .dropdown .dropbtn.active, .navbar .dropdown:hover a{
    background-color: var(--gray-1-color);
    color: var(--black-1-color);
    cursor: pointer;
    transition-duration: 250ms;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--gray-1-color);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    left: 0;
    z-index: 9999;
    overflow: auto;
    top:124px;
    padding-bottom: 18px;
}
.dropdown-content .header {
    padding: 16px;
    color: var(--white-color);
}
.dropdown-content .row {
    max-width: 1200px;
    margin: 0 auto;
}
.navSearch a{
    float: none;
    color: var(--black-1-color)
}
.navbar .dropdown.navSearch,  .navbar .dropdown.userLink{
    float: right;
}
.column {
    float: left;
    padding: 18px 0;
    height: auto;
    width: 30%;
    margin-right: 5%;
}
.column:last-child {
    margin-right: 0;
}
.title-menu{
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid var(--gray-2-color);
    line-height: 2.19;
    color: var(--black-1-color);
    font-size: initial;
}
.column.all-brand{
    width: 70%;
}
.column.list a{
    line-height: 41px;
}
.column.list.top-brand{
    width: 260px;
    margin-right: 30px;
}
.column.list.forum{
    width: 100%;
}
.column.list.forum .title-menu{
    width: 260px;
}
.column.list.forum > div{
    padding :10px 0;
}
.column.megaMenu-left, .column.megaMenu-right{
    text-align: left;
}
.column.megaMenu-left img, .column.megaMenu-right img{
    border-radius: 5px;
}
.column.megaMenu-right{
    margin-right: 0;
}
.column.megaMenu-right .megamenuArticle{
   overflow: hidden;
   margin-bottom: 20px;
}
.column.megaMenu-left .articleTitre a, .column.megaMenu-right .articleTitre a{
    color: var(--black-1-color);
    font-weight: bold;
}
.column.megaMenu-left .articleTitre{
    font-size: 20px;
    padding-top: 10px;
    line-height: 27px;
}
.column.megaMenu-right .articleTitre{
    font-size: 18px;
    line-height: 27px;
}
.column.megaMenu-right img{
    float: left;
    margin-right: 10px;
}
.column.megaMenu-left .title-menu, .column.megaMenu-right .title-menu{
    border: none;
    padding-bottom: 15px;
}
.column.list a {
    float: none;
    color: var(--black-1-color);
    padding: 5px 0;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.column a:hover {
    text-decoration: underline;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.pictoContainer {
    width: 65px;
    line-height: 48px;
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
}
.pictoContainer span{
    display: inline-block;
}

/**** Navigation mobile ****/
.sideNav{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1; 
    background-color: var(--gray-1-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-bottom: 50px;
}
    /* Device Desktop */
    @media only screen and (min-width: 992px) {
        .sideNav {display: none;}
    }
.sideNav.left{
    left: 0;
}
.sideNav.right{
    right: 0;
}
.sideNav .button-container{
    border-bottom: 2px solid var(--gray-2-color);
    padding: 15px 0;
}
.sideNav .dropdown{
    float: none;
    text-align: left;
    font-size: 18px;
}
.sideNav .dropdown-menu{
    display: none;
    padding: 10px 30px;
    border-bottom: 1px solid var(--gray-2-color);
}
.sideNav .dropbtn{
    padding: 15px;
    text-decoration: none;
    color: var(--black-1-color);
    background-color: var(--white-color);
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid var(--gray-2-color);
    line-height: normal;
}
.sideNav .dropbtn:hover{
    cursor: pointer;
}
.sideNav .dropbtn .arrow{
    width: 15px;
    height: 20px;
    right: 15px;
    position: absolute;
    background: url(https://static.caradisiac.com/img_site/icons-arrow-up-grey.svg) -5px -3px no-repeat var(--white-color);
    transform: rotate(180deg);
}
.sideNav .dropbtn .arrow.pictoUp{
    transform: rotate(360deg);
}
.sideNav .dropdown-menu li{
    background-color: var(--gray-1-color);
    list-style: disc;
    list-style-position: inside;
    line-height: 48px;
}
.sideNav .dropdown-menu.forum li {
    list-style: none;
    line-height: 48px;
}
.sideNav .dropdown-menu .title-menu{
    list-style: none;
}
.sideNav a {
    color: var(--black-1-color);
    text-decoration: none;
}
.sideNav a:hover {
    color: var(--black-1-color);
    text-decoration: underline;
    cursor: pointer;
}
.sideNav .searchInput, .nav .searchInput {
    background: url(https://static.caradisiac.com/img_site/icons-search-grey.svg) 98% no-repeat #FFFFFF;
    border:1px solid var(--gray-2-color);
    border-radius:4px;
    color:#444;
    height:40px;
    margin: 15px 0;
    font-size: 16px;
    padding: 10px 53px 10px 10px;
}
.sideNav label, .nav label {
    font-size: 16px;
}
.nav .searchInput {
    width:780px;
}
.sideNav .searchInput{
    width: 92%;
}
.resultBox {
    border-top:1px solid var(--gray-2-color);
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-color: var(--gray-2-color) var(--gray-1-color);
    min-height: 100vh;
    max-height: 100vh;
    padding-bottom: 40px;
    color: var(--black-1-color);
    font-size: 16px;
}
    /* Device Desktop */
    @media only screen and (min-width: 992px) {
        .resultBox {
            padding-bottom: 212px;       
        }
    }

.resultBox li {
    list-style: none;
    text-align: left;
    line-height: 50px;
}
.listResultSearch{
    margin: 0 auto;
    padding: 0 15px;
}
    /* Device Desktop */
    @media only screen and (min-width: 992px) {
        .listResultSearch {
            max-width: 780px;
            overflow: auto;        
        }
    }
.listResultSearch ul li:first-child {
    border-top:1px solid var(--gray-2-color);
}
.sideNav li a.listResultSearchBrand, .nav li a.listResultSearchBrand{
    font-weight: bold;
}
.downloadApp{
    padding: 15px;
    text-align: left;
}
.downloadApp .title{
    line-height: 50px;
    font-size: 16px;
}
.app-apple img{
    width: 135px;
    height: auto;
    margin-right: 8px;
}
.app-google img{
    width: 113px;
    height: auto;
}

/* Boutons social media connection - FC-225 */
.separaText {
    color:#444444;
    display: table;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
    white-space: nowrap;
}
.separaText::before, .separaText::after {
    background: url(data:image/gif;base64,R0lGODlhAQABAPAAAMDAwMlFJiH5BAEAAAEALAAAAAABAAEAAAICRAEAOw==) repeat-x left center;
    content: "";
    display: table-cell;
    width: 50%;
}
.socialconnectButtons{
    background-color: #eff0f1;
    text-align:center;
}
.socialconnectButton{
    border: solid 1px #c0c0c0;
    border-radius: 5px;
    display:inline-block;
    height: 44px;
    margin:10px 15px;
    width: 44px;
}
.connectFB{
    background: url(https://static.caradisiac.com/img_site/logo-facebook.svg) no-repeat center #ffffff;
}
.connectGoogle{
    background: url(https://static.caradisiac.com/img_site/logo-google.svg) no-repeat center #ffffff;
}
.connectApple{
    background: url(https://static.caradisiac.com/img_site/logo-apple.svg) no-repeat center #ffffff;
}

/* Lien deconnexion sur mobile - FC-188 */
.deconnectLinkMobile{font-size:12px;margin-top:8px;}
.deconnectLinkMobile a{color:#444444;}

/* Liste de streams sur mobile - FC-394 */
.dropdown-StreamsContent{
    display:none;
    right:96px;
    top:40px;
    z-index:1;
}
.dropdown-StreamsContentLink{
    margin:8px 10px;
}

.stickyNav{
    display: block;
    width: 100%;
    height: 55px;
    position: fixed;
    bottom: 0;
    background-color: #275591;
}