/* 2025-08-04 10:38:20 */
/* 00_reset.css */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain)*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

body {
    line-height: 1;
}

ol,ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
}

strong,b {
    font-weight: bold;
}

em,i {
    font-style: italic;
}

/* 01_template.css */
@media screen and (min-width: 1024px) {
    .hideOnDesktop {
        display: none !important;
    }
}

@media screen and (max-width: 1023px) {
    .hideOnMobile {
        display: none !important;
    }
}

@media screen and (max-height: 350px) {
    .hideOnUltraSmallHeight {
        display: none !important;
    }
}

/* 02_xds.css */
/* 10_ibc.css */
/*.ibc{} .ibc > div { display: inline-block;} .ibc.autoWidth > div:first-child:nth-last-child(1) { width: 100%;}.ibc.autoWidth > div:first-child:nth-last-child(2),.ibc.autoWidth > div:first-child:nth-last-child(2) ~ div { width: 50%;}.ibc.autoWidth > div:first-child:nth-last-child(3),.ibc.autoWidth > div:first-child:nth-last-child(3) ~ div { width: calc( 100% / 3 );}.ibc.autoWidth > div:first-child:nth-last-child(4),.ibc.autoWidth > div:first-child:nth-last-child(4) ~ div { width: 25%;}.ibc.autoWidth > div:first-child:nth-last-child(5),.ibc.autoWidth > div:first-child:nth-last-child(5) ~ div { width: 20%;} */
/* 00_main.css */
:root {
    --main-font-size: 13px;
    font-size: 13px;
}

* {
    transition: color 0.2s,background-color 0.2s;
}

body {
    background: var(--var-body-bgcolor);
    padding: 0;
    font-family: 'Open Sans',Verdana,sans-serif;
    color: var(--var-body-bgcolor-contrast);
    font-size: var(--main-font-size);
    -webkit-text-size-adjust: none;
    line-height: 1.4;
}

a:link {
    color: inherit;
    text-decoration: none;
}

a:active {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #FF9900;
    text-decoration: underline;
}

/*h1:not(.inbloc) { margin: 1em 0; padding: 0px 15px; font-size: 4em; font-weight: 100; font-family: Raleway; text-align: center; color: var(--var-body-bgcolor-contrast); line-height: 1.3em;}.onMobile h1:not(.inbloc) { margin: 0.8em; font-size: 2.5em;}*/
h1:not(.inbloc) {
    margin: 1em 0;
    padding: 0px 15px;
    font-size: 3em;
    font-weight: 100;
    font-family: Raleway;
    text-align: center;
    color: var(--var-body-bgcolor-contrast);
    line-height: 1.3em;
}

.onMobile h1:not(.inbloc) {
    margin: 0.8em;
    font-size: 2.5em;
}

h1.inbloc {
    padding: 0.9em 0.7em;
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
    color: var(--var-body-bgcolor-contrast);
    line-height: 1.3em;
    padding-left: 0;
}

h1 div.avatar {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    /*overflow: hidden;*/
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 0.1em solid white;
    box-sizing: content-box;
    flex-grow: 0;
    flex-shrink: 0;
    font-family: "Open Sans",Verdana,sans-serif;
}

h2 {
    margin: 45px 0;
    padding: 0px 15px;
    font-size: 2em;
    font-weight: 100;
    font-family: Raleway;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.ibc > div {
    vertical-align: top;
}

.ibc > div.largeLeft {
    width: calc( 100% - 350px - 20px );
    box-sizing: border-box;
}

.ibc > div.smallRight {
    width: 350px;
    box-sizing: border-box;
    margin-left: 20px;
}

.onMobile .ibc > div.largeLeft {
    width: 100%;
    display: block;
}

.onMobile .ibc > div.smallRight {
    width: 100%;
    margin-left: auto;
    display: block;
}

.ibc {
    display: flex;
    flex-wrap: wrap;
}

.onMobile .ibc.reverseOrderOnMobile {
    flex-direction: column;
}

.onMobile .reverseOrderOnMobile > div:first-child {
    order: 3;
}

.smallRight > .sticky {
    position: sticky;
    top: 70px;
}

/* 01_bloc.css */
.bloc {
    background-color: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
    border-radius: 4px;
    box-shadow: 1px 1px 7px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.onMobile .fullWidthOnMobile {
    margin-left: -10px;
    margin-right: -10px;
}

.bloc>.blocwrapper {
    padding: 1em;
    --padding-left-right-remove: 1em;
}

.cattitle {
    background-color: var(--var-th-color);
    padding: 10px 20px;
    font-weight: bold;
    color: var(--var-th-color-contrast);
}

.cattitle a {
    color: inherit;
}

.bloc.highlight {
    background-color: var(--var-menu-bgcolor);
    color: var(--var-menu-bgcolor-contrast);
}

.bloc.highlight .cattitle {
    background-color: var(--var-menu-bgcolor-darker);
}

.size.s1on2 {
    width: 50%;
}

.size.s1on3 {
    width: 29%;
}

.size.s2on3 {
    width: 71%;
}

.size.tiers {
    width: calc( 100% / 3 );
}

.size.center {
    margin: auto;
}

.size.left {
    float: left;
    padding-right: 10px;
}

.size.right {
    float: right;
    padding-left: 10px;
}

@media screen and (max-width: 1000px) {
    .size.s1on2,.size.s2on3,.size.s1on3 {
        width: 100%;
    }

    .size.left,.size.right {
        float: auto;
        padding: 0;
    }
}

/* 10_header.css */
#mainheader {
    position: relative;
    background: var(--main-header-background);
    background-color: var(--var-header-gradient-color);
    background-position: center center;
    background-size: var(--var-header-behavior-size);
    background-repeat: var(--var-header-background-repeat);
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    height: var(--var-header-behavior-height);
}

/* On réduit la taille du header quand on n'est pas dessus */
.off_index #mainheader,.onMobile #mainheader {
    height: var(--var-header-behavior-height-small);
}

#mainheader .mainwidth {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

#mainheader .namedesc {
    z-index: 1;
    position: relative;
    color: var(--var-header-text-color);
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
}

#mainheader #usermenu {
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    z-index: 3;
}

body.logged_in #mainheader #usermenu {
    padding-top: 10px;
    color: #e18700;
}

#mainheader #usermenu .links {
    text-align: center;
}

#mainheader #usermenu .links a {
    display: inline-block;
    color: var(--var-menu-bgcolor-contrast);
    background-color: var(--var-menu-bgcolor);
    padding: 3px 8px;
    margin: 5px;
    border-radius: 3px;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

#mainheader #usermenu .links a img {
    display: none;
}

#mainheader #menubar {
    position: absolute;
    color: var(--var-header-text-color);
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 20;
}

#mainheader #menubar a {
    color: inherit;
    display: inline-block;
    margin-left: 25px;
    font-weight: 600;
}

#mainheader #menubar a img {
    display: none;
}

.onDesktop #mainheader #menubar {
    background-color: rgba(var(--var-header-gradient-color-rgb),0.6);
    box-shadow: 0 0 6px var(--var-header-gradient-color);
    border-radius: 5em;
    padding-right: 25px;
}

.onDesktop #mainheader #menubar a {
    padding-top: 0.3em;
    padding-bottom: 0.3em;
}

#mainheader .sitename {
    font-weight: 700;
    text-align: center;
    font-size: 54px;
    text-shadow: 3px 3px 2px rgba(var(--var-header-gradient-color-rgb),0.5),-1px -1px 2px rgba(var(--var-header-gradient-color-rgb),0.5),-1px 3px 2px rgba(var(--var-header-gradient-color-rgb),0.5),3px -1px 2px rgba(var(--var-header-gradient-color-rgb),0.5);
    visibility: var(--var-visibility-show-header-forumname);
    /*padding-top: var(--var-header-behavior-title-padding-top);*/
}

.off_index #mainheader .sitename,.onMobile #mainheader .sitename {
    /*padding-top: var(--var-header-behavior-title-padding-top-small);*/
    font-weight: 700;
    font-size: 30px;
}

#mainheader .sitedescription {
    font-weight: 400;
    text-align: center;
    /*padding-top: 20px;*/
    font-size: 24px;
    text-shadow: 3px 3px 2px rgba(var(--var-header-gradient-color-rgb),0.5),-1px -1px 2px rgba(var(--var-header-gradient-color-rgb),0.5),-1px 3px 2px rgba(var(--var-header-gradient-color-rgb),0.5),3px -1px 2px rgba(var(--var-header-gradient-color-rgb),0.5);
    visibility: var(--var-visibility-show-header-forumname);
}

.off_index #mainheader .sitedescription,.onMobile #mainheader .sitedescription {
    font-size: 20px;
    font-weight: 300;
    /*padding-top: 10px;*/
}

#maincontent {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.on_viewtopic #maincontent {
    max-width: 1500px;
}

.onMobile #maincontent {
    padding: 0 10px;
}

#mainheader #menubarv2 {
    position: fixed;
    color: var(--var-menu-bgcolor-contrast);
    top: 0px;
    left: 0;
    text-align: right;
    z-index: 1500;
    width: 100%;
    transition: all 0.2s;
}

#mainheader #menubarv2 > div {
    padding: 2px 0;
    transition: none;
}

#mainheader #menubarv2.withBackground {
    background-color: var(--var-menu-bgcolor)/*rgba(var(--var-header-gradient-color-rgb),1);*/;
    /*background: linear-gradient(75deg,rgba(255,255,255,1) 0%,rgba(0,0,0,1) 100%);*/
    transition: all 0.2s;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

#mainheader #menubarv2 a {
    color: inherit;
    display: inline-block;
    margin-left: 25px;
    font-weight: 600;
}

/*.onDesktop #mainheader #menubarv2 { border-radius: 5em; padding-right: 25px;}.onDesktop #mainheader #menubarv2 a { padding-top: 0.3em; padding-bottom: 0.3em;}*/
#menubarv2 div.avatar {
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    margin: auto;
    /*box-shadow: 0 0 0.3em rgba(0,0,0,0.15);*/
    border-radius: 10em;
    background-color: white;
    font-weight: 900;
    color: white;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
    /*border: 0.1em solid white;*/
    box-sizing: content-box;
}

.menubarv2block {
    background-color: rgba(0,0,0,0.8);
    border-radius: 10em;
    position: relative;
}

.menubarv2block>div:not(.headerDropDown) {
    display: flex;
    gap: 0.8em;
    align-items: center;
    justify-content: flex-end;
    /*padding: 0.3em 0.7em;*/
    background-color: rgba(var(--var-menu-bgcolor-rgb),0.9);
    /*font-size: 0.8em;*/
    font-weight: 600;
    border-radius: 10em;
    font-size: 0.9em;
    padding: 0.4em 0.8em;
}

.onMobile .menubarv2block:not(.menubarv2blockprofile)>div:not(.headerDropDown) {
    font-size: 0.85em;
}

.menubarv2block i {
    font-size: 1.8em;
    vertical-align: -0.18em;
}

.menubarv2block svg {
    height: 1.8em;
    vertical-align: -0.9em;
    margin: 0.36em 0;
}

.menubarv2block i:has(+ span),.menubarv2block svg:has(+ span) {
    margin-right: 0.1em;
}

.onMobile .menubarv2block i {
    font-size: 1.5em;
    vertical-align: -0.1em;
}

.onMobile .menubarv2block svg {
    height: 1.5em;
}

#mainheader #menubarv2 .menubarv2block a {
    margin: 0;
    font-weight: 600;
    opacity: 0.8;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

#mainheader #menubarv2 .menubarv2block a:hover {
    opacity: 1;
    transition: all 0.25s;
}

#mainheader #menubarv2 .menubarv2block a * {
    transition: none;
}

.menubarv2notif {
    position: absolute;
    top: -0.3em;
    left: -0.3em;
    border: 1px solid rgba(255,255,255,0.7);
    background-color: var(--var-icon-unread-bgcolor);
    color: var(--var-icon-unread-bgcolor-contrast-soft);
    padding: 0;
    line-height: 1em;
    font-size: 0.9em;
    padding: 0.1em 0.2em;
    border-radius: 0.3em;
    cursor: inherit;
}

.menubarv2notif.notifsoft {
    background-color: var(--var-icon-read-bgcolor);
    color: var(--var-icon-read-bgcolor-contrast-soft);
}

.menubarv2blockprofile>div:not(.headerDropDown) {
    padding: 0.2em;
    font-size: 1.5em;
    position: relative;
}

.homeOnglets a:not(.sel) .menubarv2notif {
    top: calc( -0.3em + 2px );
}

.headerDropDown {
    display: none;
    text-align: left;
    position: absolute;
    right: 0;
    top: calc( 100% + 15px );
    /*backdrop-filter: blur(5px);*/
    background-color: var(--var-menu-bgcolor);
    width: 300px;
    max-width: 100vw;
    border-radius: 0.5em;
    padding: 0.5em;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.4);
    max-height: calc( 100vh - 100px );
    overflow: auto;
}

#mainheader #menubarv2 .headerDropDown a {
    display: block;
    padding: 0.3em 0.7em;
    margin: 0.3em 0;
    border-radius: 0.3em;
    opacity: 1;
    transition: all 0.15s;
}

#mainheader #menubarv2 .headerDropDown a:hover {
    text-decoration: none;
    color: var(--var-header-text-color-contrast);
    background-color: var(--var-header-text-color);
}

.headerProfilBlocName {
    border-radius: 15em;
    border-top-right-radius: 3em;
    border-bottom-right-radius: 3em;
}

.headerProfilBlocName:hover {
    /*color: var(--var-header-gradient-color); background-color: var(--var-header-text-color);*/
    color: var(--var-header-text-color-contrast);
    background-color: var(--var-header-text-color);
    transition: all 0.5s;
}

.headerProfilBlocName * {
    transition: none;
}

/* 10_header_menumobile.css */
#menumobile {
    background-color: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    z-index: 999999000;
    position: absolute;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    position: fixed;
}

#menumobile.menushown {
    /*position: fixed;*/
}

#menumobile .fa-xmark {
    display: none;
}

#menumobile.menushown .fa-xmark {
    display: inline-block;
}

#menumobile.menushown .fa-bars {
    display: none;
}

/*Le nombre de message privé affiché dans le bouton du menu mobile*/
#menumobile > div.nbprivatemessage {
    position: absolute;
    color: white;
    background-color: red;
    font-size: 11px;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    line-height: 20px;
    overflow: hidden;
    font-weight: bold;
    margin-top: -15px;
    margin-left: -5px;
}

.onMobile #mainheader #menubar {
    position: fixed;
    background-color: var(--var-tr-color);
    left: 0;
    width: calc( 100vw );
    border-right: 30px solid var(--var-tr-color-soft);
    bottom: 0;
    overflow: auto;
    color: var(--var-tr-color-contrast);
    top: 0;
    z-index: 10000;
    box-sizing: border-box;
    padding: 20px;
    padding-top: 70px;
    text-align: left;
}

.onMobile #mainheader #menubar a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.7em 0px;
    margin: 0;
    border-bottom: 1px solid var(--var-tr-color-soft);
    position: relative;
    padding-right: 20px;
    text-transform: uppercase;
}

.onMobile #mainheader #menubar a::after {
    content: '\f054';
    display: block;
    position: absolute;
    right: 0;
    top: calc( 50% - 0.7em );
    font-family: "Font Awesome 6 Pro";
    font-weight: 800;
}

.onMobile #mainheader #menubar a:last-of-type {
    border: 0;
}

.onMobile .links {
    margin-top: 20px;
}

.onMobile #mainheader #menubar {
    left: 0;
    transition: 0.4s;
}

.onMobile #mainheader #menubar.menuhidden {
    left: -110vw;
    transition: 0.4s;
}

/* 10_navigation.css */
.navigation {
    margin: 25px 0;
    font-family: Raleway;
    font-weight: 200;
    padding: 0 5px;
    text-align: center;
}

/*h1 + .navigation { margin-top: -35px;}*/
h1 + .navigation {
    margin-top: -30px;
}

.onMobile h1 + .navigation {
    margin-top: 0;
}

.navigation a {
    display: inline-block;
    color: var(--var-body-bgcolor-contrast);
}

.navigation a::before {
    content: '\f054';
    margin: 0px 10px;
    color: var(--var-body-bgcolor-contrast-soft);
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    line-height: 1.7em;
}

.navigation a:first-child::before {
    content: '';
}

.navigationsubmenu {
    font-family: Raleway;
    font-weight: 400;
    padding-top: 0.5em;
    max-width: 1160px;
    margin: auto;
}

.navigationsubmenu::after {
    content: '';
    display: block;
    border-bottom: 2px dotted var(--var-th-color);
    opacity: 0.3;
    padding-top: 0.5em;
}

.navigationsubmenu a {
    display: inline-block;
    color: var(--var-body-bgcolor-contrast);
}

.navigationsubmenu a::before {
    content: '\f054';
    margin: 0px 10px;
    color: var(--var-body-bgcolor-contrast-soft);
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    line-height: 1.7em;
    opacity: 0.3;
}

/* 11_header_sub.css */
.afterMainHeader {
    margin-bottom: 40px;
    background-color: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
}

.afterMainHeaderContent {
    margin: auto;
    max-width: 1200px;
    padding: 20px;
    padding-bottom: 0;
    --padding-left-right-remove: 20px;
}

.onMobile .afterMainHeaderContent {
    padding: 15px 10px;
    padding-bottom: 0;
    --padding-left-right-remove: 10px;
}

.afterMainHeaderContent h1 {
    color: inherit;
    text-align: left;
    padding: 0;
    margin: 0;
    font-size: 1.3em;
    font-weight: 800;
    font-family: 'Open Sans',Verdana,sans-serif;
}

.subHeaderMembres {
    opacity: 0.5;
    font-size: 0.9em;
    margin: 0.3em 0;
}

