@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

/* all */
::-webkit-input-placeholder {
  font-weight: 100;
  color: #999;
}

::-moz-placeholder {
  font-weight: 100;
  color: #999;
}

/* firefox 19+ */
:-ms-input-placeholder {
  font-weight: 100;
  color: #999;
}

/* ie */
input:-moz-placeholder {
  font-weight: 100;
  color: #999;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #eeeeee;
}

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

::-webkit-input-placeholder {
  font-style: italic;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-style: italic;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-style: italic;
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-style: italic;
}

::-ms-input-placeholder {
  /* Edge */
  font-style: italic;
}

:-moz-placeholder-shown {
  /* Standard one last! */
  font-style: italic;
}

:placeholder-shown {
  /* Standard one last! */
  font-style: italic;
}

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

table.table td .col_header {
  display: block;
}

.form-group {
  text-align: left;
}

.forms_bs__horizontal {
  display: flex;
}

.forms_bs button.form-control__addMultiplefile {
  background-color: #fff;
  color: #141b1f;
  border: solid 1px;
  border-radius: 3px;
  font-weight: 400;
  text-decoration: none;
  margin: 10px 0;
  padding: 5px 10px;
  font-size: 1em;
  cursor: pointer;
}
.forms_bs .form-control__file .form-group {
  margin-bottom: 12px;
  position: relative;
}
.forms_bs .form-control__file .form-group .form-input {
  border-radius: 8px;
  background-image: url("/images/icon/svg/upload.svg?version=1487952174997");
  background-repeat: no-repeat;
  background-size: 27px 28px;
  background-position: 10px center;
  border: solid 1px;
  padding-top: 0;
  background-color: #fff;
  max-width: 500px;
}
.forms_bs .form-control__file .form-group .form-input .form-label {
  width: 100%;
  margin: 0;
  padding: 5px 5px 5px 40px;
  border-radius: 8px 0 0 8px;
  font-size: 1em;
  line-height: 26px;
}
.forms_bs .form-control__file .form-group.p-field-valid .form-input {
  border-color: #43a855;
  background-color: #f3fcf7;
  color: #2b995d;
  position: relative;
}
.forms_bs .form-control__file .form-group .p-field-sub-text {
  display: none;
  font-size: 13px;
  line-height: 15px;
  margin-top: 3px;
  padding: 1px 5px;
}
.forms_bs .form-control__file .form-group .p-error-text {
  color: #b80000;
}
.forms_bs .form-control__file .form-group label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: normal;
}
.forms_bs .form-control__file .form-group .alert-valid {
  background-color: #f3fcf7;
  border-color: #dff6ea;
  color: #2b995d;
}
.forms_bs .form-control__file label.form-label {
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.forms_bs .form-control__file span.form-label-info {
  width: 100%;
}
.forms_bs .form-control__file .p-field-sub-text .p-error-text {
  display: none;
}
.forms_bs .form-control__file .p-field-error .p-error-text {
  display: block;
}

@media (min-width: 1200px) {
  .forms_bs__horizontal_md .form-group {
    display: flex;
    align-items: center;
  }
  .forms_bs__horizontal_md label {
    margin-right: 0.5rem;
  }
}
.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.pagination ul {
  list-style: none;
}
.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination a,
.pagination .current-page {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination a {
  color: #2d3748;
  background-color: #f1f5f9;
}
.pagination a:hover {
  background-color: #e2e8f0;
}
.pagination a.pagination-prev, .pagination a.pagination-next {
  font-weight: 600;
}
.pagination .current-page {
  background-color: #3182ce;
  color: white;
  font-weight: 700;
  cursor: default;
}
@media (max-width: 640px) {
  .pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination a,
  .pagination .current-page {
    padding: 0.4rem 0.8rem;
    margin: 0.2rem;
  }
}
.pagination a:focus {
  outline: 2px solid #3182ce;
  outline-offset: 2px;
}
.pagination.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* partial/_modal.scss */
.message__modal.message__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 189, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.message__modal .message__container {
  background: #fff;
  padding: 30px 8%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
}
.message__modal .message__container.message__large {
  max-width: 800px;
}
.message__modal .message__container.message__alert {
  border: 5px solid #ff0000;
}
.message__modal .message__container.message__conf {
  border: 5px solid #27b4ae;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 *
 *  IMPORTANT: ne pas modifier directement ce fichier
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.ps__icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.ps__icon.ps__icon-download {
  background-image: url("/images/icon/svg/download.svg");
}
.ps__icon.ps__icon-detail {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 fill%3D%22none%22 stroke%3D%22%23000000%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22 viewBox%3D%220 0 24 24%22%3E%3Cpolyline points%3D%226 9 12 15 18 9%22%2F%3E%3C%2Fsvg%3E");
}
.ps__icon.ps__icon-180 {
  transform: rotate(180deg);
}

/*  */
@font-face {
  font-family: "Mont-Regular";
  src: local("Mont Regular"), local("Mont-Regular"), url("fonts/Mont-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mont-Bold";
  src: local("Mont Bold"), local("Mont-Thin"), url("fonts/Mont-Bold.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: "Mont-Thin";
  src: local("Mont Thin"), local("Mont-Thin"), url("fonts/Mont-Thin.otf") format("opentype");
  font-style: normal;
}
@font-face {
  font-family: "Mont-Heavy";
  src: local("Mont Heavy_0"), local("Mont-Heavy_0"), url("fonts/Mont-Heavy_0.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "mesmerize";
  src: local("mesmerize lt"), local("mesmerize-lt"), url("fonts/mesmerize/mesmerize-lt.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
}
.menu__wrapper {
  height: 100%;
  align-content: baseline;
  min-height: 594px;
  transition: all 0.05s ease-in-out;
}
.menu__wrapper .menu__reduce-expand {
  background-image: url(/images/icon/svg/menu-reduce-expand.svg);
  background-size: 34px 28px;
  background-position: right bottom;
  background-repeat: no-repeat;
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin-right: 0;
  margin-left: auto;
}
.menu__wrapper a.menu_item {
  color: white;
  line-height: 1.5em;
  gap: 10px;
  height: 3.8rem;
  text-align: left;
  background-color: #0D5381;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 20px;
  width: 100%;
  min-width: 194px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  vertical-align: initial;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .menu__wrapper a.menu_item {
    padding-left: 40px;
  }
}
.menu__wrapper a.menu_item.selected {
  color: #0D5381;
  background-color: white;
}
.menu__wrapper a.menu_item:hover {
  /* color: #00565D; */
  /* background-color: white; */
  /* text-decoration: none; */
}
.menu__wrapper .menu-item_icon {
  background-size: 27px 27px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  width: 40px;
  height: 27px;
  display: inline-block;
  background-color: transparent;
}
.menu__wrapper .menu-item_icon svg {
  width: 100%;
  height: 100%;
}
.menu__wrapper .menu-item_title {
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
}
.menu__wrapper .logo {
  height: 80px;
  background-image: url(/images/logo/logo_menu.svg);
  background-size: 74px 55px;
  background-position: center top;
  background-repeat: no-repeat;
  margin-bottom: 14px;
}
.menu__wrapper.reduced {
  width: 64px;
  transition: all 0.05s ease-in-out;
}
.menu__wrapper.reduced .menu-item_title {
  display: none;
}
.menu__wrapper.reduced a.menu_item {
  min-width: 53px;
  padding: 0 0 0 10px;
  vertical-align: initial;
  max-width: 100%;
}
.menu__wrapper.reduced .menu__reduce-expand {
  transform: rotate(180deg);
  background-position: right top;
  background-size: 34px 28px;
  margin-right: auto;
  margin-left: 19px;
}
.menu__wrapper.reduced .logo {
  height: 80px;
  width: 100%;
  background-image: none;
  margin-bottom: 14px;
}

.professionnel_sante__menu {
  background-color: #0D5381;
  width: 240px;
}
@media (min-width: 1200px) {
  .professionnel_sante__menu {
    width: 320px;
  }
}

table .icon {
  color: #0D5381;
}
table tr.tr_opened {
  background-color: rgb(226.4746478873, 241.9535211268, 252.1253521127);
}
table tr.tr_opened .table {
  background-color: rgb(226.4746478873, 241.9535211268, 252.1253521127);
}
table tr .col_header {
  font-weight: 400;
  color: #666666;
}
table tr .col_value {
  font-weight: 600;
}
table .liste_detail__wrapper {
  border: 6px solid #f1f1f1;
  border-left-color: blueviolet;
}
table.listes {
  width: 100%;
}
table.listes thead tr:last-of-type {
  border-bottom: solid 1px;
}
table.listes tr.bg_background {
  font-weight: bold;
}
table.listes tr:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}
table.listes th, table.listes td {
  padding: 5px;
  text-align: center;
}
table.listes td .row_title {
  font-size: 1.2rem;
  font-weight: bold;
}
table.listes td .liste__cell-color-1 {
  border-radius: 5px;
  background-color: #d5e9eb;
  display: block;
}
table.listes.liste__raw-underlined {
  border-bottom: 1px solid #e7e9ff;
}
table.listes a {
  color: #1313C6;
}
table.listes .help_block {
  color: #000;
  width: 600px;
  position: absolute;
  background-color: #FFF;
  font-size: 1em;
  text-align: left;
  padding: 5px;
  border: 2px solid #00565d;
  right: 0;
  margin-right: 20px;
  border-radius: 7px;
  display: inline-block;
}
table.prosante__remboursement_liste td[data-statut] .col_value {
  padding: 0 10px;
  border-radius: 5px;
}
table.prosante__remboursement_liste td[data-statut=regle] .col_value {
  background-color: #d7edec;
  color: #00565d;
}
table.prosante__remboursement_liste td[data-statut=encours] .col_value {
  background-color: #fffece;
  color: #bc6e00;
}
table.prosante__remboursement_liste td[data-statut=regul] .col_value {
  background-color: #b9e4ff;
  color: #014180;
}

.btn.btn_search {
  color: #0D5381;
  border: solid 1px;
  border-radius: 3px;
}
.btn.btn_submit {
  background-color: #0D5381;
  color: #ffffff;
  border: solid 1px;
  border-radius: 3px;
}
.btn.btn_add_document {
  background-color: #ffffff;
  color: #141b1f;
  border: solid 1px #141b1f;
  border-radius: 3px;
  font-weight: 400;
  text-decoration: none;
  margin: 10px;
  padding: 10px;
  font-size: 19px;
  cursor: pointer;
}
.btn.btn_upload {
  background-color: white;
  border-radius: 8px;
  background-image: url(/images/icon/svg/upload.svg?version=1487952174997);
  background-repeat: no-repeat;
  /* height: 43px; */
  background-size: 27px 28px;
  background-position: 10px center;
  text-indent: 50px;
  color: #141b1f;
  font-weight: 400;
  text-decoration: none;
  /* max-width: 266px; */
  border: solid 1px;
  margin: 10px;
  padding: 10px;
  font-size: 19px;
  /* line-height: 43px; */
  cursor: pointer;
}

.prosante__button_action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}
.prosante__button_action a {
  text-decoration: none;
}
.prosante__button_action button, .prosante__button_action .button {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  border: 1px solid transparent;
  background-color: rgb(12.0661971831, 77.038028169, 119.7338028169);
  padding: 8px 15px;
  font-weight: 600;
  box-shadow: 4px 4px 10px #c5c5c5, -4px -4px 10px #fff;
  min-width: 10em;
}
.prosante__button_action button:hover, .prosante__button_action .button:hover {
  background-color: #fff;
  color: #0D5381;
  border-color: #0D5381;
  transition: all 0.3s ease;
}

.form_bs__azur .input-group input,
.form_bs__azur .input-group select {
  background-color: rgb(245.0070422535, 250.4295774648, 253.9929577465);
}

.form_bs.form_bs__border {
  padding: 3em;
  border: 3px solid;
  border-radius: 10px;
}
.form_bs .form_bs__filter_fields {
  width: calc(100% - 180px);
}
.form_bs .form_bs__filter_button {
  width: 180px;
}
.form_bs .form-group.required label::after {
  content: " *";
  color: #ff0000;
}
.form_bs button i {
  margin-right: 0.5em;
}
.form_bs .form-group.p-field-error .form-input {
  border-color: #e81414 !important;
  background-color: #fff0f0;
  color: #b80000;
}
.form_bs .form-group.p-field-valid .form-input {
  border-color: #43a855 !important;
  background-color: #f3fcf7;
  color: #2b995d;
}
.form_bs .form-group .p-error-text {
  color: #b80000;
}

.form-group.p-field-valid .form-input {
  border-color: #43a855 !important;
  background-color: #f3fcf7;
  color: #2b995d;
}

.form-group.p-field-error .form-input {
  border-color: #e81414 !important;
  background-color: #fff0f0;
  color: #b80000;
}

.information-group {
  display: block;
  position: relative;
  margin: 8px 0;
}
.information-group .information-label {
  display: block;
  margin: 1px 9px;
  font-size: 14px;
  height: 20px;
}
.information-group .information-value {
  display: block;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  position: relative;
  background-color: #fff;
  padding: 7px 10px;
  line-height: 24px;
  min-height: 30px;
  color: #333;
}
.information-group .information-value.information-has-icon {
  padding-right: 36px;
}
.information-group .information-value .information-content {
  display: inline-block;
  width: 100%;
  height: inherit;
}
.information-group .information-group-icon {
  display: inline-block;
  position: absolute;
  padding: 0 10px;
  right: 0;
}
@media (max-width: 767px) {
  .information-group .col-md-6, .information-group .col-md-4 {
    padding-right: 7px;
    padding-left: 7px;
  }
}

.form-horizontal > :not(:last-child) {
  margin-right: 15px;
}

.information__block {
  background-color: rgba(139, 202, 181, 0.4);
  margin-bottom: 2em;
  padding: 20px 25px;
  border-radius: 10px;
}
.information__block h3.sous-titre {
  font-style: normal;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 1rem 0 0;
}

.information__strong {
  background-color: #efefef;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

table.scrollTable {
  font-weight: 400;
  margin: 0;
  width: 100%;
  /*display: table-cell;*/
}
table.scrollTable thead tr {
  border-bottom: solid 1px;
}
table.scrollTable tbody.scrollContent {
  width: 100%;
  display: table-footer-group;
}
table.scrollTable tbody tr:nth-child(even) {
  background-color: rgba(0, 86, 93, 0.03);
}
table.scrollTable tbody tr:hover {
  background-color: rgba(0, 86, 93, 0.1);
}
table.scrollTable .even th {
  background-color: #f5f5f5;
  color: #333;
  font-weight: bolder;
  text-transform: uppercase;
  margin: 0;
  padding: 8px;
  font-size: 14px;
}
table.scrollTable td {
  font-size: 1em;
  padding: 4px;
  margin: 0;
  color: #333;
}
table.scrollTable td.tr-selected {
  background-color: #5c5c5c;
  color: #FFF;
}

div#div_modalmessage {
  background-color: whitesmoke;
  position: absolute;
  border: solid 1px #b7b7b7;
  border-radius: 13px;
  padding: 20px;
  width: 470px;
  margin-left: calc(50% - 235px);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
  visibility: hidden;
  margin-top: 15px;
  z-index: 100;
}
div#div_modalmessage input[type=text],
div#div_modalmessage input[type=email],
div#div_modalmessage input[type=password],
div#div_modalmessage select {
  border: solid 1px #9b9b9b;
  height: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(134, 143, 160, 0.16);
  border-radius: 6px;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  padding: 3px;
}
div#div_modalmessage #bno_modalmessage {
  padding: 6px 12px;
  gap: 8px;
  background: #e7e2e2;
  border: solid 2px #bfbfbf;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #000000;
  cursor: pointer;
}
div#div_modalmessage #byes_modalmessage {
  margin-right: 20px;
  padding: 6px 12px;
  gap: 8px;
  background: #8E5674;
  border: solid 2px #8E5674;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  cursor: pointer;
}

.kpi_bloc {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
  margin-top: 10px;
  color: #333;
  padding: 8px;
  border-radius: 8px;
  display: inline-block;
  min-height: 149px;
}
.kpi_bloc .kpi_titre {
  font-style: normal;
  font-weight: 900;
  font-size: 17px;
  line-height: 22px;
}
.kpi_bloc .kpi_bloc__container {
  display: flex;
  flex-wrap: wrap;
}
.kpi_bloc .kpi_bloc_item {
  min-width: 90px;
  padding: 0.3em;
  margin-bottom: 2px;
  text-align: center;
}
.kpi_bloc .kpi_bloc_item span {
  text-align: center;
}
.kpi_bloc .kpi_bloc_item .libelle {
  font-size: 0.7em;
  font-weight: bold;
}
.kpi_bloc .kpi_bloc_item .valeur1 {
  display: block;
  font-size: 1.8em;
  font-weight: bold;
}
.kpi_bloc .kpi_bloc_item .valeur2 {
  display: none;
  font-weight: bold;
  font-size: 1.3em;
}
.kpi_bloc a.kpi_bloc__link {
  color: inherit;
}
.kpi_bloc a.kpi_bloc__link:hover {
  text-decoration: none;
  color: inherit;
}

.statistiques .hasDatepicker {
  width: 101px;
}
.statistiques #ui-datepicker-div {
  background-color: #ffffff;
  box-shadow: 0 0 0px 4px #00565d;
}
.statistiques .ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
  font-family: "mesmerize";
}
.statistiques .ui-widget-header {
  border: 1px solid #ddd;
  background: #adc9cb;
  color: #333;
  font-weight: bold;
}
.statistiques .tip {
  position: relative;
  display: inline-block;
}
.statistiques .tip .tiptext {
  visibility: hidden;
  width: 220px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 86%;
  left: -55%;
  margin-left: -10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.statistiques .tip:hover .tiptext,
.statistiques .tip:focus .tiptext {
  visibility: visible;
  opacity: 1;
}
.statistiques #tableau-situation-noemie > thead > tr > th {
  background: #00565D;
  color: white;
  padding: 13px;
}
.statistiques #tableau-situation-noemie > tbody > tr > td {
  padding: 7px;
}
.statistiques #tableau-situation-noemie > tbody > tr:nth-child(5),
.statistiques #tableau-situation-noemie > tbody > tr:nth-child(8),
.statistiques #tableau-situation-noemie > tbody > tr:nth-child(9) {
  background-color: #8bcab5;
  color: black;
  border-top: solid 2px white;
  font-weight: bold;
}
.statistiques h4#synthese-content-taux-noemisation-total {
  font-size: 18px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  margin-top: 10px;
}
.statistiques #tableau-situation-noemie > tbody > tr:nth-child(6) {
  height: 30px;
}
.statistiques .telephonieThemesDetails_fermer {
  background: transparent;
  display: flex;
  flex-flow: wrap;
  margin-top: -20px;
}
.statistiques .telephonieThemesDetails_fermer-left {
  width: calc(100% - 42px);
  height: 34px;
}
.statistiques .telephonieThemesDetails_fermer-right {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 29px;
  font-size: 20px;
  background-color: #eee;
  color: #333;
  cursor: pointer;
  border-radius: 3px;
}
.statistiques .telephonieThemesDetails_fermer-right:hover {
  background-color: #333;
  color: #eee;
}
.statistiques .telephonieThemesDetails_fermer {
  display: flex;
  margin-top: -5px;
}

