:root {
    --tbheight: 3.125em;
    --tbbigheight: 2.08em;
    --tbcolor: rgb(50, 47, 46);
}

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

html {
    font-family: NotoSans, Arial, 'Arial Unicode MS', sans-serif;
    font-size: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    color: black;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: 'JWForms';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        /* IE6-IE8 */
        url('../../fonts/JWForms.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../../fonts/JWForms.woff') format('woff'),
        /* Modern Browsers */
        url('../../fonts/JWForms.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../../fonts/JWForms.svg#JWForms') format('svg');
    /* Legacy iOS */
}

@font-face {
    font-family: 'JWForms';
    font-style: normal;
    font-weight: 700;
    src: local(''),
        /* IE6-IE8 */
        url('../../fonts/JWForms-Bold.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../../fonts/JWForms-Bold.woff') format('woff'),
        /* Modern Browsers */
        url('../../fonts/JWForms-Bold.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../../fonts/JWForms-Bold.svg#JWForms-Bold') format('svg');
    /* Legacy iOS */
}

/* noto-sans-regular - latin */
@font-face {
    font-family: 'NotoSans';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/noto-sans-v25-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../../fonts/noto-sans-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../../fonts/noto-sans-v25-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../../fonts/noto-sans-v25-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../../fonts/noto-sans-v25-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../../fonts/noto-sans-v25-latin-regular.svg#NotoSans') format('svg');
    /* Legacy iOS */
}

/* noto-sans-700 - latin */
@font-face {
    font-family: 'NotoSans';
    font-style: normal;
    font-weight: 700;
    src: url('../../fonts/noto-sans-v25-latin-700.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../../fonts/noto-sans-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../../fonts/noto-sans-v25-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../../fonts/noto-sans-v25-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../../fonts/noto-sans-v25-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../../fonts/noto-sans-v25-latin-700.svg#NotoSans') format('svg');
    /* Legacy iOS */
}

input {
    font-family: NotoSans, Arial, 'Arial Unicode MS', sans-serif;
}

.editpanel {
    cursor: pointer;
    padding: 0.7em 1em 1em 1em;
    border: transparent 2px solid;
    border-radius: 0.5em;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.strike-through {
    text-decoration: line-through;
}

.lblcb {
    cursor: pointer;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 0.42em 2em 0.42em 0.7em;
    /* padding-right pour faire de la place au bouton */
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s;
    text-align: center;
    font-size: inherit;
    border-radius: 3px;
}

.search-input:focus {
    border-color: #4a90e2;
}

.search-button {
    position: absolute;
    right: 0.2em;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(48, 96, 60);
    transition: color 0.3s;
}

.search-button:hover {
    color: rgb(84, 144, 84)
}

.whitespace-nowrap {
    white-space: nowrap;
}

.langstuff {
    display: none;
}

header {
    background-color: var(--tbcolor);
    color: rgb(245, 245, 245);
    height: var(--tbheight);
}

button {
    background-color: inherit;
    color: inherit;
    border: none;
    cursor: pointer;
    font-family: NotoSans, Arial, 'Arial Unicode MS', sans-serif;
    font-size: inherit;
}

.buttonmyicons {
    padding: 0.3em;
    border-radius: 50%;
    height: 2.2em;
    width: 2.2em;
    text-align: center;
    margin: 0 0.7em;
    -webkit-appearance: none;
    appearance: none;
    outline-style: none;
    outline-color: transparent;
}

.msgboxtitlebar {
    display: flex;
}

.msgboxtitle {
    font-weight: bold;
    font-size: 85%;
}

.msgboxtitle2 {
    font-weight: bold;
    font-size: inherit;
}

.modalflex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.amenu {
    position: absolute;
    display: none;
    background-color: var(--tbcolor);
    width: 19px;
    height: 19px;
    top: calc((var(--tbheight) / 2) - 9px);
    left: 12px;
    cursor: pointer;
}

#userdiv {
    position: absolute;
    height: var(--tbheight);
    display: flex;
    align-items: center;
    top: 3px;
    right: 0;
    text-align: right;
    margin-right: 0.75em;
}

#brotherdiv {
    display: flex;
    cursor: pointer;
}

#meetlogo1 {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 0.5em;
    font-size: 150%;
    height: var(--tbbigheight);
    line-height: var(--tbbigheight);
}

#meetlogo2 {
    display: none;
    margin: 0 auto;
    font-size: 150%;
    height: var(--tbbigheight);
    line-height: var(--tbbigheight);
}

#biguname {
    display: none;
    width: 8.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#smalluname {
    display: block;
}

