* {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #000;
    transition: all 0.25s;
    outline: none;
}

@keyframes scalingSize {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes rotationBangle {
    0% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

@keyframes moveTop {
    0% {
        top: -500px;
        opacity: 0;
    }

    25% {
        top: -200px;
        opacity: 0.25;
    }

    50% {
        top: 0px;
        opacity: 0.5;
    }

    75% {
        top: 200px;
        opacity: 0.75;
    }

    100% {
        top: 50px;
        opacity: 1;
    }
}

/* Définition des variables */

:root {
    --main-bg-color: #999999;
    --bgBlueDark: #1c2025;
    --bgBlueLight: #272c36;
    --bgBlueHigh: #3d4452;
    --bgGrayDark: #555;
    --bgGrayLight: #ccc;
    --bgGray: #ddd;
    --bgGrayHigh: #eee;
    --bgGreenDark: #3a4436;
    --bgGreenLight: #3f743d;
    --bgOrangeDark: #805123;
    --bgOrangeLight: #e28b3a;
    --bgRedDark: #571919;
    --bgRedLight: #8a2c2c;
    --bgRedHigh: #ce2d2d;

    --bgBtnCancel: #706639;
    --bgBtnCancelOver: #aa781c;
    --bgBtnClose: #396772;
    --bgBtnCloseOver: #2794af;
    --bgBtnOk: #397039;
    --bgBtnOkOver: #319e22;

    --bgFormDark: #aaa;
    --bgFormEditable: #8eb891;
    --bgFormFocus: #b8a586;
    --bgFormHover: #ccc;
    --bgFormLight: #ddd;
    --bgFormHigh: #eee;
    --bgFormRequired: #eec6c6;

    --BgColorPanel: #eee;
    --BgColorPanelContent: #000;
    --BgPanel: #555;
    --BgPanelContent: #eee;

    --bgTitle: #4f6386;

    --fontSizeBigX: 3em;
    --fontSizeBig: 2em;
    --fontSizeXXXXX: 1.5em;
    --fontSizeXXXX: 1.4em;
    --fontSizeXXX: 1.3em;
    --fontSizeXX: 1.2em;
    --fontSizeX: 1.1em;
    --fontSizeNormal: 1em;
    --fontSizeSmall: 0.9em;
    --fontSizeSmallx: 0.8em;
    --fontSizeSmallxx: 0.7em;
    --fontSizeSmallxxx: 0.6em;
    --fontSizeSmallxxxx: 0.5em;

    --menuTopFontSize: 1em;
    --menuTopPadding: 10px 40px 10px 44px;

    --box800: 800px;
    --box600: 600px;
    --box500: 500px;
    --box400: 400px;
    --boxPlain: 100%;

    --siteWidth: 1200px;
    --borderRadius: 5px;

}

#adminBar {
    min-height: 25px;
    padding: 5px 2px 5px 30px;
    background-color: #292c2e;
    background-image: url('images/iconLockedWhite.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left 5px center;
    text-decoration: none;
    color: #eee;
    text-align: left;
    z-index: 10;
}

.link {
    text-decoration: none;
    color: #000;
}

.linkWhite {
    text-decoration: none;
    color: #fff;
}

.linkWhite:hover {
    color: rgb(158, 206, 209);
}

/* Buttons */

.buttonUp {
    float: left;
    margin: 2px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #b6b6b6;
    background-image: url('images/iconArrowUp.png');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.buttonUp:hover {
    background-color: #664a9b;
}

.buttonDel {
    float: left;
    margin: 2px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #b6b6b6;
    background-image: url('images/iconClose.png');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.buttonDel:hover {
    background-color: #af3333;
}

.buttonDown {
    float: left;
    margin: 2px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #b6b6b6;
    background-image: url('images/iconArrowDown.png');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.buttonDown:hover {
    background-color: #664a9b;
}

.buttonAdd {
    margin: 2px 0 5px 0;
    ;
    padding: 5px 5px 5px 25px;
    font-size: var(--fontSizeSmall);
    border-radius: 4px;
    background-color: #375a30;
    background-image: url('images/iconPlusCircleWhite.png');
    background-size: 16px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.buttonAdd:hover {
    background-color: #664a9b;
}

.buttonAddSmall {
    margin: 4px 0 0 0;
    padding: 2px 5px 2px 20px;
    font-size: var(--fontSizeSmallxx);
    height: 20px;
    color: #fff;
    border-radius: 4px;
    background-color: #3e5563;
    background-image: url('images/iconPlusCircleWhite.png');
    background-size: 12px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
}

.buttonAddSmall:hover {
    background-color: #664a9b;
}

.buttonGo {
    height: auto;
    padding: 5px 25px 5px 15px;
    font-size: var(--fontSizeNormal);
    font-weight: bold;
    border-radius: 4px;
    background-color: #489c35;
    background-image: url('images/iconListRightWhite.png');
    background-size: 16px;
    background-position: center right 5px;
    background-repeat: no-repeat;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.buttonGo:hover {
    background-color: #664a9b;
}

.buttonImage {
    height: auto;
    padding: 5px 15px 5px 30px;
    font-size: var(--fontSizeNormal);
    border-radius: 4px;
    background-color: #263258;
    background-image: url('images/iconImagesWhite.png');
    background-size: 16px;
    background-position: center left 6px;
    background-repeat: no-repeat;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.buttonImage:hover {
    background-color: #664a9b;
}

.buttonTop {
    margin: 5px 10px 0px 10px;
    padding: var(--menuTopPadding);
    border-radius: 5px;
    text-decoration: none;
    font-size: var(--menuTopFontSize);
    overflow: hidden;
    transition: all 0.25s;
}

.buttonLanguageDown {
    padding: 5px;
    background-image: url('images/iconWorldWhite.png'), url('images/iconChevronDownWhite.png');
    background-size: 26px, 12px;
    background-position: center left 5px, center right 5px;
    background-repeat: no-repeat, no-repeat;
}

.buttonLanguageDown:hover {
    background-color: #9da52c;
}

#loadingSend {
    display: none;
    height: 12px;
    background-image: url('images/loading_bar.gif');
    background-size: 100% 10px;
    background-repeat: no-repeat;
}

dl {
    display: block;
}

/* Mise en page */
div {
    overflow: auto;
}

img {
    vertical-align: middle;
}

h1 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeXXX);
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 28px;
}

h2 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeXX);
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 24px;
}

h3 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeX);
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

h4 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeNormal);
    background-position: right 7px center;
    background-repeat: no-repeat;
    background-size: 18px;
}