#info {
  /* position: fixed; */
  position: absolute;
  margin: 0;
  background-color: #fff;
  z-index: 10000;
  text-align: center;
  border: solid 1px #bbb;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  /* height: 50%; */
  padding: 20px;
  box-shadow: 0 0 10px #999;
  animation: fadein 0.7s;
}
#info .msg_valid_image {
  display: none;
}
#info #info-text {
  margin-bottom: 20px;
}
#info a:not([href]).info-close {
  color: #007bff;
  cursor: pointer;
}
#info a:not([href]).info-close:hover {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}
#info li {
  list-style-type: none;
  padding-bottom: 8px;
  padding-top: 10px;
  font-weight: 300;
}

.loader-container {
  position: relative;
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(224, 224, 224, 0.1);
}

.ajax-loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.upload {
  /* Niveau 1 (Général) */
  /* Niveau 2 (Composants spécifiques) */
  /* Niveau 3 (Actions et styles additionnels) */
}
.upload .form-group {
  /* margin: 10px; */
  /* display: block; */
  /* padding: 2px; */
  /* border-bottom: solid 1px; */
}
.upload .form-group .p-field-sub-text {
  /* display: none; */
}
.upload .form-group .p-field-sub-text .p-error-text {
  display: none;
}
.upload .btn.btn_add_document {
  background-color: #ffffff;
  color: #141b1f;
  border: solid 1px #141b1f;
  border-radius: 3px;
  font-weight: 400;
  text-decoration: none;
  margin: 10px;
  padding: 10px;
  font-size: 19px;
  cursor: pointer;
}
body.pec-optique {
  /*fadeout*/
  /********  style pec ancien ********/
  /*
  img.round {
      width: 116px;
      margin: 5px;
      border-radius: 50%;
      box-shadow: 6px -2px 16px 0px #999;
      padding: 5px;
      cursor:pointer;
  }*/
  /*carré*/
  /* UPLOAD */
  /*SPECIAL PEC*/
  /* tab */
  /*
  .tab > a.selected:hover ,.tab > span.selected:hover
  */
  /*
  , .tab > span:hover
  */
  /**avec div cachées**/
}
body.pec-optique p.form-input-file.small {
  margin-left: 20px;
}
body.pec-optique .loading {
  border: 3px solid #f3f3f3;
  border-radius: 50% !important;
  border-top: 3px solid #3498db;
  width: 24px;
  height: 24px;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.pec-optique .m-10 {
  margin: 10px;
}
body.pec-optique table.listes {
  max-width: 1140px;
  border: solid 1px #e4e4e4;
  border-radius: 8px;
}
body.pec-optique table.listes th, body.pec-optique table.listes td {
  padding: 13px;
  text-align: left;
  border-bottom: solid 1px #e4e4e4;
}
body.pec-optique #result table.listes {
  margin: auto;
}
body.pec-optique .spacer_action_dossier {
  display: block;
  height: 38px;
}
body.pec-optique .disp-ib {
  display: inline-block;
  overflow: inherit;
  vertical-align: middle;
}
body.pec-optique button#retour_menu_pec {
  background-color: #fff;
  border: solid 1px #0D5381;
  border-radius: 4px;
  color: #0D5381;
  cursor: pointer;
}
body.pec-optique .frame-i {
  margin: 20px;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 8px;
}
body.pec-optique #afficher_dossier.popdiv,
body.pec-optique #afficher_facturer_dossier.popdiv,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  border: solid 1px #ddd;
  box-shadow: 1px 1px 20px 1px #bbb;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  z-index: 150;
  overflow: auto;
  animation: fadein 0.7s;
  -moz-animation: fadein 0.7s; /* Firefox */
  -webkit-animation: fadein 0.7s; /* Safari and Chrome */
  -o-animation: fadein 0.7s; /* Opera */
}
body.pec-optique #afficher_dossier.popdiv h3,
body.pec-optique #afficher_facturer_dossier.popdiv h3,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv h3 {
  font-size: 18px;
  font-weight: 600;
  color: #7a7a7a;
}
body.pec-optique #afficher_dossier.popdiv #pec_statut,
body.pec-optique #afficher_facturer_dossier.popdiv #pec_statut,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv #pec_statut {
  font-weight: bolder;
  color: red;
}
body.pec-optique #afficher_dossier.popdiv .w-50pc,
body.pec-optique #afficher_facturer_dossier.popdiv .w-50pc,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .w-50pc {
  width: 49%;
  min-width: 271px;
  max-width: 570px;
}
body.pec-optique #afficher_dossier.popdiv .disp-ib,
body.pec-optique #afficher_facturer_dossier.popdiv .disp-ib,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .disp-ib {
  display: inline-block;
  overflow: inherit;
  vertical-align: bottom;
}
body.pec-optique #afficher_dossier.popdiv .p-10,
body.pec-optique #afficher_facturer_dossier.popdiv .p-10,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .p-10 {
  padding: 10px;
}
body.pec-optique #afficher_dossier.popdiv p,
body.pec-optique #afficher_facturer_dossier.popdiv p,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv p {
  font-weight: 300;
  font-size: 16px;
  color: #222222;
}
body.pec-optique #afficher_dossier.popdiv label,
body.pec-optique #afficher_facturer_dossier.popdiv label,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv label {
  display: block;
  font-size: 14px;
  font-weight: 300;
}
body.pec-optique #afficher_dossier.popdiv .button,
body.pec-optique #afficher_facturer_dossier.popdiv .button,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .button {
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background-color: #f4a6a0;
  border: none;
  font-size: 16px;
  height: 48px;
  line-height: 36px;
  margin: 10px;
  padding: 0 20px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
}
body.pec-optique #afficher_dossier.popdiv .button:hover,
body.pec-optique #afficher_facturer_dossier.popdiv .button:hover,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .button:hover {
  background-color: rgba(244, 166, 160, 0.7);
}
body.pec-optique #afficher_dossier.popdiv .cancel,
body.pec-optique #afficher_facturer_dossier.popdiv .cancel,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .cancel {
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  border: none;
  font-size: 16px;
  height: 48px;
  line-height: 36px;
  margin: 10px;
  padding: 0 20px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
}
body.pec-optique #afficher_dossier.popdiv .cancel:hover,
body.pec-optique #afficher_facturer_dossier.popdiv .cancel:hover,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .cancel:hover {
  opacity: 0.8;
}
body.pec-optique #afficher_dossier.popdiv .frame-i,
body.pec-optique #afficher_facturer_dossier.popdiv .frame-i,
body.pec-optique #afficher_facturer_dossier_livraison.popdiv .frame-i {
  overflow: auto;
  max-width: 1200px;
  margin: 11px auto 0 auto;
}
body.pec-optique #action_dossier {
  position: sticky;
  bottom: 0;
  background-color: #f7f7f7;
  width: 100%;
  text-align: center;
  padding-top: 6px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
