@charset "UTF-8";
/* ==========================================================================

SURCHARGE ANIMATION

======================================================================== */
.animTop * {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.start .animated * {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
}

.animated > * {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.animated:after {
  z-index: 10;
  background: #114887;
  left: 0;
  -webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}
.animated.animTop:after {
  top: 0;
}
.animated.animBottom:after {
  bottom: 0;
}
.animated.started:after {
  height: 0;
}

.start-effect > .smooth {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==========================================================================

GLOBAL

======================================================================== */
html, body {
  background-color: #222429;
}

.logo {
  background: #35b2a7;
}

.masque:before {
  opacity: 0.75;
  background: #344879;
}

.animated:after,
.bg-custom {
  color: #fff;
  background-color: #35b2a7;
  border-color: #35b2a7;
}

.btn-custom, .btn-outline-main-color {
  background-color: #35b2a7;
  border-color: #35b2a7;
}
.btn-custom:hover, .btn-outline-main-color:hover {
  background-color: #ff4522;
  border-color: #ff4522;
}

.text-customYell {
  color: #ff9800;
}

.bg-customYell {
  background-color: #ff9800;
}

.text-customTheme,
.text-custom {
  color: #35b2a7;
}

:not(.sidebar) .profilUser:not(.bg-cover) {
  background: #fff;
}

.bg-customTheme {
  background-color: #35b2a7;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .not-home {
    padding-top: 80px !important;
  }
}
@media only screen and (max-width: 991px) {
  .heightCustom {
    min-height: auto;
    height: auto;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

h1 {
  overflow-wrap: break-word;
  color: #fff;
  text-transform: inherit;
}
h1 .d-block {
  font-weight: lighter;
  font-size: 70%;
  color: rgba(255, 255, 255, 0.5);
}

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

.modal .modal-header, .modal .modal-footer {
  padding: 1.825rem 1.25rem;
  border: none;
}
.modal .modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal .modal-header .close, .modal .modal-header h2, .modal .modal-header h3, .modal .modal-header h4, .modal .modal-header h5 {
  margin: 0;
}
.modal .form-control {
  padding-left: 0;
}
.modal .modalSuccess {
  border-left: 5px solid green;
}
.modal .modalSuccess h5 {
  color: green;
}
.modal .modalWarning {
  border-left: 5px solid #ff9800;
}
.modal .modalAlerte {
  border-left: 5px solid #f44336;
}
.modal .modalAlerte h5 {
  color: #f44336;
}
.modal .dropzone > div {
  cursor: pointer;
  min-height: 150px;
  position: relative;
}
.modal label.custom-control-label {
  color: inherit;
}
.modal .customSearch input {
  width: calc(100% - 60px) !important;
}

.quote {
  border-left: 3px solid #d9d9d9;
}

/* ==========================================================================

SIGN-IN

======================================================================== */
.bg-customDark {
  background-color: #2d333b;
  color: #fff;
}
.bg-customDark .form-control {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
  border-left: 3px solid #d9d9d9;
  margin-left: 15px;
}
.quote.custom {
  border-left: 3px solid #35b2a7;
}
.quote h3.text-truncate {
  white-space: break-spaces;
}
@media only screen and (min-width: 992px) {
  .quote h3.text-truncate {
    max-width: 370px;
  }
}

.home .rwdColumn h1 {
  font-size: 1.7em;
}
.home .bg-cover h3 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 991px) {
  .home .rwdColumn {
    padding-top: 5em;
  }
  .home .rwdColumn .logo {
    height: 60px;
    width: 60px;
  }
  .home .rwdColumn h1 {
    font-size: 1.7em;
  }
}
@media only screen and (max-width: 991px) and (min-width: 578px) {
  .home .bg-cover {
    height: calc(100vh - 172px);
  }
}
@media only screen and (max-width: 991px) {
  .home .bg-cover > div {
    padding-left: 0;
    padding-right: 0;
  }
  .home .bg-cover > div h3 {
    text-align: left;
    font-size: 1.2rem;
  }
  .home .bg-cover > div .p-5 {
    padding: 2rem !important;
  }
}

.champPassword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.champPassword input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.champPassword span {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}
.champPassword span:hover {
  color: white;
}

.p-custom {
  padding-top: 5rem;
  position: relative;
}

/* ==========================================================================

MENU CUSTOM

======================================================================== */
#toggle {
  z-index: 1031;
}
#toggle:before, #toggle:after {
  background: #35b2a7;
}

.sidebar,
.navbar-brand,
#toggle {
  background-color: #2d333b !important;
  color: #fff;
}

