@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #eef5f9;
    letter-spacing: -.1px;
    font-size: 14px;
    font-family: "Poppins", Helvetica, Arial, Verdana, sans-serif !important;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #533fd0;
    font-size: 0.9em;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 500;
    font-family: "Poppins", Helvetica, Arial, Verdana, sans-serif;
}

nav.navbar {
    position: relative;
    width: 100%;
    height: 100%;
    background: none;
    /* background: linear-gradient(90deg, #4d2f92 0%, #533fd0 75%); */
    background: linear-gradient(90deg, #3633ce 0%, #533fd0 75%);
    color: rgba(255, 255, 255, 0.8);
}

.topbar-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
}
.navbar-brand {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-brand img {
    transform: scale(0.8);
}

.navbar-brand .regular-logo {
    display: none;
    position: relative;
    top: -0.25em;
}

.navbar-expand .navbar-collapse {
    position: absolute;
    left: 60px;
    top: 0;
    right: 0;
    height: 56px;
    display: flex;
}

@media (min-width: 1200px) {
    .topbar {
        height: 70px;
        font-size: 1em;
        float: left;
    }
    .navbar-brand img {
        transform: none;
    }
    .navbar-expand .navbar-collapse {
        height: 70px;
    }
}

@media (min-width: 1400px) {
    .topbar-left {
        width: 260px;

    }
    .navbar-brand .regular-logo {
        display: initial;
    }
    .navbar-brand .mini-logo {
        display: none;
    }
    .navbar-expand .navbar-collapse {
        left: 260px;
    }
}

.breadcrumb-section {
    position: relative;
    flex-grow: 1;
    height: 100%;
    display: flex;
    user-select: none;
}

.breadcrumb-section .breadcrumb {
    display: flex;
    align-items: center;
    border-radius: 0;
    background: none;
    margin: 0;
    height: 100%;
    white-space: nowrap;
}

.breadcrumb-section .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    padding-left: 0.4em;
}

.breadcrumb-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    text-decoration: none;
}

nav.navbar .dropdown-menu {
    box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    color: inherit;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    margin: 0;
    border-radius: 0 0 4px 4px;
    width: auto;
    font-size: 1em;
}

nav.navbar .dropdown-menu.dropdown-menu-white li {
    border: none;
}
nav.navbar .dropdown-menu.dropdown-menu-white li a {
    display: block;
    color: #795fb6;
    padding: 0.6em 1.7em;
    white-space: nowrap;
}
nav.navbar .dropdown-menu.dropdown-menu-white li a:hover, .dropdown-menu.dropdown-menu-white li a:focus {
    background: rgb(231, 231, 241);
    color: #795fb6;
    text-decoration: none;
}
nav.navbar .dropdown-menu.dropdown-menu-white li.disabled a {
    background: #fff;
    color: #888;
}
nav.navbar .dropdown-menu.dropdown-menu-white li.disabled a:hover {
    background: #fff;
    color: #888;
}
nav.navbar .dropdown-menu.dropdown-menu-white li.disabled.active a {
    background: #7f74d8;
    color: rgba(255, 255, 255, 0.8);
}

nav.navbar .navbar-collapse .user-account {
    position: relative;
    display: flex;
    align-items: center;
    user-select: none;
    height: 100%;
    font-size: 1.1em;
}
nav.navbar .navbar-collapse .user-account > * {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.4em;
    margin: 0 !important;
    border: none;
}
nav.navbar .navbar-collapse .user-account > * > * {
    cursor: pointer;
    display: block;
    white-space: nowrap;
}
nav.navbar .navbar-collapse .user-account a {
    margin: 0 !important;
}
nav.navbar .navbar-collapse .user-account a > * {
    color: #cabaf5 !important;
    position: relative;
}

nav.navbar .navbar-collapse .user-account .dropdown-menu {
    right: 0;
    left: auto;
}

nav.navbar .navbar-collapse .enterprise {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 24px 24px;
    box-sizing: border-box;
    line-height: 1.4em;
}

nav.navbar .user-account .dropdown-toggle::after {
    display: none;
}


nav.navbar .user-account .module .dropdown-menu {
    display: none;
}

nav.navbar .user-account .module.show .dropdown-menu {
    display: block;
}

.modal {
    /* z-index: initial; */
}

.text-white {
    color: #ffffff!important
}

.text-danger {
    color: #fc4b6c!important
}

.text-muted {
    color: #99abb4!important
}

.text-warning {
    color: #ffb22b!important
}

.text-success {
    color: #26c6da!important
}

.text-info {
    color: #1e88e5!important
}

.text-primary {
    color: #7460ee !important
}

.text-inverse {
    color: #2f3d4a!important
}

.text-blue {
    color: #007bff !important;
}
.text-green {
    color: #28a745 !important;
}
.text-red {
    color: #dc3545 !important;
}
.text-yellow {
    color: #ffc107 !important;
}