.afterMainHeaderContent .submit-buttons button {
    padding: 0.9em 1.2em;
    padding-right: 1.4em;
}

.afterMainHeaderContent button {
    border-radius: 0.3em !important;
}

.submenu_popup {
    display: none;
    position: absolute;
    top: calc( 100% );
    left: -3px;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.4);
    background-color: var(--var-tr-color);
    border-radius: 3px;
    min-width: 100%;
    padding: 3px;
    padding-bottom: 1px;
}

.submenu_popup button {
    width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
    margin-bottom: 1px !important;
    padding: 0.8em 1.2em !important;
    padding-right: 1.4em !important;
}

.homeOnglets {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    max-width: calc( 100% + 2 * var(--padding-left-right-remove));
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 calc( 0em - var(--padding-left-right-remove));
    padding: 0 var(--padding-left-right-remove);
    margin-top: 2em;
}

.homeOnglets > a {
    padding: 5px 14px ;
    background-color: var(--var-body-bgcolor);
    /*--var-tr-color);*/
    color: var(--var-body-bgcolor-contrast);
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 800;
    opacity: 0.5;
    display: block;
    white-space: nowrap;
}

.homeOnglets > a.sel {
    opacity: 1;
    border-top: 4px solid var(--var-th-color);
    margin-bottom: -2px;
}

.homeOnglets > a:hover {
    text-decoration: none;
}

.homeOnglets > a:not(.sel):hover {
    text-decoration: none;
    opacity: 0.8;
}