.sidebar .navbar-brand {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: auto;
  padding: 10px 0;
}
.sidebar .navbar-brand span.d-flex {
  overflow: hidden;
}
.sidebar .navbar-brand img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 30px 0 10px;
}
.sidebar .navbar-brand slogan, .sidebar .navbar-brand span {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .sidebar .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sidebar .navbar-brand img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 577px) {
  .sidebar .navbar-brand slogan, .sidebar .navbar-brand span {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .sidebar:hover, .sidebar:focus, .sidebar:active, .sidebar.navigation-is-open {
    width: 300px;
  }
}
.sidebar:hover .navbar-brand img, .sidebar:focus .navbar-brand img, .sidebar:active .navbar-brand img, .sidebar.navigation-is-open .navbar-brand img {
  margin: 0 10px;
}
@media only screen and (min-width: 992px) {
  .sidebar.navigation-is-open .customMenu {
    min-width: 50vh;
  }
}
.sidebar.navigation-is-open .nav a svg {
  margin: 0 20px 0 10px;
}
.sidebar .nav a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.sidebar .nav a:after {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none;
}
.sidebar .nav a.customCollapse.active {
  border: none;
  background: #292e35;
}
.sidebar .nav a:hover svg, .sidebar .nav a.active svg {
  color: #ff9800;
}
.sidebar .nav a .badge {
  position: absolute;
  top: 1em;
  left: 3.5em;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .sidebar .nav a {
    width: 300px;
  }
}
.sidebar .user {
  border-top: none;
}
@media only screen and (min-width: 992px) {
  .sidebar .user .d-flex {
    width: 300px;
  }
}
.sidebar .user .d-flex ul {
  width: calc(100% - 90px);
}
.sidebar .user .d-flex ul li:nth-child(2) a,
.sidebar .user .d-flex ul li:nth-child(3) a {
  padding-bottom: 0;
}
.sidebar .user .d-flex .bg-cover, .sidebar .user .d-flex svg {
  height: 50px;
  min-height: 50px;
  width: 50px;
  min-width: 50px;
}
.sidebar .nav a, .sidebar .user a {
  color: #607d8b;
}
.sidebar .nav a:hover, .sidebar .nav a.active, .sidebar .user a:hover, .sidebar .user a.active {
  color: white;
}
.sidebar .customMenu {
  background-color: #292e35;
  border: none;
  padding: 2rem;
}
.sidebar .customMenu .toggle {
  background-color: #2d333b !important;
}
.sidebar .customMenu .toggle:after, .sidebar .customMenu .toggle:before {
  background-color: #fff;
}
.sidebar .customMenu .tab-pane {
  width: 100%;
  max-height: calc(100vh - 50px);
  overflow: hidden;
  overflow-y: auto;
}
.sidebar .customMenu .tab-pane a {
  color: #fff;
}
.sidebar .customMenu .tab-pane a p {
  margin: 0;
}
.sidebar .customMenu .tab-pane ul li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar .customMenu .tab-pane ul li a p span {
  font-size: 75%;
  opacity: 0.3;
  display: block;
}
.sidebar .customMenu .tab-pane ul li:first-child, .sidebar .customMenu .tab-pane ul li:last-child {
  border: none;
}
.sidebar .customMenu .tab-pane ul li .customPopOver .btn {
  color: rgba(255, 255, 255, 0.5);
}
.sidebar .customMenu .tab-pane ul li .customPopOver .btn span {
  color: rgba(255, 255, 255, 0.5);
  background-color: #292e35;
}
.sidebar .customMenu .tab-pane ul li .customPopOver .btn:last-child span {
  -webkit-transform: translateY(30px) translateX(0) !important;
      -ms-transform: translateY(30px) translateX(0) !important;
          transform: translateY(30px) translateX(0) !important;
  left: auto;
  right: 0;
}
.sidebar .customMenu .tab-pane ul li .customPopOver .btn:last-child span:after {
  left: 70%;
}
.sidebar .customMenu .tab-pane ul li .customPopOver .btn:hover:last-child span {
  -webkit-transform: translateY(0) translateX(0) !important;
      -ms-transform: translateY(0) translateX(0) !important;
          transform: translateY(0) translateX(0) !important;
}

/* ==========================================================================

MAIN - SEARCH

======================================================================== */
#main-search {
  background-color: #222429;
}
@media only screen and (min-width: 992px) {
  #main-search {
    background: transparent;
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
  #main-search {
    background-color: transparent;
    color: #fff;
    left: 0;
    top: 23px;
    text-align: right;
  }
  #main-search a, #main-search button {
    color: #fff;
  }
}
#main-search .navbar-collapse {
  text-align: left;
}
@media only screen and (min-width: 992px) {
  #main-search .navbar-collapse > div {
    height: 80px;
    padding-right: 1em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 991px) {
  #main-search .navbar-collapse {
    position: relative;
    top: 23px;
    background-color: #2d333b;
  }
  #main-search .navbar-collapse > div {
    padding: 1em;
  }
  #main-search .navbar-collapse .breadcrumb {
    padding-left: 0;
  }
  #main-search .navbar-collapse button {
    border-color: #fff;
  }
}
#main-search .breadcrumb {
  background-color: transparent;
}
#main-search .breadcrumb a, #main-search .breadcrumb svg {
  color: #fff;
}