/*******************
Background Colors
*******************/
.bg-primary {
    background-color: #7460ee !important; }

.bg-success {
    background-color: #26c6da !important; }

.bg-info {
    background-color: #1e88e5 !important; }

.bg-blue {
    background-color: #2962FF !important; }

.bg-warning {
    background-color: #ffb22b !important; }

.bg-danger {
    background-color: #fc4b6c !important; }

.bg-megna {
    background-color: #00897b !important; }

.bg-grey {
    background-color: #cccccc !important; }

.bg-green {
    background-color: #26c6da !important; }

html body .bg-megna {
    background-color: #00897b; }

html body .bg-green {
    background-color: #26c6da; }

html body .bg-indigo {
    background-color: #3F51B5; }

html body .bg-theme {
    background-color: #009efb; }

html body .bg-blue {
    background-color: #2962FF; }

html body .bg-inverse {
    background-color: #2f3d4a; }

html body .bg-purple {
    background-color: #7460ee; }

html body .bg-light-primary {
    background-color: #f1effd; }

html body .bg-light-success {
    background-color: #e8fdeb; }

html body .bg-light-info {
    background-color: #cfecfe; }

html body .bg-light-extra {
    background-color: #ebf3f5; }

html body .bg-light-warning {
    background-color: #fff8ec; }

html body .bg-light-danger {
    background-color: #f9e7eb; }

html body .bg-light-inverse {
    background-color: #f6f6f6; }

html body .bg-light {
    background-color: #f2f4f8; }

html body .bg-white {
    background-color: #ffffff; }

/****************/

html body .text-blue {
    color: #02bec9
}

html body .text-purple {
    color: #7460ee
}

html body .text-primary {
    color: #7460ee
}

html body .text-megna {
    color: #00897b
}

html body .text-dark {
    color: #747d8a
}

html body .text-themecolor {
    color: #7460ee
}

@media (min-width: 1200px) {
    #breadcrumb .dropdown-toggle {
        font-size: 17px;
    }
}

#page_body {
    position: absolute;
    top: 56px;
    left: 60px;
    right: 0;
    height: auto;
    padding: 30px 30px 85px 30px;
    /* padding: 20px 20px 8vh 20px; */
}

@media (max-width: 1399px) {
    #page_body {
        /* padding: 60px 20px 55px 20px; */
    }
}
@media (max-width: 991px) {
    #page_body {
        top: 90px;
    }
}
@media (max-width:1100px) and (min-width:992px) {
    #page_body {
        padding: 60px 20px 85px 20px;
        top:0;
    }
}
@media (max-width:1398px) and (min-width:1101px) {
    #page_body {
        padding: 60px 20px 85px 20px;
        top:20px;
    }
}
@media (min-width: 1400px) {
    #page_body {
        left: 260px;
    }
}

#conteneur_wrapper {
    position: relative;
    /* max-width: 1200px; */
    margin: auto;
}

.vgt-sidebar-area {
    position: fixed;
    top: 56px;
    left: 0;
    width: 60px;
    bottom: 0;
    z-index: 400;
    background: white;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border-right: 1px #eaf0f3 solid;
}

@media (min-width: 1200px) {
    .vgt-sidebar-area {
        top: 70px;
    }
}
@media (min-width: 1400px) {
    .vgt-sidebar-area {
        width: 260px;
    }
}


#vgt-footer {
    position: fixed;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: flex-start;
    bottom: 0;
    right: 0;
    left: 60px;
    height: 40px;
    padding: 0 24px;
    background: white;
    border-left: #d7dfe3 1px solid;
    border-top: #d7dfe3 1px solid;
    box-sizing: border-box;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    color: rgba(29, 29, 97, 0.54);
    z-index: 200;
}
#vgt-footer .dev {
    margin: auto;
    left: 30px;
    position: initial;
}

.quick-access-zone {
    position: fixed;
    left: 60px;
    bottom: 40px;
    right: 0;
    z-index: 200;
    border-left: #d7dfe3 1px solid;
    border-top: #d7dfe3 1px solid;
    box-sizing: border-box;
    background: #f8f7fa;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.quick-access-zone ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 6px;
    padding-right: 6px;
}
.quick-access-zone > ul > li {
    border: none;
    margin: 0;
    padding: 0px 6px;
}
.quick-access-zone > ul > li > a {
    color: #5f6367;
    font-family: "Poppins", Helvetica, Arial, Verdana, sans-serif;
}

@media (min-width: 1400px) {
    #vgt-footer {
        left: 260px;
    }
    .quick-access-zone {
        left: 260px;
    }
}


.vgt-dash-link a {
    text-decoration: none;
    color: #795fb6;
}

.vgt-dash-plan-action-text {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    font-size: 1rem;
    color: #588eef;
}

.badge-orange-9  {
    color: rgba(255, 255, 255, 0.8);
    background-color: #e25429;
}
.badge-blue-3  {
    color: rgba(255, 255, 255, 0.8);
    background-color: #2a9cd1;
}
.badge-green-5 {
    color: #FFFFFF;
    background-color: #4CAF50;
}
.badge-grey-5 {
    color: #FFFFFF;
    background-color: #BDBDBD;
}
#page_body .vgt-delta-client {
    display: block;
    max-height: initial;
}

#page_body .vgt-info {
    display: block;
    max-width: 428px;
    margin: auto;
    padding: 0;
    border: none;
    z-index: initial;
}

@media (min-width: 1400px) {
    #vgt-homepage-info {
        display: none;
    }
}

.card-actions {
    float: right;
}
.card-actions a {
    cursor: pointer;
    color: #67757c;
    opacity: 0.7;
    padding-left: 7px;
    font-size: 13px;
}
.card-actions a:hover {
    opacity: 1;
}
.card {
    background: #fff;
    margin-bottom: 30px;
}

.card .card-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 0px;
}

.card-header.notification-header {
    text-align: left;
    background: rgba(104, 36, 119, 0.1)
}

.card.card-notification {
    width: -webkit-fill-available;
}

#NewThreadMessage_body {
    width: -webkit-fill-available;
}

.card-success {
    background: #26c6da;
    border-color: #26c6da; }

.card-danger {
    background: #fc4b6c;
    border-color: #fc4b6c; }

.card-warning {
    background: #ffb22b;
    border-color: #ffb22b; }

.card-info {
    background: #1e88e5;
    border-color: #1e88e5; }

.card-primary {
    background: #7460ee;
    border-color: #7460ee; }

.card-dark {
    background: #2f3d4a;
    border-color: #2f3d4a; }

.card-megna {
    background: #00897b;
    border-color: #00897b; }

.card-indigo {
    background: #3F51B5;
    border-color: #3F51B5; }

.card-yellow {
    background: #ffb22b;
    border-color: #ffb22b; }

.card-green{
  background: #26C6DA;
  border-color: #26C6DA;
}
#graviteDescription .ui-selected, #frequence .ui-selected {
    background: #ABA0F4;
    color: white;
}
#buttonGraviteDescription{
  color:#533fd0
}
#buttonGraviteDescription:hover {
    color: white;
}
td .colorPicker {
    width: 100% !important;
}
.ui-widget-header {
    border: 1px solid #533fd0;
    background: #533fd0;
    color: #ffffff;
}
.ui-widget-content {
    border: 1px solid #3a3c45;
    background: #222;
    color: #533fd0;
}

.ui-datepicker-calendar > thead {
    color: #d9d9da;
    font-weight: bold;
}

.ui-datepicker-calendar > tbody a {
    text-align: center;
}

.ui-state-default.ui-state-highlight {
    /* color: #b0f !important; */
    color: #0097ff !important;
}
.ui-state-default.ui-state-hover {
    color: #008bff !important;
}
.ui-state-default.ui-state-active {

    color: #d9d9da !important;
    border: 1px solid #333 !important;
    background: #533fd0 !important;
    border-radius: 25px;

}
.ui-state-default:hover {
border: 1px solid #333;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
border: 1px solid #222;
background: #222;
font-weight: normal;
color: #d9d9da;
font-size: 14px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
/* border: 1px solid #3a3c45; */
  /* background: #111; */
  color: #533fd0;
}

.ui-datepicker-today a.ui-state-default.ui-state-highlight {
    color: #d9d9da !important;
    background-color: #d48ff770;
    border-radius: 25px;
}
/* calendar */
.fc-toolbar {
    background-color: #7460ee;
}
#calendar_box table th {
    background-color: #5360ee;
}
#calendar .calendar-change-month {
    color: #5360ee;
}
/* calendar */

.overflow-auto {
    position: relative;
    overflow: auto;
}
.btn,
.btn:hover,
.btn:focus,
.btn:not(:disabled):not(.disabled):focus,
.btn:active,
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled):active:focus {
    display: inline-block;
    font-size: 12px;
    line-height: 1.6em;
    padding: 0.3em 0.7em !important;
    font-weight: normal;
    background: white;
    border-radius: 6px;
    color: #533fd0;
    border: #7461ed 2px solid;
    transition: background-color 0.16s ease-out, color 0.16s ease-out, border-color 0.16s ease-out;
    font-family: inherit;
    box-shadow: none;
    text-align: center;
}
.btn:hover,
.btn:focus,
.btn:not(:disabled):not(.disabled):focus,
.btn:active,
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled):active:focus {
    background: #1c1d61;
    border-color: #1c1d61;
    color: white;
}
.btn-dt,
.btn-dt:hover,
.btn-dt:focus,
.btn-dt:not(:disabled):not(.disabled):focus,
.btn-dt:active,
.btn-dt:not(:disabled):not(.disabled):active,
.btn-dt:not(:disabled):not(.disabled):active:focus {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6em;
    padding: 0.4em !important;
    font-weight: normal;
    background: transparent;
    border-radius: 6px;
    /* color: #533fd0; */
    border: none;
    transition: background-color 0.16s ease-out, color 0.16s ease-out, border-color 0.16s ease-out;
    font-family: inherit;
    box-shadow: none;
    text-align: center;
}
.btn-dt:hover,
.btn-dt:focus,
.btn-dt:not(:disabled):not(.disabled):focus,
.btn-dt:active,
.btn-dt:not(:disabled):not(.disabled):active,
.btn-dt:not(:disabled):not(.disabled):active:focus {
    cursor: pointer;
}
.btn-success {
    color: #00897b;
}
.btn-success:hover {
    color: hsl(174,100%,17%);
}
.btn-success-one {
    color: #26c6da;
}
.btn-success-one:hover {
    color: hsl(187,71%,40%);
}
.btn-info {
    color: #1e88e5;
}
.btn-info:hover {
    color: hsl(208,79%,41%);
}
.btn-warning {
    color: #ffb22b;
}
.btn-warning:hover {
    color: hsl(38,100%,48%);
}
.btn-danger {
    color: #fc4b6c;
}
.btn-danger:hover {
    color: hsl(349,97%,54%);
}

.btn:focus,
.btn:not(:disabled):not(.disabled):focus,
.btn:active, .btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(28, 29, 97, 0.3);
}
.btn.fa::before {
    font-family: FontAwesome;
    font-size: 1.4em;
}
.btn-dt.fa::before {
    font-family: FontAwesome;
    font-size: 1.4em;
}
.btn .fa, .btn.fa::before {
    opacity: 0.7;
    width: 1em;
    height: 1em;
}

.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    background: white;
    color: #533fd0;
    border: #7461ed 2px solid;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn-outline-primary:active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    background: #1c1d61;
    border-color: #1c1d61;
    color: white;
}
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn-outline-primary:active, .btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(28, 29, 97, 0.3);
}

.btn-outline-success,
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):focus,
.btn-outline-success:active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
    background: white;
    color: #26883d;
    border: #28a745 2px solid;
}
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):focus,
.btn-outline-success:active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
    background: #109b30;
    border-color: #109b30;
    color: white;
}
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):focus,
.btn-outline-success:active, .btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(16, 155, 48, 0.3);
}

.btn-outline-info,
.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled):focus,
.btn-outline-info:active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    background: white;
    color: #0a74e6;
    border: #007bff 2px solid;
}
.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled):focus,
.btn-outline-info:active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    background: #0274ee;
    border-color: #0274ee;
    color: white;
}
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled):focus,
.btn-outline-info:active, .btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(2, 116, 238, 0.3);
}