body.pec-optique #action_dossier .button {
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background-color: #f4a6a0;
  border: none;
  font-size: 16px;
  height: 48px;
  line-height: 36px;
  margin: 10px;
  padding: 0 20px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
}
body.pec-optique #action_dossier .button:hover {
  background-color: rgba(244, 166, 160, 0.7);
}
body.pec-optique tr.tr_checkbox.dossier_selected {
  background-color: #e8e8e8;
}
body.pec-optique .modal-header {
  border-bottom: none;
}
body.pec-optique .modal-content {
  background-image: url(/images/icon/svg/illustration-attention-bonhome.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
body.pec-optique .btn-rose {
  color: #680d0d;
  background-color: #f4a6a0;
  border-color: #680d0d;
}
body.pec-optique .pec_depot .bloc_bas {
  background-image: url(/images/icon/svg/illustration-doc-plus.svg);
  background-repeat: no-repeat;
  background-position: right;
  height: 200px;
  background-size: contain;
}
body.pec-optique .ps__cards .ps__card-info {
  width: 361px;
  height: 126px;
  padding: 20px;
  font-size: 18px;
  /* color: #0d5381; */
  /* font-weight: bold; */
}
body.pec-optique .ps__cards .menu_pec_depot_audio {
  border: solid 2px #f4a6a0;
  color: #f4a6a0;
  align-items: center;
  height: auto;
  border-radius: 10px;
  padding: 10px;
  margin: 20px;
  text-decoration: none;
  z-index: 0;
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
}
body.pec-optique .ps__cards .menu_pec_depot_audio .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--audio.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
body.pec-optique .ps__cards .menu_pec_depot_audio .ps__card-desc {
  margin-left: 20px;
}
body.pec-optique .ps__cards .menu_pec_depot_dentaire {
  border: solid 2px #0D5381;
  color: #0D5381;
  align-items: center;
  height: auto;
  border-radius: 10px;
  padding: 10px;
  margin: 20px;
  text-decoration: none;
  z-index: 0;
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
}
body.pec-optique .ps__cards .menu_pec_depot_dentaire .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--dentaire.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
body.pec-optique .ps__cards .menu_pec_depot_dentaire .ps__card-desc {
  margin-left: 20px;
}
body.pec-optique .ps__cards .menu_pec_depot_appareillage {
  border: solid 2px #F28F2F;
  color: #F28F2F;
  align-items: center;
  height: auto;
  border-radius: 10px;
  padding: 10px;
  margin: 20px;
  text-decoration: none;
  z-index: 0;
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
}
body.pec-optique .ps__cards .menu_pec_depot_appareillage .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--appareillage.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
body.pec-optique .ps__cards .menu_pec_depot_appareillage .ps__card-desc {
  margin-left: 20px;
}
body.pec-optique .ps__cards.menu-pec .ps__card,
body.pec-optique .ps__cards.menu-pec_optique .ps__card,
body.pec-optique .ps__cards.menu-pec_depot .ps__card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 361px;
  height: 126px;
  border-radius: 10px;
  padding: 10px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
}
body.pec-optique .ps__cards.menu-pec .ps__card.deposer-un-devis-pec,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.deposer-un-devis-pec,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.deposer-un-devis-pec {
  background-color: #fff;
  border: solid 2px #91c8b4;
  color: #91c8b4;
}
body.pec-optique .ps__cards.menu-pec .ps__card.deposer-un-devis-pec .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.deposer-un-devis-pec .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.deposer-un-devis-pec .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-deposer-devis.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.deposer-un-devis-pec:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.deposer-un-devis-pec:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.deposer-un-devis-pec:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-deposer-devis--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier {
  background-color: #fff;
  border: solid 2px #0D5381;
  color: #0D5381;
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--creer-dossier.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--creer-dossier--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.gerer-mes-dossiers,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.gerer-mes-dossiers,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.gerer-mes-dossiers {
  background-color: #fff;
  border: solid 2px #f4a6a0;
  color: #f4a6a0;
}
body.pec-optique .ps__cards.menu-pec .ps__card.gerer-mes-dossiers .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.gerer-mes-dossiers .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.gerer-mes-dossiers .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--rechercher-dossier.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.gerer-mes-dossiers:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.gerer-mes-dossiers:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.gerer-mes-dossiers:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--rechercher-dossier--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lunettes,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lunettes,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lunettes {
  background-color: #fff;
  border: solid 2px #0D5381;
  color: #0D5381;
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lunettes .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lunettes .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lunettes .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--creer-dossier-lunettes.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lentille,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lentille,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lentille {
  background-color: #fff;
  border: solid 2px #0D5381;
  color: #0D5381;
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lentille .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lentille .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lentille .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec-optique--creer-dossier-lentilles.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_audio,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_audio,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_audio {
  background-color: #fff;
  border: solid 2px #f4a6a0;
  color: #f4a6a0;
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_audio .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_audio .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_audio .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--audio.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_audio:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_audio:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_audio:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--audio--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_dentaire,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_dentaire,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_dentaire {
  background-color: #fff;
  border: solid 2px #0D5381;
  color: #0D5381;
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_dentaire .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_dentaire .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_dentaire .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--dentaire.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_dentaire:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_dentaire:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_dentaire:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--dentaire--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_appareillage,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_appareillage,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_appareillage {
  background-color: #fff;
  border: solid 2px #F28F2F;
  color: #F28F2F;
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_appareillage .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_appareillage .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_appareillage .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--appareillage.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_appareillage:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_appareillage:hover .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_appareillage:hover .ps__card-ico {
  background-image: url(/images/icon/svg/ico-pec--appareillage--hover.svg);
}
body.pec-optique .ps__cards.menu-pec .ps__card.deposer-un-devis-pec:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.deposer-un-devis-pec:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.deposer-un-devis-pec:before {
  background: linear-gradient(to top, #91c8b4, #91c8b4);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier:before {
  background: linear-gradient(to top, #0D5381, #0D5381);
}
body.pec-optique .ps__cards.menu-pec .ps__card.gerer-mes-dossiers:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.gerer-mes-dossiers:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.gerer-mes-dossiers:before {
  background: linear-gradient(to top, #f4a6a0, #f4a6a0);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lunettes:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lunettes:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lunettes:before {
  background: linear-gradient(to top, #0D5381, #0D5381);
}
body.pec-optique .ps__cards.menu-pec .ps__card.creer-un-dossier-lentille:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.creer-un-dossier-lentille:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.creer-un-dossier-lentille:before {
  background: linear-gradient(to top, #0D5381, #0D5381);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_audio:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_audio:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_audio:before {
  background: linear-gradient(to top, #f4a6a0, #f4a6a0);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_dentaire:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_dentaire:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_dentaire:before {
  background: linear-gradient(to top, #0D5381, #0D5381);
}
body.pec-optique .ps__cards.menu-pec .ps__card.menu_pec_depot_appareillage:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card.menu_pec_depot_appareillage:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card.menu_pec_depot_appareillage:before {
  background: linear-gradient(to top, #F28F2F, #F28F2F);
}
body.pec-optique .ps__cards.menu-pec .ps__card:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  height: 1px;
  width: 1px;
  border-radius: 100px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}
body.pec-optique .ps__cards.menu-pec .ps__card:hover:before,
body.pec-optique .ps__cards.menu-pec_optique .ps__card:hover:before,
body.pec-optique .ps__cards.menu-pec_depot .ps__card:hover:before {
  transform: scale(1028);
}
body.pec-optique .ps__cards.menu-pec .ps__card:hover,
body.pec-optique .ps__cards.menu-pec_optique .ps__card:hover,
body.pec-optique .ps__cards.menu-pec_depot .ps__card:hover {
  transform: scale(1.03) rotate(0.11deg);
  /* Zoom léger + légère rotation */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* Accentuer l'ombre au survol */
  cursor: pointer;
}
body.pec-optique .ps__cards.menu-pec .ps__card .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card .ps__card-ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card .ps__card-ico {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 90px;
  height: 90px;
  margin: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
body.pec-optique .ps__cards.menu-pec .ps__card .ps__card-desc,
body.pec-optique .ps__cards.menu-pec_optique .ps__card .ps__card-desc,
body.pec-optique .ps__cards.menu-pec_depot .ps__card .ps__card-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 36px;
  margin: 10px;
  height: 90px;
  width: 160px;
}
body.pec-optique .ps__cards.menu-pec .ps__card:hover .ps__card-desc, body.pec-optique .ps__cards.menu-pec .ps__card:hover .ico,
body.pec-optique .ps__cards.menu-pec_optique .ps__card:hover .ps__card-desc,
body.pec-optique .ps__cards.menu-pec_optique .ps__card:hover .ico,
body.pec-optique .ps__cards.menu-pec_depot .ps__card:hover .ps__card-desc,
body.pec-optique .ps__cards.menu-pec_depot .ps__card:hover .ico {
  transition: all 0.5s ease-out;
  color: #ffffff;
}
body.pec-optique p.uplader-file-fact {
  max-width: 300px;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.pec-optique ul, body.pec-optique li {
  font-size: 16px;
}
body.pec-optique .ta-c {
  text-align: center;
}
body.pec-optique .ta-l {
  text-align: left;
}
body.pec-optique .ta-r {
  text-align: right;
}
body.pec-optique .box-shad-blue {
  box-shadow: 0px 0px 7px 1px blue;
}
body.pec-optique .c-red {
  color: red;
}
body.pec-optique #retourHome {
  cursor: pointer;
  font-size: 31px;
  background-color: #eee;
  width: 32px;
  display: inline-block;
  text-align: center;
  height: 32px;
  vertical-align: bottom;
  line-height: 1;
  box-shadow: 1px 1px 1px #777;
}
body.pec-optique .fw-300 {
  font-weight: 300;
}
body.pec-optique a.btn_next {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  /*btn-rose {*/
  color: #fff;
  background-color: #f4a6a0;
  border-color: #f4a6a0;
}
body.pec-optique b {
  color: #000000;
  font-weight: 600;
}
body.pec-optique button[type=submit].btn_desactived {
  opacity: 0.4;
}
body.pec-optique img.round {
  width: 116px;
  margin: 5px;
  /* border-radius: 50%; */
  box-shadow: 0px 0px 1px 0px #999;
  /* padding: 5px; */
  cursor: pointer;
}
body.pec-optique .c-aqua {
  background-color: aquamarine;
}
body.pec-optique .c-peach {
  background-color: peachpuff;
}
body.pec-optique .c-lavende {
  background-color: lavender;
}
body.pec-optique .c-cyan {
  background-color: lightcyan;
}
body.pec-optique button[type=submit].button {
  color: #ffffff;
  background-color: #f4a6a0;
  border: 1px solid #f4a6a0;
  font-size: 17px;
  line-height: 36px;
  margin: 5px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}
body.pec-optique .disp-f {
  display: flex;
}
body.pec-optique .disp-ib {
  display: inline-block;
  overflow: inherit;
  vertical-align: bottom;
}
body.pec-optique .disp-ib-top {
  display: inline-block;
  overflow: inherit;
  vertical-align: top;
}
body.pec-optique va-t {
  vertical-align: top;
}
body.pec-optique .joindre-old {
  background: transparent;
  height: 45px !important;
  line-height: 45px;
  display: block;
  font-size: 16px;
  color: black;
}
body.pec-optique .label-upload {
  background-color: white;
  border-radius: 8px;
  background-image: url("/images/icon/svg/upload.svg?version=1487952174997");
  background-repeat: no-repeat;
  /* height: 43px; */
  background-size: 27px 28px;
  background-position: 10px center;
  text-indent: 50px;
  color: #141b1f;
  font-weight: 400;
  text-decoration: none;
  /* max-width: 266px; */
  border: solid 1px;
  margin: 10px;
  padding: 10px;
  font-size: 19px;
  /* line-height: 43px; */
  cursor: pointer;
}
body.pec-optique .tr_checkbox:hover {
  cursor: pointer;
}
body.pec-optique .tr_checkbox_none {
  height: 50px;
}
body.pec-optique .tr_cb_selected {
  cursor: pointer;
}
body.pec-optique #dateTime {
  font-size: 10px;
  color: green;
  border: solid 1px;
  width: 100px;
  height: 15px;
  border-radius: 3px;
  line-height: 15px; /* text-align: center; */ /* display: inline;*/
  /* position: absolute; */
}
body.pec-optique input {
  border: solid 1px #767676;
  height: 35px;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(134, 143, 160, 0.16); */
  font-style: normal;
  /* font-size: 14px; */
  line-height: 20px;
  /* padding: 3px; */
  border-radius: 5px;
  /* overflow: hidden; */
  padding: 6px;
}
body.pec-optique input::-moz-placeholder {
  text-indent: 10px;
  font-style: normal;
}
body.pec-optique input::placeholder {
  text-indent: 10px;
  font-style: normal;
}
body.pec-optique select {
  border-radius: 5px;
  overflow: hidden;
  padding: 6px;
}
body.pec-optique option {
  color: #0671b8;
  margin: 0 8px 0 8px;
}
body.pec-optique option:checked {
  background: #0d5381 linear-gradient(0deg, #0d5381 0%, #0d5381 100%);
  color: white;
  border-radius: 3px;
}
body.pec-optique option {
  color: #2196f3;
}
body.pec-optique .w-90px {
  width: 90px;
}
body.pec-optique .w-30px {
  width: 30px;
}
body.pec-optique .w-300px {
  width: 300px;
}
body.pec-optique .w100p-20px {
  width: calc(100% - 20px);
}
body.pec-optique .b-sh {
  /* border: solid 1px; */
  box-shadow: inset 0 0 1px 0px #555;
}
body.pec-optique div#info {
  border-radius: 8px;
  position: absolute;
  margin: 0;
  background-color: #fff;
  z-index: 10000;
  text-align: center;
  border: solid 1px #bbb;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  /* height: 50%; */
  padding: 20px;
  box-shadow: 0 0 10px #999;
  animation: fadein 0.7s;
  background-image: url(/images/icon/svg/illustration-attention-bonhome.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
body.pec-optique .menu_pec {
  width: 131px;
  height: 213px;
}
body.pec-optique button[type=submit].cancel {
  color: #ffffff;
  background-color: #999;
  border: 1px solid #999;
  font-size: 17px;
  height: 36px;
  line-height: 28px;
  margin: 5px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}
body.pec-optique button#prosante_envoyer_devis {
  background-color: #0D5381;
  color: #ffffff;
  border: transparent;
  padding: 5px 25px;
  border-radius: 6px;
}
body.pec-optique .pop_up {
  background-color: #fff;
  margin: 10px;
  position: absolute;
  border: solid 1px #333;
  box-shadow: 1px 1px 20px 2px #555;
  padding: 15px;
  border-radius: 8px;
  z-index: 120;
}
body.pec-optique .popunder {
  background-color: black;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 110;
}
body.pec-optique .popdiv {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  border: solid 1px #ddd;
  box-shadow: 1px 1px 20px 1px #bbb;
  width: calc(100% - 40px);
  height: 100%;
  z-index: 150;
  overflow: auto;
  animation: fadein 0.7s;
  -moz-animation: fadein 0.7s; /* Firefox */
  -webkit-animation: fadein 0.7s; /* Safari and Chrome */
  -o-animation: fadein 0.7s; /* Opera */
}
body.pec-optique #pec_statut {
  font-weight: bolder;
  color: red;
}
body.pec-optique .spacer_action_dossier {
  display: block;
  height: 60px;
}
body.pec-optique .tabBot {
  text-align: right;
  margin: 20px;
}
body.pec-optique .w-50pc {
  width: 49%;
  min-width: 271px;
  max-width: 633px;
  padding: 10px 0 10px 0;
}
body.pec-optique .w-50pcM {
  /* width: 56%; */
  /* min-width: 253px; */
  /* max-width: 570px; */
  float: right;
}
body.pec-optique table.listes {
  border: solid 1px #999;
  display: block;
  background-color: white;
}
body.pec-optique table.listes th, body.pec-optique table.listesLine th {
  color: #0D5381;
  /* font-weight: 600; */
  /* padding: 5px; */
  /* text-align: center; */
  /* font-size: 14px; */
  opacity: 0.8;
}
body.pec-optique tbody {
  width: 100%;
  display: table;
}
body.pec-optique a.link_btn {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
}
body.pec-optique input[type=text]:disabled {
  border-color: #fff;
  background-color: #f1f1f1;
  color: #333;
}
body.pec-optique input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}
body.pec-optique input[type=text].remise {
  display: inline-block;
  margin: 0 0 0 3px;
  background-color: #fff;
  height: 18px;
  font-size: 12px;
  padding: 2px;
  width: 43px;
  text-align: end;
}
body.pec-optique span.remisep {
  font-size: 10px;
  vertical-align: super;
}
body.pec-optique input[type=text].remise.remise_red {
  background-color: #f7f7f7;
}
body.pec-optique #div_mask {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
body.pec-optique #div_mask {
  z-index: 100;
  visibility: hidden;
  background-color: #000000;
  opacity: 0.6;
  khtmlOpacity: 0.6;
  mozOpacity: 0.6;
  filter: alpha(opacity=60);
}
body.pec-optique #div_modalmessage {
  z-index: 101;
  visibility: hidden;
  color: #000;
  background-color: #FFF;
  font-size: 18px;
  text-align: center;
  border: 2px solid #000000;
  padding: 20px;
  border-radius: 7px 7px 7px 7px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}
body.pec-optique #div_modalmessage #byes_modalmessage {
  margin-right: 20px;
  padding: 6px 12px;
  gap: 8px;
  background: #f4a6a0;
  border: solid 2px #f4a6a0;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
}
body.pec-optique .disp-ib {
  padding: 4px 8px 4px 8px;
  border-radius: 8px;
}
body.pec-optique .disp-ib label {
  display: block;
  margin: 8px 0 10px 0;
}
body.pec-optique input#ss_search_beneficiaire {
  width: 316px;
}
body.pec-optique #liste_benef_benef,
body.pec-optique #beneficiaire_info_ss_ticket {
  margin-top: 30px;
}
body.pec-optique .b-s {
  border: solid 3px black;
  background: #ffffff;
  padding: 10px;
}
body.pec-optique .w-70px {
  width: 70px;
}
body.pec-optique .h-97px {
  height: 97px;
}
body.pec-optique .fl-R {
  float: right;
}
body.pec-optique .tab {
  border-bottom: 1px solid #d0d0d0;
  display: block;
  min-height: 38px;
  text-align: center;
  width: 100%;
}
body.pec-optique .tab > a.selected,
body.pec-optique .tab > span.selected {
  border-bottom: 4px solid #0D5381;
  color: #333;
  /* Safari */
  transition: width 0.5s;
}
body.pec-optique .tab > a,
body.pec-optique .tab > span {
  border-bottom: 4px solid #ffffff;
  color: #808080;
  cursor: pointer;
  display: inline-block;
  height: 38px;
  line-height: 50px;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: none;
}
body.pec-optique .tab > a:hover {
  color: #333;
  border-bottom: 4px solid #0D5381;
}
body.pec-optique .tab.ajaxtab span {
  font-size: 16px;
  font-weight: 300;
}
body.pec-optique .tab-content.selected {
  display: inherit;
}
body.pec-optique .tab-content {
  display: none;
  padding: 15px;
}

.bibliotheque .container {
  display: flex;
  flex-wrap: wrap;
}
.bibliotheque .user-message:empty {
  display: none;
}
.bibliotheque .file-item {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
}
.bibliotheque .file-item img {
  width: 100px;
  height: 100px;
}
.bibliotheque .file-item:hover {
  box-shadow: 4px 5px 13px #dddddd;
}
.bibliotheque button#back-to-categories {
  background-color: #fff;
  border: solid 1px #0D5381;
  border-radius: 4px;
  color: #0D5381;
  cursor: pointer;
}
.bibliotheque #file-list-choice {
  text-align: right;
  margin-right: 25px;
  margin-top: 10px;
}
.bibliotheque #file-list-choice button {
  background-size: cover;
  height: 35px;
  width: 35px;
  margin: 10px;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}
.bibliotheque #file-list-choice button#grid-view-btn {
  background-image: url(/images/bibliotheque/bibliotheque-affichage-grille.png);
}
.bibliotheque #file-list-choice button#single-view-btn {
  background-image: url(/images/bibliotheque/bibliotheque-affichage-colonne.png);
}
.bibliotheque #file-list-choice button#list-view-btn {
  background-image: url(/images/bibliotheque/bibliotheque-affichage-ligne.png);
}
.bibliotheque .grid-view.active {
  display: flex;
}
.bibliotheque .grid-view .file-item {
  width: 300px;
}
.bibliotheque .list-view .file-item {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
}
.bibliotheque .list-view .file-item img {
  margin-right: 20px;
}
.bibliotheque .single-view .file-item {
  width: 100%;
}
.bibliotheque #file-list-choice,
.bibliotheque #back-to-categories {
  display: none;
}
.bibliotheque #file-list-choice.see,
.bibliotheque #back-to-categories.see {
  display: block;
}
.bibliotheque .back-button, .bibliotheque #back-to-list {
  display: none;
  margin-bottom: 20px;
}
.bibliotheque .category-btn {
  margin: 5px;
  height: 155px;
  width: 155px;
  padding: 20px 20px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-size: contain;
}
.bibliotheque .file-list,
.bibliotheque .categories {
  display: none;
  opacity: 0;
}
.bibliotheque .file-list.active,
.bibliotheque .categories.active {
  display: block;
  opacity: 1;
}
.bibliotheque .file-item .file-actions {
  transition: all 0.3s ease;
}
.bibliotheque .file-item .file-actions .action-btn {
  height: 44px;
  margin: 10px auto;
  border: solid 1px #0D5381;
  color: #0D5381;
  border-radius: 8px;
  line-height: 23px;
  padding: 10px;
  text-align: center;
  max-width: 180px;
}
.bibliotheque .file-item .file-actions .action-btn:hover {
  background-color: #0D5381;
  color: #fff;
}
.bibliotheque #ses-favoris .file-actions {
  transition: all 0.3s ease;
}
.bibliotheque #ses-favoris .file-actions .action-btn {
  cursor: pointer;
}
.bibliotheque .file-details {
  cursor: pointer;
  transition: all 0.3s ease;
}
.bibliotheque .file-list.active #file-list.container.list-view .file-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  height: 100%;
  padding: 15px;
  gap: 5px;
}
.bibliotheque .file-list.active #file-list.container.list-view .file-item > .file-item-item {
  padding: 8px;
}
.bibliotheque .favorite {
  color: gold;
  font-size: 24px;
}
.bibliotheque .not-favorite {
  color: #b6b3b3;
  font-size: 24px;
}