.searchTool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .searchTool {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
  }
}
@media only screen and (max-width: 577px) {
  .searchTool {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.searchTool input {
  width: calc(100% - 50px) !important;
}

/* ==========================================================================

Profil

======================================================================== */
.stickyBar {
  position: sticky;
  bottom: 0;
  right: 0;
  background: #007bff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1em;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) {
  .stickyBar {
    position: fixed;
  }
}

.customPopOver .btn {
  position: relative;
}
.customPopOver .btn span {
  white-space: nowrap;
  pointer-events: none;
  opacity: 0 !important;
  position: absolute;
  bottom: calc(100% + 10px);
  -webkit-transform: translateY(30px) translateX(-50%) !important;
      -ms-transform: translateY(30px) translateX(-50%) !important;
          transform: translateY(30px) translateX(-50%) !important;
  left: 50%;
  color: #72777b;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  font-size: 0.9em;
  background-color: #fff;
}
.customPopOver .btn span:after {
  top: 100%;
  left: 50%;
  background: #a2a2a2;
  content: " ";
  position: absolute;
  pointer-events: none;
  height: 5px;
  width: 1px;
}
.customPopOver .btn:hover span {
  opacity: 1 !important;
  -webkit-transform: translateY(0) translateX(-50%) !important;
      -ms-transform: translateY(0) translateX(-50%) !important;
          transform: translateY(0) translateX(-50%) !important;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f9f8f4;
}

/* ==========================================================================

Choix Opérations

======================================================================== */
.btnFav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 50%;
  z-index: 11;
  background: #fff;
  height: 30px;
  min-height: 30px;
  width: 30px;
  min-width: 30px;
  padding: 0;
  color: #ccc;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 0.7rem;
  -webkit-box-shadow: 0 0 0 0 #fff, rgba(0, 18, 46, 0.24) 0px 1px 1px 0px;
          box-shadow: 0 0 0 0 #fff, rgba(0, 18, 46, 0.24) 0px 1px 1px 0px;
}
.btnFav.favorite, .btnFav:hover {
  color: #ff9800;
  -webkit-box-shadow: 0 0 0 3px #fff, rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;
          box-shadow: 0 0 0 3px #fff, rgba(0, 18, 46, 0.24) 0px 6px 32px 0px;
}
.btnFav.favorite {
  top: -1rem;
}

.customCard.w-100 {
  border-color: #2d333b;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.05);
}
.customCard.w-100 .height-img {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}
.customCard.w-100 .height-img:after {
  display: none;
}
.customCard.w-100 .mainBtn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  height: calc(100% - 5rem);
}
.customCard.w-100:hover {
  -webkit-box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.5);
}
.customCard.w-100 .items.small .col-auto {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.customCard.w-100 .row.matrice {
  border-top: 1px solid #f1f1f1;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.customCard.w-100 .row.matrice .col svg {
  width: 1.5rem;
  margin-right: 0.5rem;
  color: green;
}
.customCard.w-100 .row.matrice .col ul li {
  word-break: break-word;
  overflow-wrap: break-word;
}

.btn-ico {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  position: relative;
  padding: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-ico:hover {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.btn-ico > i, .btn-ico > span, .btn-ico > svg {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.1875rem;
  left: 50%;
  top: 50%;
  margin: 0;
}

a .arrow {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
}
a:hover .arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.clients .pointer {
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clients .pointer:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1rem;
  background: #007bff;
  height: 2.75rem;
  min-height: 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  line-height: 2.75rem;
  text-align: center;
  color: #fff;
  z-index: 2;
  content: "✓";
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.clients .pointer.active {
  border-color: #007bff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.clients .pointer.active:before {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================

Liste Prescripteurs

======================================================================== */
.responsiveTab {
  margin-bottom: 2rem;
}
.responsiveTab > [class^=row] {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.responsiveTab > [class^=row]:first-child {
  border: none;
  color: #c0c0c1;
  font-size: 80%;
}
@media only screen and (max-width: 577px) {
  .responsiveTab > [class^=row]:first-child {
    display: none;
  }
}
.responsiveTab > [class^=row] .col-switch {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  max-width: 140px;
}
.responsiveTab > [class^=row] .col-custom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 125px;
          flex: 0 0 125px;
  max-width: 125px;
}
.responsiveTab > [class^=row] .col-custom.unItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  max-width: 75px;
}
.responsiveTab > [class^=row] .col-custom.troisItems {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 176px;
          flex: 0 0 176px;
  max-width: 176px;
}
@media only screen and (max-width: 577px) {
  .responsiveTab > [class^=row] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.responsiveTab > [class^=row] .statut h3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}
.responsiveTab > [class^=row] [class^=col] {
  padding: 1rem;
}
@media only screen and (max-width: 577px) {
  .responsiveTab > [class^=row] [class^=col] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.responsiveTab > [class^=row] [class^=col].statut h3 {
  position: relative;
}
.responsiveTab > [class^=row] [class^=col].statut h3:before {
  content: "•";
  color: #ccc;
  font-weight: bold;
  margin-right: 1em;
}
.responsiveTab > [class^=row] [class^=col].statut.active h3:before {
  content: "✓";
  color: #00b4a8;
}
.responsiveTab > [class^=row].disabled {
  color: #ccc;
}
.responsiveTab .collapse .row, .responsiveTab .collapsing .row {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  border-left: 3px solid #c8b67a;
}
.responsiveTab.timeline .badge {
  text-align: left;
  min-width: 80px;
}
.responsiveTab .badge {
  padding: 0.5rem;
  font-weight: 300;
}
.responsiveTab.scrollableTab {
  max-height: 50vh;
  height: auto;
  margin-bottom: 0;
}
.responsiveTab.scrollableTab.h-35 {
  max-height: 35vh;
}

.avatar img, .avatar svg {
  height: 2.75rem;
  min-height: 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: #f5f6fa;
  display: inline-block;
  position: relative;
  line-height: 0;
  margin-right: 10px;
}
.avatar.lg-avatar img, .avatar.lg-avatar svg {
  height: 3.75rem;
  min-height: 3.75rem;
  width: 3.75rem;
  min-width: 3.75rem;
}
.avatar svg {
  background: #607d8b;
  color: #fff;
  padding: 10px;
}

.btn-primary.rounded-pill, .btn-outline-primary.rounded-pill {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: 0 0 0 0 #007bff;
          box-shadow: 0 0 0 0 #007bff;
  cursor: pointer;
}
.btn-primary.rounded-pill svg, .btn-outline-primary.rounded-pill svg {
  -webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-primary.rounded-pill:hover, .btn-outline-primary.rounded-pill:hover {
  -webkit-box-shadow: 0 0 0 3px #0069d9;
          box-shadow: 0 0 0 3px #0069d9;
}
.btn-primary.rounded-pill:hover svg, .btn-outline-primary.rounded-pill:hover svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ==========================================================================

Admin d'admin de matrice
======================================================================== */
@media only screen and (min-width: 992px) {
  .col-lg-4.scrollableBlock {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.accordion > .card {
  margin-bottom: 1rem;
  border: none;
  overflow: inherit !important;
}

.headerCard {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
  padding: 1rem;
  margin-right: 0;
  margin-left: 0;
}
.headerCard .col, .headerCard .col-auto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.largeHeader .headerCard {
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 0.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}
.largeHeader .headerCard > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .largeHeader .headerCard {
    height: 185px;
  }
}
.largeHeader .headerCard[aria-expanded=true] {
  opacity: 0.15;
}
.largeHeader .headerCard[aria-expanded=true]:hover {
  opacity: 0.3;
}

.violet {
  background-color: #B58DB6;
}

.blue {
  background-color: #5cd5ce;
}

.orange {
  background-color: #f58059;
}

.darkBlue {
  background-color: #416788;
}

.card-body.custom .row {
  padding: 0.5rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.card-body.custom .row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-body.custom .row p {
  margin-bottom: 0;
  margin-left: 0.5rem;
}
.card-body.custom .row .badge {
  margin-left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 0.4rem;
}
.card-body.custom .row .far {
  color: rgba(0, 0, 0, 0.5);
}
.card-body.custom .row:hover {
  background-color: #f8f9fa;
}

button[aria-expanded=true] .fa-angle-down {
  -webkit-transition: ease 0.2s;
  -o-transition: ease 0.2s;
  transition: ease 0.2s;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
button[aria-expanded=false] .fa-angle-down {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.steps {
  border-left: 1px solid #ccc;
  padding-left: 1rem;
  margin-left: 0.5rem;
}
.steps .row .font-weight-bold {
  position: relative;
  margin-bottom: 0;
}
.steps .row .font-weight-bold:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  top: 0;
  right: calc(100% + 1rem - 4px);
  bottom: 0;
  margin: auto;
  background: #ccc;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px #fff;
          box-shadow: 0 0 0 4px #fff;
}
.steps.delay {
  margin: 0.5rem 0 0.5rem 1.5rem;
  padding: 1rem 0 1rem 1rem;
  border-color: #ff9800;
}
.steps.delay .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps.delay .col .font-weight-bold {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.steps.delay .col .font-weight-bold:after {
  background: #ff9800;
}
.steps.delay .col input {
  width: 4rem;
}

/* ==========================================================================

Admin matrice
======================================================================== */
.main, .chat {
  overflow-x: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100vh;
  position: relative;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100vh;
  position: relative;
}
.chat .chat-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-width: 0;
  width: 100%;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.chat .chat-body #dudule {
  margin-left: 0.5rem;
  overflow: hidden;
  position: relative;
  padding-left: 4.8rem;
}
.chat .chat-body #dudule span {
  position: absolute;
  content: "";
  top: 0;
  left: 0.5rem;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  line-height: 1.8rem;
}
.chat .chat-body #dudule.chat-Open span {
  top: -1.8rem;
}
.chat .chat-sidebar {
  position: fixed;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  left: 100%;
  z-index: 3;
  width: 100%;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
}
@media only screen and (min-width: 992px) {
  .chat .chat-sidebar {
    position: sticky;
    z-index: 1020;
    border-left: 1px solid rgba(245, 246, 250, 0.85);
    visibility: hidden;
    width: 0;
    margin-right: -1px;
    height: 100vh;
  }
}
.chat .chat-sidebar.chat-sidebar-visible {
  visibility: visible;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media only screen and (min-width: 992px) {
  .chat .chat-sidebar.chat-sidebar-visible {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    left: 0;
    visibility: visible;
    min-width: 33.333333%;
  }
}
.chat .index {
  position: relative;
  z-index: 2;
}

.btn-dark {
  background-color: #222429;
  border-color: #222429;
  padding: 1rem;
}
.btn-dark:hover {
  background-color: #23272b;
  border-color: #1d2124;
}

.col-lg-4 .nav-tabs.customTab {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.col-lg-4 .nav-tabs.customTab a {
  font-size: 85%;
  border-bottom: none;
  border-left: 1px solid #2d333b;
}
.col-lg-4 .nav-tabs.customTab a.active, .col-lg-4 .nav-tabs.customTab a:hover {
  padding-left: 1.5rem;
  border-bottom: none;
  border-left: 1px solid #ff9800;
}

button.alerte {
  position: relative;
}
button.alerte .badge {
  position: absolute;
  top: -0.5rem;
  right: 0;
  margin: 0;
  z-index: 2;
  padding: 0.4rem;
}
button.alerte .far {
  color: #d92967 !important;
}

.avatar {
  height: 2.75rem;
  min-height: 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  border-radius: 50%;
  background: #f5f6fa;
  display: inline-block;
  position: relative;
  line-height: 0;
  margin-right: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.avatar.lg-avatar {
  height: 3.75rem;
  min-height: 3.75rem;
  width: 3.75rem;
  min-width: 3.75rem;
}
.avatar.lg-avatar img, .avatar.lg-avatar svg {
  height: 3.75rem;
  min-height: 3.75rem;
  width: 3.75rem;
  min-width: 3.75rem;
}

footer {
  position: inherit;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  padding: 1rem 0;
  left: auto;
  top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer li, footer a {
  color: rgba(255, 255, 255, 0.4);
}

.btnPortail {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
}
.btnPortail svg {
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-box-shadow: 0 0 0 1px #007bff;
          box-shadow: 0 0 0 1px #007bff;
  background: transparent;
  margin-bottom: 0.5rem;
}
.btnPortail:hover svg {
  -webkit-box-shadow: 0 0 0 3px #007bff;
          box-shadow: 0 0 0 3px #007bff;
}

.planning {
  background-color: #425ffb;
}

.dashboard {
  background-color: #ff9800;
}

.roadbook {
  background-color: #009688;
}

.backo-roadbook {
  background-color: #343a40;
}

.admin-commercial {
  background-color: #da9d80;
}

@media only screen and (max-width: 991px) {
  .demoFav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .demoFav .col-auto.text-custom {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.demoFav .col-md-6 {
  cursor: default;
  pointer-events: none;
}
@media only screen and (min-width: 992px) {
  .demoFav .col-md-6 {
    max-width: 300px;
  }
}
.demoFav .col-md-6 .customCard.w-100 {
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.demoFav .col-md-6 .customCard.w-100 .cursor {
  position: absolute;
  z-index: 21;
  height: 4.5rem;
  -webkit-transform: rotate(16deg);
      -ms-transform: rotate(16deg);
          transform: rotate(16deg);
  right: 1rem;
  top: 2.2rem;
}
@media only screen and (min-width: 992px) {
  .demoFav .col-md-6 .customCard.w-100 .cursor {
    -webkit-transform: rotate(-16deg);
        -ms-transform: rotate(-16deg);
            transform: rotate(-16deg);
    right: -1.3rem;
  }
}
.demoFav .col-md-6 .customCard.w-100 .cursor .st0 {
  fill: #FFFFFF;
}
.demoFav .col-md-6 .customCard.w-100 .cursor .st1 {
  fill: #010202;
}
.demoFav .col-md-6 .customCard.w-100 .blocks {
  border-radius: 20rem;
  height: 1rem;
  background-color: #dddddd;
}
.demoFav .col-md-6 .customCard.w-100 .blocks.sm {
  height: 0.5rem;
}
.demoFav .col-md-6 .customCard.w-100 .height-img {
  height: 11vh;
}

.pulse {
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 0 rgba(255, 255, 255, 0.8);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    -webkit-box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    -webkit-box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}