/* ### ######## ### */
/* ### COULEURS ### */
/* ### ######## ### */
 :root {
         --default-text-color: #1E1E1E;
         --light-text-color: #FFFFFF;
         --main-color: #2F765D;
         --rgb-main-color: 47, 118, 93;
         --main-color-light: #E2EBE8;
         --black: #0A0D0C;
         --error-color: rgba(175,24,52, 1);
}

/* ### ########## ### */
/* ### UTILITAIRE ### */
/* ### ########## ### */
:root {
        scroll-behavior: smooth;
}
body {
        font-family: Noto;
        opacity:0;
        color:var(--default-text-color);
}
body.unselectable {
        user-select:none;
}
img, iframe, video {
        max-width:100%;
}
img {
        height:auto;
}
a{
        color:var(--default-text-color);
        border:none;
        transition:all .2s;
        font-weight: 700;
}
a:hover {
        color:var(--main-color);
}
a.active {
        color:var(--default-text-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;
}
.tag{
        padding: 3px 8px 4px 8px;
        background-color: #000;
        font-size: 11px;
        color: #fff;
        line-height: 1;
        font-weight: 700;
        border-radius: 8px;
}
.tag-big{
        padding: 5px 12px 6px 12px;
        font-size: 14px;
        border-radius: 12px;
}
.card-radius {
        border-radius: 16px;
}
.drop-shadow {
        box-shadow: 0px 0px 10px 0px rgba(10, 30, 20, 0.60);
}

label {
        font-weight: 700;
}
.hidden {
        display: none;
}
.lg-backdrop {
        background-color: rgba(0, 0, 0, 0.9);
}

.start-finish-title {
        display: flex;
        gap: 8px;
        align-items: center;
}
.start-finish-title svg {
        color: var(--default-text-color);
}

/* 
### ################# ###
### TITRAGES & TEXTES ###
### ################# ###
*/
h1 {
        font-size: 56px;
        font-weight:900;
        line-height:1.1;
        color: var(--light-text-color);
}
h2 {
        position: relative;
        font-size: 40px;
        font-weight:900;
}
h3 {
        font-weight:normal;
        font-size: 24px;
        font-weight:700;
        margin-bottom:0;
}
h4 {
        text-transform:initial;
        font-weight:600;
        font-size: 18px;
}
h5 {
        font-weight:bold;
        font-size: 12px;
}

h1,h2,h3,h4{
        font-family: 'Scond';
}
p,a,h5,span{
        font-family: 'Noto';
}
p{
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
}
p,
.main-col p,
.main-col > ul, 
.main-col > ol,
#comments {
    max-width: 720px;
}
p:last-child {
        margin-bottom:0;
}

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

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

.stop-animation *{
        animation: none !important;
        transition: none !important;
}