.search_form form {
  display: flex;
  margin-left: 11px;
}
.search_form .button_search {
  width: 42px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.search_form .search-input input {
  border: none;
  width: 300px;
  box-shadow: none;
}

.user-connected {
  display: flex;
  padding: 0 10px;
  position: relative;
}
.user-connected .user-name {
  line-height: 36px;
  margin-right: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}
.user-connected .user-pic {
  width: 36px;
  height: 36px;
  color: #0D5381;
}
.user-connected .button_open-close {
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
}
.user-connected .user_connexion__menu {
  display: none;
  background: white;
  min-width: 15em;
  margin-right: 15px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 36px;
  z-index: 1;
}
.user-connected .user_connexion__menu a.menu-item.selected {
  text-decoration: none;
  color: white;
  background-color: #0D5381;
  width: 100%;
  height: 42px;
  display: block;
  line-height: 42px;
  margin-bottom: 5px;
  cursor: pointer;
}
.user-connected .user_connexion__menu a.menu-item,
.user-connected .user_connexion__menu input#btn_connexion {
  text-decoration: none;
  color: #0D5381;
  background-color: white;
  width: 100%;
  height: 42px;
  display: block;
  line-height: 42px;
  margin-bottom: 5px;
  cursor: pointer;
  border: none;
  font-size: 1.125em;
}
.user-connected .user_connexion__menu a.menu-item:hover,
.user-connected .user_connexion__menu input#btn_connexion:hover {
  text-decoration: underline;
  color: white;
  background-color: #0D5381;
}
.user-connected.opened .user_connexion__menu {
  display: block;
}
.user-connected.opened .button_open-close svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: "Mont-Bold", sans-serif;
  color: #333;
}