.header_sub_pined {
    margin: auto;
    width: auto;
    display: inline-block;
    margin-top: 1.4em;
    background-color: rgba(var(--var-th-color-rgb),0.9);
    color: var(--var-th-color-contrast);
    border-radius: 0.5em;
    padding: 0.4em 1em;
    text-align: center;
    font-weight: bold;
    padding-left: 1.2em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.header_sub_pined:hover {
    background-color: rgba(var(--var-th-color-rgb),1);
    transition: all 0.5s;
}

.header_sub_pined:before {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0px 10px rgba(255,255,255,0.07);
    left: -150px;
    top: -100%;
    height: 300%;
    width: 0;
    transform: rotate(40deg);
}

.header_sub_pined:hover:before {
    left: calc(100% + 200px);
    width: 80px;
    box-shadow: 0 0 0px 40px rgba(255,255,255,0.07);
    transition: all 1.5s;
}

/* 20_homeListingSelector.css */
/*.homeListingSelector { font-weight: bold; padding-left: 5px; padding-bottom: 20px;}.homeListingSelector a { text-decoration: none; transition: all 0s; display: block;}.homeListingSelector > a { display: inline;}.homeListingSelector a * { transition: all 0s;}.homeListingSelector > div { line-height: 2em; display: none; position: absolute; background-color: var(--var-tr-color); color: var(--var-tr-color-contrast); padding: 0.5em 0.7em; padding-right: 2em; border-radius: 0.3em; box-shadow: 0.2em 0.2em 1em rgba(0,0,0,0.2);} .homeListingSelector .for_newposts_nb { border: 1px solid rgba(255,255,255,0.7); background-color: var(--var-icon-unread-bgcolor); color: var(--var-icon-unread-bgcolor-contrast-soft); padding: 0; line-height: 1em; font-size: 0.9em; padding: 0.1em 0.2em; border-radius: 0.3em; cursor: inherit; min-width: 1.5em; height: 1.5em; line-height: 1.1em; border-radius: 2em; text-align: center;}*/
.homeListingSelectorNewpostsNb {
    position: absolute;
    right: -1.3em;
    top: -0.4em;
}

.homeListingSelectorNewpostsNb2 {
    position: absolute;
    left: calc( 100% - 10px);
    top: -0.5em;
}

.homeListingSelectorV2 {
    font-weight: bold;
    padding-left: 5px;
    padding-bottom: 30px;
    margin-top: -15px;
}

.homeListingSelectorV2 > a {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 5px;
    padding-bottom: 5px;
    border-radius: 3px;
    position: relative;
    text-decoration: none;
}

.onMobile .homeListingSelectorV2 > a {
    padding-right: 5px;
    padding-left: 5px;
    margin: 0 4px;
}

.homeListingSelectorV2 > a > b {
    opacity: 0.5;
}

.homeListingSelectorV2 > a.sel > b,.homeListingSelectorV2 > a:hover > b {
    opacity: 1;
    transition: all 0.2s;
}

.homeListingSelectorV2 > a.sel,.homeListingSelectorV2 > a:hover {
    opacity: 1;
    border-bottom: 3px solid var(--var-body-bgcolor-contrast);
    color: var(--var-body-bgcolor-contrast);
    transition: all 0.2s;
}

.homeListingSelectorV2 .for_newposts_nb {
    border: 1px solid rgba(255,255,255,0.7);
    background-color: var(--var-icon-unread-bgcolor);
    color: var(--var-icon-unread-bgcolor-contrast-soft);
    padding: 0;
    line-height: 1em;
    font-size: 0.9em;
    padding: 0.1em 0.2em;
    border-radius: 0.3em;
    cursor: inherit;
    min-width: 1.5em;
    height: 1.5em;
    line-height: 1.1em;
    border-radius: 2em;
    text-align: center;
}

/* 20_icons.css */
.fa-bubble {
    display: inline-block;
    border-radius: 5em;
    box-shadow: 0 0 1px rgba(0,0,0,0.1);
    padding: 0.33em 0.2em;
    box-sizing: border-box;
    width: 2.1em;
    height: 2.1em;
    text-align: center;
    background-color: var(--var-icon-read-bgcolor);
    color: var(--var-icon-read-bgcolor-contrast-soft) !important;
    font-size: 1.5em;
    line-height: 1.4em;
}

.fa-bubble:before {
    content: "\f128";
}

.fa-ico-IMG_FORUM:before {
    --fa: "\f086";
    --fa--fa: "\f086\f086";
}

.fa-ico-IMG_TOPIC:before {
    --fa: "\f075";
    --fa--fa: "\f075\f075";
}

.fa-ico-IMG_GLOBAL:before {
    --fa: "\f4af";
    --fa--fa: "\f4af\f4af";
}

.fa-ico-IMG_ANNOUNCE:before {
    --fa: "\f0a1";
    --fa--fa: "\f0a1\f0a1";
}

.fa-ico-LOCKED:before {
    --fa: "\f023";
    --fa--fa: "\f023\f023";
}

.fa-ico-IMG_STICKY:before {
    --fa: "\f249";
    --fa--fa: "\f249\f249";
}

.fa-ico-IMG_EVENT:before {
    --fa: "\f736";
    --fa--fa: "\f736\f736";
}

.fa-ico-IMG_TOPIC_MOVED:before {
    --fa: "\f0ec";
    --fa--fa: "\f0ec\f0ec";
}

.fa-ico-IMG_PM:before {
    --fa: "\f075";
    --fa--fa: "\f075\f075";
}

.fa-ico-UNREAD {
    background-color: var(--var-icon-unread-bgcolor);
    color: var(--var-icon-unread-bgcolor-contrast-soft) !important;
}

@keyframes fa-ico-HOT {
    0% {
        color: var(--var-icon-read-bgcolor-contrast-soft);
    }

    40% {
        color: var(--var-icon-read-bgcolor-contrast-soft);
    }

    45% {
        color: orange;
    }

    55% {
        color: rgb(255,218,0);
    }

    60% {
        color: red;
    }

    65% {
        color: rgb(255,218,0);
    }

    70% {
        color: red;
    }

    95% {
        color: orange;
    }

    100% {
        color: var(--var-icon-read-bgcolor-contrast-soft);
    }
}

@keyframes fa-ico-HOT-UNREAD {
    0% {
        color: var(--var-icon-unread-bgcolor-contrast-soft);
    }

    40% {
        color: var(--var-icon-unread-bgcolor-contrast-soft);
    }

    45% {
        color: orange;
    }

    55% {
        color: rgb(255,218,0);
    }

    60% {
        color: red;
    }

    65% {
        color: rgb(255,218,0);
    }

    70% {
        color: red;
    }

    95% {
        color: orange;
    }

    100% {
        color: var(--var-icon-unread-bgcolor-contrast-soft);
    }
}

.fa-ico-HOT:before {
    content: "\f06d";
    animation-name: fa-ico-HOT;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.fa-ico-HOT.fa-ico-UNREAD:before {
    animation-name: fa-ico-HOT-UNREAD;
}

/* 20_listeactivities.css */
.listactivities {
    font-weight: 300;
}

.listactivities a {
    color: red;
}

.listactivities a {
    color: inherit;
    font-weight: 600;
}

/* 20_listeevents.css */
.eventTimeTitle {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 3em;
    margin-bottom: 0.5em;
    font-size: 1.3em;
}

.eventCalendar {
    background: linear-gradient(90deg,rgba(255,255,255,0.05) 49.9%,rgba(0,0,0,0.05) 50%);
    border: 0.2em solid var(--var-th-color);
    border-radius: 0.3em;
    box-shadow: 0.5em 0.5em 1.5em rgba(0,0,0,0.2);
    cursor: default;
}

.onMobile .eventCalendar {
    font-size: 0.75em;
}

.eventCalendarHeader {
    background-color: var(--var-th-color);
    display: flex;
    justify-content: center;
    gap: 0.6em;
}

.eventCalendarContent {
    padding: 0.2em;
    opacity: 0.8;
}

.eventCalendarContent > div:first-child {
    text-align: center;
    font-weight: 900;
    font-size: 2em;
}

.eventCalendarContent > div:nth-child(2) {
    padding: 0 0.5em;
}

.eventContainer {
    flex: 1;
    border-bottom: 3px solid var(--var-tr-color-soft);
    padding-bottom: 2em;
    padding-top: 2em;
}

.eventContainer img {
    width: 100%;
    border-radius: 5px;
    border: 0.15em solid var(--var-th-color);
}

.eventMore {
    display: flex;
    width: 100%;
    gap: 2em;
}

.eventCalendarDot {
    width: 0.2em;
    background-color: var(--var-tr-color);
    border: 0.2em solid var(--var-th-color);
    box-sizing: content-box;
    border-radius: 5em;
    height: 1em;
    margin-top: -0.6em;
    margin-bottom: 0.3em;
}

.oneEvent {
    display: flex;
    gap: 2em;
    margin: 0 calc(0em - var(--padding-left-right-remove));
    padding: 0 var(--padding-left-right-remove);
}

/* 20_listeforum.css */
.listforum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.3em 1.15em;
    --padding-left-right-remove: 1.15em;
    border-bottom: 1px solid var(--var-tr-color-soft);
}

.listforum:last-child {
}

.onMobile .listforum {
    padding: 15px 10px;
}

.listforum .iconnewtopics {
    width: 50px;
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.listforum .icon {
    width: calc( var(--var-ficonsw) / 0.9 );
    text-align: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.onMobile .listforum .icon {
    display: none;
}

.listforum .iconnewtopics img,.listforum .icon img {
    max-width: 90%;
}

.listforum .datas {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
}

.onMobile .listforum .datas {
    flex-wrap: wrap;
    padding-left: 5px;
}

.listforum .datas .maindatas {
    flex-grow: 1;
}

.listforum .datas .maindatas .title {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.4em;
}

.listforum .datas .maindatas .subforums a {
    font-weight: 400;
    margin: 0.2em 0;
    margin-right: 0.4em;
    background-color: var(--var-tr-color-soft);
    padding: 0.2em 0.4em;
    display: inline-block;
    border-radius: 0.4em;
    font-size: 0.9em;
    opacity: 0.8;
    font-weight: 600;
}

.listforum .datas .maindatas .subforums a:hover {
    text-decoration: none;
    opacity: 1;
}

.listforum .datas .maindatas .subforums a:before {
    content: '\f07b';
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
    color: var(--var-tr-color-contrast-soft);
    margin-right: 0.5em;
    opacity: 0.7;
    font-size: 0.8em;
    vertical-align: 0.1em;
}

.onMobile .listforum .datas .maindatas .title {
    font-size: 1.05em;
}

.onMobile .listforum .datas .maindatas .title .topictitle {
    flex: 1;
}

.listforum .datas .maindatas .desc {
    color: var(--var-tr-color-contrast-soft);
    padding: 3px 0;
}

.listforum .datas .author {
    background-color: var(--var-tr-color-soft);
    color: var(--var-tr-color-contrast-soft);
    padding-left: 7px;
    padding-right: 4px;
    border-radius: 30px;
    text-align: center;
    /*opacity: 0.5;*/
}

/*.listforum .datas .author:hover { opacity: 1;}*/
.listforum .datas .catliketag {
    background-color: var(--var-tr-color-soft);
    color: var(--var-tr-color-contrast-soft);
    padding: 0 0.7em;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    font-weight: normal;
    font-size: 0.65em;
    margin-bottom: 0.5em;
}

.listforum .datas .moredatas {
    width: 200px;
    padding-left: 10px;
    font-size: 0.9em;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    color: var(--var-tr-color-contrast-soft);
}

.onMobile .listforum .datas .moredatas {
    width: 100%;
    padding-left: 0;
    padding-right: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.8em;
}

.listforum .datas .moredatas .topics,.listforum .datas .moredatas .posts,.listforum .datas .moredatas .views,.listforum .datas .moredatas .replies {
    width: 50%;
    flex-grow: 0;
    flex-shrink: 0;
}

.onMobile .listforum .datas .moredatas .topics,.onMobile .listforum .datas .moredatas .posts,.onMobile .listforum .datas .moredatas .views,.onMobile .listforum .datas .moredatas .replies {
    text-align: right;
    width: auto;
    flex-shrink: 1;
    order: 2;
}

.listforum .datas .moredatas .lastpost {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid var(--var-tr-color-soft);
    /* Utile pour la liste de sujets quand flex:1 en style="" */
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
}

.onMobile .listforum .datas .moredatas .lastpost {
    border: 0;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    order: 1;
    padding-right: 10px;
    width: auto;
}

.listforum .topics:after {
    content: ' sujets';
    opacity: 0.6;
}

.listforum .posts:after {
    content: ' rép.';
    opacity: 0.6;
}

.listforum .views:after {
    content: ' vues';
    opacity: 0.6;
}

.listforum .replies:after {
    content: ' rép.';
    opacity: 0.6;
}

.onMobile .listforum .posts:after {
    content: ' messages';
    opacity: 0.6;
}

.listforum div.avatar {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    overflow: hidden;
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
}

.listforum a {
    color: inherit;
}

.listforum .pagination {
    color: var(--var-tr-color-contrast-soft);
    font-size: 0.8em;
    margin-left: -0.3em;
    margin-top: 0.3em;
}

.listforum .pagination a {
    background-color: var(--var-tr-color-soft);
    display: inline-block;
    padding: 0.2em 0.6em;
    border-radius: 2px;
    margin: 0 0.3em;
}

.listforum .pagination a:hover {
    background-color: var(--var-tr-color-contrast-soft);
    color: var(--var-tr-color);
    text-decoration: none;
}

.onMobile .blocPagination {
    position: fixed;
    bottom: 0;
}

.bottomActionsSticky {
    position: sticky;
    bottom: 0px;
    z-index: 1000;
    background-color: var(--var-tr-color);
}

.bottomActionsSticky .bloc {
    box-shadow: 1px 1px 7px var(--var-tr-color-contrast-soft);
    background-color: var(--var-tr-color-soft);
}

/* 20_listemember.css */
.listmembermain {
    border-bottom: 1px solid var(--var-tr-color-soft);
    width: 100%;
}

.listmembermain > div {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em 0;
}

.listmembermain:last-child {
    border-bottom: 0;
}

.listmembermain div.avatar {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    /*overflow: hidden;*/
    position: relative;
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: -0.45em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1.5em;
}

.membergroup {
    border-bottom: 3px solid var(--var-tr-color-soft);
    padding-left: 1em;
    padding-bottom: 2em;
    margin-top: 1em;
    margin-bottom: 2em;
}

.membergroup:last-child {
    border: 0;
}

.onlinemembergroup {
    margin-top: 0.5em;
}

.onlinemembergroup:not(:last-child) {
    margin-bottom: 1.4em;
}

.onlinelistmembermain {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.6em;
    padding: 0.3em 0;
}

.onlinelistmembermain div.avatar {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    /*overflow: hidden;*/
    position: relative;
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: -0.45em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1.5em;
}

.listmember {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.2em;
    padding: 5px 0;
}

.onMobile .listmember {
    gap: 0;
}

.listmember:last-child {
    border-bottom: 0;
}

.listmember > div > i {
    opacity: 0.3;
    margin: 0 0.2em;
}

.listmember > div {
    flex-shrink: 0;
    text-align: right;
    flex-grow: 0;
}

.listmember .groupmoderator {
    font-weight: 600;
    font-size: 0.8em;
    margin-left: 1em;
    vertical-align: 0.1em;
    display: inline-block;
    background-color: rgba(0,0,0,0.1);
    padding: 0.1em 0.5em;
    border-radius: 0.3em;
    cursor: default;
}

.listmember .joined,.listmember .visited {
    width: 140px;
    text-align: left;
    opacity: 0.6;
    font-size: 0.9em;
}

.listmember .lastupdate {
    width: 200px;
    text-align: left;
}

.listmember .location {
    width: 440px;
    text-align: left;
}

.listmember .posts {
    width: 70px;
    opacity: 0.6;
    font-size: 0.9em;
}

.listmember div.actions {
    width: 60px;
    text-align: right;
}

.listmember div.username {
    text-align: left;
    font-weight: bold;
    width: 100%;
}

.onMobile .listmember div.username {
    width: 100%;
    flex-shrink: 0;
    flex: auto;
    font-weight: bold;
    font-size: 1em;
}

.onMobile .listmember > div {
    font-size: 0.8em;
}

.onMobile .listmember .joined,.onMobile .listmember .visited {
    width: 90px;
}

.onMobile .listmember .lastupdate {
    width: 150px;
}

.onMobile .listmember .location {
    width: calc( 100% - 200px );
}

/* 20_listemp.css */
.listmp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    border-bottom: 1px solid var(--var-tr-color-soft);
    padding: 5px 0;
}

.listmp:last-child {
    border-bottom: 0;
}

.listmp .subject {
    flex: 1;
}

.listmp .date {
    font-weight: 100;
    padding-left: 1em;
}

.onepm .infos {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 100;
    border-bottom: 1px solid var(--var-tr-color-soft);
}

/* 20_medias.css */
.oneMediaPreview {
    display: block;
    width: calc( ( 100% - 2em ) / 5 );
    aspect-ratio: 1/1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 0.3em;
    box-shadow: 0.1em 0.1em 0.3em rgba(0,0,0,0.1)
}

/* 20_onereply.css */
.onereply {
    padding-top: 15px;
    padding-bottom: 0px;
    padding-left: 10px;
    padding-right: 5px;
    border-right: 5px solid transparent;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.highlightpost .onereply {
    background-color: rgb(var(--var-icon-unread-bgcolor-rgb),0.3);
}

.highlightedpost .onereply {
    transition: all 4s;
}

.isfirstnewpost {
    border-top: 0.4em solid var(--var-icon-unread-bgcolor);
}

.onMobile .onereply {
    flex-wrap: wrap;
}

.onereply .metadatas {
    width: 180px;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 10px 20px;
    padding-bottom: 30px;
}

.onMobile .onereply .metadatas {
    width: 100%;
    padding: 0;
}

.onereply .maindatas {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.onDesktop .onereply .maindatas {
    width: calc( 100% - 200px );
}

.onDesktop .onereply .authorAvatar {
    text-align: center;
}

.onereply .dotMenu {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
}

.onereply .dotMenu > div > div {
    font-size: 12px;
}

.onereply .dots {
    width: 30px;
    height: 30px;
    background-color: transparent;
    color: var(--var-tr-color-contrast-soft);
    font-size: 1.2em;
    border-radius: 100px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.onereply:hover .dots {
    color: var(--var-tr-color-contrast-soft);
    background-color: var(--var-tr-color-soft);
}

.onereply .dots:hover {
    color: var(--var-tr-color);
    background-color: var(--var-tr-color-contrast-soft);
}

.onereply .dotsMenu {
    display: none;
    position: absolute;
    /* background-color: white; box-shadow: 2px 2px 7px rgba(0,0,0,0.2); border-radius: 3px; */
    right: 40px;
    text-align: left;
}

/*.onereply .dotsMenu > * { padding: 10px 20px; white-space: nowrap; display: block; font-size: 1.1em;} .onereply .dotsMenu > *:hover { background-color: #F9F9F9; cursor: pointer;} .onereply .dotsMenu > a { text-decoration: none; color: black;} .onereply .dotsMenu > a > i { margin-right: 10px; color: gray; font-size: 1.3em;}*/
.onereply .author {
    font-weight: bold;
    font-size: 1.4em;
    padding-bottom: 10px;
    text-align: center;
}

.onMobile .onereply .author {
    font-weight: bold;
    font-size: 1.4em;
    padding-bottom: 0px;
    padding-left: 10px;
    text-align: left;
}

.onereply .author .postDate {
    font-size: 0.5em;
}

.onereply .postDate {
    color: var(--var-tr-color-contrast-soft);
    font-weight: 600;
}

div.avatar.avataroffline::after,div.avatar.avataronline::after {
    content: '\f186';
    color: var(--var-tr-color-contrast);
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: -0.2em;
    top: -0.2em;
    font-size: 0.35em;
    display: block;
    line-height: 1em;
}

/*.viewprofile div.avatar.avataroffline::after,.viewprofile div.avatar.avataronline::after { right: -0em; top: -0em;}*/
div.avatar.avataronline::after {
    content: '\f111';
    color: #82BA24;
    animation: avataronlineanimate 4s infinite;
}

.onMobile div.avatar.avataroffline::after,.onMobile div.avatar.avataronline::after {
    font-size: 0.5em;
}

@keyframes avataronlineanimate {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.onereply div.avatar {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    /*overflow: hidden;*/
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 0.1em solid white;
    box-sizing: content-box;
    flex-grow: 0;
    flex-shrink: 0;
}

.onereply div.avatar.avatarX {
    font-size: 60px;
}

.onMobile .onereply div.avatar.avatarX {
    font-size: 20px;
}

.onMobile .onereply .posterMenu div.avatar.avatarX {
    font-size: 50px;
}

.onereply .posterMenuShower {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.onMobile .onereply .posterMenuShower {
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: left;
    width: fit-content;
}

.onMobile .onereply .posterMenuShower .author {
    order: 2;
    flex: 1;
    flex-grow: 1;
}

.onMobile .onereply .posterMenuShower .avatar {
    order: 1;
    flex-grow: 0;
    flex-shrink: 0;
}

.onereply .blocMessage {
    padding-bottom: 20px;
    line-height: 1.6em;
    word-break: break-word;
    font-size: 1.1em;
}

.onMobile .onereply .blocMessage {
    padding-bottom: 20px;
    line-height: 1.5em;
}

.onereply .blocMessage .actions {
    margin-top: 1em;
    color: var(--var-tr-color-contrast-soft);
    border-top: 1px solid var(--var-tr-color-soft);
    margin-top: 20px;
    padding-top: 10px;
    text-align: left;
}

.onereply .blocMessage .actions > div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.onereply .blocMessage .actions a {
    color: inherit;
}

.posthilit {
    color: rgb(79,71,0);
    font-weight: bold;
    background-color: rgb(255,227,0);
    padding: 0 0.4em;
    border-radius: 0.2em;
}

div.onereply:last-child:first-child {
    margin-bottom: 0;
}

div.onereply.firstreply .votes.main {
    width: 40px;
    text-align: center;
    vertical-align: middle;
}

div.onereply .votes i {
    /*color: gray;*/
    font-size: 1.5em;
    margin-right: 0.3em;
}

div.onereply .votes i.clickable:hover {
    color: var(--var-icon-unread-bgcolor);
    cursor: pointer;
}

div.onereply .votes i.liked {
    color: var(--var-icon-unread-bgcolor);
}

div.onereply .content img {
    max-width: 100%;
}

div.onereply .posterMenu {
    display: none;
    position: absolute;
    background-color: var(--var-tr-color);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    left: 5px;
    top: 5px;
    text-align: left;
    min-width: 400px;
    z-index: 1001;
}

.onMobile div.onereply .posterMenu {
    min-width: auto;
    width: 400px;
}

/*div.onereply .posterMenu div.avatar { width: 90px !important; height: 90px !important; line-height: 90px !important; font-size: 45px !important;}*/
.onereply .signature {
    padding: 10px 13px;
    border-radius: 5px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1);
    font-size: 0.85em;
    background-color: var(--var-tr-color-soft);
    margin-top: 10px;
    overflow: hidden;
    max-width: 100%;
}

div.onereply:not(:last-child) .bottomLiner {
    margin-left: 50px;
    margin-right: 10px;
    border-bottom: 1px solid var(--var-tr-color-soft);
    margin-top: 10px;
}

.onMobile div.onereply:not(:last-child) .bottomLiner {
    margin-left: 0px;
    margin-right: 0px;
    border-bottom: 0;
    margin-top: 0;
}

div.onereply div.sub_subject {
    font-size: 1em;
    font-weight: bold;
    padding: 0.5em 0;
    margin-bottom: 0.5em;
    font-style: italic;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.blurMessage {
    filter: blur(0.2em);
    opacity: 0.5;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blurMessage > * {
    cursor: default;
}

/* div.onereply>div.poster>div.name { text-align: center; margin-bottom: 10px;} div.onereply>div.post{ width: calc( 100% - 180px ); float: right; vertical-align: top;} div.onereply>div.post>div.sub_subject {font-size: 1em;color: #555;line-height: 1.65em;font-weight: bold;margin: 20px;} div.onereply>div.post>div.content {font-size: 1em;color: #555;line-height: 1.65em;margin: 20px;} div.onereply>div.post>div.infos { border-bottom: 1px solid #F0F0F0; background-color: #F9F9F9; padding: 10px 20px; font-weight: bold; color: gray; font-weight: 100;} div.onereply>div.post>div.infos>div { display: inline-block; vertical-align: middle;} div.onereply>div.post>div.infos>div.minipost {width: 14px;} div.onereply>div.post>div.infos>div.postdate {width: calc( 100% - 230px );} div.onereply>div.post>div.infos>div.actions {width: 200px;text-align: right;} div.onereply>div.post>div.infos>div.actions>div { display: inline-block; vertical-align: middle;margin-left: 5px;} div.onereply>div.post>div.footer { border-top: 1px solid #F0F0F0; background-color: #FCFCFC; padding: 10px 20px; font-weight: bold; color: gray;clear: both;} */
.postSubStats {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    padding: 1em 2em;
    padding-left: 3em;
}

.postSubStats > div {
    text-align: center;
}

.postSubStats > div > b {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
}

.postSubStats > div > span {
    opacity: 0.5;
}

.allparticipants {
    padding: 0;
    margin: 0;
    border: 0;
    font-size: 1.5em;
    position: absolute;
    left: calc( 100% + 10px );
    top: -30px;
    z-index: 1001;
    text-align: left;
    display: none;
    max-width: 310px;
    width: 100vw;
}

/* 20_popup_standard.css */
.popup_standard {
    background: var(--var-menu-bgcolor);
    color: var(--var-menu-bgcolor-contrast);
    border-radius: 0.25rem;
    box-shadow: 2px 2px 7px rgba(0,0,0,0.4);
    line-height: 1.3rem;
    position: absolute;
    z-index: 9999;
    font-weight: 400;
}

.popup_standard > * {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-width: 120px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.popup_standard > *:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
    color: inherit;
}

.popup_standard > * > i {
    margin-right: 10px;
    opacity: 0.8;
    font-size: 1.3em;
}

/* 20_posting.css */
.menuactions {
    margin-top: 1em;
}

/* 20_posting_like_popup.css */
.likePopupDropdown {
    display: none;
    text-align: left;
    position: absolute;
    z-index: 100;
    right: 0;
    top: calc( 100% );
    background-color: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
    border-radius: 0.3em;
    padding: 0.2em;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.4);
    font-size: 2em;
    cursor: default;
}

.onMobile .likePopupDropdown {
    font-size: 1.7em;
}

.likePopupDropdownChoice {
    cursor: pointer;
    padding: 0.2em;
    border: 0.07em solid transparent;
    border-radius: 0.3em;
}

.likePopupDropdownChoice:hover,.likePopupDropdownChoice.sel {
    border-color: var(--var-icon-unread-bgcolor);
}

.thankIcon {
    display: inline-block;
    height: 1em;
    font-size: 1em;
    line-height: 1em;
    position: relative;
    cursor: pointer;
}

.thankSvg img {
    height: 1em;
}

/* 20_posting_mention_popup.css */
/*#usernamehelper > div { position: absolute; z-index: 9999; background: var(--var-menu-bgcolor); color: var(--var-menu-bgcolor-contrast); border-radius: 0.25rem; box-shadow: 2px 2px 7px rgba(0,0,0,0.4); line-height: 1.3rem; padding: 0.4rem; font-size: 0.8rem; font-weight: 700;} #usernamehelper > div .oneusername { cursor: pointer; min-width: 120px; background-color: rgba(255,255,255,0.1); margin: 3px 0; border-radius: 3px; padding: 2px 5px;}#usernamehelper > div .oneusername:hover { background-color: rgba(255,255,255,0.2);}*/
.popup_standard .oneusername {
    padding: 0.5rem 0.5rem;
    font-size: 0.9em;
    width: 120px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.1em;
}

.popup_standard .oneusername i {
    font-size: 1em;
    margin: 0;
}

/* 20_profile_status.css */
.profileStatus {
    background-color: white;
    font-size: 0.9em;
    border-radius: 1.2em;
    display: inline-block;
    position: relative;
    box-shadow: 1px 1px 0.3em rgba(0,0,0,0.15);
    margin-bottom: 10px;
}

.profileStatusTiny.profileStatus {
    font-size: 0.7em;
}

.psPicto {
    display: flex;
    align-items: center;
    padding: 2px 5px;
    z-index: 2;
}

.psLottie {
    height: 2.56em;
    width: 2.56em;
    margin: -0.25em;
    flex-shrink: 0;
    flex-grow: 0;
}

.psSVG {
    width: 2.22em;
    padding: 0.17em;
    margin: -0.25em;
}

.psStatus {
    padding: 0 0.43em;
    font-weight: 600;
    color: black;
    overflow-wrap: break-word;
}

.psB1 {
    z-index: 1;
    position: absolute;
    top: -0.68em;
    left: 0.85em;
    height: 0.77em;
    overflow-y: hidden;
    pointer-events: none;
}

.psB1::after {
    content: '';
    display: block;
    box-shadow: 1px 1px 0.3em rgba(0,0,0,0.15);
    background-color: white;
    width: 1.28em;
    height: 1.28em;
    border-radius: 3em;
}

.psB2 {
    z-index: 1;
    position: absolute;
    box-shadow: 1px 1px 0.3em rgba(0,0,0,0.15);
    background-color: white;
    top: -1.71em;
    left: 0.34em;
    width: 0.94em;
    height: 0.94em;
    border-radius: 3em;
    pointer-events: none;
}

.psB3 {
    z-index: 1;
    position: absolute;
    box-shadow: 1px 1px 0.3em rgba(0,0,0,0.15);
    background-color: white;
    top: -2.31em;
    left: -0.17em;
    width: 0.51em;
    height: 0.51em;
    border-radius: 3em;
    pointer-events: none;
}

.profileStatusReversed .psB1 {
    z-index: 1;
    position: absolute;
    top: -0.68em;
    left: 18px;
    height: 0.77em;
    overflow-y: hidden;
    pointer-events: none;
}

.profileStatusReversed .psB2 {
    left: 28px;
    top: -21px;
}

.profileStatusReversed .psB3 {
    left: 38px;
}

.profileStatus .profileStatusEdit {
    display: none;
    border-radius: 1.2em;
    position: absolute;
    top: 1px;
    right: 1px;
    left: 1px;
    bottom: 1px;
    background-color: rgba(var(--var-tr-color-rgb),0.9);
    color: var(--var-tr-color-contrast-soft);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.profileStatus:hover .profileStatusEdit {
    display: flex;
}

.profileEditContainer {
    position: relative;
}

.profileEditContainer .profileEdit {
    display: none;
    border-radius: 1.2em;
    position: absolute;
    top: 1px;
    right: 1px;
    left: 1px;
    bottom: 1px;
    background-color: rgba(var(--var-tr-color-rgb),0.9);
    color: var(--var-tr-color-contrast-soft);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.profileEditContainer:hover .profileEdit {
    display: flex;
    cursor: pointer;
}

.profileStatusOnlineUsers {
    margin: 0;
}

.profileStatusOnlineUsers .psB1 {
    display: none;
}

.profileStatusOnlineUsers .psB2 {
    left: -1.1em;
    top: 0.85em;
    width: 0.85em;
    height: 0.85em;
}

.profileStatusOnlineUsers .psB3 {
    left: -1.8em;
    top: 0.7em;
}

.profileStatusOnlineUsers .psStatus {
    font-weight: 400;
}

/* 20_profile_view.css */
.viewprofile {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.viewprofile .mainprofile {
    width: 50%;
    flex-grow: 0;
    flex-shrink: 0;
    z-index: 2;
}

.onMobile .viewprofile .mainprofile {
    width: 100%;
}

.onDesktop .viewprofile .mainprofile.v2 {
    width: 400px;
    flex-grow: 0;
    flex-shrink: 0;
    z-index: 2;
}

.onMobile .viewprofile .mainprofile.v2 {
    width: 100%;
}

.onDesktop .rightprofile {
    flex: 1;
}

.onMobile .rightprofile {
    width: 100%;
}

.profil_contact {
    clear: both;
    padding: 8px 0;
    border-bottom: 1px solid var(--var-tr-color-soft);
    display: flex;
    gap: 5px;
    align-items: center;
}

.profil_contact:last-child {
    margin-bottom: 30px;
    border: 0;
}

.profil_contact>.name {
    width: 40%;
    max-width: 200px;
    vertical-align: middle;
    font-weight: 700;
}

.profil_contact >.value {
    flex: 1;
    vertical-align: middle;
}

.profil_datas .avatar_container {
    font-size: 6em;
    margin-top: -1em;
}

.onMobile .profil_datas .avatar_container {
    font-size: 4.5em;
    margin-top: -0.5em;
}

.profil_datas .profileEditButton {
    pointer-events: auto;
    position: absolute;
    right: 0;
    top: calc( 6em );
    background-color: var(--var-th-color);
    color: var(--var-th-color-contrast);
    border-radius: 200px;
    font-size: 1.1em;
    line-height: 1.2em;
}

.onMobile .profil_datas .profileEditButton {
    top: calc( 4.5em / 2 );
}

.profil_datas .username {
    font-weight: bold;
    font-size: 2.5em;
    text-shadow: 1px 1px 7px rgba(0,0,0,0.1);
    margin-top: 0.5em;
    margin-bottom: 0.3em;
    line-height: 1.1em;
    word-wrap: break-word;
}

.onDesktop .profil_datas .username {
    padding-left: 0.8em;
}

.onDesktop .profil_datas .ptaUsername .username {
    margin: 0;
    padding: 0;
    margin-bottom: 0.7em;
}

.profil_datas .followdatas {
    margin-bottom: 1em;
}

.onDesktop .profil_datas .followdatas {
    padding-left: 2em;
}

.profil_datas .followdatas span {
    opacity: 0.5;
}

.profil_datas .profil_top_actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.profil_datas .profil_top_actions > :first-child {
    padding-left: 2em;
    width: calc(100% - 210px);
}

.profil_datas .profil_top_actions > :last-child {
    width: 200px;
}

.profil_datas .profil_top_actions .ptaAvatar {
    width: auto;
}

.profil_datas .profil_top_actions .ptaUsername {
    flex: 1;
}

.profil_datas .ptaButtons {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.onMobile .profil_datas .ptaButtons {
    width: 350px;
}

.profil_datas .ptaButtons button {
    border-radius: 0.3em !important;
    padding: 0.5em 1em !important;
    padding-right: 1.4em;
    white-space: nowrap;
    text-align: left;
    width: 100%;
    max-width: 350px;
}

.onMobile .profil_beforebuttons {
    flex-direction: column;
}

.profileAdministration {
    display: none;
}

.onMobile .profil_datas .profil_top_actions > :first-child {
    padding-left: 0em;
    width: calc(100% - 210px);
}

.onMobile .profil_datas .profil_top_actions > :last-child {
    width: 200px;
}

.onMobile .profil_datas .profil_top_actions .ptaAvatar {
    width: auto;
}

.profil_datas .profileStatus {
    margin-left: 7em;
}

.profil_datas .ptaUsername .profileStatus {
    margin-left: -4em;
    margin-top: -2em;
    z-index: 1001;
}

.onMobile .profil_datas .profileStatus {
    margin-left: 4em;
}

.onMobile .profil_datas .ptaUsername .profileStatus {
    margin-left: -3em;
    margin-top: 0em;
}

.profil_info {
    clear: both;
    padding: 8px 0;
    border-bottom: 1px solid var(--var-tr-color-soft);
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.profil_info:last-child {
    margin-bottom: 30px;
    border: 0;
}

.v2 .profil_info:last-child,.v2 .profil_contact:last-child {
    margin-bottom: 0px;
    border: 0;
}

.v2 .profil_info i,.v2 .profil_contact i {
    margin-right: 0.4em;
}

.profil_info>.name {
    width: 40%;
    max-width: 200px;
    vertical-align: middle;
    font-weight: 700;
}

.profil_info>.value {
    flex: 1;
    vertical-align: middle;
}

.viewprofile div.avatar {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
    border: 0.1em solid white;
    box-sizing: content-box;
}

.viewProfileEdit {
    background-color: var(--var-th-color);
    color: var(--var-th-color-contrast);
    border-radius: 200px;
    font-size: 0.9em;
    line-height: 1.2em;
    padding: 0.25em;
    display: inline-block;
    opacity: 0.5;
}

.viewProfileEdit:hover {
    opacity: 1;
}

.profileOnglets {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
    /*max-width: calc(100% + 2 * var(--padding-left-right-remove));*/
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 3px solid var(--var-th-color);
}

.profileOnglets > a {
    padding: 5px 14px ;
    background-color: var(--var-th-color);
    color: var(--var-th-color-contrast);
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: 800;
    opacity: 0.5;
    display: block;
    white-space: nowrap;
}

.profileOnglets > a.sel {
    opacity: 1;
    border-top: 4px solid var(--var-tr-color);
    margin-bottom: -2px;
}

.profileOnglets > a:hover {
    text-decoration: none;
}

.profileOnglets > a:not(.sel):hover {
    text-decoration: none;
    opacity: 0.8;
}

.profileBadgesGagnes {
    display: flex;
    padding: 2em;
    gap: 2em;
    flex-wrap: wrap;
    width: 100%;
}

.onMobile .profileBadgesGagnes {
    gap: 1em;
    padding: 2em 1em;
}

.profileBadgeGagne {
    text-align: center;
    width: calc( (100% - 4*2em) / 5 );
}

.onMobile .profileBadgeGagne {
    width: calc( (100% - 2*1em) / 3 );
}

.profileAutresBadges {
    display: flex;
    padding: 2em;
    gap: 2em;
    flex-wrap: wrap;
    width: 100%;
}

.onMobile .profileAutresBadges {
    padding: 0;
}

.profileAutreBadge {
    width: calc( (100% - 2em) / 2 );
}

.onMobile .profileAutreBadge {
    width: 100%;
}

/* 20_simpleBackgroundFocus.css */
.simpleBackgroundFocus {
    background-color: none;
    transition: background-color 0.5s;
}

.simpleBackgroundFocus:hover {
    background-color: rgba(var(--var-th-color-rgb),0.04);
    transition: background-color 0.3s;
}

/* 20_ucp_edit_form.css */
.profile_edit {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.profile_edit .menu {
    width: 350px;
    flex-grow: 0;
    flex-shrink: 0;
    z-index: 2;
}

.onMobile .profile_edit .menu {
    width: 100%;
}

.onMobile .profile_edit {
    display: block;
    width: 100%;
    overflow-x: hidden;
}

.ucp_edit dl {
    display: flex;
    border-bottom: 1px solid var(--var-tr-color-soft);
    padding: 1em 0px;
    margin-top: 0;
    align-items: center;
    flex-wrap: wrap;
}

.ucp_edit dl:last-child {
    border: 0;
    padding-bottom: 0.2em;
}

.ucp_edit dl:first-child {
    padding-top: 0.2em;
}

.ucp_edit dl dt {
    flex: 1;
    padding-right: 0.5em;
}

.ucp_edit dl dt>label {
    font-weight: 200;
    font-size: 1.1em;
}

.ucp_edit dl dt>span {
    font-weight: 100;
    font-size: 0.9em;
    line-height: 1.4em;
    display: inline-block;
}

.ucp_edit dl dd {
    flex: 0;
}

.ucp_edit .equalWidth dl dd {
    flex: 1;
}

.onMobile .ucp_edit .equalWidth dl dd,.onMobile .ucp_edit .equalWidth dl dt {
    width: 100%;
}

.onMobile .ucp_edit .equalWidth dl dt {
    padding-bottom: 0.2em;
}

.onMobile .ucp_edit .equalWidth dl {
    flex-direction: column;
}

.onDesktop #profileMenu .bloc {
    background-color: var(--var-th-color);
    color: var(--var-th-color-contrast);
    border-top-right-radius: 0;
}

#profileMenu .ucpMenuTitle {
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
}

#profileMenu a {
    opacity: 0.8;
    display: block;
    padding: 5px 10px;
    background-color: var(--var-tr-color-soft);
    margin: 3px 0;
    box-sizing: border-box;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    font-weight: 100;
    position: relative;
}

.onDesktop #profileMenu a {
    background-color: var(--var-th-color-soft);
}

.onDesktop #profileMenu a.selected {
    font-weight: bold;
}

#profileMenu a.selected:after,.onMobile #profileMenu a:after {
    content: '\f054';
    position: absolute;
    right: 5px;
    font-family: "Font Awesome 6 Pro";
}

.onMobile #profileRight .cattitle {
    position: sticky;
    top: 0;
}

.onDesktop #profileRight .cattitle {
    text-align: center;
}

.ucp_edit textarea,.ucp_edit .simulateinput,.ucp_edit input[type=text],.ucp_edit input[type=password],.ucp_edit input[type=date],.ucp_edit input[type=datetime-local],.ucp_edit select {
    width: 100%;
    font-size: inherit;
    font-family: inherit;
    font-weight: 200;
    padding: 5px 10px;
    border: 1px solid var(--var-tr-color);
    border-radius: 2px;
    background-color: var(--var-tr-color-soft);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.08) inset;
    color: var(--var-tr-color-contrast);
    -webkit-appearance: none;
    text-align: left;
}

.ucp_edit select {
    width: auto;
    max-width: 100%;
    padding: 5px 5px;
}

.ucp_edit select option {
    background-color: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
}

.submit-buttons {
    display: flex;
    gap: 0.75em;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.submit-buttons input[type=reset],.submit-buttons input[type=button],.submit-buttons input[type=submit],.submit-buttons button {
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--var-th-color);
    color: var(--var-th-color-contrast);
    border-radius: 5em;
    padding: 1em 2em;
    border: 0;
    cursor: pointer;
    font-size: 1em;
}

.submit-buttons input[type=reset],.submit-buttons input[type=button].reset,.submit-buttons input[type=submit].reset {
    opacity: 0.7;
}

.submit-buttons button i {
    margin-right: 0.4em;
}

.submit-buttons.small > * {
    padding: 0.5em 1em !important;
}

.submit-buttons.round button {
    padding: 0 !important;
    width: 2em;
    height: 2em;
    text-align: center;
}

.submit-buttons.round button i {
    margin: 0;
    font-size: 0.9em;
}

.submit-buttons input[type=reset]:hover,.submit-buttons input[type=button]:hover,.submit-buttons input[type=submit]:hover,.submit-buttons button:hover {
    background-color: var(--var-th-color-hover);
}

.ucp_edit input[type=checkbox],.ucp_edit input[type=radio] {
    position: relative;
    -webkit-appearance: none;
    outline: none;
    width: 3.3em;
    height: 2.0em;
    background-color: #fff;
    border: 1px solid var(--var-icon-read-bgcolor-darker);
    /*#D9DADC;*/
    border-radius: 5em;
    box-shadow: inset -1.3em 0 0 0 var(--var-icon-read-bgcolor);
    /* #FFF */
    font-size: 1em;
    cursor: pointer;
    vertical-align: -0.6em;
    transition: all .2s linear;
}

.ucp_edit input[type=checkbox]:after,.ucp_edit input[type=radio]:after {
    content: "";
    position: absolute;
    top: 0.1em;
    left: 0.05em;
    background: transparent;
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
    box-shadow: 0.2em 0.4em 0.6em rgba(0,0,0,0.2);
    z-index: 2;
}

.ucp_edit input[type=checkbox]:checked,.ucp_edit input[type=radio]:checked {
    /* box-shadow: inset 1.3em 0 0 0 #4ed164; border-color: #4ed164; */
    box-shadow: inset 1.3em 0 0 0 var(--var-icon-unread-bgcolor);
    border-color: var(--var-icon-unread-bgcolor);
}

.ucp_edit input[type=checkbox]:checked:after,.ucp_edit input[type=radio]:checked:after {
    left: 1.4em;
    box-shadow: -0.2em 0.4em 0.3em rgba(0,0,0,0.05);
}

.ucp_edit input[type=checkbox]:before,.ucp_edit input[type=radio]:before {
    content: "O";
    position: absolute;
    top: 0.35em;
    right: 0.3em;
    opacity: 0.4;
    font-weight: bold;
    font-family: Arial;
    z-index: 1;
    transition: all .2s linear;
    color: var(--var-icon-read-bgcolor-contrast);
}

.ucp_edit input[type=checkbox]:checked:before,.ucp_edit input[type=radio]:checked:before {
    content: "I";
    top: 0.35em;
    left: 0.65em;
    color: var(--var-icon-unread-bgcolor-contrast);
}

.ucp_edit .opacityOnUnchecked {
    opacity: 0.5;
}

.ucp_edit .opacityOnUnchecked:checked {
    opacity: 1;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.5em;
    background: var(--var-icon-read-bgcolor);
    outline: none;
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 2em;
    border: 1px solid var(--var-icon-read-bgcolor-darker);
    /*#D9DADC;*/
    width: 100%;
}

input[type=range]:hover {
    opacity: 1;
}

/* The slider handle (use -webkit- (Chrome,Opera,Safari,Edge) and -moz- (Firefox) to override default look) */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    background: var(--var-icon-unread-bgcolor);
    cursor: pointer;
    border-radius: 2em;
}

input[type=range]::-moz-range-thumb {
    width: 1.2em;
    height: 1.2em;
    background: var(--var-icon-unread-bgcolor);
    cursor: pointer;
    border-radius: 2em;
}

input[type=range]:disabled {
    opacity: 1;
}

input[type=range]:disabled::-webkit-slider-thumb {
    cursor: default;
}

input[type=range]:disabled::-moz-range-thumb {
    cursor: default;
}

.ucp_edit .custom_field_contact {
    display: flex;
    align-items: center;
}

.ucp_edit .custom_field_contact span {
    padding-right: 5px;
}

.ucp_edit .custom_field_bar input {
    width: 50px;
}

.ucp_edit .custom_field_bar > span {
    display: flex;
    align-items: center;
}

.ucp_edit .custom_field_bar > span > span {
    width: 180px;
}

.ucp_edit .custom_field_image select {
    background-color: var(--var-tr-color);
}

.ucp_edit .custom_field_date input[type=text] {
    width: 3em;
}

.ucp_edit .custom_field_date input[type=text][name$="[y]"] {
    width: 4em;
}

.ucp_edit .custom_field_date select {
    width: 4em;
}

.ucp_edit .custom_field_date select[name$="[m]"] {
    width: 5em;
}

/*https://bbcode.ilma.dev/?id=draft-326fb0e5-7c85-46bb-ad4b-f40121edda47*/
/* 20_ucp_edit_poll.css */
.ucp_edit .poll dl dt>label {
    font-size: 1em;
}

.poll dl dd {
    flex-shrink: 1;
    flex: 1;
}

.poll dl dd.small {
    flex: 0;
    flex-shrink: 0;
}

/* 30_bbcode.css */
body.BBCodeStyled {
    padding: 10px;
    background: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
}

.BBCodeStyled .readOnly {
    -webkit-user-modify: read-only;
    -moz-user-modify: read-only;
    user-modify: read-only;
}

.BBCodeStyled a {
    color: orange;
    text-decoration: underline;
}

.BBCodeStyled a:hover {
    color: inherit;
    text-decoration: underline;
}

.BBCodeStyled strong {
    font-weight: bold;
}

.BBCodeStyled .code {
    background-color: var(--var-tr-color-soft);
    display: block;
    line-height: 1.5em;
    padding: 5px 10px;
    margin: 0.5em 0;
    border-radius: 0.5em;
}

.BBCodeStyled .code>cite {
    display: block;
    background-color: var(--var-tr-color-soft);
    margin: -5px -10px;
    padding: 5px 10px;
    margin-bottom: 5px;
}

.BBCodeStyled .code>cite::before {
    content: '\f121';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    font-weight: 900;
    margin-right: 0.5em;
}

.BBCodeStyled code {
    font-family: Courier,Courier New,MS sans serif;
}

/* .BBCodeStyled blockquote { background-color: var(--var-tr-color-soft); display: block; line-height: 1.5em; padding: 5px 10px; margin: 0.5em 0; border-radius: 0.5em;}.BBCodeStyled blockquote>blockquote { opacity: 0.95; font-size: 0.85em; }.BBCodeStyled blockquote>cite { display: block; background-color: var(--var-tr-color-soft); margin: -5px -10px; padding: 5px 10px; margin-bottom: 5px;}.BBCodeStyled blockquote>cite::before { content: '\f10d'; font-family: "Font Awesome 6 Pro"; color: var(--var-body-bgcolor-contrast-soft); display: inline-block; font-weight: 900; margin-right: 0.5em;}.BBCodeStyled blockquote>cite::after { content: var(--quote-suffix);} .BBCodeStyled blockquote.spoiler>cite::before { content: '\e029';}.BBCodeStyled blockquote.spoiler>cite::after { content: '';}*/
.BBCodeStyled blockquote {
    background-color: var(--var-tr-color-soft);
    display: block;
    line-height: 1.5em;
    padding: 0.4em 0.8em;
    margin: 0.5em 0;
    border-radius: 0.5em;
}

.BBCodeStyled blockquote>blockquote {
    opacity: 0.95;
    font-size: 0.85em;
}

.BBCodeStyled blockquote>cite {
    display: block;
    background-color: var(--var-tr-color-soft);
    margin: -0.4em -0.8em;
    padding: 0.4em 0.8em;
    margin-bottom: 0.4em;
}

.BBCodeStyled blockquote>cite::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    font-weight: 900;
    margin-right: 0.5em;
}

.BBCodeStyled blockquote>cite::after {
    content: var(--quote-suffix);
}

.BBCodeStyled blockquote.spoiler>cite::before {
    content: '\e029';
}

.BBCodeStyled blockquote.spoiler>cite::after {
    content: '';
}

.BBCodeStyled blockquote.members>cite::before {
    content: '\f0c0';
}

.BBCodeStyled blockquote.members>cite::after {
    content: '';
}

.BBCodeStyled blockquote.modos>cite::before {
    content: '\f0c0';
}

.BBCodeStyled blockquote.modos>cite::after {
    content: '';
}

.BBCodeStyled blockquote.admins>cite::before {
    content: '\f0c0';
}

.BBCodeStyled blockquote.admins>cite::after {
    content: '';
}

.BBCodeStyled blockquote.phpBBFile {
    width: max-content;
}

.BBCodeStyled blockquote.phpBBFile::before {
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    margin-right: 0.3em;
    font-size: 1.4em;
    content: '\f15b';
    display: inline-block;
    vertical-align: -0.1em;
    font-weight: bold;
    color: var(--var-icon-unread-bgcolor);
    opacity: 0.7;
    transition: all 0.2s;
}

.BBCodeStyled blockquote.phpBBFile:hover::before {
    opacity: 1;
}

.BBCodeStyled blockquote.phpBBFile[data-extension="pdf"]::before {
    content: '\f1c1';
}

.BBCodeStyled blockquote.phpBBFile[data-extension="csv"]::before {
    content: '\f6dd';
}

.BBCodeStyled blockquote.phpBBFile[data-extension="xls"]::before,.BBCodeStyled blockquote.phpBBFile[data-extension="xlsx"]::before {
    content: '\e64d';
}

.BBCodeStyled blockquote.phpBBFile[data-extension="doc"]::before,.BBCodeStyled blockquote.phpBBFile[data-extension="docx"]::before {
    content: '\e5ed';
}

.BBCodeStyled .quoteloadmore {
    display: none;
}

.BBCodeStyled blockquote .quoteloadmore {
    display: block;
    background-color: var(--var-tr-color-soft);
    cursor: pointer;
    text-align: center;
    line-height: 1.5em;
    padding: 0.4em 0.8em;
    margin: 0.5em 0;
    border-radius: 0.5em;
}

.BBCodeStyled blockquote .quoteloadmore:hover {
    opacity: 0.8;
}

.BBCodeStyled blockquote .realquote blockquote {
    display: none;
}

.BBCodeStyled blockquote .quoteFormatedUsername {
    display: inline;
}

.BBCodeStyled blockquote blockquote .quoteFormatedUsername {
    display: none;
}

.BBCodeStyled blockquote .quoteDefaultUsername {
    display: none;
}

.BBCodeStyled blockquote blockquote .quoteDefaultUsername {
    display: inline;
}

@keyframes BBCodeStyled_blinker {
    50% {
        opacity: 0;
    }
}

.BBCodeStyled ul {
    list-style: disc inside;
}

.BBCodeStyled ul li {
}

.BBCodeStyled ol {
    list-style: decimal inside;
}

.BBCodeStyled ol.a {
    list-style: lower-alpha inside;
}

.BBCodeStyled ol li {
}

.BBCodeStyled.edit .hide3 {
    padding: 5px;
    border: 1px dotted var(--var-body-bgcolor-contrast-soft);
}

.BBCodeStyled.edit .hide3 cite {
    display: block;
    font-style: italic;
    border-top: 1px dotted var(--var-body-bgcolor-contrast-soft);
    border-bottom: 1px dotted var(--var-body-bgcolor-contrast-soft);
    padding: 0.5em 0;
    margin-bottom: 0.5em;
}

.BBCodeStyled.edit .hide3 cite::before {
    content: "Message pour les autres : ";
    color: var(--var-body-bgcolor-contrast-soft);
}

.BBCodeStyled.edit .scroll {
    padding: 5px;
    border: 1px dotted var(--var-body-bgcolor-contrast-soft);
}

.BBCodeStyled.edit .link::before {
    content: '\f0c1\23';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    margin-right: 0.1em;
}

.BBCodeStyled.edit .target::before {
    content: '\23';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    margin-right: 0.1em;
}

.BBCodeStyled.edit .tex {
    font-style: italic;
}

.BBCodeStyled.edit .tex::before {
    content: '\f698 [[';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    font-weight: 900;
    margin-right: 0.5em;
    margin-left: 0.5em;
}

.BBCodeStyled.edit .tex::after {
    content: ']]';
    font-family: "Font Awesome 6 Pro";
    color: var(--var-body-bgcolor-contrast-soft);
    display: inline-block;
    font-weight: 900;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

/*.BBCodeStyled table {}*/
.BBCodeStyled td,.BBCodeStyled th {
    padding: 0.2em 0.5em;
    border: 1px solid var(--var-tr-color-contrast-soft);
    vertical-align: middle;
}

.BBCodeStyled th {
    tet-align: center;
    font-weight: bold;
}

.BBCodeStyled .emoji {
    font-size: 1.5em;
    vertical-align: baseline;
}

/* 90_footer.css */
.copyright {
    text-align: center;
    max-width: 1300px;
    margin: auto;
    padding: 20px;
}

.copyright .liens {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 1em;
    flex-wrap: wrap;
}

.copyright .liens>div {
    padding: 0 5px;
    text-align: left;
    line-height: 2em;
}

.onMobile .copyright .liens>div {
    width: 100%;
}

/* #footer { clear: both; background-color: #171F48; padding: 50px 0px; margin-top: 100px; } .copyright a { color: inherit; } */
/*.sticky #footer .copyright { padding: 10px; font-size: 0.7em;} .sticky #footer .copyright .ibc { flex-wrap: wrap;}.sticky #footer .copyright .ibc > div { width: 50%;} */
/* 95_sceditor.css */
/*! SCEditor | (C) 2011-2016,Sam Clarke | sceditor.com/license */
/** * Default SCEditor * http://www.sceditor.com/ * * Copyright (C) 2011-16,Sam Clarke * * SCEditor is licensed under the MIT license: *	http://www.opensource.org/licenses/mit-license.php */
div.sceditor-grip,.sceditor-button div {
    background-image: url("/static/images/other/famfamfam.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 16px;
    text-align: center;
}

.sceditor-button div::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 15px;
    color: var(--var-tr-color-contrast-soft);
    line-height: 15px;
    text-align: center;
    width: 100%;
    display: block;
}

.sceditor-button-youtube div {
    background: none;
}

.sceditor-button-youtube div::before {
    content: '\f167';
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.sceditor-button-file div {
    background: none;
}

.sceditor-button-file div::before {
    content: '\f0c6';
}

.sceditor-button-link div {
    background: none;
}

.sceditor-button-link div::before {
    content: '\f0c1';
}

.sceditor-button-unlink div {
    background: none;
}

.sceditor-button-unlink div::before {
    content: '\f127';
}

.sceditor-button-underline div {
    background: none;
}

.sceditor-button-underline div::before {
    content: '\f0cd';
}

.sceditor-button-time div {
    background-position: 0px -64px;
}

.sceditor-button-table div {
    background: none;
}

.sceditor-button-table div::before {
    content: '\f0ce';
}

.sceditor-button-superscript div {
    background: none;
}

.sceditor-button-superscript div::before {
    content: '\f12b';
}

.sceditor-button-subscript div {
    background: none;
}

.sceditor-button-subscript div::before {
    content: '\f12c';
}

.sceditor-button-strike div {
    background: none;
}

.sceditor-button-strike div::before {
    content: '\f0cc';
}

.sceditor-button-source div {
    background: none;
}

.sceditor-button-source div::before {
    content: '\f044';
}

.sceditor-button-miscoptions div {
    background: none;
}

.sceditor-button-miscoptions div::before {
    content: '\f141';
}

.sceditor-button-alloptions div {
    background: none;
}

.sceditor-button-alloptions div::before {
    content: '\2b';
}

.sceditor-button-size div {
    background: none;
}

.sceditor-button-size div::before {
    content: '\f894';
}

.sceditor-button-rtl div {
    background: none;
}

.sceditor-button-rtl div::before {
    content: '\f878';
}

.sceditor-button-right div {
    background: none;
}

.sceditor-button-right div::before {
    content: '\f038';
}

.sceditor-button-removeformat div {
    background: none;
}

.sceditor-button-removeformat div::before {
    content: '\f87d';
}

.sceditor-button-quote div {
    background: none;
}

.sceditor-button-quote div::before {
    content: '\f10d';
}

.sceditor-button-print div {
    background-position: 0px -240px;
}

.sceditor-button-pastetext div {
    background-position: 0px -256px;
}

.sceditor-button-paste div {
    background-position: 0px -272px;
}

.sceditor-button-outdent div {
    background-position: 0px -288px;
}

.sceditor-button-orderedlist div {
    background: none;
}

.sceditor-button-orderedlist div::before {
    content: '\f0cb';
}

.sceditor-button-maximize div {
    background: none;
}

.sceditor-button-maximize div::before {
    content: '\f31e';
}

.sceditor-button-ltr div {
    background: none;
}

.sceditor-button-ltr div::before {
    content: '\f1dd';
}

.sceditor-button-left div {
    background: none;
}

.sceditor-button-left div::before {
    content: '\f036';
}

.sceditor-button-justify div {
    background: none;
}

.sceditor-button-justify div::before {
    content: '\f039';
}

.sceditor-button-italic div {
    background: none;
}

.sceditor-button-italic div::before {
    content: '\f033';
}

.sceditor-button-indent div {
    background-position: 0px -400px;
}

.sceditor-button-image div {
    background: none;
}

.sceditor-button-image div::before {
    content: '\f03e';
}

.sceditor-button-horizontalrule div {
    background: none;
}

.sceditor-button-horizontalrule div::before {
    content: '\f86c';
}

.sceditor-button-format div {
    background-position: 0px -448px;
}

.sceditor-button-font div {
    background: none;
}

.sceditor-button-font div::before {
    content: '\f031';
}

.sceditor-button-emoticon div {
    background: none;
}

.sceditor-button-emoticon div::before {
    content: '\f58a';
}

.sceditor-button-emojis div {
    background: none;
}

.sceditor-button-emojis div::before {
    content: '\f118';
}

.sceditor-button-gif div {
    background: none;
}

.sceditor-button-gif div::before {
    content: '\e190';
}

.sceditor-button-pixabay div {
    background: none;
}

.sceditor-button-pixabay div::before {
    content: '\e504';
}

.sceditor-button-lotties div {
    background: none;
    font-size: 10px !important;
    color: red !important;
    line-height: 10px !important;
}

.sceditor-button-lotties div::before {
    content: '';
    display: none;
    width: 1px;
}

.sceditor-button-email div {
    background: none;
}

.sceditor-button-email div::before {
    content: '\f0e0';
}

.sceditor-button-date div {
    background-position: 0px -512px;
}

.sceditor-button-cut div {
    background-position: 0px -528px;
}

.sceditor-button-copy div {
    background-position: 0px -544px;
}

.sceditor-button-color div {
    background: none;
}

.sceditor-button-color div::before {
    content: '\f53f';
}

.sceditor-button-code div {
    background: none;
}

.sceditor-button-code div::before {
    content: '\f121';
}

.sceditor-button-center div {
    background: none;
}

.sceditor-button-center div::before {
    content: '\f037';
}

.sceditor-button-bulletlist div {
    background: none;
}

.sceditor-button-bulletlist div::before {
    content: '\f0ca';
}

.sceditor-button-bold div {
    background: none;
}

.sceditor-button-bold div::before {
    content: '\f032';
}

div.sceditor-grip {
    background-position: 0px -640px;
    width: 10px;
    height: 10px;
}

.rtl div.sceditor-grip {
    background-position: 0px -650px;
}

/** * SCEditor * http://www.sceditor.com/ * * Copyright (C) 2017,Sam Clarke (samclarke.com) * * SCEditor is licensed under the MIT license: *	http://www.opensource.org/licenses/mit-license.php */
/*--------------------------------------------------- LESS Elements 0.7 --------------------------------------------------- A set of useful LESS mixins More info at: http://lesselements.com ---------------------------------------------------*/
.sceditor-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    /*background: #fff;*/
    border: 2px solid rgba(0,0,0,0.1);
    font-size: 13px;
    font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
    color: #333;
    line-height: 1;
    font-weight: bold;
    height: 250px;
    border-radius: 4px;
    background-clip: padding-box;
    background-color: var(--var-tr-color);
}

.sceditor-container *,.sceditor-container *:before,.sceditor-container *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.sceditor-container,.sceditor-container div,div.sceditor-dropdown,div.sceditor-dropdown div {
    padding: 0;
    margin: 0;
    z-index: 3;
}

.sceditor-container iframe,.sceditor-container textarea {
    display: block;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    line-height: 1.25;
    border: 0;
    outline: none;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 14px;
    color: #111;
    padding: 0;
    /*margin: 5px;*/
    resize: none;
    /*background: #fff;*/
    height: auto !important;
    width: auto !important;
    width: 100%;
    box-sizing: border-box;
    /*width: calc(100% - 10px) !important;*/
    min-height: 1px;
}

.sceditor-container textarea {
    /*margin: 7px 5px;*/
    padding: 5px 10px;
    background-color: var(--var-tr-color-soft);
    color: var(--var-tr-color-contrast);
    font-size: inherit;
}

div.sceditor-dnd-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,0.2);
    border: 5px dashed #aaa;
    z-index: 200;
    font-size: 2em;
    text-align: center;
    color: #aaa;
}

div.sceditor-dnd-cover p {
    position: relative;
    top: 45%;
    pointer-events: none;
}

div.sceditor-resize-cover {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0.3;
}

div.sceditor-grip {
    overflow: hidden;
    width: 10px;
    height: 10px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

div.sceditor-grip.has-icon {
    background-image: none;
}

.sceditor-maximize {
    position: fixed;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100% !important;
    border-radius: 0;
    background-clip: padding-box;
    z-index: 2000;
}

html.sceditor-maximize,body.sceditor-maximize {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.sceditor-maximize div.sceditor-grip {
    display: none;
}

.sceditor-maximize div.sceditor-toolbar {
    border-radius: 0;
    background-clip: padding-box;
}

div.sceditor-dropdown {
    position: absolute;
    border: 1px solid #ccc;
    background: #fff;
    z-index: 4000;
    padding: 10px;
    font-weight: normal;
    font-size: 15px;
    border-radius: 2px;
    background-clip: padding-box;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

div.sceditor-dropdown *,div.sceditor-dropdown *:before,div.sceditor-dropdown *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.sceditor-dropdown a,div.sceditor-dropdown a:link {
    color: #333;
}

div.sceditor-dropdown form {
    margin: 0;
}

div.sceditor-dropdown label {
    display: block;
    font-weight: bold;
    color: #3c3c3c;
    padding: 4px 0;
}

div.sceditor-dropdown input,div.sceditor-dropdown textarea {
    font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
    outline: 0;
    padding: 4px;
    border: 1px solid #ccc;
    border-top-color: #888;
    margin: 0 0 0.75em;
    border-radius: 1px;
    background-clip: padding-box;
}

div.sceditor-dropdown textarea {
    padding: 6px;
}

div.sceditor-dropdown input:focus,div.sceditor-dropdown textarea:focus {
    border-color: #aaa;
    border-top-color: #666;
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.1);
}

div.sceditor-dropdown .button {
    font-weight: bold;
    color: #444;
    padding: 6px 12px;
    background: #ececec;
    border: solid 1px #ccc;
    border-radius: 2px;
    background-clip: padding-box;
    cursor: pointer;
    margin: 0.3em 0 0;
}

div.sceditor-dropdown .button:hover {
    background: #f3f3f3;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}

div.sceditor-font-picker,div.sceditor-fontsize-picker,div.sceditor-format {
    padding: 6px 0;
}

div.sceditor-color-picker {
    padding: 4px;
}

div.sceditor-emoticons,div.sceditor-more-emoticons {
    padding: 0;
}

.sceditor-pastetext textarea {
    border: 1px solid #bbb;
    width: 20em;
}

.sceditor-emoticons img,.sceditor-more-emoticons img {
    padding: 0;
    cursor: pointer;
    margin: 2px;
}

.sceditor-more {
    border-top: 1px solid #bbb;
    display: block;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    padding: 6px 0;
}

.sceditor-dropdown a:hover {
    background: #eee;
}

.sceditor-fontsize-option,.sceditor-font-option,.sceditor-format a {
    display: block;
    padding: 7px 10px;
    cursor: pointer;
    text-decoration: none;
    color: #222;
}

.sceditor-fontsize-option {
    padding: 7px 13px;
}

.sceditor-color-column {
    float: left;
}

.sceditor-color-option {
    display: block;
    border: 2px solid #fff;
    height: 18px;
    width: 18px;
    overflow: hidden;
}

.sceditor-color-option:hover {
    border: 1px solid #aaa;
}

div.sceditor-toolbar {
    flex-shrink: 0;
    overflow: hidden;
    padding: 5px;
    /*3px 5px 2px;*/
    /*background: #f7f7f7;*/
    background: rgba(0,0,0,0.1);
    line-height: 0;
    text-align: left;
    user-select: none;
    border-radius: 3px 3px 0 0;
    background-clip: padding-box;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

div.sceditor-group {
    /*background: #ddd;*/
    background-color: var(--var-tr-color);
    /*margin: 1px 5px 1px 0;*/
    padding: 1px;
    /*border-bottom: 1px solid #aaa;*/
    border-radius: 3px;
    background-clip: padding-box;
    display: flex;
    gap: 2px;
}

.sceditor-button {
    /*float: left;*/
    cursor: pointer;
    padding: 3px 0px;
    width: 26px;
    height: 20px;
    border-radius: 3px;
    background-clip: padding-box;
}

.sceditor-button:hover,.sceditor-button:active,.sceditor-button.active {
    /*background: #fff;*/
    background: var(--var-tr-color-contrast-soft);
    /*box-shadow: inset 1px 1px 0 rgba(0,0,0,0.3),inset -1px 0 rgba(0,0,0,0.3),inset 0 -1px 0 rgba(0,0,0,0.2);*/
}

.sceditor-button:hover div::before,.sceditor-button:active div::before,.sceditor-button.active div::before {
    /*background: #fff;*/
    color: var(--var-tr-color);
}

.sceditor-button:active {
    /*background: #fff; box-shadow: inset 1px 1px 0 rgba(0,0,0,0.3),inset -1px 0 rgba(0,0,0,0.3),inset 0 -1px 0 rgba(0,0,0,0.2),inset 0 0 8px rgba(0,0,0,0.3);*/
}

.sceditor-button:active div::before {
    /*background: #fff;*/
    color: var(--var-tr-color-contrast-soft);
}

.sceditor-button.disabled:hover {
    background: inherit;
    cursor: default;
    box-shadow: none;
}

.sceditor-button.disabled:hover div::before {
    color: var(--var-tr-color-contrast-soft);
}

.sceditor-button,.sceditor-button div {
    display: block;
}

.sceditor-button svg {
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 2px 0;
    fill: #111;
    text-decoration: none;
    pointer-events: none;
    line-height: 1;
}

.sceditor-button.disabled svg {
    fill: #888;
}

.sceditor-button div {
    display: inline-block;
    margin: 2px 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

.sceditor-button.has-icon div {
    display: none;
}

.sceditor-button.disabled div {
    opacity: 0.3;
}

.text .sceditor-button,.text .sceditor-button div,.sceditor-button.text,.sceditor-button.text div,.text-icon .sceditor-button,.text-icon .sceditor-button div,.sceditor-button.text-icon,.sceditor-button.text-icon div {
    display: inline-block;
    width: auto;
    line-height: 16px;
    font-size: 1em;
    color: inherit;
    text-indent: 0;
}

.text-icon .sceditor-button.has-icon div,.sceditor-button.has-icon div,.text .sceditor-button div,.sceditor-button.text div {
    padding: 0 2px;
    background: none;
}

.text .sceditor-button svg,.sceditor-button.text svg {
    display: none;
}

.text-icon .sceditor-button div,.sceditor-button.text-icon div {
    padding: 0 2px 0 20px;
}

.rtl div.sceditor-toolbar {
    text-align: right;
}

.rtl .sceditor-button {
    float: right;
}

.rtl div.sceditor-grip {
    right: auto;
    left: 0;
}

emoji-picker.limitedHeight {
    height: 220px;
}

.sceditor-emojis-picker {
    padding: 0 !important;
}

.phpBBlottieframe {
    width: 1.92em;
    height: 1.92em;
    border: 0;
    display: inline-block;
    vertical-align: -0.3em;
}

/* 99_awesomeFonts.css */
.fa,.fa-brands,.fa-classic,.fa-duotone,.fa-light,.fa-regular,.fa-sharp,.fa-sharp-duotone,.fa-solid,.fa-thin,.fab,.fad,.fadl,.fadr,.fadt,.fal,.far,.fas,.fasdl,.fasdr,.fasds,.fasdt,.fasl,.fasr,.fass,.fast,.fat {
    line-height: inherit !important;
}

/* 99_badges.css */
.badge {
    display: inline-block;
    --myfilterfull: brightness(1);
    --myfilterhide: brightness(0.2);
    cursor: pointer;
}

.badge img {
    width: 100%;
    height: 100%;
}

.badge:not(.animateonce):not(.noanimate):hover img {
    animation: badgeSpin 1.2s linear ;
}

.badge.animateonce {
    cursor: default;
    animation: badgeSpin 0.8s linear ;
}

.animbadge:hover .badge {
    animation: badgeSpin 0.8s linear ;
    cursor: inherit;
}

@keyframes badgeSpin {
    0% {
        transform: rotateY(0deg) scale(0.5);
        filter: var(--myfilterfull);
    }

    4% {
        transform: rotateY(90deg) scale(0.52);
        filter: var(--myfilterhide);
    }

    10% {
        transform: rotateY(180deg) scale(0.55);
        filter: var(--myfilterfull);
    }

    18% {
        transform: rotateY(270deg) scale(0.59);
        filter: var(--myfilterhide);
    }

    28% {
        transform: rotateY(360deg) scale(0.64);
        filter: var(--myfilterfull);
    }

    40% {
        transform: rotateY(450deg) scale(0.7);
        filter: var(--myfilterhide);
    }

    54% {
        transform: rotateY(540deg) scale(0.77);
        filter: var(--myfilterfull);
    }

    70% {
        transform: rotateY(630deg) scale(0.85);
        filter: var(--myfilterhide);
    }

    100% {
        transform: rotateY(720deg) scale(1);
        filter: var(--myfilterfull);
    }
}

.groupbadge {
    width: calc( ( 100% - 1em ) / 2);
    background-color: rgba(100,100,100,0.05);
    padding: 1em;
    border-radius: 0.8em;
}

.groupbadge:hover {
    background-color: rgba(100,100,100,0.1)
}

.onMobile .groupbadge {
    width: 100%;
}

/* 99_blog_00_reset.css */
.allreset {
    font-size: 16px !important;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif !important;
    line-height: 1.4 !important;
}

.allreset,.allreset * {
    all: revert ;
}

.allreset h1,.allreset h2,.allreset h3 {
    all: revert;
}

.allreset table {
    border-collapse: collapse
}

.allreset table:not([cellpadding]) td,.allreset table:not([cellpadding]) th {
    padding: .4rem
}

.allreset table[border]:not([border="0"]):not([style*=border-width]) td,.allreset table[border]:not([border="0"]):not([style*=border-width]) th {
    border-width: 1px
}

.allreset table[border]:not([border="0"]):not([style*=border-style]) td,.allreset table[border]:not([border="0"]):not([style*=border-style]) th {
    border-style: solid
}

.allreset table[border]:not([border="0"]):not([style*=border-color]) td,.allreset table[border]:not([border="0"]):not([style*=border-color]) th {
    border-color: #ccc
}

.allreset figure {
    display: table;
    margin: 1rem auto
}

.allreset figure figcaption {
    color: #999;
    display: block;
    margin-top: .25rem;
    text-align: center
}

.allreset hr {
    border-color: #ccc;
    border-style: solid;
    border-width: 1px 0 0 0
}

.allreset .mce-content-body {
    padding: 0 20px;
}

.allreset .mce-content-body code {
    background-color: #e8e8e8;
    border-radius: 3px;
    padding: .1rem .2rem;
    font-size: 0.825em;
}

.allreset .mce-content-body:not([dir=rtl]) blockquote {
    border-left: 2px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1rem
}

.allreset .mce-content-body[dir=rtl] blockquote {
    border-right: 2px solid #ccc;
    margin-right: 1.5rem;
    padding-right: 1rem
}

/* 99_blog_01_more.css */
/** * http://prismjs.com/ * Dracula Theme originally by Zeno Rocha [@zenorocha] * https://draculatheme.com/ * * Ported for PrismJS by Albert Vallverdu [@byverdu] */
@keyframes tox-rotation {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.mce-content-body .mce-item-anchor {
    background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center
}

.mce-content-body .mce-item-anchor:empty {
    cursor: default;
    display: inline-block;
    height: 12px !important;
    padding: 0 2px;
    -webkit-user-modify: read-only;
    -moz-user-modify: read-only;
    -webkit-user-select: all;
    user-select: all;
    width: 8px !important
}

.mce-content-body .mce-item-anchor:not(:empty) {
    background-position-x: 2px;
    display: inline-block;
    padding-left: 12px
}

.mce-content-body .mce-item-anchor[data-mce-selected] {
    outline-offset: 1px
}

.mce-content-body .tox-comments-visible .tox-comment[contenteditable=false]:not([data-mce-selected]),.mce-content-body .tox-comments-visible span.tox-comment img:not([data-mce-selected]),.mce-content-body .tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]),.mce-content-body .tox-comments-visible span.tox-comment>audio:not([data-mce-selected]),.mce-content-body .tox-comments-visible span.tox-comment>video:not([data-mce-selected]) {
    outline: 3px solid #ffe796
}

.tox-comments-visible .tox-comment[contenteditable=false][data-mce-annotation-active=true]:not([data-mce-selected]) {
    outline: 3px solid #ffcf30
}

.tox-comments-visible span.tox-comment:not([data-mce-selected]) {
    background-color: #ffe796;
    outline: 0
}

.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]:not([data-mce-selected=inline-boundary]) {
    background-color: #ffcf30
}

.tox-comments-visible span.tox-comment[data-mce-selected] {
    background-color: #ffcf30;
    border-radius: 3px;
    box-shadow: 0 0 0 2px #006ce7
}

.tox-comments-visible span.tox-comment[data-mce-selected]:has(img[data-mce-selected],> audio[data-mce-selected],> video[data-mce-selected],span.mce-preview-object[data-mce-selected]) {
    box-shadow: none
}

.tox-comments-visible span.tox-comment[data-mce-selected] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-selected] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-selected]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-selected]>video:not([data-mce-selected]) {
    box-shadow: 0 0 0 5px #006ce7
}

.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] img:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true] span.mce-preview-object:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>audio:not([data-mce-selected]),.tox-comments-visible span.tox-comment[data-mce-annotation-active=true]>video:not([data-mce-selected]) {
    outline: 3px solid #ffcf30
}

