/*!

Theme Name: abloc
Theme URI: https://www.abloc-webzine.org
Author: BDPNL
Author URI: https://www.bdpnl.fr
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: basewpsite
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

BaseWPSITE is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/

*/

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- FLEX_BOX -----------------**/
/**--------------------------------------------------------------------------------------**/

.flex-row{
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal; 
    -moz-box-direction: normal; 
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal; 
    -webkit-flex-direction: row; 
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch; 
    -moz-box-align: stretch; 
    -webkit-align-items: stretch; 
    -ms-flex-align: stretch;
    align-items: stretch; 
    list-style: none;
    flex-wrap: nowrap;
}
.flex-column{
    display: -webkit-flex; 
    display: flex;
    -webkit-box-direction: normal; -moz-box-direction: normal; -webkit-box-orient: vertical;
    -moz-box-orient: vertical; -webkit-flex-direction: column; -ms-flex-direction: column;
    flex-direction: column;

    flex-wrap: nowrap;
    -webkit-box-align: center; -moz-box-align: center; -webkit-align-items: center; -ms-flex-align: center;
    align-items: center;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- LES COULEURS 
/**--------------------------------------------------------------------------------------**/

:root {
    --col-1-N4: #45352a;
    --col-1-N3: #604b3c; 
    --col-1-N2: #806450; 
    --col-1-N: #EC9105; 

    --col-1: #fe321f; 

    --col-1-B: #fe8478; 
    --col-1-B2: #feada5; 
    --col-1-B3: #fed6d2; 
    --col-1-B4: #feeae8; 

    --col-H: #ff9512;
    --col-N: #171b1f; 
    --col-B: #faf9f8;
    --col-G: #666666;
    --col-border: rgba(0,0,0, 0.3); 

    --col-GD01 : linear-gradient(to left, #954BFF, #3c664d);

    --fonte-p : 'Encode Sans';
    --fonte-soustitre : 'Encode Sans Condensed';
    --fonte-titre : 'Bureau Grot Condensed';
}

/**--------------------------------------------------------------------------------------**/
/**--------------------------------------------------- PLUGINS- BOUTONS------------------**/
/**--------------------------------------------------------------------------------------**/

.encadre-wrap{
    position: relative;
    padding: 20px 20px 40px;
    margin: 30px 0px 30px;
    background: var(--col-1-B3);
}
.encadre-wrap .encadre-titre{
    margin: 0px;
    z-index: 2;
    color: var(--col-1);
    font-size: 2em;
}
.encadre-wrap .encadre_container{
    z-index: 2;
    font-size: 90%;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- DIVERS -------------------**/
/**--------------------------------------------------------------------------------------**/

.hidden-elem ,
.hidden-elem *,
.hidden-elem > *,
.hidden-elem > * > *
.hidden-elem a {
    width: 0px!important; 
    height: 0px!important;
    margin: 0px!important;
    padding: 0px!important;
    opacity: 0!important;
    z-index: -99;
}
.relative{
    position: relative;
}
.absolute-V{
    position: absolute;
    top: 0px; left: 0px;
    width: 100%; height: 100%;
    z-index: 9;
}
.absolute-C{
    position: absolute;
    top: 50%; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 9;
}
.absolute-I{
    position: absolute;
    top: 100%; left: 0px;
    width: 100%; height: 100%;
}
.tranz{
    -webkit-transition : all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.margin-Z{
    margin: 0px;
}
.sous-titre-H2{
    font-weight: 600;
    font-size: 1.4em;
    line-height: 1.26;
}
a.loadMoreBouton{
    width: 40px; height: 40px;
    padding: 10px;
    border-radius: 100%;
    background: var(--col-1-N2);
}
a.loadMoreBouton:hover{
    background: var(--col-H);
    transform: rotate(360deg);
    transition: all 0.3s ease-in-out;
}
.bouton, button, 
[type="button"], 
[type="reset"], 
[type="submit"] {
    background: var(--col-1-B);
    padding: 6px 12px;
    border-radius: 5px;
    color: var(--col-N);
    -webkit-appearance: inherit;
}
a.bouton, button a, 
[type="button"] a, 
[type="reset"] a, 
[type="submit"] a {
    color: var(--col-B);
}
a.bouton:hover{
    background: var(--col-H);
    color: var(--col-B);
}
.partage #sharing-buttons > a{
    background: var(--col-1); 
}
.partage #sharing-buttons > a:hover{
    background: var(--col-H); 
}
a.icone{
    width: 40px; 
    height: 40px;
    border-radius: 100%;
    padding: 9px;
    line-height: 1;
    margin-right: 20px;
    background: var(--col-N); 
}
a.icone:last-child{
    margin-right: 0px;
}
a.icone:hover{
    background: var(--col-H); 
}
a.icone svg{
    fill: var(--col-B);
}
.b-lazy {
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    max-width: 100%;
    opacity: 0.4;
}
.b-lazy.b-loaded {
    opacity: 1;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 0px solid;
    border-color: transparent;
    border-radius: 5px;
    background: var(--col-1);
    color: var(--col-B);
    font-family: inherit;
    font-size: 100%;
    line-height: 1;
    padding: 0.8em 1em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: var(--col-1-B2);
    cursor: pointer;
}
ul, ol {
    margin: 0 1.5em;
}
legend {
    font-weight: 500;
}
.galerie-logo img{
    width: auto;
    max-height: 80px;
    margin-right: 20px;
}
.galerie-logo .gallery{
    margin-bottom: 0px;
}
.notes-anchor{
    font-size: 90%;
    margin: 0px 4px;
}
.ancre{
    font-size: 90%;
    font-weight: 500;
    color: var(--col-1);
    margin-right: 5px;
}
.exergue{
    font-style: italic;
    margin-left: 30px;
    border-left: 3px solid var(--col-1);
    padding-left: 20px;
}


/**--------------------------------------------------------------------------------------**/
/**------------------------------------------------ ScrollProgressBar -------------------**/
/**--------------------------------------------------------------------------------------**/

#scroll-bar{
    --scroll: 0%;
    background: linear-gradient(to right,var(--col-N) var(--scroll),transparent 0);
    position: fixed;
    width: 100%;
    height: 5px;
    top:0px;
    z-index: 100;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- LOADER 
/**--------------------------------------------------------------------------------------**/

#loading {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    border-top-color: var(--col-1);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    z-index: 99;
}
@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
#overlay-loading{
    display: flex;
    flex-direction: column;
    top: 0px; left: 0px;
    width: 100%; height: 100%;
    position: fixed;
    background: rgba(214, 223, 225, 0.6);
    z-index:98;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: .3s linear;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}