h2.subtitle, h3.subtitle, h4.subtitle {
  color: #0D5381;
}

h1 {
  color: #0D5381;
}
h1.title {
  margin: 1em 0 1.6em;
}

h2 {
  font-style: normal;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.5rem;
  padding: initial;
}
h2.subtitle {
  margin: 1.5rem 0 2rem;
}

h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.125em;
  line-height: 1.5em;
}

.sous-titre {
  margin: 1.6rem 0 1rem;
}

.cursor-p {
  cursor: pointer;
}

.text-hightlight-1 {
  background-color: rgb(245.0070422535, 250.4295774648, 253.9929577465);
  color: #0D5381;
  font-weight: bold;
}

.text-hightlight-2 {
  background-color: rgb(226.4746478873, 241.9535211268, 252.1253521127);
  color: rgb(8.3309859155, 53.1901408451, 82.6690140845);
  padding: 3px 7px;
  border-radius: 5px;
}

.prosante__information {
  background-color: rgb(245.0070422535, 250.4295774648, 253.9929577465);
  border-radius: 10px;
  padding: 15px 30px;
  margin-bottom: 15px;
  border: 3px solid #0D5381;
}
.prosante__information .champ__information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.prosante__information .champ__information > span {
  display: block;
  padding: 5px;
  width: 100%;
}
.prosante__information .champ__information > span.libelle {
  font-size: 0.85em;
}
.prosante__information .champ__information > span.value {
  min-height: 2em;
  background-color: #fff;
  border-radius: 3px;
}