h5 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeSmall);
    background-position: right 7px center;
    background-repeat: no-repeat;
    background-size: 18px;
}

h6 {
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 10px;
    font-size: var(--fontSizeSmallx);
    border-radius: 5px;
    background-position: right 7px center;
    background-repeat: no-repeat;
    background-size: 18px;
}

.titleBox {
    width: calc(100% - 50px);
    background-color: var(--bgTitle);
}

.closeBox {
    float: right;
    width: 20px;
    height: 20px;
    padding: 5px;
    background-color: var(--bgBtnClose);
    background-image: url('images/iconClose.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.closeBox:hover {
    background-color: var(--bgBtnCloseOver);
}

.left {
    float: left;
}

.right {
    float: right;
}

.right10 {
    margin: 0 0 10px 10px;
    float: right;
}

.right20 {
    margin: 0 0 20px 20px;
    float: right;
}

.marginBottom {
    margin: 0 0 10px 0;
}

.marginLeft {
    margin: 0 0 0 10px;
}

.marginRight {
    margin: 0 10px 0 0;
}

.marginTop {
    margin: 10px 0 0 0;
}

.padding5 {
    padding: 5px;
}

.padding10 {
    padding: 10px;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.strike {
    text-decoration: line-through;
}

.blocFull {
    display: block;
    padding: 0px;
    margin: 0px 0 5px 0;
}

.autowidth {
    display: inline;
    width: 99%;
}

.formContent {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
}

.formCol100 {
    display: inline-block;
    width: calc(100% - 5px);
}

.formCol75 {
    display: inline-block;
    width: calc(75% - 5px);
}

.formCol50 {
    display: inline-block;
    width: calc(50% - 5px);
}

.formCol33 {
    display: inline-block;
    width: calc(33% - 5px);
}

.formCol25 {
    display: inline-block;
    width: calc(25% - 5px);
}

.col100 {
    display: inline-block;
    width: calc(100% - 50px);
    padding: 10px;
    margin: 15px;
}

.col75 {
    display: inline-block;
    width: calc(75% - 50px);
    padding: 10px;
    margin: 15px;
}

.col50 {
    display: inline-block;
    width: calc(50% - 50px);
    padding: 10px;
    margin: 15px;
}

.col33 {
    display: inline-block;
    width: calc(33% - 50px);
    padding: 10px;
    margin: 15px;
}

.col25 {
    float: left;
    width: calc(25% - 50px);
    height: 100%;
    padding: 10px;
    margin: 15px;
}

.siteWidthMax {
    margin: 0 auto;
    max-width: var(--siteWidth);
}

.textLeft {
    text-align: left;
}

.textJustify {
    text-align: justify;
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

.textSizeBig {
    font-size: var(--fontSizeBig);
}

.textSizeXXXX {
    font-size: var(--fontSizeXXXX);
}

.textSizeXXX {
    font-size: var(--fontSizeXXX);
}

.textSizeXX {
    font-size: var(--fontSizeXX);
}

.textSizeX {
    font-size: var(--fontSizeX);
}

.textSizeNormal {
    font-size: var(--fontSizeNormal);
}

.textSizeSmall {
    font-size: var(--fontSizeSmall);
}

.textSizeSmallx {
    font-size: var(--fontSizeSmallx);
}

.textSizeSmallxx {
    font-size: var(--fontSizeSmallxx);
}

.textSizeSmallxxx {
    font-size: var(--fontSizeSmallxxx);
}

.textSizeSmallxxxx {
    font-size: var(--fontSizeSmallxxxx);
}

.listTitle {
    text-decoration: none;
}

.warningBox {
    width: calc(100% - 80px);
    font-size: var(--fontSizeSmall);
    padding: 10px 10px 10px 50px;
    margin: 10px 10px 0 10px;
    background-color: var(--bgOrangeLight);
    background-image: url('images/iconWarningWhite.png');
    background-size: 24px;
    background-position: top 10px left 12px;
    background-repeat: no-repeat;
}

.warningBoxSmall {
    font-size: var(--fontSizeSmall);
    height: 100%;
    padding: 2px 5px 2px 50px;
    margin: 0px 2px 0 0;
    background-color: #b90e0e;
    background-image: url('images/iconWarningWhite.png');
    color: #fff;
    background-size: 24px;
    background-position: center left 12px;
    background-repeat: no-repeat;
}

/* Couleurs */

.bgBlueDark {
    background-color: var(--bgBlueDark);
}

.bgBlueLight {
    background-color: var(--bgBlueLight);
}

.bgBlueHigh {
    background-color: var(--bgBlueHigh);
}

.bgGrayDark {
    background-color: var(--bgGrayDark);
}

.bgGrayLight {
    background-color: var(--bgGrayLight);
}

.bgGray {
    background-color: var(--bgGray);
}

.bgGrayHigh {
    background-color: var(--bgGrayHigh);
}

.bgGreenDark {
    background-color: var(--bgGreenDark);
}

.bgGreenLight {
    background-color: var(--bgGreenLight);
}

.bgGreenHigh {
    background-color: var(--bgGreenHigh);
}

.bgRedDark {
    background-color: var(--bgRedDark);
}

.bgRedLight {
    background-color: var(--bgRedLight);
}

.bgRedHigh {
    background-color: var(--bgRedHigh);
}

.bgBtnDel {
    background-color: var(--bgBtnDel);
}

.bgBtnDel:hover {
    background-color: var(--bgBtnDelOver);
}

.bgBtnOk {
    background-color: var(--bgBtnOk);
    color: var(--colorBtnOk);
}

.bgBtnOk:hover {
    background-color: var(--bgBtnOkOver);
}

.bgBtnCancel {
    background-color: var(--bgBtnCancel);
}

.bgBtnCancel:hover {
    background-color: var(--bgBtnCancelOver);
}

.bgFormDark {
    background-color: var(--bgFormDark);
}

.bgFormLight {
    background-color: var(--bgFormLight);
}

.bgFormHigh {
    background-color: var(--bgFormHigh);
}

.white {
    color: #fff;
}

.green {
    color: rgb(62, 189, 45);
}

/* Syles */

.icon12 {
    vertical-align: middle;
    width: 12px;
    height: 12px;
}

.icon16 {
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.icon20 {
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.icon24 {
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.icon32 {
    vertical-align: middle;
    width: 32px;
    height: 32px;
}

.icon40 {
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

.icon48 {
    vertical-align: middle;
    width: 48px;
    height: 48px;
}

.icon64 {
    vertical-align: middle;
    width: 64px;
    height: 64px;
}

.icon96 {
    vertical-align: middle;
    width: 96px;
    height: 96px;
}

.icon128 {
    vertical-align: middle;
    width: 128px;
    height: 128px;
}

.icon256 {
    vertical-align: middle;
    width: 256px;
    height: 256px;
}

.icon512 {
    vertical-align: middle;
    width: 512px;
    height: 512px;
}

.H20 {
    height: 20px;
}

.H25 {
    height: 25px;
}

.H30 {
    height: 30px;
}

.H35 {
    height: 35px;
}

.H40 {
    height: 40px;
}

.H45 {
    height: 45px;
}

.H50 {
    height: 50px;
}

.H75 {
    height: 75px;
}

.H100 {
    height: 100px;
}

.H150 {
    height: 150px;
}

.H200 {
    height: 200px;
}

.w30perc {
    width: 30%;
}

.w70perc {
    width: 70%;
}

.w100perc {
    width: 100%;
}

@font-face {
    font-family: 'Aquatico';
    src: url('fonts/Aquatico-Regular.woff2') format('woff2'),
        url('fonts/Aquatico-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eras Bold ITC';
    src: url('fonts/ErasITC-Bold.woff2') format('woff2'),
        url('fonts/ErasITC-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.fontAquatico {
    font-family: 'Aquatico';
}

.fontEras {
    font-family: 'Eras Bold ITC';
}

.icon16 {
    width: 16px;
    height: 16px;
}

.icon20 {
    width: 20px;
    height: 20px;
}

.icon24 {
    width: 24px;
    height: 24px;
}

.icon32 {
    width: 32px;
    height: 32px;
}

.icon48 {
    width: 48px;
    height: 48px;
}

.icon64 {
    width: 64px;
    height: 64px;
}

.icon96 {
    width: 96px;
    height: 96px;
}

.icon128 {
    width: 128px;
    height: 128px;
}

.icon256 {
    width: 256px;
    height: 256px;
}

.icon512 {
    width: 512px;
    height: 512px;
}

.height5 {
    height: 5px;
}

.height10 {
    height: 10px;
}

.height16 {
    height: 16px;
}

.height20 {
    height: 20px;
}

.height24 {
    height: 24px;
}

.height25 {
    height: 25px;
}

.height30 {
    height: 30px;
}

.height50 {
    height: 50px;
}

.height75 {
    height: 75px;
}

.height100 {
    height: 100px;
}

.height150 {
    height: 150px;
}

.height200 {
    height: 200px;
}

.autoSize {
    width: 90%;
}

.buttonChecked {
    margin: 10px 10px 0px 20px;
    padding: 10px 10px 10px 35px;
    background-image: url('images/iconCheckedGreen.png');
    background-size: 20px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    color: #45aa2e;
    font-weight: bold;
}


.buttonClose {
    float: right;
    margin: 0px;
    padding: 2px;
    width: 30px;
    height: 30px;
    background-color: var(--bgBtnClose);
    background-image: url('images/iconCloseCircleWhite.png');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
}

.buttonClose:hover {
    background-color: var(--bgBtnCloseOver);
}

.buttonCancel {
    width: auto;
    margin: 10px;
    padding: 4px 10px 6px 25px;
    font-size: var(--fontSizeSmall);
    border-radius: 4px;
    color: #ffffff;
    background-color: var(--bgRedLight);
    background-image: url('images/iconCloseCircleWhite.png');
    background-size: 16px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.buttonCancel:hover {
    background-color: var(--bgRedHigh);
}

.buttonCancelBloc {
    float: right;
    margin: 0 0 0 5px;
    padding: 1px 10px 2px 35px;
    background-color: var(--bgRedLight);
    background-image: url('images/iconCloseCircleWhite.png');
    background-size: 20px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    color: #ffffff;
    font-size: var(--fontSizeSmall);
}

.buttonCancelBloc:hover {
    background-color: var(--bgRedHigh);
}

.buttonOk {
    width: auto;
    margin: 10px;
    padding: 4px 10px 6px 25px;
    font-size: var(--fontSizeSmall);
    border-radius: 4px;
    color: #fff;
    background-color: #4c8140;
    background-image: url('images/iconCheckedWhite.png');
    background-size: 16px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.buttonOk:hover {
    background-color: #664a9b;
}

.buttonOkBloc {
    float: right;
    margin: 0 0 0 5px;
    padding: 1px 10px 2px 25px;
    height: 32px;
    color: #fff;
    background-color: #4c8140;
    background-image: url('images/iconCheckedWhite.png');
    background-size: 16px;
    background-position: center left 5px;
    background-repeat: no-repeat;
    font-size: var(--fontSizeSmall);
}

.buttonOkBloc:hover {
    background-color: #664a9b;
}

.buttonViewSmall {
    display: inline-block;
    padding: 0 10px 2px 25px;
    background-color: #3c6469;
    border-radius: 5px;
    height: 15px;
    color: #fff;
    font-size: var(--fontSizeSmall);
    background-image: url('images/iconViewWhite.png');
    background-size: 12px;
    background-position: center left 5px;
    background-repeat: no-repeat;
}

.buttonViewSmall:hover {
    color: rgb(128, 135, 192);
    background-size: 16px;
}

.buttonViewInfos {
    display: inline-block;
    margin: 0;
    padding: 0 10px 2px 25px;
    background-color: #33ad23;
    border-radius: 5px;
    height: 25px;
    color: #fff;
    font-size: var(--fontSizeNormal);
    background-image: url('images/iconPlusCircleWhite.png');
    background-size: 12px;
    background-position: center left 5px;
    background-repeat: no-repeat;
}

.buttonViewInfos:hover {
    background-color: #7a23ad;
}

.buttonInactive {
    display: inline-block;
    margin: 0;
    padding: 7px 10px 5px 35px;
    background-color: #505050;
    border-radius: 5px;
    height: 25px;
    color: #fff;
    font-size: var(--fontSizeNormal);
    background-image: url('images/iconWarning.png');
    background-size: 22px;
    background-position: center left 5px;
    background-repeat: no-repeat;
}

.spanView {
    padding: 1px 10px 1px 25px;
    background-image: url('images/iconView.png');
    background-size: 12px;
    background-position: center left 5px;
    background-repeat: no-repeat;
}

.spanView:hover {
    color: rgb(128, 135, 192);
    background-size: 16px;
}

.spanToggle {
    padding: 1px 10px 1px 25px;
    background-size: 12px;
    background-position: center left 5px;
    background-repeat: no-repeat;
}

.spanToggle:hover {
    background-size: 16px;
}

.pointer {
    cursor: pointer;
}

.locked {
    background-image: url('images/iconLockedWhite.png');
    background-size: 20px;
    background-position: center right 5px;
    background-repeat: no-repeat;
}

button {
    font-size: var(--fontSizeNormal);
    height: 40px;
    padding: 5px 25px 10px 25px;
    margin: 15px;
    cursor: pointer;
    overflow: hidden;
}

label {
    width: calc(100% - 10px);
    font-size: var(--fontSizeSmall);
    height: 22px;
    padding: 5px 5px 0 5px;
    margin: 5px 0 0px 0;
}

input {
    display: block;
    font-size: var(--fontSizeNormal);
    height: 24px;
    padding: 5px;
    margin: 15px 0 5px 0;
    border-radius: 5px;
}

input::placeholder {
    font-style: italic;
    font-size: var(--fontSizeSmall);
}

.inputSpeedForm {
    width: calc(100% - 190px);
    border-radius: 0px;
}

.inputDate {
    float: left;
    margin: 0 5px 5px 0;
    width: 100px;
    background-color: var(--bgBlueLight);
    color: #fff;
}

.checkBoxDiv {
    margin: 0 0 2px 0;
    padding: 5px;
    text-align: left;
    font-size: var(--fontSizeNormal);
    background-color: var(--bgBlueLight);
    border-radius: 4px;
}

.checkBoxDiv:hover {
    background-color: var(--bgBlueHigh);
}

.checkBox {
    margin: 3px 0px 0 2px;
    width: 20px;
    height: 20px;
}

.checkBoxLabel {
    margin: 0px;
    padding: 4px 0 0 0;
    min-height: 20px;
    width: calc(100% - 35px);
    font-size: var(--fontSizeNormal);
}

.checkBoxDesc {
    margin: 10px 5px 5px 35px;
    font-size: var(--fontSizeSmall);
}

select {
    width: 100%;
    font-size: var(--fontSizeNormal);
    height: 30px;
    padding: 5px;
    margin: 15px 0 0 0;
    border-radius: 5px;
}

.selectSmall {
    padding: 2px;
    border: #999 solid 1px;
    width: 230px;
    height: 22px;
    font-size: var(--fontSizeSmall);
    border-radius: 0px;
}

textarea {
    display: block;
    width: calc(100% - 10px);
    font-size: var(--fontSizeNormal);
    min-height: 100px;
    padding: 5px;
    margin: 15px 0 0 0;
    border-radius: 5px;
}

.rounded {
    border-radius: 5px;
}

.round {
    border-radius: 50%;
}

.hidden {
    display: none;
}

#formBloc {
    min-height: 100px;
    max-height: 1000px;
    background-color: var(--BgPanel);
    color: var(--BgColorPanel);
    border: 2px #444 solid;
    border-radius: 5px;
    font-size: 1em;
    text-align: left;
    overflow: auto;
}

#formMain {
    position: fixed;
    padding: 10px;
    top: -1000px;
    left: 50%;
    margin-left: calc(0px - (var(--box600) / 2));
    min-height: 100px;
    max-height: 1000px;
    width: var(--box600);
    background-color: var(--BgPanel);
    color: var(--BgColorPanel);
    border: 2px #444 solid;
    border-radius: 5px;
    font-size: 1em;
    text-align: left;
    box-shadow: 0px 0px 20px #000;
    z-index: 2000;
    overflow: auto;
}

#formMainContent {
    background-color: var(--BgPanelContent);
    color: var(--BgColorPanelContent);
    border: 2px #444 solid;
    border-radius: 5px;
    padding: 5px;
}

#formField {
    position: fixed;
    padding: 10px;
    top: 100px;
    left: 50%;
    margin-left: -300px;
    min-height: 100px;
    max-height: 1000px;
    width: 600px;
    background-color: var(--main-bg-color);
    border: 2px #444 solid;
    border-radius: 10px;
    font-size: 1em;
    text-align: left;
    box-shadow: 0px 0px 20px #000;
    z-index: 2000;
    overflow: auto;
}

#confirmDel {
    margin: 20px 0 0 0;
    padding: 10px 10px 10px 40px;
    background-color: var(--bgRedLight);
    background-image: url('images/iconWarningWhite.png');
    background-size: 20px;
    background-position: top 10px left 10px;
    background-repeat: no-repeat;
}

#messageBox {
    position: fixed;
    padding: 10px;
    top: 100px;
    left: 50%;
    margin-left: -300px;
    min-height: 100px;
    max-height: 1000px;
    width: 600px;
    color: #fff;
    background-color: var(--main-bg-color);
    border: 2px #000 solid;
    border-radius: 10px;
    font-size: 1em;
    text-align: left;
    box-shadow: 0px 0px 20px #000;
    z-index: 5000;
    overflow: auto;
    animation-name: moveTop;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

#tipsInfo {
    position: fixed;
    padding: 10px;
    top: 100px;
    left: 50%;
    margin-left: -250px;
    min-height: 100px;
    max-height: 1000px;
    width: var(--box500);
    background-color: var(--colorcolor);
    border: 2px #444 solid;
    border-radius: 10px;
    font-size: 1em;
    text-align: left;
    box-shadow: 0px 0px 20px #000;
    z-index: 2000;
    overflow: auto;
}

.globalTop {
    height: 32px;
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    padding: 5px;
    text-align: left;
    background-color: #999;
    border-radius: 5px;
    overflow: hidden;
}

.globalMsg {
    position: fixed;
    padding: 10px;
    top: 100px;
    left: 50%;
    margin-left: -550px;
    min-height: 100px;
    max-height: 1000px;
    width: 1000px;
    color: #000;
    background-color: #ccc;
    border: 2px #444 solid;
    border-radius: var(--borderRadius);
    font-size: 1em;
    text-align: left;
    box-shadow: 0px 0px 20px #000;
    z-index: 50;
    overflow: auto;
}

.globalTitle {
    padding: 6px 5px 0px 5px;
    font-size: 1.2em;
}

.globalText {
    padding: 20px;
    overflow: auto;
    background-color: #fff;
    max-height: 600px;
    border-radius: 8px;
}

.globalFooter {
    margin: 25px 0px 20px 0px;
    padding: 5px;
    font-size: 0.75em;
    font-style: italic;
    text-align: right;
    background-color: #ddd;
    border-radius: 8px;
}

/* Tables */

table {
    margin: 20px 0 20px 0;
    width: 100%;
}

/* Blocs Management */

#blocsManagement {
    margin: 20px 0 10px 0;
    padding: 10px;
    background-color: rgb(216, 205, 205);
    overflow: auto;
}

.bloc {
    margin: 20px 0 10px 0;
    padding: 0 0 25px 0;
    border-bottom: #aaa solid 2px;
}

.blocContent {
    margin: 0 0 20px 0;
    padding: 10px;
    line-height: 28px;
}

.blocTools {
    float: right;
    width: 44px;
    height: 132px;
    padding: 2px;
    border-radius: 4px;
    background-color: rgb(207, 207, 207);
    overflow: hidden;
}

.blocOutline:hover {
    background-image: url('images/iconEdit.png');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: bottom 10px right 10px;
    background-color: rgb(230, 230, 230);
    color: #000;
}

.sendContent {
    background-color: var(--bgOrangeHigh);
}

#recaptcha {
    overflow: hidden;
}

.g-recaptcha {
    overflow: hidden;
}

/* Gestion des fichiers */

#galeryPanel {
    position: absolute;
    margin: 0 auto;
    left: calc(50% - 400px);
    top: 100px;
    padding: 20px;
    min-width: 800px;
    min-height: 600px;
    border-radius: 6px;
    background-color: #000000bb;
    z-index: 2000;
}

#galeryTitle {
    width: calc(100% - 45px);
    padding: 5px;
    border-radius: 6px;
    background-color: #555;
    color: #fff;
    font-weight: bold;
}

#galeryNav {
    position: absolute;
    margin: 5px 0 0 0;
    width: calc(80% - 42px);
    height: 45px;
    padding: 2px 0 2px 4px;
    right: 20px;
    border-radius: 6px;
    background-color: #332c46;
    color: #fff;
    font-size: var(--fontSizeSmall);
    overflow: hidden;
}

