@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
    --background-color: 255 255 255;
    --foreground-color: 0 0 0;
    --main-color: 0 69 173;
    --main-color-fore: 255 255 255;
    --secondary-color: 243 40 55;
    --secondary-color-fore: 255 255 255;
    --submenu-color: 0 69 173;
    --submenu-color-fore: 255 255 255;

    --header-bg-opacity: 0.85;
    --submenu-bg-opacity: 0.98;
    --player-bg-opacity: 0.92;

    --blur-amount: 30px;

    --overplayer-height: 80px;

    --zone-selector-backdrop-opacity: 0.55;
    --zone-selector-blur-amount: 10px;
}



@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}



body
{
    background: rgb(var(--background-color));
    color: rgb(var(--foreground-color));
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}


body.op_expanded, body.zs_opened {
    overflow: clip;
    overscroll-behavior: none;
}


.container
{
    width: 100%;
    max-width: 1250px;
    padding: 20px;
    margin: 0px auto;
    box-sizing: border-box;
}

.nopadding
{
    padding: 0px !important;
}

header
{
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    height: auto;
    z-index: 1100;
    background-color: rgb(var(--background-color) / var(--header-bg-opacity));
    color: rgb(var(--main-color));
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    transition: background-color 2s ease;
    
    -webkit-backdrop-filter: blur(var(--blur-amount));
    backdrop-filter: blur(var(--blur-amount));
}


    header .burgermenu {
        display: none;
    }

    header .burgermenu button {
        background: transparent;
        border: none;
        padding: 30px;
        font-size: 30px;
        font-family: "Material Icons";
        cursor: pointer;
        position: relative;
        z-index: 2000;
    }

        header .burgermenu_open {
            display: block;
        }

        header .burgermenu_close {
            display: none;
        }

            body.burgermenu header .burgermenu_open {
                display: none;
            }

            body.burgermenu header .burgermenu_close {
                display: block;
            }

    nav#burgermenu {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background: rgb(var(--background-color) / var(--header-bg-opacity));
        backdrop-filter: blur(var(--blur-amount));
        -webkit-backdrop-filter: blur(var(--blur-amount));
        z-index: 1900;
        padding: 2vh 4vw;
        font-size: 1.2rem;
        display: none;
        overflow: scroll;
    }


    body.burgermenu {
        overflow: hidden;
    }
    body.burgermenu nav#burgermenu {
        display: block;
    }

    nav#burgermenu #burgermenu_close {
        display: block;
        width: 100%;
        font-family: "Material Icons";
        font-size: 30px;
        border-radius: 10px;
        border: none;
        background-color: rgb(var(--main-color));
        color: rgb(var(--main-color-fore));
        cursor: pointer;
        padding: 20px 0px;
    }

    header .logo {
        width: auto;
        padding: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        header .logo a::before {
            display: none;
        }

        header .logo img
        {
            padding: 5px;
            height: 60px;
            width: auto;
            max-width: 90%;
            object-fit: contain;
        }




header nav.menu ul
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    gap: 5px 30px;
    padding: 0px;
    margin: 0px;
}

    header nav.menu li a
    {
        position: relative;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: rgb(var(--main-color));
        font-weight: bold;
        font-size: large;
        padding: 0;
        outline-offset: 3px;
    }

    header nav.menu li a::before {
        background-color: rgb(var(--main-color)) !important;
    }

    header nav.menu li a.hassubmenu::after
    {
        content: " ▾";
        font-size: medium;
        margin-left: 5px;
    }

    header nav.menu li a::before
    {
        content: "";
        position:absolute;
        left: 0px;
        bottom: 0px;
        height: 3px;
        border-radius: 3px;
        width: 100%;
        background-color: white;
        transform-origin: center center;
        transform: scaleX(0);
        transition: transform 500ms cubic-bezier(.2,.9,.2,1);
        will-change: transform;
    }

    header nav.menu li a:hover::before
    {
        transform: scaleX(1);
    }
    header nav.menu li > ul.submenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px 0;
        z-index: 1050;
        background-color: rgb(var(--submenu-color) / var(--submenu-bg-opacity));
        color: rgb(var(--submenu-color-fore));

        /* visual hide state */
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;

        /* delay the hide transition by 2s (keeps it visible after mouse leaves) */
        transition: opacity .25s ease 0s, transform .25s ease 0s;

        -webkit-backdrop-filter: blur(var(--blur-amount));
        backdrop-filter: blur(var(--blur-amount));

        display: flex;
        flex-direction: row;
        justify-content: center;
    }


    header nav.menu li > ul.submenu li a {
        color: rgb(var(--submenu-color-fore));
    }

    /* show immediately on hover or keyboard focus; remove delay for showing
       also keep open when the mouse/focus is inside the submenu itself */
    header nav.menu li ul.submenu.opened {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition-delay: 0s;
    }


    header:has(.submenu.opened) {
        background-color: rgb(var(--background-color));
        transition: background-color 0.3s ease;
    }



    