body.prosante_contacts {
  /*fadeout*/
  /********  style pec ancien ********/
  /*
  img.round {
      width: 116px;
      margin: 5px;
      border-radius: 50%;
      box-shadow: 6px -2px 16px 0px #999;
      padding: 5px;
      cursor:pointer;
  }*/
  /*carré*/
  /* UPLOAD */
}
body.prosante_contacts .professionnel_sante__container {
  background-image: url(/images/prosante-illustration-contact.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 550px;
}
body.prosante_contacts .rounded-right {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
body.prosante_contacts label {
  display: inline-block;
  margin-bottom: 0.9rem;
}
body.prosante_contacts .form-group {
  margin-bottom: 1.5rem;
}
body.prosante_contacts .form-input {
  max-width: 100% !important;
}
body.prosante_contacts .coordonnees a {
  color: #000000;
  text-decoration: underline;
}
body.prosante_contacts .btn.btn_submit {
  background-color: #0D5381;
  color: #ffffff;
  border: transparent;
  padding: 5px 25px;
  border-radius: 6px;
}
body.prosante_contacts .bg_bleuCGRM {
  background-color: #b9e1ec !important;
}
body.prosante_contacts .loading {
  border: 3px solid #f3f3f3;
  border-radius: 50% !important;
  border-top: 3px solid #3498db;
  width: 24px;
  height: 24px;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.prosante_contacts .m-10 {
  margin: 10px;
}
body.prosante_contacts table.listes {
  max-width: 1140px;
  border: solid 1px #e4e4e4;
  border-radius: 8px;
}
body.prosante_contacts table.listes th, body.prosante_contacts table.listes td {
  padding: 13px;
  text-align: left;
  border-bottom: solid 1px #e4e4e4;
}
body.prosante_contacts #result table.listes {
  margin: auto;
}
body.prosante_contacts .spacer_action_dossier {
  display: block;
  height: 38px;
}
body.prosante_contacts .disp-ib {
  display: inline-block;
  overflow: inherit;
  vertical-align: middle;
}
body.prosante_contacts .frame-i {
  margin: 20px;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 8px;
}
body.prosante_contacts .modal-header {
  border-bottom: none;
}
body.prosante_contacts .modal-content {
  background-image: url(/images/icon/svg/illustration-attention-bonhome.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
body.prosante_contacts .btn-rose {
  color: #680d0d;
  background-color: #f4a6a0;
  border-color: #680d0d;
}
body.prosante_contacts p.uplader-file-fact {
  max-width: 300px;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body.prosante_contacts ul, body.prosante_contacts li {
  font-size: 16px;
}
body.prosante_contacts .ta-c {
  text-align: center;
}
body.prosante_contacts .ta-l {
  text-align: left;
}
body.prosante_contacts .ta-r {
  text-align: right;
}
body.prosante_contacts .box-shad-blue {
  box-shadow: 0px 0px 7px 1px blue;
}
body.prosante_contacts .c-red {
  color: red;
}
body.prosante_contacts #retourHome {
  cursor: pointer;
  font-size: 31px;
  background-color: #eee;
  width: 32px;
  display: inline-block;
  text-align: center;
  height: 32px;
  vertical-align: bottom;
  line-height: 1;
  box-shadow: 1px 1px 1px #777;
}
body.prosante_contacts .fw-300 {
  font-weight: 300;
}
body.prosante_contacts a.btn_next {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  /*btn-rose {*/
  color: #fff;
  background-color: #f4a6a0;
  border-color: #f4a6a0;
}
body.prosante_contacts b {
  color: #000000;
  font-weight: 600;
}
body.prosante_contacts button[type=submit].btn_desactived {
  opacity: 0.4;
}
body.prosante_contacts img.round {
  width: 116px;
  margin: 5px;
  /* border-radius: 50%; */
  box-shadow: 0px 0px 1px 0px #999;
  /* padding: 5px; */
  cursor: pointer;
}
body.prosante_contacts .c-aqua {
  background-color: aquamarine;
}
body.prosante_contacts .c-peach {
  background-color: peachpuff;
}
body.prosante_contacts .c-lavende {
  background-color: lavender;
}
body.prosante_contacts .c-cyan {
  background-color: lightcyan;
}
body.prosante_contacts button[type=submit].button {
  color: #ffffff;
  background-color: #f4a6a0;
  border: 1px solid #f4a6a0;
  font-size: 17px;
  line-height: 36px;
  margin: 5px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}
body.prosante_contacts .disp-f {
  display: flex;
}
body.prosante_contacts .disp-ib {
  display: inline-block;
  overflow: inherit;
  vertical-align: bottom;
}
body.prosante_contacts .disp-ib-top {
  display: inline-block;
  overflow: inherit;
  vertical-align: top;
}
body.prosante_contacts va-t {
  vertical-align: top;
}
body.prosante_contacts .joindre-old {
  background: transparent;
  height: 45px !important;
  line-height: 45px;
  display: block;
  font-size: 16px;
  color: black;
}
body.prosante_contacts .label-upload {
  background-color: white;
  border-radius: 8px;
  background-image: url("/images/icon/svg/upload.svg?version=1487952174997");
  background-repeat: no-repeat;
  /* height: 43px; */
  background-size: 27px 28px;
  background-position: 10px center;
  text-indent: 50px;
  color: #141b1f;
  font-weight: 400;
  text-decoration: none;
  /* max-width: 266px; */
  border: solid 1px;
  margin: 10px;
  padding: 10px;
  font-size: 19px;
  /* line-height: 43px; */
  cursor: pointer;
}
body.prosante_contacts input {
  border: solid 1px #767676;
  height: 35px;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(134, 143, 160, 0.16); */
  font-style: normal;
  /* font-size: 14px; */
  line-height: 20px;
  /* padding: 3px; */
  border-radius: 5px;
  /* overflow: hidden; */
  padding: 6px;
}
body.prosante_contacts textarea {
  border: solid 1px #767676;
  font-style: normal;
  border-radius: 5px;
  padding: 6px;
}
body.prosante_contacts input::-moz-placeholder, body.prosante_contacts textarea::-moz-placeholder {
  text-indent: 10px;
  font-style: normal;
}
body.prosante_contacts input::placeholder, body.prosante_contacts textarea::placeholder {
  text-indent: 10px;
  font-style: normal;
}
body.prosante_contacts select {
  border-radius: 5px;
  overflow: hidden;
  padding: 6px;
}
body.prosante_contacts option {
  color: #0671b8;
  margin: 0 8px 0 8px;
}
body.prosante_contacts option:checked {
  background: #0d5381 linear-gradient(0deg, #0d5381 0%, #0d5381 100%);
  color: white;
  border-radius: 3px;
}
body.prosante_contacts option {
  color: #2196f3;
}
body.prosante_contacts .w-90px {
  width: 90px;
}
body.prosante_contacts .w-30px {
  width: 30px;
}
body.prosante_contacts .w-300px {
  width: 300px;
}
body.prosante_contacts .w100p-20px {
  width: calc(100% - 20px);
}
body.prosante_contacts .b-sh {
  /* border: solid 1px; */
  box-shadow: inset 0 0 1px 0px #555;
}
body.prosante_contacts div#info {
  border-radius: 8px;
  position: absolute;
  margin: 0;
  background-color: #fff;
  z-index: 10000;
  text-align: center;
  border: solid 1px #bbb;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  /* height: 50%; */
  padding: 20px;
  box-shadow: 0 0 10px #999;
  animation: fadein 0.7s;
  background-image: url(/images/icon/svg/illustration-attention-bonhome.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
body.prosante_contacts button[type=submit].cancel {
  color: #ffffff;
  background-color: #999;
  border: 1px solid #999;
  font-size: 17px;
  height: 36px;
  line-height: 28px;
  margin: 5px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 99px;
  vertical-align: -webkit-baseline-middle;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}
body.prosante_contacts #div_mask {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
body.prosante_contacts #div_mask {
  z-index: 100;
  visibility: hidden;
  background-color: #000000;
  opacity: 0.6;
  khtmlOpacity: 0.6;
  mozOpacity: 0.6;
  filter: alpha(opacity=60);
}
body.prosante_contacts #div_modalmessage {
  z-index: 101;
  visibility: hidden;
  color: #000;
  background-color: #FFF;
  font-size: 18px;
  text-align: center;
  border: 2px solid #000000;
  padding: 20px;
  border-radius: 7px 7px 7px 7px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}
body.prosante_contacts #div_modalmessage #byes_modalmessage {
  margin-right: 20px;
  padding: 6px 12px;
  gap: 8px;
  background: #f4a6a0;
  border: solid 2px #f4a6a0;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
}
body.prosante_contacts .disp-ib {
  padding: 4px 8px 4px 8px;
  border-radius: 8px;
}
body.prosante_contacts .disp-ib label {
  display: block;
  margin: 8px 0 10px 0;
}
body.prosante_contacts .b-s {
  border: solid 3px black;
  background: #ffffff;
  padding: 10px;
}
body.prosante_contacts .w-70px {
  width: 70px;
}
body.prosante_contacts .h-97px {
  height: 97px;
}
body.prosante_contacts .fl-R {
  float: right;
}

/* prosante/_prosante.scss */
.professionnel_sante {
  min-height: 100vh;
  width: 100%;
  margin: auto;
  position: relative;
  background-color: #fff;
  font-family: "mesmerize", sans-serif;
  /* TABS **/
}
.professionnel_sante button, .professionnel_sante input, .professionnel_sante optgroup, .professionnel_sante select, .professionnel_sante textarea {
  font-family: "mesmerize", sans-serif;
}
.professionnel_sante .search_form .button_search {
  color: #0D5381;
}
.professionnel_sante .search_form input {
  border: solid 1px #9b9b9b;
  height: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(134, 143, 160, 0.16);
  border-radius: 6px;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  padding: 3px;
}
.professionnel_sante .prosante__header {
  height: 64px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.professionnel_sante .professionnel_sante__container {
  position: relative;
  min-height: calc(100% - 64px);
  margin: 0 15px;
}
.professionnel_sante .breadcrumb {
  background-color: inherit;
  color: #333;
}
.professionnel_sante .breadcrumb a {
  color: inherit;
}
.professionnel_sante a {
  /* Footer */
}
.professionnel_sante a.page, .professionnel_sante a.lien {
  border: none;
  margin: 6px;
  padding: 2px 7px;
  border-radius: 6px;
  background-color: rgba(0, 86, 93, 0.25);
  color: black;
  font-weight: bold;
  /* width: 36px; */
  /* height: 36px; */
}
.professionnel_sante a ul.menu {
  padding-left: 0;
  list-style: none;
}
.professionnel_sante .barre_acces_rapide {
  display: inline-block;
  width: 100%;
}
.professionnel_sante .barre_acces_rapide .acces_rapide_button {
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  height: 8em;
  margin-bottom: 1em;
}
@media (min-width: 1401px) {
  .professionnel_sante .barre_acces_rapide .acces_rapide_button {
    height: 12em;
  }
}
@media (min-width: 1201px) {
  .professionnel_sante .barre_acces_rapide .acces_rapide_button {
    height: 9em;
  }
}
.professionnel_sante .barre_acces_rapide a {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
  height: 100%;
  width: 100%;
}
.professionnel_sante .barre_acces_rapide .acces_rapide__text {
  display: block;
  text-align: center;
  height: 3em;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 1401px) {
  .professionnel_sante .barre_acces_rapide .acces_rapide__text {
    font-size: 15px;
  }
}
.professionnel_sante .barre_acces_rapide .acces_rapide__icon {
  display: block;
  height: inherit;
  width: 50%;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.professionnel_sante .barre_acces_rapide .acces_rapide__icon.icon__remboursement {
  background-image: url(/images/icon/svg/remboursement.svg);
}
.professionnel_sante .barre_acces_rapide .acces_rapide__icon.icon__pec {
  background-image: url(/images/icon/svg/pec.svg);
}
.professionnel_sante .barre_acces_rapide .acces_rapide__icon.icon__add-user {
  background-image: url(/images/icon/svg/ajout-entite.svg);
}
.professionnel_sante .barre_acces_rapide .acces_rapide__icon.icon__bibliotheque {
  background-image: url(/images/icon/svg/bibliotheque.svg);
}
.professionnel_sante .prosante__rechercher {
  display: flex;
  justify-content: right;
  align-items: flex-end;
}
.professionnel_sante table.prosante__remboursement_detail {
  border: 2px solid rgb(17.6690140845, 112.8098591549, 175.3309859155);
}
.professionnel_sante table.prosante__remboursement_detail tr td:first-child {
  position: relative;
}
.professionnel_sante table.prosante__remboursement_detail .col_link {
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.professionnel_sante table.prosante__remboursement_detail .col_value {
  font-weight: 600;
}
.professionnel_sante .liste_remboursement .text-muted {
  font-size: 0.85rem;
}
.professionnel_sante form.form_bs__border {
  border-color: #0D5381;
}
.professionnel_sante .prosante__liste_entites table {
  border: 1px solid #bbb;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 66%;
  margin: auto;
}
.professionnel_sante #bandeau_haut {
  min-height: 60px;
  background: #F5F5F5;
  margin: auto;
  position: relative;
}
.professionnel_sante #bandeau_haut .prosante__top-header,
.professionnel_sante #bandeau_haut .prosante__slider,
.professionnel_sante #bandeau_haut .prosante__slider__slide,
.professionnel_sante #bandeau_haut .prosante__slider__slide-container {
  height: 100%;
}
.professionnel_sante #bandeau_haut img {
  width: 100%;
  height: auto;
}
.professionnel_sante #cadre-bas .row {
  flex-wrap: wrap-reverse;
}
.professionnel_sante #cadre-bas-gauche {
  background: white;
  margin-top: 10px;
}
.professionnel_sante #cadre-bas-droite {
  width: 322px;
  background: white;
  margin: 40px auto 30px;
  justify-content: space-around;
  flex-flow: wrap;
}
.professionnel_sante #tabs_individuel_collectif {
  display: flex;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5em;
  text-transform: uppercase;
}
.professionnel_sante #tabs_individuel_collectif #tab_individuel,
.professionnel_sante #tabs_individuel_collectif #tab_collectif {
  background: white;
  color: black;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  padding: 5px 9px;
  cursor: pointer;
}
.professionnel_sante #tabs_individuel_collectif #tab_individuel:hover,
.professionnel_sante #tabs_individuel_collectif #tab_collectif:hover {
  text-decoration: underline;
}
.professionnel_sante #tabs_individuel_collectif #tab_individuel.tab-selected,
.professionnel_sante #tabs_individuel_collectif #tab_collectif.tab-selected {
  background: #00565D; /*#8BCAB5;*/
  color: white;
  border-radius: 4px;
  z-index: 10;
}
.professionnel_sante #tabs_individuel_collectif #tab_individuel {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.professionnel_sante #tabs_individuel_collectif #tab_collectif {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.professionnel_sante .prosante__footer {
  /*max-width: 1038px;*/
  height: 34px;
  /* background-color: #ebebeb; */
  font-style: italic;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 34px;
  letter-spacing: 0.01em;
  color: #333;
  text-align: center;
}
.professionnel_sante .prosante__footer a {
  color: #333;
}
.professionnel_sante .prosante__contact a {
  color: #333;
}
.professionnel_sante .prosante__bloc-titre {
  font-style: normal;
  font-weight: 900;
  font-size: 1em;
  line-height: 1em;
  color: #333;
  padding: 12px 0;
  margin: 0;
  text-align: center;
}
.professionnel_sante .statistiques .kpi_bloc {
  margin-top: 2.5em;
  display: inline-block;
  border-radius: 8px;
}
.professionnel_sante .Statistiques__autres {
  margin-top: 2.5em;
}
.professionnel_sante .Statistiques__autres img {
  height: 240px;
  width: auto;
}
.professionnel_sante .entreprise__liste-filiales {
  display: none;
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid;
  overflow-x: auto;
  max-height: 16em;
  width: inherit;
}
.professionnel_sante .entreprise__liste-filiales .entreprise__filiale {
  padding: 4px;
  color: #333;
}
.professionnel_sante .entreprise__liste-filiales .entreprise__filiale:nth-child(even) {
  background-color: white;
}

