

:root {
    --primary: #6399da; /* couleur primaire interface */
    --primary-hover: #457ab6; /* couleur primaire interface */
    --secondary: #3d76b8; /* couleur secondaire */
    --calendar-active: #3d76b8;
    --icon-info: #c3c3c3;
    --icon-zoom: #777;
    --menu-icon: #555;
    --mainmenu-selected: #1d5691;
    --mainmenu-icon-bg: #f7f7f7;


    --button-primary: var(--primary);
    --button-primary-hover: var(--primary-hover);
    --button-primary-text: #fff;
    --button-grey: #ddd;
    --button-grey-text: #777;

    --text: #555; /* base du texte */
    --title: #555; /* titre sur fond standard */
    --link: var(--primary);
    --link-hover: var(--secondary);
    --hr: #f7f7f7;

    --page-bg: #fff; /* fond de page */
    --page-dimmed-text: #ccc; /* texte gris sur page */

    --popup-bg: #fff; /* fond popup */
    --popup-border-radius: 8px;

    --form-alt-bgcolor: #f7f7f7; /* couleur d'alternance de liste */

    --date-bg: var(--secondary);

    --header-text: #fff;
    --header-text-hover: var(--primary-hover);

    --panel-bg: #eee; /* fond de panneau standard */
    --panel-text: #555; /* texte de panneau standard */

    --panel-caution-bg: #ffbd71;
    --panel-caution-text: #fff;

    --titlebar-bg: #6399da;
    --titlebar-text: #fff;

    --filet: transparent; /* filet d'une grille */
    --grey: #eee; /* couleur neutre de remplissage */
    --overlay: rgba(0,0,0,0.40); /* fond overlay */
    --alert: #ec5252;


    --font: 'Helvetica','Tahoma', 'Arial';
    --font-normal: 300;
    --font-bold: 700;
}


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;
    font-family: var(--font), Helvetica, sans-serif;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}







html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}


body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    text-align: left;
    background-color: #fff;
}
ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 16px;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}


a {
    color: var(--link);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

img {
    vertical-align: middle;
    border-style: none;
}

label {
    display: inline-block;
}
button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

[hidden] {
    display: none !important;
}

/* H root elements */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid var(--hr);
}

/* standard */

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.row-block {
    padding: 15px;
}
/* unused */
.row {}


/* FONT FAMILY ---------------------- */

td, .label-form-login,
button,
.link,
.txt,
.popup-title,
.popup-body > div,
.date-info > div,
.form-label-time, .form-line,
.main-menu li a,
.room-func-btn-all,
.room-func-btn-grey,
.room-func-btn-right,
.menu-icon .title,
.title-subscribe,
.title-footer-subscribe,
.intro-subscribe,
#datepicker *,
#epcl-useragenda-frame .header-agenda,
#epcl-useragenda-frame .cellmagHW,
#epcl-useragenda-frame .cellmagH,
.pcl-manage-user .userbox .names,
.pcl-manage-user .userbox .functions,
.font, div, a, span,
.titl, .title, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font), sans-serif;
    font-weight: 400;
}

b, .bold {
    font-family: var(--font), sans-serif;
    font-weight: 700;
}