#page_main_content
{
    min-height: 100vh;
}



a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

a::before
{
    content: "";
    position:absolute;
    left: 0px;
    bottom: 0px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 500ms cubic-bezier(.2,.9,.2,1);
    will-change: transform;
}

a:hover::before
{
    transform: scaleX(1);
}



:is(h1, h2, h3, h4, h5, h6)
{
    font-weight: 700;
    margin: 0px 0px 15px 0px;
    padding: 0px;
}

h1 { font-size: 36px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

:is(h1, h2, h3, h4, h5, h6) mark
{
    background: none;
    color: inherit;
}



section.toggle:nth-child(odd)
{
    background-color: rgb(var(--main-color));
    color: rgb(var(--main-color-fore));
}

section.toggle:nth-child(even)
{
    background-color: rgb(var(--background-color));
    color: rgb(var(--foreground-color));
}






section.backlink
{
    text-align: center;
    padding: 30px 0px;
}

section.toggle:nth-child(even) ~ section.backlink, section.gray ~ section.backlink
{
    background: #f5f5f5;
}

.backlink a
{
    display: inline;
    margin: 0px auto;
    padding: 8px 20px;
    background: rgb(var(--secondary-color));
    color: white;
    font-size: 22px !important;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 5px;
}

.backlink a::before {
    display: none;
}





footer
{
    width: 100%;
    background-color: rgb(var(--main-color));
    border-top: 8px solid rgb(var(--secondary-color));
    color: white;
}


footer .headerrow
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

footer .headerrow .logo
{
    width: 12%;
}

footer .logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



footer .social ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

footer .social a {
    font-size: 2em;
}



footer nav.menu ul
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    list-style: none;
    gap: 50px;
    padding: 0px;
    margin: 0px 0px 30px 0px;
}

    footer nav.menu .linkl1 a
    {
        font-size: 1.5em;
        font-weight: bold;
    }

    footer nav.menu .linkl2 a
    {
        font-size: 1em;
        font-weight: normal;
    }

    footer nav.menu ul.submenu
    {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0px;
        margin: 10px 0px 0px 0px;
    }




footer nav.lastmenu ul
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    list-style: none;
    gap: 20px;
    padding: 0px;
    margin: 30px 0px 0px 0px;
}

footer nav.lastmenu a
{
    font-size: .8em;
    color: rgb(var(--main-color-fore));
}



#footer_partners .partners
{
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    overflow-x: auto;
}

#footer_partners .partners li
{
    padding: 0px;
    margin: 2px;
}

#footer_partners .partners li a
{
    display: inline-block;
    white-space: nowrap;
    padding: 2px;
    background-color: white;
}

#footer_partners .partners li img
{
    width: 95px;
    height: 95px;
    object-fit: contain;
}












