/*!

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/

*/

/**--------------------------------------------------------------------------------------**/

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

#loading {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border-radius: 60px;
    border: 7px solid var(--col-a);
    opacity: 0.8;
    box-sizing: content-box;
}

#loading:after {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border: 5px solid var(--col-a);
    border-radius: 30px;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#overlay-loading {
    display: flex;
    flex-direction: column;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(254, 234, 232, 0.8);
    z-index: 98;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: .3s linear;
}

/**--------------------------------------------------------------------------------------**/

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

/**--------------------------------------------------------------------------------------**/

.flex-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    list-style: none;
    flex-wrap: nowrap;
}

.flex-column {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
}

/**--------------------------------------------------------------------------------------**/

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

:root {
    --col-a: #fe321f;
    --col-b3: #feada5;
    --col-b2: #fed6d2;
    --col-b1: #feeae8;
    --col-b: #faf9f8;
    --col-h: #ff9512;
    --col-n: #171b1f;
    --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-b2);
}

.encadre-wrap .encadre-titre {
    margin: 0px;
    z-index: 2;
    color: var(--col-a);
    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-h2);
}

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-b);
    padding: 0.25rem 0rem 0.25rem 0.75rem;
    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-a);
}

.partage #sharing-buttons>a:hover {
    background: var(--col-h);
}

a.icone {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    padding: 8px;
    line-height: 1;
    margin-right: 1rem;
    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;
    transition: opacity 0.4s ease-in-out;
    max-width: 100%;
    opacity: 0.4;
}

.b-lazy.b-loaded {
    opacity: 1;
}

button, .button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: 0px solid;
    border-color: transparent;
    border-radius: 17.5px;
    background: var(--col-n);
    color: var(--col-b);
    font-family: inherit;
    font-size: 100%;
    line-height: 1;
    padding: 0.6em 1em;
}

.button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background: var(--col-h);
    cursor: pointer;
}

ul, ol {
    margin: 0 0 0 1rem;
    padding: 0rem;
}

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-a);
    margin-right: 5px;
}

.exergue {
    font-style: italic;
    margin-left: 30px;
    border-left: 3px solid var(--col-a);
    padding-left: 20px;
}

.wp-video {
    max-width: 100%;
    width: 1024px!important;
    height: auto;
    margin: 0px auto 2rem;
}

/**--------------------------------------------------------------------------------------
/**-------------------------------------------------------------------- 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;
}

/*--------------------------------------------------------------
## 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: 16.25px;
    line-height: 1.6;
}

.body-background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: var(--col-b1);
}

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-b1);
    z-index: 1;
}

.post, .page {
    margin: 0 0 0em;
    padding: 0 0 0em;
}

.row-full {
    max-width: 100%;
    margin: 0 auto;
}

.row-1600 {
    max-width: 1600px;
    margin: 0px auto;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.row-1440 {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.row-1280 {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.row-1024 {
    max-width: 1024px;
    margin: 0 auto;
}

.row-768 {
    max-width: 768px;
    margin: 0 auto;
}

.row-00 {
    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.75rem;
    font-weight: 600;
    margin: 0.75rem 0px 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0.5rem 0px 0.75rem;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin: 0.25rem 0px 0.5rem;
    font-weight: 500;
    color: var(--col-n);
}

h4 {
    font-size: 1.35rem;
    font-weight: 500;
    margin: 0.25rem 0px 0.5rem;
    font-size: 1.2em;
    margin: 0.5rem 0px;
}

.entry-content a {
    color: var(--col-a);
    font-weight: 500;
}

.entry-content a:visited {
    color: var(--col-a);
}

.entry-content a:hover {
    color: var(--col-h);
}

a {
    color: var(--col-a);
    text-decoration: none;
}

a:visited {
    color: var(--col-a);
    text-decoration: none;
}

a:hover, a:focus, a:active, a.mixitup-control-active {
    color: var(--col-h);
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
}

blockquote {
    position: relative;
    margin: 0em;
    padding: 3rem 6rem 3rem 8rem;
    font-weight: 400;
    font-size: 1.6em;
    font-family: var(--fonte-titre);
    color: var(--col-a);
    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-b2);
    top: 40%;
    transform: translateY(-50%);
    left: 0px;
}

#comments {
    margin-top: 0px;
    padding: 40px 0px;
    position: relative;
}

p iframe {
    max-width: 1024px;
    max-height: 600px;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin: 20px auto;
}

p iframe #player {
    max-width: 1024px!important;
}

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

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

/**------------------------------------------------------------------------------------
/**------------------------------------------------------------------------- Breadcrumb 
/**---------------------------------------------------------------------------------**/

ul.breadcrumb {
    list-style: none;
    display: inline-flex;
    padding: 0px;
    margin: 0px;
    width: 100%;
    letter-spacing: -0.25px;
    font-weight: 500;
}

