@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");

.custom-cursor {
  cursor: pointer;
}

.pt-20 {
  padding-top: 20px;
}

.pt-70 {
  padding-top: 70px;
}

.text-underline {
  text-decoration: underline !important;
}

.text-blue {
  color: #009DFF;
}

.text-red {
  color: #FA0000;
}

.text-darkBlue {
  color: #193857 !important;
}

.text-darkBlueMore {
  color: #15314B;
}

.text-orange {
  color: #FA7D00;
}

.bg-blueLight {
  background: #C3E7FF;
}

.bg-blue {
  background: #009DFF;
}

.bg-darkBlue {
  background: #193857;
}

.bg-orange {
  background: #FA7D00;
}

.title-design-system {
  font-size: 30px;
  font-weight: bold;
  color: #193857;
}

.bg-error {
  background: #f14141;
}

.btn-darkBlue-outlined.btn-cancel {
  width: 128px;
}

.btn-blue.btn-send, .btn-send.btn-darkBlue, .btn-send.btn-send-command {
  width: 191px;
}

.text-error-value {
  color: #F14141;
}

.text-success-value {
  color: #2cbe8b;
}

.toast.bg-success-alert {
  background: #2cbe8b;
}

.picto-design-system.picto-design-smaller {
  text-align: center;
}
.picto-design-system .picto-dashboard {
  width: 45px;
  height: auto;
  margin-right: 10px;
}
.picto-design-system .picto-dashboard-less {
  width: 40px;
  height: auto;
  margin-right: 10px;
}
.picto-design-system .picto-dashboard-smaller {
  width: 35px;
  height: auto;
  margin-right: 10px;
}

input.text-error-value {
  color: #F14141 !important;
}

.palette-couleur {
  -webkit-writing-mode: vertical-lr;
  height: auto;
}
.palette-couleur .box-shadow {
  padding-top: 30px;
}
.palette-couleur .col-2 {
  text-align: -webkit-right;
  padding: 0 15px 0 15px;
}

.col-20 {
  width: 20%;
}

.p-palette-couleur, .p-palette-couleur-title {
  -webkit-writing-mode: horizontal-tb;
  font-size: 12px;
  padding-left: 5px;
}

.p-palette-couleur-title {
  height: 100%;
  position: absolute;
  top: 0;
}

.paragraph {
  color: #193857;
  font-size: 13px;
}

.modal-content {
  border: none;
  color: #193857;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.08);
}
.modal-content .modal-header {
  border: none;
}
.modal-content .modal-header .modal-title .modal-title-design-system {
  font-size: 16px;
  font-weight: 500;
}
.modal-content .modal-header button.btn-close-design-system {
  background: transparent url("../img/cancel.svg") center/0.8em auto no-repeat;
  background-repeat: no-repeat;
}
.modal-content .modal-body.modal-body-design-system {
  border: none;
  font-size: 14px;
  font-weight: 400;
}
.modal-content .modal-footer.modal-footer-design-system {
  border: none;
  justify-content: space-between;
}

.pos-relative {
  position: relative;
}

.rounded {
  border-radius: 15px !important;
}

.box-shadow {
  box-shadow: 0 13px 45px rgba(0, 0, 0, 0.05);
}

.link-cover-abs {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@-webkit-keyframes pulse {
  0%, 20% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  90%, 100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 20% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  90%, 100% {
    transform: scale(1);
  }
}
.form-line {
  margin-bottom: 30px;
}

.form-control {
  transition: all ease-in-out 0.25s;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #193857;
}
.form-control.active-focus {
  border: 1px solid #193857;
}

.input-with-unite {
  position: relative;
}
.input-with-unite .unite {
  font-size: 14px;
  position: absolute;
  top: 43px;
  right: 25px;
}
.input-with-unite .form-control {
  padding-right: 30px;
}

.radio-custom {
  position: relative;
}
.radio-custom input {
  display: none;
}
.radio-custom label {
  padding-left: 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}
.radio-custom label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #CCCCCC;
  box-shadow: 0 0 0 2px inset #fff;
  position: absolute;
  top: 4px;
  left: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  transition: 0.4s;
  transform: translateX(0px);
}