.btn-outline-danger,
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled):focus,
.btn-outline-danger:active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    background: white;
    color: #b42e3b;
    border: #dc3545 2px solid;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled):focus,
.btn-outline-danger:active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    background: #d82e3f;
    border-color: #d82e3f;
    color: white;
}
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled):focus,
.btn-outline-danger:active, .btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(216, 46, 63, 0.3);
}

.btn-outline-warning,
.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled):focus,
.btn-outline-warning:active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    background: white;
    color: #e0b123;
    border: #ffc107 2px solid;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled):focus,
.btn-outline-warning:active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    background: #e6b113;
    border-color: #e6b113;
    color: white;
}
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled):focus,
.btn-outline-warning:active, .btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 4px rgba(230, 177, 19, 0.3);
}

.btn.toggle {
    width: 5em !important;
    height: 1em !important;
    background: #1c1d61;
    border: none !important;
    color: white;
}
.btn.toggle .toggle-group {
    color: inherit;
    background: inherit;
}
.btn.toggle .toggle-group .btn {
    border: none;
    color: inherit;
    background: inherit;
    border: none;
    line-height: 1.3em;
}
.btn.toggle .toggle-group .toggle-handle {
    background: white;
    border: none;
    opacity: 0.3;
}

.form-control::-webkit-input-placeholder    { color: #aaa; }
.form-control:-moz-placeholder              { color: #aaa; }
.form-control::-moz-placeholder             { color: #aaa; }
.form-control:-ms-input-placeholder         { color: #aaa; }
.form-control::-ms-input-placeholder        { color: #aaa; }

.absolutely-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
}

#liens_cp1_cp2_info span.select-item {
    display: none;
}

.questionnaire-form-height {
    max-height: calc(100vh - 121px);
    overflow: auto;
}

.zone-actions.questionnaire-fixed-header-button {
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #D5CFFA;
}