.tox-checklist>li:not(.tox-checklist--hidden) {
    list-style: none;
    margin: .25em 0
}

.tox-checklist>li:not(.tox-checklist--hidden)::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
    cursor: pointer;
    height: 1em;
    margin-left: -1.5em;
    margin-top: .125em;
    position: absolute;
    width: 1em
}

.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
    content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")
}

[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before {
    margin-left: 0;
    margin-right: -1.5em
}

.mce-content-body code[class*=language-],.mce-content-body pre[class*=language-] {
    color: #000;
    background: 0 0;
    text-shadow: 0 1px #fff;
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    font-size: 0.8125em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    tab-size: 4;
    hyphens: none
}

.mce-content-body code[class*=language-] ::selection,.mce-content-body code[class*=language-]::selection,.mce-content-body pre[class*=language-] ::selection,.mce-content-body pre[class*=language-]::selection {
    text-shadow: none;
    background: #b3d4fc
}

.mce-content-body pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto
}

.mce-content-body :not(pre)>code[class*=language-],.mce-content-body pre[class*=language-] {
    background: #f5f2f0
}

.mce-content-body :not(pre)>code[class*=language-] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal
}

.mce-content-body .token.cdata,.mce-content-body .token.comment,.mce-content-body .token.doctype,.mce-content-body .token.prolog {
    color: #708090
}