#galeryLeft {
    position: absolute;
    margin: 5px 5px 0 0;
    width: calc(20% - 15px);
    height: calc(100% - 80px);
    padding: 5px;
    border-radius: 6px;
    background-color: #1e2d44;
    color: #fff;
    font-size: var(--fontSizeSmall);
}

#galeryContent {
    position: absolute;
    margin: 60px 0 0 0;
    width: calc(80% - 60px);
    height: calc(100% - 145px);
    padding: 10px;
    right: 20px;
    border-radius: 6px;
    background-color: #364557;
    color: #fff;
    font-size: var(--fontSizeSmall);
}

.pictureManagement {
    margin: 5px;
    width: calc(99% - 10px);
    height: calc(99% - 10px);
    border-radius: 6px;
    cursor: pointer;
}

.pictureManagement:hover {
    background-color: #ffffff19;
    background-image: url('images/iconEditWhite.png');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: bottom 10px right 10px;
}

.fileBox {
    float: left;
    margin: 0 2px 2px 0;
    width: 110px;
    height: 130px;
    padding: 5px;
    overflow: hidden;
}

.fileBox:hover {
    background-color: var(--bgBlueLight);
}

.filePictureBox {
    margin: 0 0 2px 0;
    width: 100%;
    height: 100px;
}