#overplayer
{
    height: var(--overplayer-height);
    position: sticky;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    box-sizing: border-box;
    background-color: rgb(var(--main-color) / var(--player-bg-opacity));
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    color: rgb(var(--main-color-fore));
    transition: height .5s cubic-bezier(0.09, 0.72, 0.32, 1);
}

#overplayer.op_expanded
{
    height: 100vh;
    z-index: 1200;
}

    #overplayer .container
    {
        padding: 0px;
        height: inherit;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    #overplayer #op_video_player {
        overflow: hidden;
        height: calc(100vh - var(--overplayer-height));
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        #op_video_player_container {
            width: 100%;
            height: inherit;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        #op_video_player_container video {
            height: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            margin: 20px;
            box-sizing: border-box;

            /*display: none;*/
        }

        #op_video_iframe {
            height: 100%;
            width: auto;
            aspect-ratio: 16 / 9;
            border: none;
            display: none;
        }

        .op_expanded #op_video_iframe {
            display: block;
        }

    #overplayer #op_player_bar
    {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        height: var(--overplayer-height);
        padding: 0px 20px;
        box-sizing: border-box;
    }

    #overplayer #op_play_btn
    {
        display: block;
        width: 80px;
        height: 80px;
        cursor: pointer;
        border: 0px solid transparent;
        background: none;
        color: inherit;
        font-family: "Material Icons";
        font-size: 0;
    }

    #overplayer.op_expanded #op_play_btn { display: none; }

    #overplayer.op_played #op_play_btn:after
    {
        content: "pause";
        animation: none;
        font-size: 40px;
    }

    #overplayer.op_stopped #op_play_btn:after
    {
        content: "play_arrow";
        animation: none;
        display: block;
        font-size: 40px;
    }

    #overplayer.op_loading #op_play_btn:after
    {
        content: "sync";
        animation: rotation 2s infinite linear reverse;
        display: block;
        font-size: 40px;
    }

    #overplayer.op_live #op_titrage_live { display: flex; }
    #overplayer.op_podcast #op_titrage_podcast { display: flex; }

    #overplayer .op_titrage
    {
        display: none;
        width: 100%;
        box-sizing: border-box;
    }


        #overplayer .op_titrage_picture
        {
            width: auto;
            margin-right: 10px;
        }

            #overplayer .op_titrage_picture img
            {
                height: 60px;
                width: 60px;
                margin: 10px;
                box-sizing: border-box;
                border-radius: 10px;
                object-fit: cover;
                background: black;
            }

        #overplayer .op_titrage_text
        {
            width: 100%;
            display: flex;
            flex-direction: column;
            width: 100%;
            justify-content: center;
            font-size: 18px;
        }

            #overplayer .op_titrage_artist
            {
                font-weight: bold;
                text-transform: uppercase;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 100%;
            }

            #overplayer .op_titrage_title
            {
                font-style: italic;
                text-transform: none;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 100%;
            }

            #overplayer .op_titrage_seek
            {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                justify-content: flex-start;
                width: 100%;
                font-family: "Helvetica";
                gap: 10px;
            }

                #overplayer #op_podcast_seeker_range
                {
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    background: transparent;
                    line-height: 100%;
                    height: inherit;
                    width: 100%;
                }
        
                #overplayer #op_podcast_seeker_range::-webkit-slider-thumb
                {
                    -webkit-appearance: none;
                    appearance: none;
                    border: 0px solid transparent;
                    height: 15px;
                    width: 15px;
                    border-radius: 50%;
                    transform: translateY(-5px);
                    background: rgb(var(--main-color-fore));
                    cursor: pointer;
                }
        
        
                #overplayer #op_podcast_seeker_range::-webkit-slider-runnable-track
                {
                    border: 0px solid transparent;
                    background: rgb(var(--main-color-fore) / .5);
                    height: 5px;
                    width: 100%;
                    border-radius: 2.5px;
                    cursor: pointer;
                }
    

                
        #overplayer #op_titrage_go_video
        {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: end;
            align-items: center;
        }
        
            #op_titrage_go_video a
            {
                    font-family: "Material Icons";
                    font-size: 25px;
                    color: rgb(var(--main-color-fore));
                    text-decoration: none;
                    padding: 10px;
                    max-height: 100%;
                    text-align: center;
            }

            #op_titrage_go_video a::before
            {
                display: none;
            }

                #overplayer #op_titrage_live_video_link { display: block; }
                #overplayer #op_titrage_close_live_video_link { display: none; }

                #overplayer.op_expanded #op_titrage_live_video_link { display: none; }
                #overplayer.op_expanded #op_titrage_close_live_video_link { display: block; }

        #overplayer #op_titrage_like
        {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: end;
            align-items: center;
        }

            #overplayer.op_podcast #op_titrage_like
            {
                display: none;
            }

            #overplayer #op_titrage_like a
            {
                font-family: "Material Icons";
                font-size: 25px;
                color: rgb(var(--main-color-fore));
                text-decoration: none;
                padding: 10px;
                max-height: 100%;
                text-align: center;
            }

            #overplayer #op_titrage_like a::before
            {
                display: none;
            }
    
        #overplayer #op_titrage_back_to_live
        {
            height: 100%;
        }

            #overplayer #op_titrage_back_to_live a
            {
                color: rgb(var(--main-color-fore));
                font-family: "Material Icons";
                font-size: 30px;
                padding: 20px;
                display: block;
                text-decoration: none;
            }

            #overplayer #op_titrage_back_to_live a::before
            {
                display: none;
            }


    #overplayer #op_other
    {
        width: 300px;
        height: inherit;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: end;
    }

        #overplayer #op_other_volume_icon
        {
            font-family: "Material Icons";
            font-size: 20px;
        }

        #overplayer #op_other_volume
        {
            height: inherit;
        }

        #overplayer #op_volume_range
        {
            -webkit-appearance: none;
            appearance: none;
            background: transparent;
            line-height: 100%;
            height: inherit;
            width: 150px;
            display: inline-block;
        }

        #overplayer #op_volume_range::-webkit-slider-thumb
        {
            -webkit-appearance: none;
            appearance: none;
            border: 0px solid transparent;
            height: 15px;
            width: 15px;
            border-radius: 50%;
            transform: translateY(-5px);
            background: rgb(var(--main-color-fore));
            cursor: pointer;
        }


        #overplayer #op_volume_range::-webkit-slider-runnable-track
        {
            border: 0px solid transparent;
            background: rgb(var(--main-color-fore) / .5);
            height: 5px;
            width: 100%;
            border-radius: 2.5px;
            cursor: pointer;
        }

    #overplayer #op_audio_obj
    {
        display: none;
    }


    .op_expanded #op_other {
        display: none !important;
    }