.mce-content-body .token.punctuation {
    color: #999
}

.mce-content-body .token.namespace {
    opacity: .7
}

.mce-content-body .token.boolean,.mce-content-body .token.constant,.mce-content-body .token.deleted,.mce-content-body .token.number,.mce-content-body .token.property,.mce-content-body .token.symbol,.mce-content-body .token.tag {
    color: #905
}

.mce-content-body .token.attr-name,.mce-content-body .token.builtin,.mce-content-body .token.char,.mce-content-body .token.inserted,.mce-content-body .token.selector,.mce-content-body .token.string {
    color: #690
}

.mce-content-body .language-css .token.string,.mce-content-body .style .token.string,.mce-content-body .token.entity,.mce-content-body .token.operator,.mce-content-body .token.url {
    color: #9a6e3a;
    background: hsla(0,0%,100%,.5)
}

.mce-content-body .token.atrule,.mce-content-body .token.attr-value,.mce-content-body .token.keyword {
    color: #07a
}

.mce-content-body .token.class-name,.mce-content-body .token.function {
    color: #dd4a68
}

.mce-content-body .token.important,.mce-content-body .token.regex,.mce-content-body .token.variable {
    color: #e90
}

.mce-content-body .token.bold,.mce-content-body .token.important {
    font-weight: 700
}