ul.breadcrumb>li {
    position: relative;
    margin-left: 0.5rem;
}

ul.breadcrumb>li:not(:first-child) {
    margin-left: 1rem;
}

ul.breadcrumb>li:before {
    position: absolute;
    /* HTML entity with its corresponding Unicode */
    /* https://unicode-table.com/en/html-entities/ */
    content: '\007C';
    left: -0.5rem;
}

.breadcrumb ul.children {
    list-style: none;
    display: inline-flex;
    padding: 0px;
    margin: 0px;
}

.breadcrumb ul.children li {
    position: relative;
    margin: 0rem 0.5rem 0rem 1rem;
}

.breadcrumb ul.children li:before {
    position: absolute;
    /* HTML entity with its corresponding Unicode */
    content: '\003E';
    left: -1rem;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--col-a);
}

/**------------------------------------------------------------------------------------
/**----------------------------------------------------------------------------- HEADER 
/**----------------------------------------------------------------------------------**/

header#masthead {
    background: var(--col-b2);
    z-index: 99;
    /* position: fixed;
    width: 100%;
    display: block;
    transition: top 0.3s; */
}

#masthead .wrapper-masthead {
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.site-branding {
    overflow: hidden;
    width: 17.25%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.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-a);
}

.site-branding:hover .logo-abloc svg path {
    fill: var(--col-a);
    transition: all 0.1s ease-in;
}

.site-branding:hover .logo-abloc svg path:nth-child(3) {
    fill: var(--col-n);
    transition: all 0.1s ease-in;
}

.site-description {
    font-weight: 600;
    text-align: right;
}

/* MENU */

#primary-menu {
    justify-content: flex-end;
}

#primary-menu li {
    padding-left: 1.25rem;
}

.main-navigation a {
    text-decoration: none;
    font-size: 1.15em;
    font-weight: 700;
    font-family: var(--fonte-p);
    color: var(--col-n);
}

.main-navigation li:hover a {
    color: var(--col-h);
}

#primary-menu li.current-menu-item a, #primary-menu li.current-post-ancestor a, #primary-menu li.current-menu-parent a {
    color: var(--col-a);
}

.menu-menu-principal-container {
    width: 100%;
    height: 100%;
    display: inline-flex;
}

#category-menu {
    position: relative;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#category-menu ul.breadcrumb {
    width: auto;
}

#category-menu [type="button"] {
    color: var(--col-b);
    background: transparent!important;
    padding: 0px;
}

.navigation-buttons {
    justify-content: flex-end;
}

.navigation-buttons [type="button"] {
    background: transparent;
}

#category-menu .catmenu-left-side {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

#category-menu .catmenu-left-side .item {
    margin-right: 1.25rem;
    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-a);
    font-size: 1.15rem;
    font-weight: 600;
}

#category-menu .catmenu-left-side .item a:hover {
    color: var(--col-h);
}

.nav-links {
    display: inline-flex;
    margin: 2rem 0px 0rem;
}

.nav-links .page-numbers {
    width: 34px;
    height: 34px;
    display: block;
    text-align: center;
    line-height: 34px;
    color: var(--col-a);
    position: relative;
    z-index: 1;
}

.nav-links .page-numbers:before {
    display: inline-block;
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 100%;
    background: var(--col-b1);
    z-index: -1;
}

.nav-links .page-numbers:hover:before {
    background: var(--col-b2);
}

.nav-links .page-numbers.current:before {
    background: var(--col-a);
}

.nav-links .page-numbers.current {
    color: var(--col-b);
}

#header-right {
    position: relative;
    margin-left: 2rem;
    justify-content: flex-start;
    align-items: center;
}

#header-right .recherche {
    width: 36px;
    height: 36px;
    padding: 8px;
    background: var(--col-n);
    border-radius: 100%;
}

#header-right .recherche:hover {
    background: var(--col-h);
}

#header-right .recherche svg {
    fill: var(--col-b);
}

#header-right .login_button, #header-right .logout_button {
    margin-left: 1rem;
}

/**-------------------------------------------------------------------------------------
/**------------------------------------------------------------------------------ CONTENT
/**-----------------------------------------------------------------------------------**/

.error404 #content, .single-post #content, .page #content, .search #content, .page-home #content, .archive #content {
    margin: 0rem auto 0px;
}

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

footer#colophon {
    background: var(--col-b3);
    margin-top: 6rem;
}

.menu-menufooter-container {
    background: var(--col-b2);
}

ul#menu-menufooter {
    width: 100%;
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

ul#menu-menufooter>li {
    text-align: left;
}

ul#menu-menufooter>li a {
    display: block;
    height: 100%;
    margin-right: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--col-n);
    padding: 0.25rem 0px;
}