.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin-right: 3%;
    transform: scale( 1.0);
}
.gallery-item:hover img{
    transform: scale( 1.04);
    transition: all 0.2s ease-in-out;
    z-index: 99;
}

.gallery-icon img {
    border: 1px solid var(--col-border);
}
.gallery-columns-2 .gallery-item {
    max-width: 49%;
    margin-right: 2%;
}
.gallery-columns-2 .gallery-item:nth-of-type(2n) {
    margin-right: 0em;
}
.gallery-columns-3 .gallery-item {
    max-width: 31.9%;
    margin-right: 2%;
}
.gallery-columns-3 .gallery-item:nth-of-type(3n) {
    margin-right: 0em;
}
.gallery-columns-4 .gallery-item {
    max-width:  23.5%;
    margin-right: 2%;
}
.gallery-columns-4 .gallery-item:nth-of-type(4n) {
    margin-right: 0em;
}
.gallery-columns-5 .gallery-item {
    max-width: 18.4%;
    margin-right: 2%;
}
.gallery-columns-5 .gallery-item:nth-of-type(5n) {
    margin-right: 0em;
}
.gallery-columns-6 .gallery-item {
    max-width: 15%;
    margin-right: 2%;
}
.gallery-columns-6 .gallery-item:nth-of-type(6n){
    margin-right: 0em;
}
.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}
.gallery-caption {
    display: block;
    margin: 0px;
    font-size: 80%;
}
.single .category-galerie .post-thumbnail{
    display: none;
}
.wp-caption-text {
    font-size: 80%;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- GENERAL ------------------**/
/**--------------------------------------------------------------------------------------**/

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
body {
    background: var(--col-B);
    color: var(--col-N);
    min-height: 100vh;
    justify-content: flex-start;
    margin: 0px!important;
    padding: 0px!important;
    position: relative;
    font-family: var(--fonte-p);
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    font-size: 115%;
    line-height: 1.6;
}

.body-background{
    position: fixed;
    top:0px; left: 0px; 
    width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: var(--col-1-B4);
}
strong{
    font-family: var(--fonte-p);
    font-weight: 600;
    font-style: normal;
}
#page {
    position: relative;
    max-width: 1920px;
    border-radius: 10px;
    width: 100%;
    margin: 0em auto;
    background: var(--col-1-B4);
    z-index: 1;
}
.post, .page {
    margin: 0 0 0em;
    padding: 0 0 0em;
}
.row1600{
    margin: 0px auto;
    max-width: 1600px;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.row00{
    margin: 0px auto;
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
h1,h2,h3,h4 {
    font-family: var(--fonte-titre);
    font-style: normal;
    line-height: 1.2;

}
h1 {
    font-size: 2.8em;
    font-weight: 600;
    margin: 0px 0px 20px;
}
h2 {
    font-size: 2em;
    font-weight: 600;
    margin: 0px 0px 20px;
    display: inline-block;
}
h3 {
    font-size: 1.6em;
    margin: 0px 0px 14px ;
    font-weight: 500;
    color: var(--col-N);
}
h4 {
    font-size: 1.4em;
    font-weight: 500;
    margin: 0px 0px 10px;
}
h5 {
    font-size: 1.2em;
    margin: 0px 0px 10px;;
}
.entry-content a {
    color: var(--col-1);
    font-weight: 500;
}
.entry-content a:visited {
    color: var(--col-1);
}
.entry-content a:hover{
    color: var(--col-H);
}
a {
    color: var(--col-1);
    text-decoration: none;
}
a:visited {
    color: var(--col-1);
    text-decoration: none;
}
a:hover, a:focus, a:active, a.mixitup-control-active {
    color: var(--col-B);
    text-decoration: none;
}
a:focus {
    outline: thin dotted;
}
a:hover, a:active {
    outline: 0;
}
blockquote {
    position: relative;
    margin: 0em;
    padding: 30px 3em 30px 6em;
    font-weight: 400;
    font-size: 1.6em;
    font-family: var(--fonte-titre);
    color: var(--col-1);
    line-height: 1.3;
}
blockquote > p:nth-child(1){
    margin: 20px 0px;
}

blockquote strong {
    font-weight: 600;
}
blockquote:before{
    position: absolute;
    content: '«';
    font-size: 6em;
    color: var(--col-1-B3);
    top: 40%;
    transform: translateY(-50%);
    left: 0px;
}

/* RECHERCHE */

#category-menu h1{
    font-size: 115%;
    font-weight: 400;
    margin-bottom: 0px;
}

#recherche-modal{
    z-index: 9999;
}
#myBtn-recherche{
    width: 50px;
    height: 80px;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: var(--col-1);
    padding: 12px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

    -webkit-animation: translate-X 1s; /* Safari, Opera, Chrome */
    animation: translate-X 0.4s; /* Tous les autres navigateurs */
    animation-delay: 3s; /* or: Xms */
    animation-fill-mode: forwards;
    z-index: 6;
}