.mce-content-body .token.italic {
    font-style: italic
}

.mce-content-body .token.entity {
    cursor: help
}

.mce-content-body {
    overflow-wrap: break-word;
    word-wrap: break-word
}

.mce-content-body .mce-visual-caret {
    background-color: #000;
    background-color: currentColor;
    position: absolute
}

.mce-content-body .mce-visual-caret-hidden {
    display: none
}

.mce-content-body [data-mce-caret] {
    left: -1000px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: auto;
    top: 0
}

.mce-content-body .mce-offscreen-selection {
    left: -2000000px;
    max-width: 1000000px;
    position: absolute
}

.mce-content-body [contentEditable=false] {
    cursor: default
}

.mce-content-body [contentEditable=true] {
    cursor: text
}

.mce-content-body .tox-cursor-format-painter {
    cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default
}

.mce-content-body div.mce-footnotes hr {
    margin-inline: 0 auto; width: 25%
}

.mce-content-body div.mce-footnotes li>a.mce-footnotes-backlink {
    -webkit-text-decoration: none;
    text-decoration: none
}

.mce-content-body tiny-math-block {
    display: flex;
    justify-content: center;
    margin: 16px 0 16px 0
}

.mce-content-body tiny-math-inline {
    display: inline-block
}

.mce-content-body figure.align-left {
    float: left
}

.mce-content-body figure.align-right {
    float: right
}

.mce-content-body figure.image.align-center {
    display: table;
    margin-left: auto;
    margin-right: auto
}

.mce-content-body .mce-preview-object {
    border: 1px solid gray;
    display: inline-block;
    line-height: 0;
    margin: 0 2px;
    position: relative
}

.mce-content-body .mce-preview-object .mce-shim {
    background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.mce-content-body .mce-preview-object[data-mce-selected="2"] .mce-shim {
    display: none
}

.mce-content-body .mce-content-body .mce-mergetag {
    cursor: default !important;
    -webkit-user-select: none;
    user-select: none
}

.mce-content-body .mce-mergetag:hover {
    background-color: rgba(0,108,231,.1)
}

.mce-content-body .mce-mergetag-affix {
    background-color: rgba(0,108,231,.1);
    color: #006ce7
}

.mce-content-body .mce-object {
    background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
    border: 1px dashed #aaa
}

.mce-content-body .mce-pagebreak {
    border: 1px dashed #aaa;
    cursor: default;
    display: block;
    height: 5px;
    margin-top: 15px;
    page-break-before: always;
    width: 100%
}

.mce-content-body .tiny-pageembed .mce-shim {
    background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.mce-content-body .tiny-pageembed[data-mce-selected="2"] .mce-shim {
    display: none
}

.mce-content-body .tiny-pageembed {
    display: inline-block;
    position: relative
}

.mce-content-body .tiny-pageembed--16by9,.mce-content-body .tiny-pageembed--1by1,.mce-content-body .tiny-pageembed--21by9,.mce-content-body .tiny-pageembed--4by3 {
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%
}

.mce-content-body .tiny-pageembed--21by9 {
    padding-top: 42.857143%
}

.mce-content-body .tiny-pageembed--16by9 {
    padding-top: 56.25%
}

.mce-content-body .tiny-pageembed--4by3 {
    padding-top: 75%
}

.mce-content-body .tiny-pageembed--1by1 {
    padding-top: 100%
}

.mce-content-body .tiny-pageembed--16by9 iframe,.mce-content-body .tiny-pageembed--1by1 iframe,.mce-content-body .tiny-pageembed--21by9 iframe,.mce-content-body .tiny-pageembed--4by3 iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.mce-content-body[data-mce-placeholder] {
    position: relative
}

.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
    color: rgba(34,47,62,.7);
    content: attr(data-mce-placeholder);
    position: absolute
}

.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
    left: 1px
}

.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
    right: 1px
}

.mce-content-body div.mce-resizehandle {
    background-color: #4099ff;
    border-color: #4099ff;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    height: 10px;
    position: absolute;
    width: 10px;
    z-index: 1298
}

.mce-content-body div.mce-resizehandle:hover {
    background-color: #4099ff
}

.mce-content-body div.mce-resizehandle:first-of-type {
    cursor: nwse-resize
}

.mce-content-body div.mce-resizehandle:nth-of-type(2) {
    cursor: nesw-resize
}

.mce-content-body div.mce-resizehandle:nth-of-type(3) {
    cursor: nwse-resize
}

.mce-content-body div.mce-resizehandle:nth-of-type(4) {
    cursor: nesw-resize
}

.mce-content-body .mce-resize-backdrop {
    z-index: 10000
}

.mce-content-body .mce-clonedresizable {
    cursor: default;
    opacity: .5;
    outline: 1px dashed black;
    position: absolute;
    z-index: 10001
}

.mce-content-body .mce-clonedresizable.mce-resizetable-columns td,.mce-content-body .mce-clonedresizable.mce-resizetable-columns th {
    border: 0
}

.mce-content-body .mce-resize-helper {
    background: #555;
    background: rgba(0 0 0%);
    border: 1px;
    border-radius: 3px;
    color: #fff;
    display: none;
    font-family: sans-serif;
    font-size: 12px;
    line-height: 14px;
    margin: 5px 10px;
    padding: 5px;
    position: absolute;
    white-space: nowrap;
    z-index: 10002
}

.mce-content-body .tox-rtc-user-selection {
    position: relative
}

.mce-content-body .tox-rtc-user-cursor {
    bottom: 0;
    cursor: default;
    position: absolute;
    top: 0;
    width: 2px
}

.mce-content-body .tox-rtc-user-cursor::before {
    background-color: inherit;
    border-radius: 50%;
    content: '';
    display: block;
    height: 8px;
    position: absolute;
    right: -3px;
    top: -3px;
    width: 8px
}

.mce-content-body .tox-rtc-user-cursor:hover::after {
    background-color: inherit;
    border-radius: 100px;
    box-sizing: border-box;
    color: #fff;
    content: attr(data-user);
    display: block;
    font-size: 12px;
    font-weight: 700;
    left: -5px;
    min-height: 8px;
    min-width: 8px;
    padding: 0 12px;
    position: absolute;
    top: -11px;
    white-space: nowrap;
    z-index: 1000
}

.mce-content-body .tox-rtc-user-selection--1 .tox-rtc-user-cursor {
    background-color: #2dc26b
}

.mce-content-body .tox-rtc-user-selection--2 .tox-rtc-user-cursor {
    background-color: #e03e2d
}

.mce-content-body .tox-rtc-user-selection--3 .tox-rtc-user-cursor {
    background-color: #f1c40f
}

.mce-content-body .tox-rtc-user-selection--4 .tox-rtc-user-cursor {
    background-color: #3598db
}

.mce-content-body .tox-rtc-user-selection--5 .tox-rtc-user-cursor {
    background-color: #b96ad9
}

.mce-content-body .tox-rtc-user-selection--6 .tox-rtc-user-cursor {
    background-color: #e67e23
}

.mce-content-body .tox-rtc-user-selection--7 .tox-rtc-user-cursor {
    background-color: #aaa69d
}

.mce-content-body .tox-rtc-user-selection--8 .tox-rtc-user-cursor {
    background-color: #f368e0
}

.mce-content-body .tox-rtc-remote-image {
    background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
    border: 1px solid #ccc;
    min-height: 240px;
    min-width: 320px
}

.mce-content-body .mce-match-marker {
    background: #aaa;
    color: #fff
}

.mce-content-body .mce-match-marker-selected {
    background: #39f;
    color: #fff
}

.mce-match-marker-selected::selection {
    background: #39f;
    color: #fff
}

.mce-content-body audio[data-mce-selected],.mce-content-body details[data-mce-selected],.mce-content-body embed[data-mce-selected],.mce-content-body img[data-mce-selected],.mce-content-body object[data-mce-selected],.mce-content-body table[data-mce-selected],.mce-content-body video[data-mce-selected] {
    outline: 3px solid #b4d7ff
}

