/** card(z height) */
/*
  @media (pointer: coarse) {
@mixin checkbox {
    background-image: url('images/check_box_outline_blank-24px.svg');
}
  }
  @media (pointer: coarse) {
@mixin checkbox_checked {
    background-image: url('images/check_box-24px.svg');
}
  }
*/
html {
    display: table;
    width: 100%;
    background-color: #fff;
    font-family: sans-serif;
    height: 100%;
    }
body {
    display: table-row;
    }
div.allExceptHeader {
    width: 100%;
    max-width: 1024px;
    min-width: 200px;
    margin: auto;
    background-color: #fff;
    min-height: 100%;
    }
div.content {
    padding: 0 1em;
    }

/*
table tr.warning:after {
  content: " ";
  background-image: url('images/warning.svg');
  background-size: auto 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  background-origin: content-box;
  height: 2.0em;
  width: 2.0em;
  display: inline-block;
}*/
/*table tr.warning {
  background-color: red;
  background-image: url('images/warning.svg');
  background-size: auto 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  background-origin: content-box;
}*/
/* MULTIFK */
div.multifk > div {
    display: inline-block;
    }

/* CHECKBOXES AND RADIO WITH NO LABEL*/
input[type="checkbox"].fakelabel {
    display: none;
    display: block;
    position: absolute;
    left: -9999px;
    }
input[type="checkbox"].fakelabel + label {
    display: inline-block;
    padding: .5em .5em;
    border: 1px solid #444;
    border-radius: .2em;
    margin: 2px;
    cursor: pointer;
    background-color: #fff;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 0;
    border: 1px solid dotted;
    }
input[type="checkbox"].fakelabel:checked + label {
    -webkit-box-shadow: 0 0 0 0 grey;
    box-shadow: 0 0 0 0 grey;
    cursor: pointer;
    background-color: #512767;
    color: #fff;
    background: #fff url(images/check-24px.svg) no-repeat center center;
    }
@media (hover:hover) {
input[type="checkbox"].fakelabel:hover + label {
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #000;
    color: #fff;
    }
input[type="checkbox"].fakelabel:hover:checked + label {
    -webkit-box-shadow: 0 0 0 0 grey;
    box-shadow: 0 0 0 0 grey;
    cursor: pointer;
    background-color: #512767;
    color: #fff;
    background: #fff url(images/check-24px.svg) no-repeat center center;
    }
}

input[type="checkbox"].haslabel,
div.multifk input[type="checkbox"],
input[type="radio"].haslabel,
form#editForm input[type="radio"],
form#createForm input[type="radio"] {
    display: none;
    display: block;
    position: absolute;
    left: -9999px;
    }
input[type="checkbox"].haslabel + label,
div.multifk input[type="checkbox"] + label,
input[type="radio"].haslabel + label,
form#editForm input[type="radio"] + label,
form#createForm input[type="radio"] + label {
    display: inline-block;
    padding: .5em .5em;
    border: 1px solid #444;
    border-radius: .2em;
    margin: 2px;
    cursor: pointer;
    background-color: #fff;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
input[type="checkbox"].haslabel:checked + label,
div.multifk input[type="checkbox"]:checked + label,
input[type="radio"].haslabel:checked + label,
form#editForm input[type="radio"]:checked + label,
form#createForm input[type="radio"]:checked + label {
    -webkit-box-shadow: 0 0 0 0 grey;
    box-shadow: 0 0 0 0 grey;
    cursor: pointer;
    background-color: #512767;
    color: #fff;
    }
@media (hover:hover) {
input[type="checkbox"].haslabel:hover + label,
div.multifk input[type="checkbox"]:hover + label,
input[type="radio"].haslabel:hover + label,
form#editForm input[type="radio"]:hover + label,
form#createForm input[type="radio"]:hover + label {
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #000;
    color: #fff;
    }
input[type="checkbox"].haslabel:focus + label,
div.multifk input[type="checkbox"]:focus + label,
input[type="radio"].haslabel:focus + label,
form#editForm input[type="radio"]:focus + label,
form#createForm input[type="radio"]:focus + label {
    outline: 1px dotted #512767;
    outline-offset: 1px;
    }
