@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

/* ### ######## ### */
/* ### COULEURS ### */
/* ### ######## ### */
 :root {
        --default-text-color: #272525;
        --default-second-text-color: #a8a8a8;
        --primary-color: #e50046;
        --primary-dark-color: #c5003b;
        --second-color: #ffdd00;
        --second-dark-color: #f39300;
        --third-color: #afca0b;
        --third-dark-color: #009640;
        --fourth-color: #00aca9;
        --fourth-dark-color: #006891;
        --fifth-color : #b81866;
        --current-page-color : #b81866;
}

/* ### ########## ### */
/* ### UTILITAIRE ### */
/* ### ########## ### */
:root {
        scroll-behavior: auto;
}
*{
        font-family: 'Strawford';
}
body {
        font-family:Ubuntu;
        opacity:0;
        color:var(--default-text-color);
}
body.unselectable {
        user-select:none;
}
img, iframe, video {
        max-width:100%;
}
img {
        height:auto;
}
a {
        color: unset;
        border:none;
        transition:all .2s;
}
a:hover{
        color: var(--current-page-color);
}
a.full-size-link {
        position:absolute;
        top:0;
        left:0;
        right:0;
        bottom:0;
        z-index:2;
}
span.underlined {
        text-decoration: underline;
}
a.underlined {
        color:inherit;
        text-decoration: underline;
}

/* 
### ################# ###
### TITRAGES & TEXTES ###
### ################# ###
*/
h1 {
        font-weight:800;
        font-size: 32px;
        line-height:1.1;
}
h2 {
        position: relative;
        font-weight:900;
        font-size: 24px;
        /* text-transform: uppercase; */
}
h3 {
        text-transform:uppercase;
        font-weight:normal;
        font-size: 18px;
        margin-bottom:0;
}
h4 {
        text-transform:initial;
        font-weight:900;
        font-size: 14px;
}
h5 {
        font-weight:bold;
        font-size: 12px;
}
p,a,h1,h2,h3,h4,h5,span{
        font-family: 'Strawford';
}
p,
.main-col p,
.main-col > ul, 
.main-col > ol,
#comments {
    max-width: 720px;
    line-height: 1.6;
}
p:last-child {
        margin-bottom:0;
}

/* ### ######### ### */
/* ### BOOTSTRAP ### */
/* ### ######### ### */
.btn {
        font-weight:bold;
}
body.admin-bar .edit-link a {
    color: #000!important;
}

/* ### ############ ### */
/* ### BREADCRUMB ### */
/* ### ############ ### */

.bread{
        list-style-type: none;
        margin:0;
        padding:0;
}
.bread li{
        display: inline-block;
}
.bread li.crumb a{
        text-transform: uppercase;
}
.bread li.crumb:last-child a{
        text-decoration: none;
        pointer-events: none;
        color: inherit;
}

/* ### ############ ### */
/* ### LOADER FACET ### */
/* ### ############ ### */

.loader-overlay {
        position:absolute;
        top:0;
        left:0;
        bottom:0;
        right:0;
        z-index:99; /* laisse passer le fixed menu */
        background:rgba(255, 255, 255, .85);
}
.loader-overlay .loader {
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        display: inline-block;
        width: 80px;
        height: 80px;
}
.loader-overlay .loader:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #000;
        border-color: #000 transparent #000 transparent;
        animation: loader-animation 1.2s linear infinite;
}
@keyframes loader-animation {
        0% {
                transform: rotate(0deg);
        }
        100% {
                transform: rotate(360deg);
        }
}