.mce-content-body hr[data-mce-selected] {
    outline: 3px solid #b4d7ff;
    outline-offset: 1px
}

.mce-content-body [contentEditable=false] [contentEditable=true]:focus {
    outline: 3px solid #b4d7ff
}

.mce-content-body [contentEditable=false] [contentEditable=true]:hover {
    outline: 3px solid #b4d7ff
}

.mce-content-body [contentEditable=false][data-mce-selected] {
    cursor: not-allowed;
    outline: 3px solid #b4d7ff
}

.mce-content-body [data-mce-selected=inline-boundary] {
    background-color: #b4d7ff
}

.mce-content-body .mce-edit-focus {
    outline: 3px solid #b4d7ff
}

.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected] {
    position: relative
}

.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection {
    background: 0 0
}

.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] * {
    outline: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none
}

.mce-content-body td[data-mce-selected]::after,.mce-content-body th[data-mce-selected]::after {
    background-color: rgba(180,215,255,.7);
    border: 1px solid rgba(180,215,255,.7);
    bottom: -1px;
    content: '';
    left: -1px;
    mix-blend-mode: multiply;
    position: absolute;
    right: -1px;
    top: -1px
}

.mce-content-body img[data-mce-selected]::selection {
    background: 0 0
}

.mce-content-body .ephox-snooker-resizer-bar {
    background-color: #b4d7ff;
    opacity: 0;
    -webkit-user-select: none;
    user-select: none
}

.mce-content-body .ephox-snooker-resizer-cols {
    cursor: col-resize
}

.mce-content-body .ephox-snooker-resizer-rows {
    cursor: row-resize
}

.mce-content-body .ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
    opacity: 1
}

.mce-content-body .mce-spellchecker-word {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
    background-position: 0 calc(100% + 1px);
    background-repeat: repeat-x;
    background-size: auto 6px;
    cursor: default;
    height: 2rem
}

.mce-content-body .mce-spellchecker-grammar {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
    background-position: 0 calc(100% + 1px);
    background-repeat: repeat-x;
    background-size: auto 6px;
    cursor: default
}

.mce-content-body .mce-toc {
    border: 1px solid gray
}

.mce-content-body .mce-toc h2 {
    margin: 4px
}

.mce-content-body .mce-toc ul>li {
    list-style-type: none
}

.mce-content-body [data-mce-block] {
    display: block
}

.mce-content-body .mce-item-table:not([border]),.mce-content-body .mce-item-table:not([border]) caption,.mce-content-body .mce-item-table:not([border]) td,.mce-content-body .mce-item-table:not([border]) th,.mce-content-body .mce-item-table[border="0"],.mce-content-body .mce-item-table[border="0"] caption,.mce-content-body .mce-item-table[border="0"] td,.mce-content-body .mce-item-table[border="0"] th,.mce-content-body table[style*="border-width: 0px"],.mce-content-body table[style*="border-width: 0px"] caption,.mce-content-body table[style*="border-width: 0px"] td,.mce-content-body table[style*="border-width: 0px"] th {
    border: 1px dashed #bbb
}

.mce-content-body .tox-uc-loading-background {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5)
}

.mce-content-body .tox-uc-loading-spinner-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.mce-content-body .tox-uc-loading-spinner {
    width: min(24px,30%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #006ce7;
    border-bottom-color: transparent;
    animation: tox-rotation 1s linear infinite
}

.mce-content-body .tox-uploadcare-placeholder {
    all: initial;
    display: inline-block;
    position: relative;
    width: min(100%,600px);
    height: 80px;
    --tox-uploadcare-placeholder--content-cursor: auto !important;
    --tox-uploadcare-placeholder--content-color: rgba(34,47,62,0.7);
    --tox-uploadcare-placeholder--content-background-color: #fff;
    --tox-uploadcare-placeholder--content-border: 2px solid #e3e3e3;
    --tox-uploadcare-placeholder--content-font-family: monospace,sans-serif;
    --tox-uploadcare-placeholder--content-height: 100%;
    --tox-uploadcare-placeholder--content-width: 100%;
    --tox-uploadcare-placeholder--content-display: inline-flex;
    --tox-uploadcare-placeholder--content-align-items: center;
    --tox-uploadcare-placeholder--content-justify-content: center;
    --tox-uploadcare-placeholder--content-gap: 8px;
    --tox-uploadcare-placeholder--icon-fill: rgba(34,47,62,0.7);
    --tox-uploadcare-placeholder--icon-min-width: 24px;
    --tox-uc-loading-spinner-wrapper-display-none: none;
    --tox-uc-loading-spinner-wrapper-display: flex;
    --tox-uc-loading-spinner-wrapper-position: absolute;
    --tox-uc-loading-spinner-wrapper-top: 0;
    --tox-uc-loading-spinner-wrapper-left: 0;
    --tox-uc-loading-spinner-wrapper-width: 100%;
    --tox-uc-loading-spinner-wrapper-height: 100%;
    --tox-uc-loading-spinner-wrapper-justify-content: center;
    --tox-uc-loading-spinner-wrapper-align-items: center;
    --tox-uc-loading-spinner-aspect-ratio: 1/1;
    --tox-uc-loading-spinner-width: min(24px,30%);
    --tox-uc-loading-spinner-border-radius: 50%;
    --tox-uc-loading-spinner-border: 3px solid #006ce7;
    --tox-uc-loading-spinner-border-bottom-color: transparent;
    --tox-uc-loading-spinner-animation: tox-rotation 1s linear infinite
}

.mce-content-body .mce-visualblocks address,.mce-content-body .mce-visualblocks article,.mce-content-body .mce-visualblocks aside,.mce-content-body .mce-visualblocks blockquote,.mce-content-body .mce-visualblocks div:not([data-mce-bogus]),.mce-content-body .mce-visualblocks dl,.mce-content-body .mce-visualblocks figcaption,.mce-content-body .mce-visualblocks figure,.mce-content-body .mce-visualblocks h1,.mce-content-body .mce-visualblocks h2,.mce-content-body .mce-visualblocks h3,.mce-content-body .mce-visualblocks h4,.mce-content-body .mce-visualblocks h5,.mce-content-body .mce-visualblocks h6,.mce-content-body .mce-visualblocks hgroup,.mce-content-body .mce-visualblocks ol,.mce-content-body .mce-visualblocks p,.mce-content-body .mce-visualblocks pre,.mce-content-body .mce-visualblocks section,.mce-content-body .mce-visualblocks ul {
    background-repeat: no-repeat;
    border: 1px dashed #bbb;
    margin-left: 3px;
    padding-top: 10px
}

.mce-content-body .mce-visualblocks p {
    background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)
}

.mce-content-body .mce-visualblocks h1 {
    background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)
}

.mce-content-body .mce-visualblocks h2 {
    background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)
}

.mce-content-body .mce-visualblocks h3 {
    background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)
}

.mce-content-body .mce-visualblocks h4 {
    background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)
}

.mce-content-body .mce-visualblocks h5 {
    background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)
}

.mce-content-body .mce-visualblocks h6 {
    background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)
}

.mce-content-body .mce-visualblocks div:not([data-mce-bogus]) {
    background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)
}

.mce-content-body .mce-visualblocks section {
    background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)
}

.mce-content-body .mce-visualblocks article {
    background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)
}

.mce-content-body .mce-visualblocks blockquote {
    background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)
}

.mce-content-body .mce-visualblocks address {
    background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)
}

.mce-content-body .mce-visualblocks pre {
    background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)
}

.mce-content-body .mce-visualblocks figure {
    background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)
}

.mce-content-body .mce-visualblocks figcaption {
    border: 1px dashed #bbb
}

.mce-content-body .mce-visualblocks hgroup {
    background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)
}

.mce-content-body .mce-visualblocks aside {
    background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)
}

.mce-content-body .mce-visualblocks ul {
    background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)
}

.mce-content-body .mce-visualblocks ol {
    background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)
}

.mce-content-body .mce-visualblocks dl {
    background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)
}

.mce-content-body .mce-visualblocks:not([dir=rtl]) address,.mce-content-body .mce-visualblocks:not([dir=rtl]) article,.mce-content-body .mce-visualblocks:not([dir=rtl]) aside,.mce-content-body .mce-visualblocks:not([dir=rtl]) blockquote,.mce-content-body .mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),.mce-content-body .mce-visualblocks:not([dir=rtl]) dl,.mce-content-body .mce-visualblocks:not([dir=rtl]) figcaption,.mce-content-body .mce-visualblocks:not([dir=rtl]) figure,.mce-content-body .mce-visualblocks:not([dir=rtl]) h1,.mce-content-body .mce-visualblocks:not([dir=rtl]) h2,.mce-content-body .mce-visualblocks:not([dir=rtl]) h3,.mce-content-body .mce-visualblocks:not([dir=rtl]) h4,.mce-content-body .mce-visualblocks:not([dir=rtl]) h5,.mce-content-body .mce-visualblocks:not([dir=rtl]) h6,.mce-content-body .mce-visualblocks:not([dir=rtl]) hgroup,.mce-content-body .mce-visualblocks:not([dir=rtl]) ol,.mce-content-body .mce-visualblocks:not([dir=rtl]) p,.mce-content-body .mce-visualblocks:not([dir=rtl]) pre,.mce-content-body .mce-visualblocks:not([dir=rtl]) section,.mce-content-body .mce-visualblocks:not([dir=rtl]) ul {
    margin-left: 3px
}

.mce-content-body .mce-visualblocks[dir=rtl] address,.mce-content-body .mce-visualblocks[dir=rtl] article,.mce-content-body .mce-visualblocks[dir=rtl] aside,.mce-content-body .mce-visualblocks[dir=rtl] blockquote,.mce-content-body .mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),.mce-content-body .mce-visualblocks[dir=rtl] dl,.mce-content-body .mce-visualblocks[dir=rtl] figcaption,.mce-content-body .mce-visualblocks[dir=rtl] figure,.mce-content-body .mce-visualblocks[dir=rtl] h1,.mce-content-body .mce-visualblocks[dir=rtl] h2,.mce-content-body .mce-visualblocks[dir=rtl] h3,.mce-content-body .mce-visualblocks[dir=rtl] h4,.mce-content-body .mce-visualblocks[dir=rtl] h5,.mce-content-body .mce-visualblocks[dir=rtl] h6,.mce-content-body .mce-visualblocks[dir=rtl] hgroup,.mce-content-body .mce-visualblocks[dir=rtl] ol,.mce-content-body .mce-visualblocks[dir=rtl] p,.mce-content-body .mce-visualblocks[dir=rtl] pre,.mce-content-body .mce-visualblocks[dir=rtl] section,.mce-content-body .mce-visualblocks[dir=rtl] ul {
    background-position-x: right;
    margin-right: 3px
}

.mce-content-body .mce-nbsp,.mce-content-body .mce-shy {
    background: #aaa
}

.mce-content-body .mce-shy::after {
    content: '-'
}

.mce-content-body [data-ephox-foam-a11y-violation] {
    outline: 2px solid;
    position: relative
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation] {
    outline-width: 4px;
    transition: outline-width .1s ease-in-out,background-color .1s ease-in-out;
    box-shadow: 0 0 0 99999px #222f3e80;
    z-index: 1
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-info] {
    outline-color: #006ce7
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-warn] {
    outline-color: #fc0
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-error] {
    outline-color: #c00
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation=info] {
    outline-color: #006ce7;
    background-color: #e6f0fd
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation=warning] {
    outline-color: #fc0;
    background-color: #fffae6
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation=error] {
    outline-color: #c00;
    background-color: #fae6e6
}

.mce-content-body [data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation]:is(td,th,tr) {
    position: static
}

.mce-content-body table {
    border-collapse: collapse
}

/* 99_color_picker.css */
.ui-colorpicker {
    position: absolute;
    border: 1px solid #aaa;
    padding: 0.2em;
    background: #fff;
    display: none;
    z-index: 9999999;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.5);
    line-height: 1em;
}

.colorPickerMoveLeft .ui-colorpicker {
    left: -300px;
    top: -50px;
}

.ui-colorpicker .palette {
    border-spacing: 0px;
    font-size: 10px;
}

.ui-colorpicker .palette .cell {
    width: 15px;
    height: 15px;
    text-align: center;
    padding: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #fff;
}

.ui-colorpicker .palette .cell:hover {
    border-color: #fff;
}

.ui-colorpicker .palette .cell.alt {
    color: #000;
}

.ui-colorpicker .palette .cell.alt:hover {
    border-color: #000;
}

.ui-colorpicker .palette .sep td {
    height: 2px;
}

.ui-colorpicker .palette .foot .cell {
    border: 1px solid rgba(0,0,0,0.4);
    box-sizing: border-box;
}

/* 99_contributeur.css */
.contributeur {
    color: white;
    background: linear-gradient(133deg,rgba(142,81,155,1) 0%,rgba(236,100,120,1) 33%,rgba(142,81,155,1) 66%,rgba(236,100,120,1) 100%);
    background-size: 400% 400%;
    padding-top: 0.3em;
    padding-bottom: 0.2em;
    padding-left: 0.15em;
    padding-right: 0.55em;
    border-radius: 0.7em;
    line-height: 0.9em;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    vertical-align: 0.1em;
    margin-bottom: -0.2em;
    cursor: default;
    user-select: none;
    font-size: 0.9em;
    font-weight: 700;
    animation: labelgradient 4s ease infinite;
}

@keyframes labelgradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contributeur:before {
    font-family: "Font Awesome 6 Pro";
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    content: '\f49d';
    width: 1.5em;
    /*height: calc( 1.3em / 1.5em );*/
    height: 1.5em;
    margin-top: 0.1em;
    margin-bottom: -0.4em;
    margin-right: 0.15em;
    margin-left: 0.2em;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: white;
    transform: scale(1.2);
    transform-origin: 1em 0.1em;
}

/* 99_countdowns.css */
.countDownPost {
    position: absolute;
    z-index: 2;
    background-color: #EEE;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    width: 350px;
    top: min(150px,calc( 50% - 4em ));
    margin: 0 calc( (100% - 350px) / 2 );
    padding: 0.2em 0.4em;
    border-radius: 1em;
    background: rgb(142,81,155);
    background: linear-gradient(133deg,rgba(142,81,155,1) 0%,rgba(236,100,120,1) 100%);
    color: white;
    cursor: default;
}

.countDownPost.countDownAfter {
    position: unset;
    margin-top: 3em;
    margin-bottom: 2em;
}

.countDownPost .countDownWaiting {
    display: block;
}

.countDownPost .countDownOver {
    display: none;
}

.countDownPost.countDownEchu .countDownWaiting {
    display: none;
}

.countDownPost.countDownEchu .countDownOver {
    display: block;
}

.countDownPost .countDownTitle {
    font-weight: bold;
    text-align: center;
    padding: 1em;
    padding-bottom: 0;
}

.countDownTimer {
    display: flex;
    align-items: top;
    justify-content: center;
    padding: 10px;
    color: rgba(255,255,255,0.8);
    font-weight: bold;
}

.countDownTimer .spacer {
    padding: 0 0.2em;
    line-height: 2em;
}

.countDownTimer .char {
    width: 1.4em;
    border-radius: 0.2em;
    line-height: 2em;
    display: inline-block;
    text-align: center;
    margin: 0 0.08em;
    background-color: rgba(255,255,255,0.3);
    font-weight: bold;
}

.countDownTimer .charname {
    font-size: 0.65em;
    font-weight: 400;
    line-height: 1.6em;
    padding-left: 0.2em;
}

.countDownTopic {
    display: flex;
}

.countDownTopic.countDownEchu {
    display: none;
}

.countDownTopic .countDownTimer {
    color: inherit;
    justify-content: left;
    padding: 0;
    margin: 0;
}

.countDownTopic .countDownTimer .charname {
    display: none;
}

.countDownTopic .countDownTimer .spacer {
    padding: 0 0.15em;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--var-icon-unread-bgcolor);
}

.countDownTopic .countDownTimer .char {
    width: 1.2em;
    background-color: var(--var-icon-unread-bgcolor);
    color: var(--var-icon-unread-bgcolor-contrast-soft) !important;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.5em;
    margin: 0 0.04em;
}

.countDownPopupEvent {
    display: inline-block;
    margin-left: 1em;
}

.countDownPopupEvent.countDownEchu .countDownWaiting,.countDownPopupEvent.countDownEchu .countDownTimer {
    display: none;
}

.countDownPopupEvent:not(.countDownEchu) .countDownOver {
    display: none;
}

.countDownPopupEvent .countDownTimer {
    color: inherit;
    justify-content: left;
    padding: 0;
    margin: 0;
}

.countDownPopupEvent .countDownTimer .charname {
    display: none;
}

.countDownPopupEvent .countDownTimer .spacer {
    padding: 0 0.15em;
    font-weight: bold;
    line-height: 1.5em;
    color: white;
}

.countDownPopupEvent .countDownTimer .char,.countDownPopupEvent .countDownOver,.likeCountDownOver {
    width: 1.2em;
    background-color: rgba(255 ,255,255,0.2);
    color: white !important;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.5em;
    margin: 0 0.04em;
}

.countDownPopupEvent .countDownOver,.likeCountDownPopupEventOver {
    width: auto;
    padding-left: 0.4em;
    padding-right: 0.4em;
    border-radius: 0.4em;
}

.countDownListEvents {
    background: var(--var-th-color);
    display: inline-block;
    padding: 0.2em 0.3em;
    border-radius: 0.3em;
}

.countDownListEvents.countDownEchu .countDownWaiting,.countDownListEvents.countDownEchu .countDownTimer {
    display: none;
}

.countDownListEvents:not(.countDownEchu) .countDownOver {
    display: none;
}

.countDownListEvents .countDownTimer {
    color: inherit;
    justify-content: left;
    padding: 0;
    margin: 0;
}