input[type="checkbox"].haslabel:hover:checked + label,
div.multifk input[type="checkbox"]:hover:checked + label,
input[type="radio"].haslabel:hover:checked + label,
form#editForm input[type="radio"]:hover:checked + label,
form#createForm input[type="radio"]:hover:checked + label {
    color: #fff;
    }
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
    padding: .5em 0;
    }
span.radio > span {
    display: inline-block;
    }
div.error,
div.success,
div.home_warning,
div.login_warning {
    margin: auto;
    max-width: 500px;
    border: 1px solid #888;
    color: #000;
    padding: 5px;
    }
div.error {
    background-color: #f08700;
    }
div.success {
    background-color: #0f6;
    }
div.home_warning {
    background-color: #0f6;
    }
div.login_warning {
    background-color: #f08700;
    }
body.genericPage_maraudes .data {
    display: table;
    margin: 1em auto;
    }
body.genericPage_maraudes .data a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border: 1px solid #888;
    -webkit-box-shadow: 0 0 px #ccc;
    box-shadow: 0 0 px #ccc;
    margin: .5em .5em;
    background-color: #fff;
    padding: .5em;
    overflow: hidden;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
body.genericPage_maraudes .data a:first-child {
    display: none !important;
    }
body.genericPage_maraudes .data a > div {
    display: block;
    margin: auto;
    display: block !important;
    }
body.genericPage_maraudes .data a > div:nth-child(1) {
    margin-left: 0;
    text-align: left;
    }
body.genericPage_maraudes .data a > div:nth-child(2) {
    margin-left: 0;
    text-align: left;
    }
body.genericPage_maraudes .data a > div:nth-child(3) {
    margin-right: 0;
    text-align: right;
    background-color: #cff9ff;
    border: 1px solid black;
    padding: 3px;
    border-radius: 1em;
    height: 1em;
    line-height: 1em;
    min-width: 2em;
    font-weight: bold;
    color: #000;
    text-align: center;
    }
input[pattern]:invalid,
input[required]:invalid,
input[maxlength]:invalid {
    border: 1px solid red;
    }
input[pattern]:valid,
input[required]:valid,
input[maxlength]:valid {
    border: 1px solid green;
    }
.multifk {
    position: relative;
    }