footer#colophon .footer-mid {
    justify-content: space-between;
    align-items: center;
    margin: 4rem auto;
    flex-wrap: wrap;
}

footer#colophon .footer-mid .part-gauche {
    flex: 0 1 33.3%;
}

#website-carbon {
    margin-top: 2rem;
}

#search-form input[type="search"] {
    width: 100%;
    margin-right: 1rem;
}

footer#colophon .footer-mid #search-form input[type="submit"] {
    background: var(--col-n);
}

footer#colophon .footer-mid #search-form input[type="submit"]:hover {
    background: var(--col-h);
}

footer#colophon .footer-mid .part-une {
    max-width: 375px;
}

footer#colophon .footer-mid .part-droite {
    align-items: center;
    justify-content: center;
}

footer#colophon .logo-abloc svg path {
    fill: var(--col-n);
}

footer#colophon .logo-abloc svg path:nth-child(3) {
    fill: var(--col-a);
}

footer#colophon .logo-abloc:hover svg path {
    fill: var(--col-a);
}

footer#colophon .logo-abloc:hover svg path:nth-child(3) {
    fill: var(--col-n);
}

footer#colophon #social-contact {
    margin: 2rem 0px 0rem;
    justify-content: flex-end;
}

footer#colophon .site-info {
    background: var(--col-n);
    text-align: center;
    padding: 0.5rem 0px;
    font-size: 85%;
    color: var(--col-b);
}

footer#colophon .site-info a {
    color: var(--col-b);
}

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

.page header.entry-header {
    margin-top: 4rem;
}

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

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

header.page-header .wrapper-header {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

header.page-header .wrapper-header .part-left {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

h1.page-title {
    color: var(--col-a);
    margin-right: 1rem;
}

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

.article-details {
    padding: 1rem 1rem 2rem;
}

.article-details p {
    margin: 0px;
    color: rgba(0, 0, 0, 0.4);
}

.article-img img {
    display: block;
}

.article-tags {
    position: absolute;
    bottom: 0px;
    z-index: 10;
    align-items: flex-start;
}

.article-tags a {
    padding: 2px 8px;
    color: var(--col-b);
    background: var(--col-a);
    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-b2);
}

.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;
}

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

.post_views {
    position: absolute;
    z-index: 66;
    top: 1rem;
    right: 1rem;
    border-radius: 10px;
    background-color: #f8f49e;
    padding: 0rem 0.5rem;
    font-size: 0.94rem;
}

/**-----------------------------------------------------------------------------------**/

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

.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-b2);
    left: 2.6em;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

.single .post-navigation .nav-next {
    position: absolute;
    float: right;
    background: var(--col-b2);
    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-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-b2);
}

article.post .entry-footer a {
    color: var(--col-b);
    background: var(--col-a);
    padding: 2px 14px;
    margin: 4px 4px;
    display: inline-block;
}

article.post .entry-footer a:hover {
    background: var(--col-h);
}

.single article.post header.entry-header {
    margin-bottom: 2rem;
}

.single article.post #header-bottom {
    position: absolute;
    bottom: 0px;
    background: var(--col-b1);
    max-width: 75%;
    padding-right: 3rem;
}

.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 .wrapper-entry-header {
    width: 100%;
    justify-content: space-between;
    background: var(--col-b2);
}

.single #header-left {
    flex: 0 1 75%;
    padding: 1rem 1.5rem 1.5rem;
}

.single header figure {
    flex: 0 1 25%;
    margin: 0px;
}

.single header figure>img {
    display: block;
    width: 100%;
}

.single #header-left .entry-meta {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.4);
}

/* CAT LIVRE */

.entry-title-768px {
    display: none;
    visibility: hidden;
}

/* # relatedposts */

#relatedposts {
    position: relative;
    z-index: 1;
}

#relatedposts .content-title {
    margin: 1rem auto;
    text-align: center;
}

#relatedposts .content-title h2 {
    color: var(--col-a);
    font-size: 2.6em;
    margin-top: 2rem;
}

#content-related>.item {
    background: var(--col-b2);
    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: 1rem 1rem 2rem;
    text-align: left;
}

#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-b2);
}

#relatedposts:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 50%;
    width: 51vw;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#relatedposts:after {
    position: absolute;
    content: '';
    top: 0px;
    right: 50%;
    width: 51vw;
    height: 1px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* .list-share */

.list-share {
    align-items: center;
    justify-content: flex-end;
    margin: 1.5rem 0rem 2rem;
}

.list-share .list-item {
    margin-right: 0px;
    margin-left: 7.5px;
}

.list-share a.icone {
    width: 32px;
    height: 32px;
    padding: 6.75px;
}

/**--------------------------------------------------------------------------------------
/**------------------------------------------------------------------------------  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;
}