@keyframes translate-X {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

#myBtn-recherche:hover{
    cursor: pointer;
}
#recherche-modal svg{
    fill: var(--col-B);
}
.search-wrap{
    align-items: center;
}
#myModal-recherche{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100vw;
    height: 100vh;
    background: rgba(254, 234, 232, 0.8);
    z-index: 9998;
}
form#search-form{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translateX(-50%) translateY(-50%);
}
form#search-form #search-input {
    flex: 0 1 80%;
    margin-right: 5%;
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
}
form#search-form input.bouton {
    flex: 0 1 15%;
    font-size: 0.9em;
}
#comments{
    margin-top: 0px;
    padding: 40px 0px;
    position: relative;
}
p iframe{
    max-width: 1024px;
    max-height: 600px;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
}

figure.thumbnail-med{
    display: none;
    margin: 0px;
}
figure.thumbnail-large{
    margin: 0px;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- HEADER -------------------**/
/**--------------------------------------------------------------------------------------**/
header#masthead{
    background: var(--col-1-B4);
}
.site-branding{
    border-right: 1px solid var(--col-border);
    overflow: hidden;
    padding: 30px;
    width: calc( 100vw / 6);
}
.site-branding .site-title {
    margin: 10px;
    font-size: 80px;
    font-weight: 700;
    font-family: var(--fonte-p);
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* Logo ABLOC */


.site-branding #logo-abloc svg path{
    fill: var(--col-N);
}
.site-branding #logo-abloc svg path:nth-child(3){
    fill: var(--col-1);
}
.site-branding:hover #logo-abloc svg path{
    fill: var(--col-1);
    transition: all 0.2s ease-in;
}
.site-branding:hover #logo-abloc svg path:nth-child(3){
    fill: var(--col-N);
    transition: all 0.2s ease-in;
}
.site-description{
    display: none;
}