#zone_selector_backdrop
{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1000;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    transition:
        backdrop-filter 1s ease 0s,
        -webkit-backdrop-filter 1s ease 0s,
        background-color 1s ease 0s,
        z-index 0s ease 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

    body.zs_opened #zone_selector_backdrop
    {
        backdrop-filter: blur(var(--zone-selector-blur-amount));
        -webkit-backdrop-filter: blur(var(--zone-selector-blur-amount));
        background-color: rgb(var(--background-color) / var(--zone-selector-backdrop-opacity));
        z-index: 9999;
        transition:
            backdrop-filter 1s ease 0s,
            -webkit-backdrop-filter 1s ease 0s,
            background-color 1s ease 0s,
            z-index 0s ease 0s;
    }

#zone_selector {
    background: rgb(var(--background-color) / var(--header-bg-opacity));
    box-shadow: 0px 5px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity .25s;
    border-radius: 10px;
    overflow: hidden;
    max-width: 40vw;
    min-width: 300px;
}

    body.zs_opened #zone_selector {
        opacity: 1;
    }

.zs_title {
    background-color: rgb(var(--main-color) / var(--header-bg-opacity));
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    color: rgb(var(--main-color-fore))
}

    .zs_title h2 {
        font-size: 14pt;
        margin: 0px;
        padding: 10px;
    }

    .zs_title button {
        cursor: pointer;
        border: none;
        background: none;
        color: inherit;
        padding: 10px;
        font-family: "Material Icons";
    }