.prosante__mon_profil .professionnel_sante__container,
.prosante__demande_remboursement .professionnel_sante__container {
  background-position: bottom right 5%;
  background-repeat: no-repeat;
  background-size: 30%;
}

.prosante__mon_profil .professionnel_sante__container {
  background-image: url("/images/prosante/prosante_profil.png");
}

.prosante__demande_remboursement .professionnel_sante__container {
  background-image: url("/images/prosante/prosante_demande_remboursement.png");
}

.upload-submit {
  margin: 2em 0;
}

.prosante__modal.message__modal.message__overlay {
  background-color: rgba(241, 241, 241, 0.5);
}
.prosante__modal .message__container {
  background-image: url("/images/icon/svg/confirmation.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) calc(100% - 15px);
  background-size: 80px auto;
}
.prosante__modal .message__btn_close {
  background-color: #ce6f6f;
  color: #fff;
}
.prosante__modal .message__btn_close:hover {
  border-color: #ce6f6f;
  background-color: #fff;
  color: #ce6f6f;
}

.onglets {
  display: flex;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  flex-wrap: wrap;
  border-radius: 4px;
}
.onglets .onglet {
  background: white;
  color: black;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  padding: 3px 9px;
  cursor: pointer;
}
.onglets .onglet.onglet-selected {
  background: #00565D; /*#8BCAB5;*/
  color: white;
  z-index: 10;
  margin-right: -4px;
}
.onglets .onglet.onglet-selected:hover {
  color: white;
}
.onglets .onglet:last-child, .onglets .onglet.onglet-selected {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/*table*/
/*tableau de bord*/
.table_new {
  padding: 9px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
  margin-bottom: 20px;
  background-color: white;
}

a#cadre-affil,
a#cadre-contact {
  width: 150px;
  height: 138px;
  background-color: white;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

a#cadre-affil {
  background-image: url(/images/prosantes/icone/affiliation.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 99px;
}

a#cadre-contact {
  background-image: url(/images/prosantes/icone/contact_big.svg);
  background-repeat: no-repeat;
  background-size: 61px;
  background-position: center 58px;
}

#prosante__block__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#prosante__block__container .kpi__bloc__chiffre-cle {
  margin-left: 12px;
}