/* MENU */

.main-navigation{
    width: calc( 100vw / 1.2);
}

#primary-menu{
    justify-content: stretch;
}
#primary-menu li{
    padding: 10px;
    flex: 0 1 100%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--col-border);
}
#primary-menu li:hover{
    background: var(--col-1-B2);
}
.main-navigation a {
    display: flex;
    text-decoration: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
    font-family: var(--fonte-p);
}
#primary-menu li.current-menu-item,
#primary-menu li.current-post-ancestor,
#primary-menu li.current-menu-parent{
    background: var(--col-1);
}
#primary-menu li.current-menu-item a,
#primary-menu li.current-post-ancestor a,
#primary-menu li.current-menu-parent a{
    color: var(--col-B);
}
.menu-menu-principal-container{
    width: 100%;
    height: 100%;
    display: inline-flex;
}
#category-menu {
    position: relative;
    background: var(--col-1);
    padding: 8px 30px;
    width: 100vw;
    transform: translateX(-50%);
    left: 50%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#category-menu [type="button"]{
    color: var(--col-B);
    background: var(--col-1)!important;
    padding: 0px;
}
#category-menu .catmenu-left-side{
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
#category-menu .catmenu-left-side .item{
    padding: 6px 10px 6px 0px;
    white-space: nowrap;
}
#category-menu .catmenu-left-side .item:hover{
    cursor: pointer;
}
#category-menu .catmenu-left-side .item.mixitup-control-active{
    font-weight: 600;
}
#category-menu .catmenu-left-side .item a{
    color: var(--col-B)!important;
}
.nav-links{
    display: inline-flex;
}
.nav-links .page-numbers{
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    color: var(--col-1);
    position: relative;
    z-index: 1;
}
.nav-links .page-numbers:before{
    display: inline-block;
    content: '';
    position: absolute;
    width: 26px; 
    height: 26px;
    top: 50%; 
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 100%;
    background: var(--col-1-B4);
    z-index: -1;
}
.nav-links .page-numbers:hover:before{
    background: var(--col-1-B2);
}
.nav-links .page-numbers.current:before{
    background: var(--col-1);
}
.nav-links .page-numbers.current{
    color: var(--col-B);
}

.nav-links
/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- CONTENT ------------------**/
/**--------------------------------------------------------------------------------------**/

.error404 #content,
.single-post #content,
.page #content,
.search #content,
.page-home #content,
.archive #content{
    max-width: calc( 100vw / 1.2);
    margin: 0 auto;
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- FOOTER -------------------**/
/**--------------------------------------------------------------------------------------**/

footer#colophon{
    background: var(--col-1);
    margin-top: 80px;
}
ul#menu-menufooter{
    margin: 0px;
    padding: 0px;
    width: 100%;
    justify-content: flex-start;
}
ul#menu-menufooter > li{
    flex: 0 1 100%;
    border-right: 1px solid var(--col-border);
    text-align: center;
}
ul#menu-menufooter > li:hover{
    background: var(--col-1-B2);
}
ul#menu-menufooter > li a{
    color: var(--col-B);
    display: block;
    height: 100%;
    padding: 40px 20px;
    font-weight: 700;
}
footer#colophon #social-contact{
    border-top: 1px solid var(--col-border);
    padding: 80px 0px;
    justify-content: center;
}
footer#colophon .site-info{
    background: var(--col-N);
    text-align: center;
    padding: 10px 0px;
    font-size: 85%;
    color: var(--col-B);
}
footer#colophon .site-info a{
    color: var(--col-B);
}