.toolbardiv {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.toolbardiv i {
    display: none;
    width: 1.5em;
    top: 2px;
}

.imgobject {
    display: none;
    -webkit-transition-duration: 0.3s;
    /* Safari */
    -o-transition-duration: 0.3s;
    /* Opera */
    -moz-transition-duration: 0.3s;
    /* Firefox */
    transition-duration: 0.3s;
    position: absolute;
    top: 0;
    left: 0;
}

.imgobject1 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.flexcenter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.flexcenter1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flexwrapdiv {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.flexcoldiv {
    display: flex;
    flex-direction: column;
}


.imgformtool {
    font-size: 15px;
    margin-right: 0.5em;
}

.dropmenu {
    display: none;
    position: absolute;
    background-color: var(--tbcolor);
    min-width: 11em;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 100;
    top: var(--tbheight);
}

.dropmenu button {
    color: rgb(245, 245, 245);
    height: var(--tbheight);
    line-height: var(--tbheight);
    text-decoration: none;
    text-align: left;
    width: 100%;
}

.dropmenu i {
    display: inline-block;
    width: 1.5em;
    top: 2px;
}

#mnuaccount {
    position: absolute;
    display: none;
    right: 0;
    top: var(--tbheight);
    background-color: var(--tbcolor);
    min-width: 150px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

#mnuaccount a {
    color: rgb(245, 245, 245);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

#mnuaccount a:hover {
    background-color: rgb(96, 96, 96);
}

.amenuimg {
    cursor: pointer;
}

.amenubar {
    background-color: rgb(245, 245, 245);
    height: 3px;
    padding: 0;
    margin-top: 1px;
    margin-bottom: 2px;
}

.logodiv {
    flex-grow: 1;
    color: rgb(245, 245, 245);
    height: var(--tbheight);
    line-height: var(--tbheight);
    padding-left: 12px;
    vertical-align: middle;
}

.brotherdiv {
    position: relative;
    flex-grow: 1;
}

.brotherdiv>img {
    margin: 0;
    padding-right: 12px;
    position: absolute;
    width: 30px;
    height: 20px;
    left: 100%;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    cursor: pointer;
}

.brotherdiv>label {
    margin: 0;
    display: inline-block;
    padding-right: 12px;
    position: absolute;
    width: 100%;
    left: 100%;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    -moz-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    text-align: right;
}

.alogo {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    line-height: var(--tbheight);
}

.tabscontainer {
    height: 37px;
    text-align: center;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 25;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.headdiv {
    display: flex;
    position: relative;
    background-color: var(--tbcolor);
    width: 100%;
    height: var(--tbheight);
    margin: 0 auto;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1), 0 10px 30px 0 rgba(0, 0, 0, 0.5);
}

.footdiv {
    background-color: var(--tbcolor);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: rgb(245, 245, 245);
    width: 100%;
    min-height: calc(100% - 500px);
}

.tablbl580 {
    display: none;
}

.tablbl420 {
    display: none;
}

.tablbl300 {
    display: block;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tabscontainer::-webkit-scrollbar {
    display: none;
}

.tabdiv1 {
    display: inline-flex;
    flex-wrap: nowrap;
    height: 57px;
    padding-top: 3px;
    position: relative;
    z-index: 25;
    white-space: nowrap;
}

.tabdiv {
    display: inline-flex;
    flex-wrap: nowrap;
    height: 57px;
    padding-top: 3px;
    position: relative;
    z-index: 25;
    overflow: hidden;
    white-space: nowrap;
}


.tabdiv3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 25px 2px 25px;
}

.toptoolshalf {
    display: flex;
    flex-grow: 1;
}

.subtab {
    outline: none;
    background-color: inherit;
    border: none;
    padding: 4px 10px 8px 10px;
    margin-top: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgb(245, 245, 245);
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.subtab>a {
    color: rgb(245, 245, 245);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.subtabsel>a {
    color: black;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.toolbaritem {
    background-color: inherit;
    border: none;
    cursor: pointer;
    color: rgb(245, 245, 245);
    font-size: 17px;
    font-weight: bold;
    height: var(--tbheight);
    line-height: var(--tbheight);
    text-align: center;
    vertical-align: middle;
    padding: 0 10px;
    -webkit-transition-duration: 0.3s;
    /* Safari */
    -o-transition-duration: 0.3s;
    /* Opera */
    -moz-transition-duration: 0.3s;
    /* Firefox */
    transition-duration: 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.spinner {
    margin: 10px auto 0;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    margin: 1px;
    background-color: #cccccc;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    -moz-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    -moz-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.spinner1 {
    margin: 0 auto;
    width: 70px;
    text-align: center;
}

.spinner1>div {
    width: 18px;
    height: 18px;
    margin: 1px;
    background-color: #cccccc;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    -moz-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner1 .bounce1 {
    -webkit-animation-delay: -0.32s;
    -moz-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner1 .bounce2 {
    -webkit-animation-delay: -0.16s;
    -moz-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.total {
    text-align: center;
    font-weight: bold;
}


.edittitlebar {
    margin: 0 auto;
    padding: 0.85em 0.5em 0 0.5em;
    height: var(--tbheight);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1), 0 10px 30px 0 rgba(0, 0, 0, 0.5);
}

.edittitlebar1 {
    padding: 0.55em 0.5em 0 1em;
    height: 100%;
}

#edittitlebar2 {
    padding: 0 0.5em 0 1em;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.edittitlelabel {
    display: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.edittitlelabel1 {
    display: none;
    font-size: 22px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#edittitlelabel2 {
    display: none;
    font-size: 125%;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: 0.1em;
    flex-grow: 1;
}

.btncloseedit {
    font-family: Arial, 'Arial Unicode MS', sans-serif;
    font-size: 32px;
    height: var(--tbheight);
    line-height: var(--tbheight);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
    cursor: pointer;
}

.btncloseedit:hover {
    color: rgb(255, 128, 128);
}

.backformdiv {
    font-size: 9px;
    padding: 0 1.5em 1.5em 1.5em;
}

.gentoolbar {
    font-size: inherit;
    padding: 0.41em 0.75em 0.33em 0.75em;
}

.accttoolbar {
    font-size: 12px;
    padding: 7px 0.5em 7px 0.5em;
}

.formdiv {
    display: none;
    margin: 0 auto;
    padding: 0 5px;
    font-size: 13px;
    width: 90%;
    max-width: 600px;
    overflow: hidden;
}

.transbutton {
    background-color: inherit;
    border: none;
    cursor: pointer;
    font-size: inherit;
}

.sltxtarea {
    padding: 0.4em;
}

.filtertxtarea {
    padding: 1px;
}

.lblcap {
    border: 0;
    background-color: inherit;
    color: inherit;
    margin: 0;
    padding-left: 2px;
    font-size: 12px;
    cursor: default;
    font-weight: bold;
}

.lblcap1 {
    padding-left: 1%;
    font-size: 90%;
    font-weight: bold;
}

.lblcaptt {
    font-size: 90%;
    font-weight: bold;
}

.lbltext {
    padding-left: 1%;
    display: none;
}

.font75 {
    font-size: 75%;
}

.font80 {
    font-size: 80%;
}

.font85 {
    font-size: 85%;
}

.font90 {
    font-size: 90%;
}

.font95 {
    font-size: 95%;
}

.font110 {
    font-size: 110%;
}

.font120 {
    font-size: 120%;
}

.font125 {
    font-size: 125%;
}

.font140 {
    font-size: 140%;
}

.font150 {
    font-size: 150%;
}

.redbutton,
.greenbutton {
    -webkit-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-decoration: none;
    background-color: rgb(200, 0, 0);
    color: white;
    min-width: 4.5em;
    padding: 0.5em 1em;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: NotoSans, Arial, 'Arial Unicode MS', sans-serif;
    font-size: inherit;
    transition: 0.1s;
    outline-color: transparent;
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
}

.redbutton:hover {
    background-color: rgb(160, 0, 0);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.redbutton:focus {
    background-color: rgb(160, 0, 0);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.greenbutton {
    background-color: rgb(0, 128, 0);
}

.greenbutton:hover {
    background-color: rgb(0, 100, 0);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.greenbutton:focus {
    background-color: rgb(0, 100, 0);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}

.notcurrentmeeting {
    border-radius: 0.4em;
    margin: 3px 0;
    border: 2px solid transparent;
    min-width: 12em;
    text-align: center;
    padding: 3px;
}

.schedule_label_type {
    color: inherit;
    height: 34px;
    line-height: 34px;
    font-size: 80%;
    text-align: center;
}

.schedule_label_type_big {
    display: none;
}

.schedule_label_types {
    width: 80px;
    min-width: 80px;
    padding-top: 9px;
}

.schedule_meeting {
    border-radius: 0.4em;
    margin: 3px 0;
    min-width: 12em;
    text-align: center;
    padding: 3px;
    border: 2px solid transparent;
}

.colpreptaskdesc {
    width: 5em;
    min-width: 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prepdatecol {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 0.1em;
    min-width: 9em;
    max-width: 9em;
    font-size: 90%;
    padding: 0.5em;
}

.printprepdatecolumn {
    width: 10em;
    text-align: center;
}

.printpreptypecolumn1 {
    width: 9em;
    text-align: center;
}

.printpreptypecolumn2 {
    width: 6em;
    text-align: center;
}

.printprepnamecolumn {
    text-align: center;
}

.splitbluebutton {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-decoration: none;
    background-color: rgb(56, 97, 149);
    color: rgb(245, 245, 245);
    border-radius: 0 3px 3px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    min-width: 1.2em;
    max-width: 1.2em;
    align-self: stretch;
    cursor: pointer;
    font-family: NotoSans, Arial, 'Arial Unicode MS', sans-serif;
    font-size: inherit;
    transition: 0.1s;
    outline-color: transparent;
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
}

.splitbluebutton:hover,
.splitbluebutton:focus {
    background-color: rgb(33, 57, 87);
}

@media only screen and (min-width: 800px) {
    .schedule_label_type {
        font-size: 100%;
    }

    .schedule_label_type_small {
        display: none;
    }

    .schedule_label_type_big {
        display: block;
    }

    .schedule_label_types {
        width: 168px;
        min-width: 168px;
        padding-top: 7px;
    }

    .colpreptaskdesc {
        width: 9em;
        min-width: 9em;
    }

    .prepdatecol {
        min-width: 11em;
        max-width: 11em;
        font-size: 100%;
    }
}