.filePicture {
    width: 100%;
    max-height: 100px;
}

.buttonFileHome {
    float: left;
    margin: 4px 4px 4px 0;
    width: 24px;
    height: 24px;
    padding: 3px;
    border-radius: 4px;
    color: #fff;
    background-image: url('images/iconHomeWhite.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-color: var(--bgGreenLight);
    overflow: hidden;
}

.buttonFileHome:hover {
    background-color: var(--bgGreenHigh);
}

.buttonFileDel {
    float: left;
    margin: 4px 4px 4px 0;
    width: 24px;
    height: 24px;
    padding: 3px;
    border-radius: 4px;
    color: #fff;
    background-image: url('images/iconCloseCircleWhite.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    background-color: var(--bgRedLight);
    overflow: hidden;
}

.buttonFileDel:hover {
    background-color: var(--bgRedHigh);
}

#pictureChoose {
    float: left;
    margin: 2px 5px 0 0;
    width: 45px;
    height: 40px;
    line-height: 100px;
    font-size: 0px;
    padding: 0 0 0 0;
    background-image: url('images/iconArchiveWhite.png');
    background-repeat: no-repeat;
    background-size: 33px;
    background-position: top 2px left 5px;
    background-color: var(--bgGreenLight);
    overflow: hidden;
    cursor: pointer;
}

#pictureChoose:hover {
    background-color: var(--bgGreenHigh);
}

.stickyBox {
    position: fixed;
    color: #fff;
    bottom: 20px;
    right: 10px;
    min-height: 10px;
    max-height: 300px;
    padding: 10px;
    background-color: #8e9fa8;
    box-shadow: 0px 0px 25px #000;
    border-radius: 5px;
}