.countDownListEvents .countDownTimer .charname {
    display: none;
}

.countDownListEvents .countDownTimer .spacer {
    padding: 0 0.15em;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--var-th-color-contrast);
}

.countDownListEvents .countDownTimer .char,.countDownListEvents .countDownOver,.likeCountDownOver {
    width: 1.2em;
    background-color: rgba(255 ,255,255,0.2);
    color: var(--var-th-color-contrast) !important;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.5em;
    margin: 0 0.04em;
}

.countDownListEvents .countDownOver,.likecountDownListEventsOver {
    width: auto;
    padding-left: 0.4em;
    padding-right: 0.4em;
    border-radius: 0.4em;
}

/* 99_dropzone.css */
@keyframes passing-through {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30%,70% {
        opacity: 1;
        transform: translateY(0px)
    }

    100% {
        opacity: 0;
        transform: translateY(-40px)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    30% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.1)
    }

    20% {
        transform: scale(1)
    }
}

.dropzone,.dropzone * {
    box-sizing: border-box
}

.dropzone {
    min-height: 150px;
    border: 1px solid rgba(0,0,0,.8);
    border-radius: 5px;
    padding: 20px 20px
}

.dropzone.dz-clickable {
    cursor: pointer
}

.dropzone.dz-clickable * {
    cursor: default
}

.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message * {
    cursor: pointer
}

.dropzone.dz-started .dz-message {
    display: none
}

.dropzone.dz-drag-hover {
    border-style: solid
}

.dropzone.dz-drag-hover .dz-message {
    opacity: .5
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0
}

.dropzone .dz-message .dz-button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px
}

.dropzone .dz-preview:hover {
    z-index: 1000
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom,#eee,#ddd)
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1
}

.dropzone .dz-preview.dz-image-preview {
    background: #fff
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    transition: opacity .2s linear
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0,0,0,.9);
    line-height: 150%
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200,200,200,.8);
    background-color: rgba(255,255,255,.8)
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent
}

.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255,255,255,.4);
    padding: 0 .4em;
    border-radius: 3px
}

.dropzone .dz-preview:hover .dz-image img {
    transform: scale(1.05,1.05);
    filter: blur(8px)
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone .dz-preview .dz-image img {
    display: block
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    animation: passing-through 3s cubic-bezier(0.77,0,0.175,1)
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    animation: slide-in 3s cubic-bezier(0.77,0,0.175,1)
}

.dropzone .dz-preview .dz-success-mark,.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
    background: rgba(0,0,0,.8);
    border-radius: 50%
}

.dropzone .dz-preview .dz-success-mark svg,.dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
    fill: #fff
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    transition: all .2s linear
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    transition: opacity .4s ease-in
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    animation: pulse 6s ease infinite
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    left: 15%;
    right: 15%;
    border: 3px solid rgba(0,0,0,.8);
    background: rgba(0,0,0,.8);
    border-radius: 10px;
    overflow: hidden
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #fff;
    display: block;
    position: relative;
    height: 100%;
    width: 0;
    transition: width 300ms ease-in-out;
    border-radius: 17px
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #b10606;
    padding: .5em 1em;
    color: #fff
}

.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #b10606
}

/*# sourceMappingURL=dropzone.css.map */
/* 99_events.css */
.blocpremium.blocEventPopup {
    border-radius: 1.5em;
    border: 3px solid rgba(0,0,0,0.2);
    background: linear-gradient(133deg,rgba(142,81,155,1) 0%,rgba(236,100,120,1) 100%);
    color: white;
    font-weight: 600;
    line-height: 1.5em;
    cursor: default;
}

#topic_event_details {
    overflow: hidden;
}

#topic_event_details > .blocwrapper {
    background: linear-gradient(133deg,rgba(142,81,155,1) 0%,rgba(236,100,120,1) 100%);
    color: white;
    font-weight: 600;
    margin: 0.4em;
}

.blocpremium.blocEventPopup .blocPremiumLogo {
    color: rgba(255,240,248,1);
}

#events_form input,#events_form select,#events_form textarea {
    background-color: white;
    border-color: white;
    color: black;
    width: 100%;
}

.event_error {
    display: none;
    font-weight: 600;
    font-size: 0.9em;
    color: #FFD31A;
    line-height: 1.3em;
}

.events_list button {
    border: 0;
    background-color: rgba(0,0,0,0.2);
    color: rgba(255,255,255,0.7);
    padding: 0.6em 0.9em;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    border-radius: 2px;
}

.events_list button:hover {
    background-color: rgba(0,0,0,0.3);
    color: white;
}

.events_list button i {
    margin-right: 0.3em;
}

.event_show_one {
    margin: 1em;
    background-color: rgba(0,0,0,0.1);
    border-radius: 0.5em;
    /*overflow: hidden;*/
}

.event_show_one.event_show_big {
}

.event_show_one:not(.event_show_big) .event_show_on_big {
    display: none;
}

.event_show_one.event_show_big .event_hide_on_big {
    display: none;
}

.event_top_datas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
}

.event_show_one.event_show_big .event_top_datas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 0.9em;
    margin-bottom: 1em;
}

.event_show_one.event_show_big .event_top_datas i {
    margin-right: 0.5em;
    opacity: 0.7;
}

.event_main_datas {
    padding: 0.8em;
}

.event_show_one:not(.event_show_big) .event_main_datas:hover {
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
}

.event_participants {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4em;
    font-size: 0.9em;
    padding: 0 0.5em;
    line-height: 1.7em;
    color: rgba(255,255,255,0.7);
}

.events_list .event_tabs {
    display: flex;
    gap: 2em;
}

.events_list .event_tabs > div {
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.events_list .event_tabs > div.sel,.events_list .event_tabs > div:hover {
    color: white;
}

.events_list .event_tabs div:after {
    position: absolute;
    top: calc( 100% + 0.4em - 5px );
    left: -0.5em;
    right: -0.5em;
    content: '';
    display: block;
    border-radius: 10px;
    height: 5px;
    transition: all 0.3s;
    border-bottom: 2px solid rgba(0,0,0,0.4);
}

.events_list .event_tabs div.sel:after,.events_list .event_tabs div:hover:after {
    border-bottom-color: rgba(255,255,255,0.8);
}

.events_list div.avatar {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    /*box-shadow: 0 0 0.3em rgba(0,0,0,0.15);*/
    border-radius: 10em;
    background-color: white;
    font-weight: 900;
    color: white;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-grow: 0;
    flex-shrink: 0;
    /*border: 0.1em solid white;*/
    box-sizing: content-box;
}

.event_started {
    border: 2px solid rgba(255,255,255,0.4);
    /*animation: eventstartedanimation 1s infinite;*/
}

@keyframes eventstartedanimation {
    0% {
        border-color: rgba(255,255,255,0.1);
    }

    20% {
        border-color: rgba(255,255,255,0.4);
    }

    80% {
        border-color: rgba(255,255,255,0.4);
    }

    100% {
        border-color: rgba(255,255,255,0.1);
    }
}

.event_liked {
}

.event_show_one.event_liked .event_like_btn,.event_show_topic.event_liked .event_like_btn {
    display: none;
}

.event_show_one:not(.event_liked) .event_unlike_btn,.event_show_topic:not(.event_liked) .event_unlike_btn {
    display: none;
}

.event_show_one:not(.event_liked) .event_user_is_logged_user {
    display: none;
}

.events_list button.event_unlike_btn {
    background-color: rgba(0,0,0,0.5);
}

.events_list button.event_unlike_btn:hover {
    background-color: rgba(0,0,0,0.3);
}

.event_show_personnes {
    display: flex;
    padding: 10px;
    flex-direction: column;
    gap: 0.5em;
    font-size: 1.05em;
    font-weight: 400;
}

.event_location_started {
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.1);
    width: 100%;
    margin: 0 -2px;
    padding: 1px;
    margin-top: 2px;
    border-radius: 4px;
    font-weight: bold;
}

.event_main_datas,.event_show_personnes > div {
    min-height: 100px;
}

.event_menu_popup {
    display: none;
    position: absolute;
    bottom: calc( 100% + 2px );
    left: 0;
    background-color: #46243C;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    border-radius: 3px;
    border: 3 solid transparent;
    min-width: 100%;
}

.event_menu_popup button {
    width: 100%;
    text-align: left;
}

.event_commence {
    animation: eventcommenceanimation 1s infinite;
}

@keyframes eventcommenceanimation {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.event_actions {
    display: flex;
    align-items: center;
    padding: 0.6em 0.8em;
    gap: 0.5em;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.event_one_user {
    margin: 0.4em 0;
}

/* 99_forceBottomOnMobile.css */
.onMobile .forceBottomOnMobile {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 9999999999 !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.7) !important;
}

.onMobile .forceBottomOnMobile > .bloc {
    margin-bottom: 0;
}

/* 99_interactions.css */
.interaction.status_ > :not(.interaction_) {
    display: none;
}

.interaction.status_friend > :not(.interaction_friend) {
    display: none;
}

/* 99_on_premium.css */
body.on_premium {
    --var-body-bgcolor: #333333;
    --var-body-bgcolor-contrast: #FFFFFF;
    --var-body-bgcolor-contrast-soft: #b3b3b3;
}

/* 99_popupUser.css */
.popupUser {
    font-size: 1rem;
    display: none;
    position: absolute;
    background-color: var(--var-tr-color);
    box-shadow: 0px 0px 1em rgba(0,0,0,0.3);
    border-radius: 0.77em;
    text-align: left;
    min-width: 30.7em;
    max-width: 30.7em;
    z-index: 1001;
    color: var(--var-tr-color-contrast);
    cursor: default;
}

.effect3D {
    box-shadow: 24px 16px 64px 0 rgba(0,0,0,0.6);
    transition: all 0.5s;
}

.effect3Dfront {
    transform: perspective(1000px) rotateY(-20deg);
    filter: grayscale(0);
    cursor: default;
}

.effect3Dleft {
    transform: scale(0.6) perspective(1000px) rotateY(80deg);
    filter: blur(1px) grayscale(0.8);
    cursor: pointer;
}

.effect3Dright {
    transform: scale(0.6) perspective(1000px) rotateY(-80deg);
    filter: blur(1px) grayscale(0.8);
    cursor: pointer;
}

.onMobile .popupUser {
    min-width: auto;
    width: 30.7em;
    max-width: calc( 100vw - 10px );
    font-size: 0.9rem;
}

.popupUser div.avatar {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    margin: auto;
    box-shadow: 0 0 0.3em rgba(0,0,0,0.15);
    border-radius: 150px;
    overflow: visible;
    background-color: white;
    font-weight: 900;
    color: white;
    cursor: default;
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 0.1em solid white;
    box-sizing: content-box;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 4.6em;
    position: relative;
}

.onMobile .popupUser div.avatar.avataroffline::after,.onMobile .popupUser div.avatar.avataronline::after {
    font-size: 0.5em;
}

.popupUser div.avatar.avataroffline::after,.popupUser div.avatar.avataronline::after {
    content: '\f186';
    color: var(--var-tr-color-contrast);
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: -0.2em;
    top: -0.2em;
    font-size: 0.35em;
    display: block;
    line-height: 1em;
}

.popupUser div.avatar.avataronline::after {
    content: '\f111';
    color: #82BA24;
    animation: avataronlineanimate 4s infinite;
}

.popupUser .popupClose {
    display: block;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    opacity: 0;
    transition: all 1s;
    background-color: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
    line-height: 1.3em;
    height: 1.3em;
    width: 1.3em;
    text-align: center;
    border-radius: 2em;
    cursor: pointer;
}

.popupUser:hover .popupClose,.onMobile .popupUser .popupClose {
    opacity: 0.6;
    transition: all 0.5s;
}

.popupUser:hover .popupClose:hover {
    opacity: 0.9;
    transition: all 0.2s;
}

/* 99_premium.css */
.premium {
    color: white;
    background-color: #505050;
    background: linear-gradient(133deg,#505050 0%,gold 33%,#505050 66%,#676767 100%);
    background-size: 400% 400%;
    padding-top: 0.3em;
    padding-bottom: 0.2em;
    padding-left: 0.1em;
    padding-right: 0.5em;
    border-radius: 0.7em;
    line-height: 0.9em;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    vertical-align: 0.1em;
    margin-bottom: -0.2em;
    cursor: default;
    user-select: none;
    font-size: 0.9em;
    animation: labelgradient 8s ease infinite;
}

.premium b {
    color: gold;
    font-weight: 800;
}

.premium:before {
    background-image: url('/static/_theme_modern/vectors/certified.svg');
    background-size: 1.3em 1.3em;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-top: -0.2em;
    margin-bottom: -0.15em;
    margin-right: 0.3em;
    content: "";
    vertical-align: middle;
}

#alertPremium {
    z-index: 9999999;
    position: fixed;
    background-color: rgba(0,0,0,0.7);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    backdrop-filter: blur(4px);
    display: flex;
    overflow: auto;
    padding: 20px 0;
}

.blocpremium {
    border-radius: 0.7em;
    border: 6px solid rgba(0,0,0,0.2);
    background: rgb(123,79,193);
    background: linear-gradient(80deg,rgba(123,79,193,1) 0%,rgba(160,96,139,1) 100%);
    color: white;
    font-weight: 600;
    line-height: 1.5em;
    cursor: default;
}

.blocpremium:not(.nohover):hover {
    cursor: pointer;
    /*background: linear-gradient(80deg,rgba(160,96,139,1) 0%,rgba(123,79,193,1) 100%);*/
}

.blocpremium.plan_membre_premium {
    border-radius: 1.5em;
    border-width: 3px;
}

.blocpremium.plan_membre_premium_basic {
    border-radius: 1.5em;
    border-width: 3px;
    background: #5565F1;
    background: linear-gradient(80deg,#5565F1 0%,#327CC2 100%);
}

.blocpremium.plan_compare {
    border-radius: 1.5em;
    border-width: 3px;
    background: #222;
    background: linear-gradient(80deg,#222 0%,#444 100%);
    font-weight: 300;
}

.blocpremium.alert_generic {
    border-radius: 1.5em;
    border-width: 3px;
    background: var(--var-tr-color);
    color: var(--var-tr-color-contrast);
    font-weight: 300;
}

.blocpremiumBtn {
    cursor: pointer;
    margin: 0.5em 1em;
    background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
}

.blocpremiumBtn:before {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 0px 10px rgba(255,255,255,0.07);
    left: -150px;
    top: -100%;
    height: 300%;
    width: 0;
    transform: rotate(40deg);
}

.blocpremiumBtn:hover:before {
    left: calc(100% + 200px);
    width: 80px;
    box-shadow: 0 0 0px 40px rgba(255,255,255,0.07);
    transition: all 1.5s;
}

.blocpremiumBtnSoft {
    cursor: pointer;
    margin: 0.5em 1em;
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: white;
}

.blocpremiumBtnSoft2 {
    cursor: pointer;
    margin: 0.5em 1em;
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    color: white;
}

.blocpremium.alert_generic .blocpremiumBtn {
    background-color: rgba(0,0,0,0.5);
}

.blocpremium.alert_generic .blocpremiumBtnSoft,.blocpremium.alert_generic .blocpremiumBtnSoft2 {
    background-color: rgba(0,0,0,0.4);
}

.blocPremiumLogo {
    text-align: center;
    font-size: 100px;
    margin-top: -60px;
    margin-bottom: 60px;
    color: white;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.bp_cat {
    font-weight: 800;
    margin-top: 1em;
    font-size: 0.9em;
    text-transform: uppercase;
    font-style: italic;
}

.bp_opt {
    margin-left: 1em;
    font-size: 0.9em;
}

.bp_opt i {
    font-weight: 800;
    margin-right: 0.5em;
}

/* 99_rangePrix.css */
input[type="range"].rangePrix {
    -webkit-appearance: none;
    -moz-appearance: none;
    opacity: 1;
}

input[type="range"].rangePrix::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    border-radius: 10px;
    border: 2px solid white;
    background: #F7CA50;
    background: -webkit-linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    background: linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    /* W3C,IE 10+/ Edge,Firefox 16+,Chrome 26+,Opera 12+,Safari 7+ */
    height: 12px;
    cursor: pointer;
}

input[type="range"].rangePrix:focus {
    outline: none;
}

input[type="range"].rangePrix::-moz-range-track {
    -moz-appearance: none;
    border-radius: 10px;
    border: 2px solid white;
    background: #F7CA50;
    background: -moz-linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    background: -webkit-linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    background: -o-linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    background: -ms-linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    background: linear-gradient( to right,#17E7DA,#87DF95,#F7CA50,#E68331,#E72216 );
    height: 12px;
    cursor: pointer;
}

input[type="range"].rangePrix::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 6px solid white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: relative;
    bottom: 6px;
    background-color: transparent;
    cursor: -webkit-grab;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    -webkit-transition: border 1000ms ease;
    transition: border 1000ms ease;
}

input[type="range"].rangePrix::-moz-range-thumb {
    -moz-appearance: none;
    border: 6px solid white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: relative;
    bottom: 6px;
    background-color: transparent;
    cursor: -moz-grab;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    -moz-transition: border 1000ms ease;
    transition: border 1000ms ease;
}

input[type="range"].rangePrix::-webkit-slider-thumb:active {
    cursor: -webkit-grab;
}

input[type="range"].rangePrix::-moz-range-thumb:active {
    cursor: -moz-grab;
}

/* 99_recaptcha.css */
.grecaptcha-badge {
    visibility: hidden;
}

/* 99_selectWithImage.css */
.selectWithImageMe_one {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 5px;
    gap: 5px;
    max-width: 400px;
}

.selectWithImageMe .selectWithImageMe_one {
    padding: 3px;
}

.selectWithImageMe_one.selectable:hover {
    border-color: var(--var-icon-unread-bgcolor);
}