input:checked + .slider:before {
  transform: translateX(28px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.btn-spec, .btn-link, .btn-darkBlue-outlined, .btn-blue-outlined, .btn-blue, .btn-red, .btn-darkBlue, .btn-send-command {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all ease-in-out 0.25s;
  border-radius: 4px;
}

.btn-blue, .btn-darkBlue, .btn-send-command {
  color: #fff !important;
  font-size: 16px;
  letter-spacing: 0px;
  background: #009DFF;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
}

.btn-red {
  color: #fff !important;
  font-size: 16px;
  letter-spacing: 0px;
  background: red;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
}

.btn-blue.smaller, .smaller.btn-darkBlue, .smaller.btn-send-command {
  width: 155px;
}
.btn-blue img, .btn-red img, .btn-darkBlue img, .btn-send-command img {
  margin-right: 10px;
}

.btn-blue-outlined {
  color: #009DFF;
  font-weight: 500;
  border: 1px solid #009DFF;
}

.btn-darkBlue-outlined {
  color: #193857;
  font-weight: 500;
  border: 1px solid #193857;
}

.btn-link {
  color: #7C828A;
  text-decoration: underline !important;
}

.btn-send-command {
  width: 265px;
  height: 47px;
  font-size: 18px;
}

.btn-darkBlue {
  background-color: #193857;
  color: white;
  width: 250px;
}
.btn-darkBlue.smaller {
  width: 155px;
}
.btn-darkBlue.lighter {
  width: 180px;
}

.wrapper-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper-loader .spinner-border {
  width: 60px;
  height: 60px;
  color: #193857;
  border: 0.4em solid currentColor;
  border-right-color: transparent;
}

.rounded-point-spec, .rounded-point-blue, .rounded-point-green, .rounded-point-red {
  width: 6px;
  height: 6px;
  border-radius: 50px;
  position: absolute;
  top: 46%;
  left: -2px;
  margin-right: 2px;
}

.rounded-point-red {
  background: #FA0000;
}

.rounded-point-green {
  background: #4ED39B;
}

.rounded-point-blue {
  background: #009DFF;
}

.tooltip-inner {
  background: #0C243C no-repeat padding-box;
  opacity: 1;
  font-size: 13px;
  text-align: start;
  border-radius: 4px;
  width: 150px;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #0C243C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: #0C243C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

a.a-cancel {
  color: #777777;
  font-size: 18px;
}

a:focus,
.navbar-toggler,
button,
select {
  outline: none !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrapper-central {
  background: #fff;
  padding-left: 100px;
  padding-right: 30px;
}
.wrapper-central.vertical-menu-open {
  padding-left: 310px;
}
.wrapper-central.vertical-menu-open .vertical-menu {
  width: 280px;
}
.wrapper-central.vertical-menu-open .vertical-menu .toggle-left-nav img {
  transform: rotate(360deg);
}
.wrapper-central.vertical-menu-open .vertical-menu .logo-ramces {
  width: 250px;
}
.wrapper-central.vertical-menu-open .vertical-menu .main-nav a {
  margin-left: 30px;
}
.wrapper-central.vertical-menu-open .vertical-menu .main-nav a span {
  display: inline;
}
.wrapper-central.vertical-menu-open .chart-wrapper .label-visible {
  display: none;
}
.wrapper-central.vertical-menu-close {
  padding-left: 80px;
}
.wrapper-central.vertical-menu-close .vertical-menu {
  width: 60px;
}
.wrapper-central.vertical-menu-close .vertical-menu .toggle-left-nav img {
  transform: rotate(180deg);
}
.wrapper-central.vertical-menu-close .vertical-menu .logo-ramces {
  width: 60px;
  margin-left: 15px;
}
.wrapper-central.vertical-menu-close .vertical-menu .main-nav {
  margin-top: 20%;
}
.wrapper-central.vertical-menu-close .vertical-menu .main-nav a {
  margin-left: 15px;
}
.wrapper-central.vertical-menu-close .vertical-menu .main-nav a span {
  display: none;
}
.wrapper-central.vertical-menu-close .vertical-menu .logout-link {
  margin-left: 15px;
}
.wrapper-central.vertical-menu-close .vertical-menu .logout-link span {
  display: none;
}
.wrapper-central.vertical-menu-close .chart-wrapper .label-hidden {
  display: none;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
}
.top-bar .logo-ramces {
  width: 180px;
}
.top-bar .logo-ramces {
  display: block;
  width: 60px;
  margin-left: 30px;
  height: 45px;
  background: url(../img/logo-ramces.svg) left center no-repeat;
  background-size: 155px auto;
  transition: all ease-in-out 0.25s;
}

.vertical-menu {
  position: fixed;
  left: 0;
  height: 100vh;
  background: #193857;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all ease-in-out 0.25s;
  z-index: 1000;
  width: 800px;
}
.vertical-menu .logout-link,
.vertical-menu .main-nav {
  margin-top: 5%;
}
.vertical-menu .logout-link li a,
.vertical-menu .main-nav li a {
  width: 280px;
  color: white;
}
.vertical-menu .logout-link li a,
.vertical-menu .main-nav li a {
  width: 280px;
}
.vertical-menu .main-nav li {
  padding: 8px 0;
}
.vertical-menu .main-nav li:last-child {
  margin-bottom: 0;
}
.vertical-menu .main-nav li.active {
  background: #15314B;
  width: 100%;
  display: flex;
  align-items: center;
}
.vertical-menu .main-nav a {
  display: block;
  width: 35px;
  margin-left: 30px;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.vertical-menu .main-nav a img {
  margin-right: 15px;
}
.vertical-menu .main-nav a span {
  position: absolute;
  display: none;
  top: 50%;
  left: 45px;
  width: 200px;
  transform: translateY(-50%);
}
.vertical-menu .logout-link {
  display: block;
  width: 60px;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin-left: 30px;
}
.vertical-menu .logout-link img {
  margin-right: 15px;
  width: 25px;
}
.vertical-menu .logout-link img.support-img {
  width: 30px;
}
.vertical-menu .logout-link span {
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
}
.vertical-menu .toggle-left-nav {
  position: absolute;
  right: -28px;
  width: 28px;
  height: 45px;
  border-radius: 0px 4px 4px 0px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.vertical-menu .toggle-left-nav img {
  margin: auto;
  width: 10px;
  height: 16px;
  transform: rotate(180deg);
}

h1 {
  color: #0C243C;
  font-weight: bold;
  font-size: 30px;
  text-align: left;
  margin: 0;
}

h2 {
  color: #0C243C;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 20px;
}

.my-cart, .subtitle {
  color: #0C243C;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  margin: 0 0 20px;
}

.subtitle {
  font-size: 16px;
}

.main-content {
  padding-left: 30px;
  max-width: 1600px;
  padding-top: 30px;
  background: #FFF;
}
.main-content .top-nav .badge {
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  height: 28px;
}
.main-content .top-nav .avatar {
  width: 95px;
  height: 55px;
  margin-right: 30px;
}
.main-content .top-nav .notif {
  margin-right: 30px;
}
.main-content .top-nav .notif img {
  width: 20px;
}
.main-content .top-nav .profile .dropdown-toggle {
  color: #0C243C;
}
.main-content .top-nav .profile .dropdown-toggle img {
  width: 17px;
  margin-right: 5px;
}
.main-content .picto-dashboard {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.main-content .picto-dashboard-less {
  width: 25px;
  height: auto;
  margin-right: 10px;
}
.main-content .picto-dashboard-smaller {
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.plus-container {
  position: fixed;
  bottom: 25px;
  right: 30px;
}
.plus-container:hover .add-choices {
  transform: scale(1);
}
.plus-container .add-choices {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  width: 300px;
  height: 120px;
  border-radius: 7px;
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
  background: #193857;
  transition: all ease-in-out 0.25s;
  transform: scale(0);
  transform-origin: bottom right;
}
.plus-container .add-choices a {
  background: #009DFF;
  display: block;
  align-content: start;
  font-size: 16px;
  padding: 15px 15px;
  background: #193857;
  color: #fff;
  transition: all ease-in-out 0.25s;
}
.plus-container .add-choices a:hover {
  background: #15314B;
}
.plus-container .add-choices a img {
  width: 33px;
  margin-right: 10px;
}
.plus-container .btn-plus {
  background: url(../img/uxui/add.svg) center center no-repeat #009DFF;
  background-size: 23px auto;
  width: 55px;
  height: 55px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: relative;
  z-index: 1000;
}
.plus-container .btn-plus:hover {
  transform: rotate(45deg);
  transition: 0.25s ease-in-out;
}
.plus-container .btn-plus:not(:hover) {
  transform: rotate(90deg);
  transition: 0.25s ease-in-out;
}

.picto-button {
  width: 20px;
  height: 20px;
}

.chart-container {
  text-align: start;
}
.chart-container .chart-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.chart-container .chart-title .absolute-icon {
  position: absolute;
  left: 18px;
  top: 7px;
}
.chart-container .command-section, .chart-container .label-command {
  font-size: 18px;
  color: #0C243C;
  letter-spacing: 0px;
  font-weight: 600;
}
.chart-container .label-command {
  font-size: 14px;
}
.chart-container .label-command.label-command-design-system {
  font-size: 16px;
}
.chart-container select {
  border-radius: 4px;
  border: 1px solid #15314B;
}
.chart-container select option {
  background: #193857 !important;
  color: white;
}
.chart-container select.form-select {
  background-image: url("../img/uxui/down-chevron.svg");
  background-size: auto;
  height: 40px;
}
.chart-container input, .chart-container select {
  border: 1px solid #D8E0E5;
  border-radius: 5px;
  font-size: 15px;
  height: 42px;
  color: #0C243C;
}
.chart-container input.form-check-input {
  height: 24px;
  width: 24px;
}
.chart-container input.form-check-input.switch-toggle {
  width: 48px !important;
  height: 24px !important;
}
.chart-container .input-group-append {
  cursor: pointer;
}
.chart-container .input-group-append .absolute-icon {
  position: absolute;
  top: 12px;
  right: 10px;
}
.chart-container input[type=date]::-webkit-calendar-picker-indicator {
  background: url("../img/uxui/calendar.svg") no-repeat;
}

.date-top input[type=date]::-webkit-calendar-picker-indicator {
  background: url("../img/uxui/calendar.svg") no-repeat;
}

@media all and (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}
@media all and (max-width: 991px) {
  .main-content {
    padding-top: 20px;
  }
  .vertical-menu {
    width: 250px;
    left: -250px;
  }
  .wrapper-central {
    padding-left: 30px;
    padding-right: 30px;
  }
  .wrapper-central .toggle-left-nav img {
    transform: rotate(360deg);
  }
  .top-nav {
    padding-left: 30px;
  }
  h1 {
    font-size: 24px;
    max-width: 70%;
  }
}
@media all and (max-width: 767px) {
  .main-content .top-nav .notif {
    margin-right: 15px;
  }
  .nav-toggle {
    top: 25px;
  }
  .main-content .top-nav .profile .dropdown-toggle img {
    margin-right: 0;
  }
  .wrapper-central {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top-nav {
    padding-left: 45px;
  }
  .homepage .table-container {
    margin-top: 60px;
    padding: 10px 20px 10px 10px;
  }
  .plus-container .add-choices {
    width: 250px;
  }
  .encart-param .caracteristiques-patients {
    font-size: 13px;
  }
  .encart-param .caracteristiques-patients p strong {
    font-size: 14px;
  }
}