/*#annu*/
.kpi__bloc__chiffre-cle {
  width: 150px;
  height: 138px;
  background-color: white;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
}
.kpi__bloc__chiffre-cle .kpi__bloc__chiffre-cle-contents {
  color: #8BCAB5;
  font-weight: bold;
  text-align: center;
  margin-top: -20px;
}
.kpi__bloc__chiffre-cle .kpi__bloc__chiffre-cle-contents-valeur1 {
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 4px;
}
.kpi__bloc__chiffre-cle .kpi__bloc__chiffre-cle-contents-valeur2 {
  font-size: 1.3em;
}

#cadre-bibli {
  height: 150px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
  margin-top: 10px;
  padding: 0.5em;
}

h3#cadre-affil-titre, h3#cadre-contact-titre, h3.kpi__bloc__chiffre-cle-titre, h3#cadre-bibli-titre {
  margin: 12px 0;
  line-height: 1em;
}

#cadre-affil-titre,
#cadre-contact-titre,
.kpi__bloc__chiffre-cle-titre {
  text-align: center;
}

.hide {
  display: none;
}

.column_center {
  width: 100%;
  position: relative;
}

.prosante__container-content {
  padding: 0 35px 20px;
  width: 100%;
}

.tableau-de-bord .prosante__container-content,
.mon-espace .prosante__container-content {
  background-color: #ffffff;
}

.mon-profil .prosante__container-content {
  background-color: rgba(0, 86, 93, 0.06);
}

input[type=button],
input.button {
  padding: 6px 12px;
  gap: 8px;
  background: #8E5674;
  border: solid 2px #8E5674;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  cursor: pointer;
}

.adhesion-en-ligne ul {
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 151, 104, 0.26);
  border-radius: 8px;
}

.adhesion-en-ligne li {
  margin: 5px;
  padding: 8px;
  line-height: initial;
  display: block;
}

.adhesion-en-ligne .c-watson {
  font-weight: bold;
}

.adhesion-en-ligne .bia-btn {
  padding: 6px 12px;
  gap: 8px;
  background: #8E5674;
  border: solid 2px #8E5674;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  cursor: pointer;
  margin-right: 13px;
}

#adherent__garanties__document .garanties__document-item {
  display: inline-block;
  margin-left: 2em;
}
#adherent__garanties__document .garanties__document-item a {
  color: #333;
}

#bia_envoyer_adhesion {
  padding: 10px;
  border: solid 1px #e1e1e1;
  border-radius: 5px;
}
#bia_envoyer_adhesion label {
  margin-bottom: 0.5rem;
}
#bia_envoyer_adhesion input[type=text], #bia_envoyer_adhesion input[type=email] {
  display: block;
}
#bia_envoyer_adhesion input[type=radio] + label {
  margin-left: 0.5em;
}

.adhesion-en-ligne ul {
  margin-bottom: 25px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 151, 104, 0.26);
  border-radius: 8px;
  flex-direction: column;
}

/*stats-graphs*/
.statistiques .stats-graphs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.statistiques .stats-item:not(.d-none):not(:empty) {
  /* width: 504px; */
  padding-top: 20px;
  margin: 35px auto;
  padding-left: 10px;
  padding-right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 22px 35px -16px rgba(0, 0, 0, 0.1);
}

.statistiques span#CEEGEE {
  background-image: url(/images/icon/ceegee.jpg);
  background-position: center;
  background-size: cover;
  width: 85px;
  height: 108px;
  display: block;
  background-repeat: no-repeat;
}

.statistiques span#Tendance {
  width: 140px;
  height: 108px;
  display: block;
}

/* Loader */
body.ajax-loading::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 9998;
}

body.ajax-loading .loader {
  display: block;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 7em;
  height: 7em;
}

.loader {
  display: none;
  margin: 0;
  font-size: 10px;
  position: fixed;
  top: 40%;
  left: 50%;
  z-index: 9999;
  text-indent: -9999em;
  border-top: 1em solid rgba(200, 200, 200, 0.3);
  border-right: 1em solid rgba(200, 200, 200, 0.3);
  border-bottom: 1em solid rgba(200, 200, 200, 0.3);
  border-left: 1em solid rgb(99, 150, 239);
  animation: load8 1.1s infinite linear;
}
@keyframes load8 {
  0% {
    -webkit-transform-origin: 50% 50%;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}