.multifk input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.multifk .autocomplete-items {
    position: absolute;
    border: 1px solid #888;
    color: #fff;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    }
.multifk .autocomplete-items div {
    padding: 10px;
    border-bottom: 1px solid #888;
    background-color: #af7fc6;
    cursor: pointer;
    }
.multifk .autocomplete-items div:hover {
    background-color: #e2aff9;
    }
.multifk .autocomplete-active {
    background-color: #512767 !important;
    color: #fff;
    }
.multifk.number > div.multifk {
    margin: 2px;
    border: 1px solid #444;
    border-radius: .2em;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    gap: .5rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.multifk.number label {
    margin: 0 !important;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
.multifk.number .multifk-smart .multifk-smart-number {
    background-color: #512767 !important;
    }
.multifk.number .multifk-smart:hover {
    background-image: url(images/delete_white.svg);
    background-repeat: no-repeat;
    background-position: right;
    }
.multifk.number .multifk-delete-button {
    display: none;
    }
.multifk.number .multifk-delete-button:hover {
    cursor: pointer;
    }
.multifk.number .multifk-number-buttons {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    }
.multifk.number .multifk-plus-button,
.multifk.number .multifk-less-button,
.multifk.number .multifk-delete-button {
    cursor: pointer;
    color: #512767 !important;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    }
.multifk.number .multifk-plus-button img,
.multifk.number .multifk-less-button img,
.multifk.number .multifk-delete-button img {
    width: 1.5rem;
    }
.multifk.number .multifk-number-button {
    cursor: pointer;
    min-width: 1.5rem;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.multifk.number div.multifk input[type="checkbox"]:hover + label div.multifk input[type="checkbox"]:checked + label,
.multifk.number div.multifk input[type="checkbox"] + label {
    -webkit-box-shadow: 0 0 0 0 grey;
    box-shadow: 0 0 0 0 grey;
    cursor: pointer;
    background-color: #512767;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: auto;
    background-color: #512767;
    }

/** Main menu */
div.ADMIN {
    width: 100%;
    margin: 0;
    background-color: #004080;
    text-align: center;
    }
div.ADMIN .menuItem {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    vertical-align: middle;
    overflow: hidden;
    }
div.ADMIN .menuItem a {
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    padding: 0 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    outline: none;
    }
div.ADMIN .menuItem:hover {
    background-color: #476ab0;
    }
div.litigationDetails {
    width: 70%;
    margin: auto;
    }
div.litigationDetails a {
    display: block;
    }
div.ADMIN .menuItem.dropDown {
    position: absolute;
    overflow: visible;
    z-index: 99;
    top: 100%;
    left: 0;
    width: intrinsic;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    }
div.ADMIN .menuItem.dropDown span {
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: #512767;
    display: block;
    text-align: left;
    }
div.ADMIN .menuItem.dropDown span:hover {
    background-color: #512767;
    }
div.ADMIN .dropDownContainer {
    position: relative;
    overflow: visible;
    }
div.ADMIN .dropDownName {
    padding-right: 0;
    }
div.ADMIN .menuItem.dropDownContainer span.dropDown {
    display: none;
    }
div.ADMIN .menuItem.dropDownContainer:hover span.dropDown {
    display: block;
    }
body.genericPage_rencontres_create form#createForm table tr#tableTrtime:nth-child(1) label {
    display: none;
    }
body.genericPage_rencontres_create form#createForm table tr#tableTrprenom:nth-child(3) label {
    display: none;
    }
body.genericPage_rencontres_create form#createForm table tr#tableTrlieu_autre:nth-child(5) label {
    display: none;
    }
body.genericPage_rencontres_create form#createForm table {
    border-collapse: separate;
    border-spacing: .5rem;
    }
body.genericPage_statistics table.data tr td:first-child {
    text-align: left;
    }
body.genericPage_statistics table.data tr td:last-child {
    text-align: right;
    }
div.arb > * {
    display: inline-block;
    border: 1px solid black;
    background-color: #fff;
    padding: .2em .5em;
    text-decoration: none;
    color: #444;
    margin-left: -1px;
    }
div.arb > *:first-child {
    border-radius: .5em 0 0 .5em;
    }
div.arb > *:last-child {
    border-radius: 0 .5em .5em 0;
    }
@media (hover: hover) {
div.arb > a:hover {
    background-color: #476ab0;
    color: #fff;
    }
}

div.arb > span.arrow {
    display: none;
    }
div.arb img {
    height: 19px;
    vertical-align: text-bottom;
    }
.data {
    border-collapse: collapse;
    margin: 1em auto;
    text-align: left;
    }
.data > * {
    text-decoration: none;
    color: black;
    }
.data > a > *,
table.data tr > * {
    padding: 0 .8em;
    vertical-align: middle;
    }
.data > a:nth-child(odd),
table.data tr:nth-child(odd) {
    background-color: #e0fbff;
    }
.data > a[data-parity="1"],
table.data tr[data-parity="1"] {
    background-color: #e0fbff;
    }
.data > a[data-parity="0"],
table.data tr[data-parity="0"] {
    background-color: white;
    }
.data > a:first-child,
table.data tr:first-child {
    border-bottom: 1px solid #000;
    background-color: #e0fbff;
    }
.data > a:first-child > * table.data tr:first-child > * {
    padding: 0 .5em;
    }
@media (hover:hover) {
.data > a:not(:first-child):hover,
.data > *[onclick]:hover,
.data > tbody > *[onclick]:hover,
table.data tr[onclick]:hover,
th.sortable:hover {
    background-color: #476ab0;
    color: #fff;
    cursor: pointer;
    }
}

.data > a:not(:first-child):active,
.data > *[onclick]:active,
.data > tbody > *[onclick]:active,
table.data tr[onclick]:active,
th.sortable:active {
    background-color: #476ab0;
    color: #fff;
    }
.data *.green td:nth-child(3) {
    background-color: green;
    }
.data *.red td:nth-child(3) {
    background-color: red;
    }
.data.matrix td.green {
    background-color: green;
    }
.data.matrix td.green a {
    background-color: #0f6;
    width: 100%;
    padding: 0;
    margin: 0;
    display: inline-block;
    }
.data.matrix a {
    margin: 0;
    white-space: nowrap;
    display: inline-block;
    }
body.genericPage_consolidate table td {
    text-align: left;
    }
body.genericPage_consolidate2 table td {
    text-align: left;
    }
body.genericPage_maraudes .data > * td:nth-child(1) {
    white-space: nowrap;
    }
span.search-arrow {
    margin-right: .2em;
    }
th.sortable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
select.table-limit {
    width: auto;
    font-size: .8em;
    }
a.table-unfinished {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 3em;
    height: 3em;
    max-height: 1.5em;
    line-height: 1em;
    display: block;
    margin: auto;
    border-radius: 0 0 3em 3em;
    background-color: #ddd;
    border: 1px solid #aaa;
    border-top: none;
    margin-top: -1em;
    -webkit-transition: max-height .1s ease-in,line-height .1s ease-in;
    -moz-transition: max-height .1s ease-in,line-height .1s ease-in;
    transition: max-height .1s ease-in,line-height .1s ease-in;
    }
a.table-unfinished:hover {
    background-color: #476ab0;
    color: white;
    cursor: pointer;
    max-height: 3em;
    line-height: 3em;
    }

/** AJAX table edit_link **/
.data-ajax {
    border-collapse: collapse;
    margin: 1em auto;
    text-align: left;
    vertical-align: middle;
    }
@media (hover:hover) {
.data-ajax th:hover .iconSortAsc,
.data-ajax th:hover .iconSortDesc,
.data-ajax th:hover .iconSort,
.data-ajax th .iconRemoveCol:hover,
.data-ajax th.sortable .iconFilter:hover {
    -webkit-filter: invert(1);
    filter: invert(1);
    }
.data-ajax a:hover,
.data-ajax th.sortable:hover {
    background-color: #476ab0 !important;
    color: #fff;
    cursor: pointer;
    }
}

.data-ajax a:active,
.data-ajax th.sortable:active {
    background-color: #476ab0 !important;
    color: #fff;
    cursor: pointer;
    }
.data-ajax thead .iconSortAsc,
.data-ajax thead .iconSortDesc,
.data-ajax thead .iconSort,
.data-ajax thead .iconFilter,
.data-ajax thead .iconRemoveCol {
    vertical-align: text-bottom;
    }
.data-ajax thead th {
    background-color: #e0fbff;
    border-bottom: 1px solid #000;
    background-color: #e0fbff;
    padding-right: .8em;
    }
.data-ajax tbody > * {
    text-decoration: none;
    color: black;
    }
.data-ajax tbody > * > * {
    padding-right: .8em;
    }
.data-ajax tbody > *:nth-child(even) {
    background-color: #e0fbff;
    }
@media screen and (max-width: 800px) {
.data > * > *,
table.data tr > *,
.data-ajax > tbody > * > div {
    padding: 0 .3em;
    }
}

.cms_ajax_filters {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.cms_ajax_filters > span,
.cms_ajax_filters > select {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }

/* TODO add loader */
.ajax-results.loading {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
div.limit_warning {
    font-size: .8em;
    padding-top: .2em;
    padding-bottom: .2em;
    text-align: center;
    }
div.config_assistant {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
div.config_assistant > div {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    }
div.config_assistant > div > div {
    width: 30%;
    -o-text-overflow: hidden;
    text-overflow: hidden;
    text-align: left;
    padding-top: 1em;
    padding-bottom: 1em;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    word-wrap: anywhere;
    }
div.config_assistant > div > div:first-child {
    border-right: 1px solid black;
    padding-right: .5em;
    width: 70%;
    text-align: left;
    margin-right: 1em;
    }
div.config_nondefault {
    min-width: 100px;
    background-color: orange;
    }
div.config_secret {
    min-width: 100px;
    background-color: red;
    }
@media screen and (max-width: 1100px) {
div.config_advanced {
    display: none;
    }
}

@media screen and (max-width: 600px) {
div.config_assistant > div {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
div.config_assistant > div > div {
    width: auto;
    }
div.config_assistant > div > div:first-child {
    width: auto;
    border-right: none;
    }
div.config_assistant > div {
    border-bottom: 1px solid #666;
    }
}

div.center {
    text-align: center;
    }
div.contentInner2 a.button {
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    }
div.contentInner2 a.button.matrix {
    display: inline-block;
    height: 3em;
    margin: .2em;
    line-height: 3em;
    }
div.contentInner2 a.button.delete {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    background-color: #f08700;
    }
div.contentInner2 a.button_block {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    display: inline-block;
    margin: .8em .8em;
    }
table.data a {
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    }
input[type="submit"] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    }
div.contentInner2 > h1 {
    color: #444;
    text-align: center;
    }
div.contentInner2 {
    text-align: center;
    }
form table {
    margin: auto;
    width: 100%;
    max-width: 500px;
    }
form table.data {
    max-width: 100%;
    }
form table textarea {
    height: 10em;
    }
select,
option {
    width: 100%;
    max-width: 250px;
    }
@media screen and (max-width: 800px) {
form table {
    margin: auto;
    width: 100%;
    max-width: 100%;
    }
select,
option {
    width: 100%;
    max-width: 250px;
    }
form table tr {
    display: block;
    }
form table td {
    display: block;
    }
form table tr td:first-child {
    font-weight: bold;
    }
div.content {
    padding: 0 10px 0 10px;
    }
}

img.map {
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
    margin: auto;
    }
img.spinner {
    height: 1.5em;
    position: relative;
    top: .3em;
    left: .8em;
    cursor: pointer;
    }
div.rencontres div.rencontre {
    outline: none;
    border: 1px solid #888;
    -webkit-box-shadow: 0 2.5px 5px #ccc;
    box-shadow: 0 2.5px 5px #ccc;
    color: black;
    margin: .5em;
    display: inline-block;
    padding: 1em;
    }
div.rencontres div.rencontre.signal {
    border-left: 5px solid #f08700;
    }
div.rencontres div.rencontre.danger {
    border-right: 5px solid #f00;
    }
div.rencontres div.rencontre span.time {
    display: block;
    padding: 3px;
    border-radius: .1em;
    height: 1em;
    line-height: 1em;
    min-width: 2em;
    font-weight: bold;
    }
div.rencontres div.rencontre span.prenom {
    display: block;
    margin-right: 0;
    text-align: center;
    }
div.rencontres div.lieu {
    font-size: 1.1em;
    text-align: center;
    margin-top: 1.5em;
    }
div.rencontres div.lieu a.link_lieu {
    height: 1em;
    width: 1em;
    display: inline-block;
    padding: .3em;
    border-radius: 1em;
    }
div.rencontres div.lieu a.link_lieu img {
    outline: none;
    height: .8em;
    }
div.history div.date {
    font-size: 1.1em;
    text-align: center;
    margin-top: 1.5em;
    }
div.event {
    display: inline-block;
    border: 1px solid #888;
    -webkit-box-shadow: 0 2.5px 5px #ccc;
    box-shadow: 0 2.5px 5px #ccc;
    margin: .5em;
    padding: 0 .5em;
    background-color: #fff;
    vertical-align: top;
    }
body.genericPage_maraudes_view a.create:not(:hover) {
    background-color: #0f6;
    }
body.genericPage_maraudes a.create:not(:hover) {
    background-color: #0f6;
    }
@media screen and (min-width: 800px) {
div.event {
    max-width: 40%;
    }
}

@media (hover: hover) {
}

div.contentInner2 a.button:hover {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #fff;
    }
div.contentInner2 a.button_block:hover {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #fff;
    }
table.data a:hover {
    display: inline-block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #fff;
    }
input[type="submit"]:hover {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #fff;
    }
div.rencontres div.rencontre:hover {
    background-color: #476ab0;
    color: #fff;
    cursor: pointer;
    }
div.rencontres div.lieu a.link_lieu:hover {
    background-color: #476ab0;
    }
div.rencontres div.lieu a.link_lieu:hover span {
    -webkit-filter: invert(100%);
    filter: invert(100%);
    }
img.totpIcon {
    vertical-align: middle;
    }
img#img_lieu {
    margin: auto;
    }
body.genericPage_rencontres_create input[name="create_and_edit"]:not(:hover) {
    background-color: #0f6;
    }
body.genericPage_rencontres_edit input[name="edit_and_back"]:not(:hover) {
    background-color: #0f6;
    }
body.genericPage_rencontres_edit a.button:nth-child(2):not(:hover) {
    background-color: #0f6;
    }
body.genericPage_eval_edit input.button[type="submit"] {
    background-color: #0f6;
    }
.ui-widget {
    font-size: .8em !important;
    }
body.genericPage_login {
    text-align: center;
    }
body.genericPage_login h1,
body.genericPage_login h2 {
    color: #444;
    }
body.genericPage_login form input {
    display: block;
    margin: auto;
    width: 200px;
    margin-bottom: 10px;
    }
div.footer {
    margin-top: 3em;
    text-align: center;
    color: #444;
    }
div.footer a {
    color: #888;
    }
@-webkit-keyframes fadeIn {
0% {
    opacity: 0;
    }
100% {
    opacity: .9;
    }
}

@-moz-keyframes fadeIn {
0% {
    opacity: 0;
    }
100% {
    opacity: .9;
    }
}

@keyframes fadeIn {
0% {
    opacity: 0;
    }
100% {
    opacity: .9;
    }
}

.fade {
    -webkit-animation: 2s ease-in 0s 1 fadeIn;
    -moz-animation: 2s ease-in 0s 1 fadeIn;
    animation: 2s ease-in 0s 1 fadeIn;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    -webkit-align-items: middle;
    align-items: middle;
    color: white;
    opacity: .9;
    }

/** card(z height) */
/*
  @media (pointer: coarse) {
@mixin checkbox {
    background-image: url('images/check_box_outline_blank-24px.svg');
}
  }
  @media (pointer: coarse) {
@mixin checkbox_checked {
    background-image: url('images/check_box-24px.svg');
}
  }
*/
div#progressBar {
    background-color: #ddd;
    width: 200px;
    margin: 10px;
    height: 15px;
    border-radius: 5px;
    border: 1px solid #555;
    position: relative;
    overflow: hidden;
    }
div#progressBar div#progressBarInner {
    position: relative;
    width: 100%;
    height: 100%;
    left: -200px;
    background-color: #0f0;
    }
div.article {
    width: 500px;
    background-color: #fff;
    color: #000;
    margin: auto;
    border-radius: .5em;
    }
div.newsletter {
    width: 500px;
    background-color: #fff;
    color: #000;
    margin: auto;
    border-radius: .5em;
    }
p.eval_old {
    font-size: 80%;
    color: #956000;
    margin: 0;
    margin-bottom: 5px;
    padding-left: 1em;
    }
div.evals {
    display: inline-block;
    text-align: left;
    }
.foldable {
    cursor: pointer;
    margin-top: .3em;
    padding-top: .3em;
    margin-bottom: .1em;
    padding-bottom: .3em;
    }
.foldable:hover {
    background-color: #eee;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.foldable:before {
    content: "▼ ";
    }
.foldable.folded:before {
    content: "▶ ";
    }
.foldable.folded + table {
    display: none;
    }
span.urgent {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(images/warning.svg);
    vertical-align: text-bottom;
    }
span.urgent.grey {
    background-image: url(images/warning_grey.svg);
    }
div.eval h1 {
    line-height: 1.2em;
    font-size: 1.5em;
    margin-top: .5em;
    margin-bottom: .2em;
    font-size: 1.3em;
    }
div.eval p {
    margin-top: 0;
    margin-bottom: 0;
    }
@media screen and (min-width: 601px) {
form.evalForm table tbody {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
form.evalForm table tr {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: .35em 0;
    }
form.evalForm table tr td:first-child {
    width: 40%;
    text-align: right;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1em;
    border-right: 2px solid #555;
    margin-right: .5em;
    }
form.evalForm table tr td:last-child {
    width: 60%;
    text-align: center;
    }
form.evalForm table tr td {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
form.evalForm table tr td input,
form.evalForm table tr td textarea,
form.evalForm table tr td label,
form.evalForm table tr td span {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
form.evalForm table tr td textarea {
    width: auto;
    }
form.evalForm table tr td input[value="NE"] + label,
form.evalForm table tr td input.checkbox_ne + label,
form.evalForm table tr td span.NE {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    }
form.evalForm table tr td span {
    margin: 2px;
    }
form.evalForm table tr td span label {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
form.evalForm table tr td p.eval_old {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    }
}

@media screen and (max-width: 600px) {
form.evalForm table tbody {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
form.evalForm table td {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
form.evalForm table td input,
form.evalForm table td textarea,
form.evalForm table td label,
form.evalForm table td span {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
form.evalForm table td textarea {
    width: auto;
    }
form.evalForm table td input[value="NE"] + label,
form.evalForm table td input.checkbox_ne + label,
form.evalForm table td span.NE {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    }
form.evalForm table td span {
    margin: 2px;
    }
form.evalForm table td span label {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
form.evalForm table td p.eval_old {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    }
}

.small {
    font-size: .8em;
    }
.fab-progress-bar {
    position: fixed;
    right: 20px;
    bottom: 70px;
    width: 100px;
    height: 100px;
    pointer-events: none;
    }
.fab-progress-bar canvas {
    width: 100px;
    height: 100px;
    }
.fab-progress-bar span.title {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 15px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #3949AB;
    }
.fab-search {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #aaa;
    -webkit-box-shadow: 1px 2px 2px 0 #aaa;
    box-shadow: 1px 2px 2px 0 #aaa;
    cursor: pointer;
    background-color: white;
    border-radius: 20px;
    -webkit-transition: box-shadow .2s ease 0;
    -moz-transition: box-shadow .2s ease 0;
    transition: box-shadow .2s ease 0;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    transition: width .2s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    }
.fab-search div {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.fab-search input {
    width: auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    }
.fab-search:hover,
.fab-search.active {
    width: 300px;
    text-align: right;
    -webkit-box-shadow: 2px 4px 4px 0 #aaa;
    box-shadow: 2px 4px 4px 0 #aaa;
    }
label.highlight {
    background: yellow;
    }
@media screen and (max-width: 800px) {
.fab-progress-bar {
    bottom: auto;
    top: 20px;
    width: 75px;
    height: 75px;
    }
.fab-progress-bar canvas {
    width: 75px;
    height: 75px;
    }
.fab-progress-bar span.title {
    font-size: 11px;
    }
}

select.piisearch {
    height: 5.5em;
    }
input.pii_firstname {
    width: 100px;
    }
input.pii_lastname {
    width: 100px;
    }
input.pii_birthdate {
    width: 80px;
    }
.reminderList .reminder {
    display: inline-block;
    border: 1px solid #888;
    -webkit-box-shadow: 0 2.5px 5px #ccc;
    box-shadow: 0 2.5px 5px #ccc;
    margin: .5em;
    padding: 0 .5em;
    background-color: #fff;
    vertical-align: top;
    }
.reminderList .reminder:hover {
    background-color: #476ab0;
    color: white;
    cursor: pointer;
    }
.reminderList .reminder:hover a {
    color: white;
    }
.reminderList .reminder .reminderPersonne {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.reminderList .reminder .category {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.reminderList .reminder .category img {
    margin-left: .5em;
    }
.reminderList .reminder .reminderTime,
.reminderList .reminder p.comment {
    display: block;
    }
.reminderList .reminder p.toprow {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    }
table.permissions {
    border-collapse: collapse;
    }
table.permissions td:first-child {
    text-align: left;
    }
table.permissions tr.fold {
    background-color: orange;
    }
table.permissions tr.fold.folded td:first-child:before {
    content: "⯈ ";
    cursor: pointer;
    }
table.permissions tr.fold.unfolded td:first-child:before {
    content: "⯆ ";
    cursor: pointer;
    }
table.permissions tr.fold {
    cursor: pointer;
    }
table.permissions tr.fold-hidden {
    display: none;
    background-color: green;
    }
table.permissions tr.fold-visible {
    background-color: #ddd;
    }
.dangerous {
    background-color: red !important;
    text-decoration: underline;
    color: white;
    }
table {
    position: relative;
    }
table .download_table {
    display: block;
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    height: 30px;
    }
table:hover .download_table {
    display: block;
    }
table .download_table {
    background-image: url(images/download.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 5px;
    }
table .download_table:hover {
    cursor: pointer;
    border: 2px solid black;
    }
.genericPage_personnes table.data {
    text-align: left;
    }
.genericPage_personnes table.data td:nth-child(2),
.genericPage_personnes table.data th:nth-child(2) {
    text-align: right;
    }
div.appointments {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
.appointment_card {
    display: block;
    outline: none;
    color: black;
    margin: .5em;
    padding: 1em;
    border: 1px solid #888;
    -webkit-box-shadow: 0 2.5px 5px #ccc;
    box-shadow: 0 2.5px 5px #ccc;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    text-align: left;
    max-width: 400px;
    }
.appointment_card:hover {
    background-color: #476ab0;
    color: #fff;
    cursor: pointer;
    }
.appointment_card .appointment_split {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    }
.appointment_card span {
    padding: 5px;
    }
.appointment_card .appointment_person {
    font-weight: bold;
    }
.appointment_card img.catIcon {
    vertical-align: bottom;
    }
img.headband {
    max-width: 90%;
    display: block;
    margin: auto;
    max-height: 120px;
    margin-bottom: 1em;
    margin-top: .5em;
    }
a.create {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .5em 1em;
    border: 1px solid #555;
    border-radius: .2em;
    background-color: #fff;
    font-size: 1em;
    color: #444;
    text-decoration: none;
    -webkit-box-shadow: 0 0 .05em 0 grey;
    box-shadow: 0 0 .05em 0 grey;
    }
a.create:hover {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0 0 .3em 0 grey;
    box-shadow: 0 0 .3em 0 grey;
    cursor: pointer;
    background-color: #476ab0;
    color: #fff;
    }
form textarea {
    width: 100%;
    }
canvas#myChart {
    width: 100%;
    height: 500px;
    }
.loader {
    background: url(images/loader.svg) no-repeat;
    background-position: center center;
    }
.commentaires_maraude {
    border: 1px solid #aaa;
    background-color: #cff9ff;
    border-radius: 3px;
    display: inline-block;
    padding: .2em 1em;
    }
.warningband {
    text-align: center;
    background-color: #f08700;
    padding: 5px;
    margin-bottom: 5px;
    }
h1 {
    font-size: 1.3em;
    }
a.create {
    display: inline-block;
    margin-top: 1em;
    }
input[type="submit"] {
    padding: .8em 1.5em;
    display: inline-block;
    margin: auto;
    }
form input[type="submit"] {
    margin: 5px;
    white-space: normal;
    }
body.genericPage_privacy .contentInner2 {
    text-align: left;
    }
.permissions-test {
    display: block;
    max-width: 300px;
    position: fixed;
    bottom: 1em;
    left: 1em;
    background-color: rgba(200,200,200,.5);
    }