.zs_content {
    padding: 10px;
}

    .zs_content ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .zs_content li {
        text-align: center;
    }

    .zs_content a {
        color: rgb(var(--main-color));
        font-weight: bolder;
    }







    


.article_list ul
{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2vw;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.article_list ul li
{
    box-sizing: border-box;
    font-size: 14px;
}

.article_list ul li.nolink
{
    padding: 20px;
}

.item_list ul li
{
    display: block;
    box-sizing: border-box;
    width: 100%;
}

.center_list ul
{
    justify-content: center;
}

.article_list ul li a
{
    display: block;
    padding: 20px;
    text-decoration: none;
    border-radius: 10px;
}

.article_list ul li a::before {
    display: none;
}

.article_list ul li a:hover
{
    background-color: rgba(0,0,0,.1);
    backdrop-filter: blur(var(--blur-amount)) saturate(120%);
    -moz-backdrop-filter: blur(var(--blur-amount)) saturate(120%);
    -webkit-backdrop-filter: blur(var(--blur-amount)) saturate(120%);
}

section.dark ul li a:hover
{
    background-color: rgba(255,255,255,.05);
}

.article_list ul li span
{
    display: block;
}

.article_list ul li .article_list_thumb
{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: transparent;
}

.item_list .article_list_thumb
{
    padding-bottom: 100% !important;
}

.article_list ul li .article_list_thumb img
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_list ul li .article_list_title
{
    width: 100%;
    font-size: 22px;
    padding: 10px 0px;
    text-align: justify;
}

section.dark ul li .article_list_title
{
    color: white;
}

.article_list ul li .article_list_meta
{
    width: 100%;
    padding: 0px 0px 10px 0px;
    text-align: left;
    color: #969696;
}

section.dark ul li .article_list_meta
{
    color: #bbb;
}

.article_list ul li .article_list_chapo
{
    text-align: justify;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article_list ul li .article_list_meta strong
{
    color: black;
}

section.dark ul li .article_list_meta strong
{
    color: white;
}

.item_list .article_list_title, .item_list .article_list_meta, .item_list .article_list_chapo
{
    text-align: center !important;
}

section.dark .article_list_chapo
{
    color: white;
}





ul.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0px;
    list-style: none;
}

ul.pagination li {
    display: block;
    font-size: 20px;
    background-color: rgba(0,0,0,.1);
    padding: 10px;
}




@media (max-width: 1000px) {
    footer .headerrow .logo
    {
        display: none;
    }

    footer .headerrow .content {
        width: 100%;
    }

    footer nav.menu ul.submenu
    {
        align-items: center;
        margin: 0;
    }
}



@media (max-width: 950px) {
    header {
        flex-direction: column;
    }

    header .logo img {
        height: 40px;
    }

    header nav.menu ul {
        justify-content: center;
    }

    .article_list ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 750px) {
    /*#overplayer {
        display: none;
    }*/

    #op_titrage_like,
    #op_titrage_picture_live,
    #op_titrage_go_video {
        display: none !important;
    }

    footer nav.menu ul
    {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .article_list ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .article_list ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}


@media (max-width: 500px) {

    header nav.menu {
        display: none;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    header .burgermenu {
        display: block;
    }

}


@media (max-width: 400px) {
    #op_titrage_text_live {
        display: none !important;
    }
}

/*





footer section
{
    margin: 15px 0px;
}


footer .footer_title
{
    font-size: 22px;
    margin: 0px;
    padding: 0px;
}


footer a
{
    color: white;
}

footer nav ul
{
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
    margin: 0px 0px 20px 0px;
}

footer nav li
{
    padding: 0px;
    margin: 0px;
}

footer nav a
{
    text-transform: uppercase;
    padding: 3px 10px;
    text-decoration: none;
    font-weight: 700;
}

footer nav a:hover
{
    text-decoration: underline !important;
}



#newsletter
{
    width: 100%;
    text-align: center;
}

#newsletter_fields, #newsletter_submit
{
    display: inline;
}



#footer_social
{
    text-align:center;
}

#footer_social ul
{
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

#footer_social li
{
    margin: 0px 10px;
    padding: 0px;
}

#footer_social a
{
    font-family: socicon;
    font-size: 26px;
    background: transparent;
    text-decoration: none;
    padding: 5px;
}


#footer_social_widget
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
}



#last_diff
{
    margin: 20px 0px;
    text-align: justify;
    font-size: .8em;
    opacity: .7;
}

#credits
{
    width: 100%;
    font-size: 12px;
    color: white;
    background: rgb(var(--secondary-color));
}

    #credits .container {
        opacity: 0.5;
    }

    #credits a {
        color: inherit;
    }










section.dark
{
    background-color: #333 !important;
    color: white !important;
}




.info_list ul
{
    display: flex;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;;
    align-items: stretch;
}

.info_list ul li
{
    display: block;
    width: 33.33%;
    box-sizing: border-box;
}

.info_list ul li:nth-child(odd)
{
    background: #f5f5f5;
}

.info_list ul li:nth-child(even)
{
    background: white;
}

.info_list ul li a
{
    display: block;
    text-decoration: none;
    padding: 10px;
    height: 100%;
}

.info_list .home_info_title
{
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
}

.info_list .home_info_meta
{
    display: block;
    font-size: 12px;
    color: #969696;
}

.info_list .home_info_meta strong
{
    color: black;
}

.info_listsection.dark .home_info_meta strong
{
    color: white;
}



.buttonlist .container
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.buttonlist a
{
    margin: 10px;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0,0,0,.1);
    font-size: 20px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
}



ul.pagination
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    margin: 15px 0px;
    padding: 0px;
}

ul.pagination li
{
    display: block;
    font-size: 20px;
    background-color: rgba(0,0,0,.1);
    margin: 10px;
}

ul.pagination li a, ul.pagination li span
{
    display: block;
    padding: 10px;
    text-decoration: none;
}

ul.pagination li.pagination_act span, ul.pagination li a:hover
{
    background-color: rgba(0,0,0,.1);
}

ul.pagination .pagination_cut
{
    background-color: transparent;
}





a
{
    color: black;
    text-decoration: underline;
}

a:hover
{
    text-decoration: none;
}

a img
{
    border: 0px;
}

h1, h2, h3, h4, h5, h6
{
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    margin: 25px 0px;
    padding: 0px;
}

h1 { font-size: 50px; }
h2 { font-size: 46px; }
h3 { font-size: 40px; }
h4 { font-size: 38px; }
h5 { font-size: 30px; }
h6 { font-size: 24px; }

h1 mark,
h2 mark,
h3 mark,
h4 mark,
h5 mark,
h6 mark
{
    color: rgb(var(--main-color));
    font-weight: bold;
    background: none;
}

section.dark h1 mark,
section.dark h2 mark,
section.dark h3 mark,
section.dark h4 mark,
section.dark h5 mark,
section.dark h6 mark
{
    color: rgb(var(--main-color));
}


h1.main,
h2.main,
h3.main,
h4.main,
h5.main,
h6.main
{
    text-align: center;
    margin-top: 0px;
}

div.intro
{
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}


.content img
{
    max-width: 100% !important;
    height: auto !important;
}

.content iframe
{
    max-width: 100%;
}

.content a
{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





#disclaimer_cookies
{
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    width: auto;
    height: auto;
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px !important;
    font-family: "Tahoma", sans-serif;
    z-index: 20000;
    box-shadow: 0px 20px 50px black;
}

#disclaimer_cookies a
{
    color: white;
}

#cookies_accept
{
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    background-color: rgba(255,255,255,.3);
    padding: 10px 20px;
    margin: 10px 0px;
    border-radius: 3px;
}



@media (max-width: 1000px)
{

    #banner .container
    {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #banner #logo
    {
        width: 100%;
        text-align: center;
    }

    #banner #titrage
    {
        width: auto;
        height: 100px;
        margin-top: 25px;
    }

    #titrage_pochette, #titrage_pochette img
    {
        width: 100px;
        height: 100%;
    }

    #titrage_texte
    {
        width: 300px;
        padding: 5px;
    }

    #titrage_like
    {

    }

    #titrage_play a
    {
        line-height: 100px;
    }

    #titrage_play a img
    {
        height: 50px;
    }

    #banner .container > div
    {
        margin: 0px;
    }



    .article_list ul li
    {
        width: 33.3%;
    }

    .item_list ul li
    {
        width: 25%;
    }


    header {
        position: sticky;
    }

    #page_main_content
    {
        margin-top: 0px;
    }


    #footer_social_widget
    {
        flex-direction: column !important;
    }

}




@media (max-width: 800px)
{

    body
    {
    }

    .visible #quickmenu
    {
        display: none !important;
    }

    header
    {
        position: static;
    }

    .headersticky #banner #logo img, #banner #logo img
    {
        width: 90%;
        max-width: 90%;
        height: auto;
        max-height: auto;
        object-fit: contain;
    }


    #topbar
    {
        background-color: rgba(255,255,255,.9);
        height: auto;
    }

    #topbar a
    {
        font-size: 22px !important;
        line-height: 59px !important;
    }

    #topbar .container
    {
        padding: 0px;
    }

    #topbar-today
    {
        display: none;
    }

    #topbar-social
    {
        width: 100%;
    }

    #topbar-social ul
    {
        justify-content: center;
    }


    #banner #logo img
    {
        height: 100px;
        width: auto;
    }

    #banner #titrage
    {
        display: none;
    }


    #mainmenu
    {
    }

    #mainmenu ul
    {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: stretch;
        justify-content: center;
    }
    
    #mainmenu ul a
    {
        display: block;
        font-size: 1.4em;
        padding: 6px 15px;
    }


    #overplayer
    {
        height: auto;
    }

    #overplayer .container
    {
        flex-direction: row;
    }

        #op_play
        {
        }

        #op_titrage_like
        {
            display: none !important;
        }

        #op_other
        {
            display: none !important;
        }



    footer nav ul
    {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    footer nav li
    {
        display: block;
        width: 100%;
    }

    footer nav a
    {
        display: block;
        width: 100%;
        padding: 0px;
        font-size: 24px;
        line-height: 50px;
        text-align: center;
    }

    footer nav a:hover
    {
        text-decoration: none !important;
        background-color: rgba(255,255,255,.2);
    }





    .article_list ul li
    {
        width: 50%;
    }

    .item_list ul li
    {
        width: 33.33%;
    }


}


@media (max-width: 600px)
{

    #home_slider
    {
        /*display: none;* /
    }

    .article_list ul li
    {
        width: 100%;
    }

    .item_list ul li
    {
        width: 50%;
    }


    .info_list ul li
    {
        width: 100%;
    }

    .info_list ul li a
    {
        padding: 30px;
    }

    #overplayer
    {
    }

        #op_titrage_podcast_seek
        {
            display: none !important;
        }





    #footer_partners .partners
    {
        flex-wrap: wrap;
        background-color: transparent;
    }



    #footer_social_widget
    {
        display: none;
    }


}



@media (max-width: 400px)
{

    #overplayer
    {
    }

        #overplayer .op_titrage
        {
            background: transparent;
        }

        #overplayer .op_titrage_picture
        {
            display: none !important;
        }

} /* */