/**--------------------------------------------------------------------------------------**/
/**------------------------------------------------ RECHERCHE-MODAL  --------------------**/
/**--------------------------------------------------------------------------------------**/


/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------- PAGES --------------------**/
/**--------------------------------------------------------------------------------------**/

.page header.entry-header{
    margin-top: 40px;
}
.page:not(.home) #content{
    max-width: calc( 100vw / 1.5);
    margin: 0 auto;
}

/**--------------------------------------------------------------------------------------**/
/**-------------------------------------------------------- ARCHIVES --------------------**/
/**--------------------------------------------------------------------------------------**/

#wrapper-articles{
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.article-details{
    padding: 20px 20px 60px;
}
.article-details p{
    margin: 0px;
}
.article-details h2{
    margin-bottom: 10px;
}
.article-img > img{
    display: block;
}
.article-tags{
    position: absolute;
    bottom: 0px;
    z-index: 10;
    align-items: flex-start;
}
.article-tags a{
    font-size: 18px;
    padding: 2px 8px;
    color: var(--col-B);
    background: var(--col-1);
    display: inline-block;
}
.article-tags a:hover{
    background: var(--col-H);
}
.page-home article,
.search article,
.archive article{
    border: 1px solid var(--col-border);
    margin-bottom: 0px;
    background: var(--col-1-B3);
}
.page-home article:hover,
.search article:hover,
.archive article:hover {
    transform: scale(1.03);
    background: var(--col-B);
    border: 1px solid var(--col-N);
    border-radius: 3px;
    z-index: 12;
    transition: all 0.2s ease-in;
}
.article-categories{
    color: var(--col-1-B2);
    position: absolute;
    bottom: 20px;
    right: 20px;
} 
.article-categories .art-cat{
    font-size: 90%;
    margin-left: 10px;
} 

.archive.post-type-archive #playlist-content p {
    margin: 0px;
}
.archive.post-type-archive .article-details{
    padding: 20px;
}

/**--------------------------------------------------------------------------------------**/
/**-------------------------------------------------------- SINGLE ----------------------**/
/**--------------------------------------------------------------------------------------**/

.single-post #content{
    max-width: calc( 100vw / 1.5);
    margin: 0 auto;
}

.single .post-navigation{
    position: fixed;
    top: 50%;
    left: 0px;
    margin: 0px;
    width: 100%;
    height: 0px;
    overflow: visible;
}
.single .post-navigation .nav-previous{
    position: absolute;
    float: left;
    background: var(--col-1-B3);
    left: 2.6em;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;

}
.single .post-navigation .nav-next{
    position: absolute;
    float: right;
    background: var(--col-1-B3);
    right: 2.6em;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}
.single .post-navigation .nav-previous:hover,
.single .post-navigation .nav-next:hover{
    background: var(--col-1-B2);
}
.single .post-navigation .nav-next > a,
.single .post-navigation .nav-previous > a{
    position: absolute;
    display: block;
    top: 0px; left: 0px;
    width: 100%; height: 100%;
    color: transparent;
}
article.post .entry-footer{
    margin: 30px 0px 60px;
    padding: 6px 0px;
    text-align: center;
    position: relative;
    color: var(--col-1-B2);
}
article.post .entry-footer a{
    color: var(--col-B);
    background: var(--col-1);
    padding: 2px 14px;
    margin: 4px 4px;
    display: inline-block;
}
article.post .entry-footer a:hover{
    background: var(--col-H);
}

.single article.post #header-bottom{
    position: absolute;
    bottom: 0px;
    background: var(--col-1-B4);
    padding: 20px 40px 0px 0px;
    max-width: 75%;
}
.single article.post #header-bottom > h1{
    display: inline-block;
}
.single .entry-footer{
    margin: 40px 0px 80px;
}
/* CAT Peutitkeupon */
.single .entry-header.peutitkeupon {
    align-items: flex-start;
}
.single .entry-header.peutitkeupon img{
    margin-bottom: 30px;
    width: 100%;
}
.single .entry-header.peutitkeupon h1{
    margin-bottom: 0px;
    float: left;
}

.single .entry-header.musique{
    justify-content: space-between;
    margin-top: 40px;
    background: var(--col-1-B3);
}
.single #header-left{
    flex: 0 1 80%;
    padding: 20px
}
.single #header-left .entry-meta{
    margin-bottom: 20px;
}

/* CAT LIVRE */

.single .entry-header.musique img{
    height: 100%;
}
.entry-title-768px{
    display: none;
    visibility: hidden;
}


/* # relatedposts */

#relatedposts{
    position: relative;
    z-index: 1;
}
#relatedposts .content-title{
    padding: 40px 0px 40px;
    text-align: center;
}
#relatedposts .content-title h2{
    color: var(--col-1);
    font-size: 2.6em;
}
#content-related > .item{
    background: var(--col-1-B4);
    border: 1px solid var(--col-border);
}
#content-related > .item:hover{
    transform: scale(1.04);
    background: var(--col-B);
    z-index: 13;
    border-radius: 5px;
}
#content-related > .item .related-text{
    padding: 14px 14px 46px;
    text-align: left;
}
#content-related > .item .related-text h3{
    font-size: 1.36em;
}
#content-related > .item .related-text .author-date{
    font-size: 0.9em;
}
#content-related > .item .related-text #item-categories{
    font-size: 0.9em;
    position: absolute;
    bottom: 14px;
    right:  14px;
}
#content-related > .item .related-text #item-categories a{
    color: var(--col-1-B2);
}
#relatedposts:before{
    position: absolute;
    content: '';
    top: 0px;
    left: 50%;
    width: 51vw;
    height: 2px;
    background: var(--col-1-B3);
    z-index: 1;
}
#relatedposts:after{
    position: absolute;
    content: '';
    top: 0px;
    right: 50%;
    width: 51vw;
    height: 2px;
    background: var(--col-1-B3);
    z-index: 1;
}

/* .list-share */

.list-share{
    color: var(--col-B);
}
.list-share .list-item{
    margin-right: 0px;
    margin-left: 10px;
    width: 36px;
    height: 36px;
    padding: 7px;
}


/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------        1400px -------------**/
/**--------------------------------------------------------------------------------------**/

@media screen and (max-width: 1440px) {
    .single .post-navigation{
        display: none;
    }
    #content-related > .item {
        flex: 0 1 25%;
    }
    #content-related > .item:nth-child(3) {
        display: none;
    }
}

@media screen and (min-width: 769px) {

    .w15 { flex: 0 1 15%; }
    .w20 { flex: 0 1 20%; }
    .w20-G { flex: 0 1 18%; margin: 0% 1% }
    .w25 { flex: 0 1 25%; }
    .w25-G { flex: 0 1 23%; margin: 0% 1% }
    .w30 { flex: 0 1 30%; }
    .w33 { flex: 0 1 33.3%; }
    .w33-G { flex: 0 1 31.3%; margin: 0% 1% }
    .w40 { flex: 0 1 40%; }
    .w50 { flex: 0 1 50%; }
    .w50-G { flex: 0 1 48.5%; margin-right: 3% } .w50-G:nth-of-type(2n) { margin-right: 0% }
    .w60 { flex: 0 1 60%; }
    .w66 { flex: 0 1 66.6%;}
    .w75 { flex: 0 1 75%; }
    .w80 { flex: 0 1 80%; }
    .w85 { flex: 0 1 85%; }
    .w90 { flex: 0 1 90%; }
    .w100 { flex: 0 1 100%;}

    #category-sub-menu-768,
    #submenu-768{
        display: none;
    }
}

/**--------------------------------------------------------------------------------------**/
/**----------------------------------------------------------  AVOID A FOUC -------------**/
/**--------------------------------------------------------------------------------------**/

html {
    visibility: visible;
    opacity: 1;
}