:root {
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: var(--light);
}

/*--- BTN ---*/
.btn {
    border-radius: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--entitled);
    padding: 7px 30px;
}

.btn-primary-yellow {
    background-color: #f29100 !important;
    color: var(--white);
    border: 1px solid var(--entitled);
    padding: 7px 30px;
}

.btn-primary-yellow:hover {
    background-color: #F29100;
    border: 1px solid var(--entitled);
    opacity: .8;
}

.btn-broker {
    background: var(--yellow-light);
    color: var(--white);
    border: 1px solid var(--yellow);
    border-radius: 0;
    padding: 7px 30px;
}

.btn-broker:hover, .add_action_link_broker:hover {
    background-color: var(--yellow-light) !important;
    border: 1px solid var(--yellow-light) !important;
    opacity: .8 !important;
}

.btn-broker:focus, .btn-broker.focus, .add_action_link_broker:focus {
    box-shadow: 0 0 0 0.2rem rgba(246, 200, 51, 0.5) !important;
}

.btn-broker:not(:disabled):not(.disabled):active, .btn-broker:not(:disabled):not(.disabled).active, .show > .btn-broker.dropdown-toggle {
    color: #fff !important;
    background-color: #F29100 !important;
    border-color: #F29100 !important;
}

.btn-secondary-yellow {
    background-color: #faeedd;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 0;
    padding: 7px 30px;
}

.btn-primary:hover {
    background-color: var(--primary);
    border: 1px solid var(--entitled);
    opacity: .8;
}

.btn-secondary {
    background-color: var(--pink);
    color: var(--warning);
    border: 1px solid var(--warning);
    padding: 7px 30px;
}

.btn-secondary:hover {
    background-color: var(--warning);
    border: 1px solid var(--warning);
    color: var(--pink);
    opacity: .8;
}

.btn-tertiary {
    background-color: var(--primary-light);
    color: var(--text);
    border: 1px solid var(--text);
    padding: 7px 30px;
}

.btn-tertiary:hover {
    background-color: var(--text);
    color: var(--primary-light);
    border: 1px solid var(--text);
}

.btn-warning {
    background-color: var(--warning);
    color: var(--white);
    border-color: var(--warning);
}

.btn-warning:hover {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--white);
    opacity: .8;
}

.btn-warning:not(:disabled):not(.disabled):active {
    color: var(--white);
    background-color: var(--warning);
    border-color: var(--warning);
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:focus,
.btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 0, 140, 0.5);
}

.btn-danger {
    background-color: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-sm {
    padding: .25rem .75rem;
}

/*--- HELPERS ---*/
a:hover {
    text-decoration: none;
}

a.text-warning:hover {
    color: var(--warning) !important;
    opacity: .65;
}

hr {
    margin-top: 0;
}

.text-warning {
    color: var(--warning) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.border-warning {
    border-color: var(--warning) !important;
}

.table-60 {
    width: 60%;
}

.img-40 {
    height: 40px;
}

.display-4 {
    font-size: 3.5rem !important;
}

/*--- LOGIN PAGE ---*/
.login {
    height: 100vh;
    min-height: 768px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 150px repeat(7, 1fr) 300px;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: var(--white);
}

.header-login {
    grid-area: 1 / 1 / 2 / 13;
}

.title-login {
    grid-area: 2 / 4 / 4 / 10;
}

.title-login h1 {
    color: var(--warning);
    font-size: 2.25rem;
    font-weight: var(--bold);
    text-transform: uppercase;
}

.title-login h2 {
    color: var(--blue);
    font-size: 1.6rem;
    line-height: 1em;
    font-weight: 300;
}

.title-login h3 {
    color: var(--warning);
    font-size: 1.85rem;
}

.login-group {
    grid-area: 5 / 6 / 9 / 8;
}

.login-group a {
    color: var(--primary);
}

.login-group {
    position: relative;
}

.valid-pic {
    grid-area: 4 / 3 / 5 / 4;
}

.wave-area {
    grid-area: 4 / 9 / 7 / 13;
    overflow: hidden;
}

.img-wave {
    height: 100%;
    vertical-align: bottom;
}

.footer-login {
    grid-area: 9 / 1 / 10 / 13;
}

/*--- FORM-GROUP ---*/
.form-group {
    display: flex;
    flex-direction: column-reverse;
}

.form-group label {
    transition: all 0.3s ease;
    color: var(--gray);
}

.form-group input {
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group input:focus {
    border-color: var(--text);
    caret-color: var(--text);
    background-color: var(--white);
}

.form-group input:focus + label {
    color: var(--text);
}

.form-group input {
    border-radius: 250px;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    box-shadow: var(--box-shadow);
}

label.essential::after {
    content: " *";
}

/*--- FORM CHECK ---*/
.form-check {
    display: flex;
    flex-direction: column-reverse;
    padding-left: 0;
    margin-bottom: 1.8rem;
}

.form-check label {
    color: var(--gray-dark);
}

.custom-control {
    padding-left: 0;
}

.custom-control-label::before {
    display: inline-block;
    right: -2rem;
    left: inherit;
    border-color: var(--warning);
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.35rem;
}

.dashboard .custom-control-label::after {
    display: inline-block;
    right: -2rem;
    left: inherit;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--warning);
    background-color: var(--warning);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("../../assets/img/icones/ico-validate-checkbox.svg");
}

/*--- SELECT ---*/
.custom-select {
    background: url("../../assets/img/icones/ico-select-arrow-down.svg") no-repeat right .75rem center/12px 10px;
    border-radius: 50px;
    /*    color: var(--gray-dark);*/
}

.custom-select:focus {
    box-shadow: var(--box-shadow);
    border-color: var(--text);
}

.custom-select.mini {
    width: 30%;
}

/*--- FORM SWITCH ---*/
.custom-control.custom-switch {
    display: inline-block;
    padding-left: 0;
    padding-right: 2.25rem;
}

.form-group .custom-switch label.custom-control-label {
    color: var(--warning);
}

.custom-switch .custom-control-label::before {
    right: -2.25rem;
    left: inherit;
}

.custom-switch .custom-control-label::after {
    left: inherit;
    right: -1.4rem;
}

.custom-switch .custom-control-label::before {
    border-radius: .35rem;
}

.custom-switch .custom-control-label::after {
    border-radius: .25rem;
    background: url("../../assets/img/icones/ico-switch-cursor.svg") no-repeat center;
}

.custom-switch label::before {
    background-color: var(--light-hover);
}

/*--- DROPDOWN ---*/
.dropdown button:focus {
    box-shadow: none;
}

.dropdown-menu {
    background-color: var(--white);
    border: none;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: var(--dark);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--dark);
    background-color: var(--white);
}

.header-dropdown label {
    color: var(--gray-hover);
}

/*--- ALERT ---*/
.alert-container {
    position: fixed;
    z-index: 100000;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    border-radius: 0;
}

/*--- COMMENTS-DOTS ---*/
td.comment-dots {
    position: relative;
}

.comment-dots button.dropdown-toggle {
    border: none;
    padding: 0;
}

.comment-dots button.dropdown-toggle:focus {
    outline: none;
}

.comment-dots .dropdown-toggle::after {
    position: absolute;
    display: inline-block;
    content: "";
    /*background: url(../../assets/img/icones/ico-comments-dots.svg) no-repeat center;*/
    background: url(../../assets/img/icones/ico-edit.svg) no-repeat center;
    /*background-size: 5px;*/
    background-size: contain;
    top: 0;
    right: 0;
    bottom: 0;
    left: 5px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    width: 20px;
    height: 40px;
}

.comment-dots.print {
    background: url(../../assets/img/icones/ico-print.svg) no-repeat center;
}

.comment-dots.rowspan .dropdown-toggle::after {
    top: 25%;
}

.comment-dots .dropdown-menu {
    position: absolute;
    will-change: transform;
    top: 0px !important;
    left: 0px;
    transform: translate3d(25px, 25px, 0px) !important;
}

/*--- TEMPLATE ---*/
.grid {
    display: grid;
    grid-template-columns: 300px repeat(4, 1fr);
    grid-template-rows: 80px repeat(4, 1fr);
    height: 100vh;
    min-height: 768px;
}

header {
    grid-area: 1 / 1 / 2 / 6;
    padding-left: 345px;
    display: flex;
    align-items: center;
    box-shadow: 3px 2px 3px rgba(0, 0, 0, .15);
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 100;
}

header img {
    max-width: 20px;
    margin: 15px;
}

header h1 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0;
}

.grid > nav {
    grid-area: 1 / 1 / 6 / 2;
    height: 100vh;
    z-index: 1000;
    background-color: var(--secondary);
    border-radius: 0 30px 30px 0;
    position: fixed;
    width: 300px;
    /*    overflow: auto;*/
}

nav .simplebar-track {
    right: 0px !important;
}

.grid > nav .content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.content ul.menu {
    padding-left: 0;
    margin: 0px;
    list-style: none;
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
}

/*
.content ul.menu > li a {
    padding: 15px 15px;
    border-left: 3px solid transparent;
}
*/

.content ul.menu > li img {
    width: 20px;
    height: 28px;
    margin-right: 15px;
}

.content ul.menu > li a {
    display: flex;
    color: var(--white);
    border-left: 3px solid transparent;
}

.content ul.menu > li a:hover {
    background-color: var(--warning-hover);
    border-left: 3px solid var(--warning);
}

.content ul.menu > li.current a {
    background-color: var(--warning-hover);
    border-left: 3px solid var(--warning);
}

.content .disconnect {
    padding: var(--spacer);
    font-size: 1.2rem;
}

.content .disconnect img {
    width: 25px;
    height: 28px;
    margin-right: 15px;
}

.content .disconnect a {
    display: flex;
    color: var(--warning);
    font-weight: var(--bold);
}

/* --- NAV-IS-BURGERED --- */
.nav-is-burgered .grid {
    display: grid;
    grid-template-columns: 55px repeat(4, 1fr);
    grid-template-rows: 80px repeat(4, 1fr);
    height: 100vh;
    min-height: 768px;
}

.nav-is-burgered .grid > nav {
    grid-area: 1 / 1 / 6 / 2;
    height: 100vh;
    z-index: 1000;
    background-color: var(--secondary);
    border-radius: 0 30px 30px 0;
    position: fixed;
    width: 55px;
    overflow: auto;
}

.nav-is-burgered header {
    grid-area: 1 / 1 / 2 / 6;
    padding-left: 100px;
    display: flex;
    align-items: center;
    box-shadow: 3px 2px 3px rgba(0, 0, 0, .15);
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 100;
}

.nav-is-burgered nav .content .logo img.large {
    display: none;
}

.nav-is-burgered nav .content .logo img.mini {
    display: block;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.nav-is-burgered .content ul.menu > li img {
    margin-right: 0px;
}

.nav-is-burgered nav .menu-vote .menu-title {
    display: none;
}

.menu-vote .outils img {
    width: 100%;
}

.nav-is-burgered nav .menu-vote .outils img.large {
    display: none;
}

.nav-is-burgered nav .menu-vote .outils img.mini {
    display: block;
    height: 40px;
}

.nav-is-burgered .menu-vote .menu .dropdown-menu {
    padding-left: 0px !important;
}

.nav-is-burgered .burger {
    transform: rotate(270deg);
}

/*--- MAIN ---*/
main {
    grid-area: 2 / 2 / 6 / 6;
}

/*--- DASHBOARD ---*/
.dashboard {
    border-top: 4px solid var(--border);
    background-color: var(--white);
    margin: 45px 45px 90px;
}

.dashboard .title {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 300;
}

.dashboard .form-group label {
    color: var(--gray-dark);
}

/*--- COL-VOTE ---*/
.col-vote .dropdown-menu {
    transform: translate3d(-50px, 38px, 0px) !important;
    top: 5px !important;
}

/*--- TABLE ---*/
.table-striped thead tr:first-child,
.table-striped tr:nth-child(even) {
    background-color: var(--light) !important;
}

.table-striped tr:nth-child(odd) {
    background-color: var(--white) !important;
}

.table thead th {
    color: var(--gray-hover);
    font-size: .9rem;
    font-weight: 400;
    vertical-align: middle;
}

.table tbody th,
.table tbody td {
    color: var(--info);
    font-size: .9rem;
    vertical-align: middle;
}

/*--- PAGINATION ---*/
.page-link {
    border: none;
    color: var(--gray-hover);
    background-color: var(--white);
}

.page-link:hover {
    color: var(--dark);
}

.page-item.disabled .page-link {
    color: var(--gray);
    background-color: var(--white);
}

.page-item.active {
    color: var(--gray-hover);
}

.page-item a.page-link.page-left::after {
    display: inline-block;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: rotate(90deg);
}

.page-item a.page-link.page-right::after {
    display: inline-block;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: rotate(-90deg);
}

/*--- COL-VOTE ---*/
.percent {
    color: var(--warning);
    display: flex;
    align-items: center;
}

.table-vote .progress {
    height: .35rem;
    background-color: #ffe2f2;
}

.table-vote .progress-bar {
    background-color: var(--warning);
}

/*--- COL-RANKING ---*/
.col-ranking .dropdown-menu.financial {
    top: 12px !important;
    transform: translate3d(-20px, 38px, 0px) !important;
}

.col-ranking .dropdown-menu.monthly {
    min-width: 6rem;
    top: 12px !important;
    transform: translate3d(-10px, 38px, 0px) !important;
}

/*--- COL-RESULTS ---*/
.col-results .dropdown-menu {
    top: 5px !important;
    transform: translate3d(-30px, 38px, 0px) !important;
}

.entitled {
    color: var(--entitled);
    font-size: .9rem;
}

.highlight {
    color: var(--primary);
    font-size: .9rem;
}

.highlight::before {
    content: "\000a0";
}

.col-results .table {
    width: 70%;
}

/*--- COL-ALERTS ---*/
.col-alerts .table {
    width: 55%;
}

.col-requests .table td,
.col-alerts .table td {
    vertical-align: middle;
}

/*--- COL-SETTINGS ---*/
.col-settings .menu > a {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/*-------------------*/
/*------ VOTE -------*/
/*-------------------*/

/* --- HELPERS --- */
.img-50 {
    max-height: 50px;
    height: 50px;
}

.img-60 {
    max-height: 60px;
}

.img-100 {
    max-height: 100px;
}

/* --- LOGIN-PAGE --- */
.col-login-vote .title-login {
    position: relative;
    z-index: 10;
}

.col-login-vote .header-login {
    grid-area: 1 / 1 / 2 / 4;
}

.col-login-vote .login-group {
    grid-area: 5 / 5 / 9 / 9;
}

.col-login-vote .valid-pic {
    grid-area: 2 / 10 / 3 / 11;
}

.col-login-vote .wave-area {
    grid-area: 3 / 9 / 8 / 13;
}

.col-login-vote .footer-login {
    grid-area: 6 / 1 / 10 / 13;
}

.col-login-vote .title-login h1,
.col-login-vote .title-login h2 {
    color: #015BA9;
    text-transform: inherit;
    font-size: 2.6rem;
}

.col-login-vote .title-login h1 {
    font-weight: 700;
}

/* --- TEMPLATE-NAV --- */
/*
.content.menu-vote .logo {
    border-bottom: 1px solid #666fe8;
}
*/
/*

.logo .burger.mini {
    margin-left: 30px;
}
*/

.logo-container {
    border-bottom: 1px solid #666fe8;
    display: flex;
    align-items: center;
}

.nav-is-burgered .logo-container {
    flex-direction: column;
    padding-bottom: 15px;
}

.content.menu-vote .logo img.large {
    display: block;
    width: 100%;
}

.burger {
    cursor: pointer;
    transform: rotate(90deg);
}

nav .burger {
    width: 20px;
}

.content.menu-vote .logo img.mini {
    display: none;
}

.content.menu-vote .outils {
    border-bottom: 1px solid #666fe8;
    border-top: 1px solid #666fe8;
    margin-bottom: 30px;
}

.content.menu-vote ul.menu > li a {
    display: flex;
    color: var(--primary-vote);
    width: 100%;
    padding: 15px;
}

.content.menu-vote ul.menu > li > a:hover {
    background-color: var(--primary);
}

.content.menu-vote ul.menu > li a:hover {
    color: var(--white);
    background-color: var(--primary);
}

.content.menu-vote ul.menu > li a:hover .icone-blue {
    display: none;
}

.content.menu-vote ul.menu > li .icone-white {
    display: none;
}

.content.menu-vote ul.menu > li a:hover .icone-white {
    display: block;
}

.content.menu-vote ul.menu > li.current > a {
    background-color: var(--primary);
}

.content.menu-vote ul.menu > li.current a {
    color: var(--white);
}

.content.menu-vote ul.menu > li.current .icone-blue {
    display: none;
}

.content.menu-vote ul.menu > li.current .icone-white {
    display: block;
}

.menu-vote .nav-link {
    padding: 0px;
}

.menu-vote .dropdown-toggle::after {
    display: none;
}

.menu-vote .menu .dropdown-menu {
    position: inherit !important;
    float: inherit !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    margin: 0px !important;
    padding: 0px 0px 0px 40px !important;
    background-color: #015BA9 !important;
}

.content.menu-vote .menu ul.dropdown-menu.show li a {
    padding: 10px 15px;
}

.menu-vote ul.menu > li:hover ul.dropdown-menu {
    background-color: #015BA9;
}

.menu-vote .menu .dropdown-menu.show li.current a {
    color: var(--white);
    background-color: var(--primary);
    border-left: 3px solid var(--warning);
}

.menu-vote ul.menu .dropdown-menu.show > li.current .icone-blue {
    display: none;
}

.menu-vote ul.menu .dropdown-menu.show > li.current .icone-white {
    display: block;
}

.content.menu-vote .outils img.large {
    display: block;
}

.content.menu-vote .outils img.mini {
    display: none;
}

.content.menu-vote .help {
    border-bottom: 1px solid #666fe8;
}

.content.menu-vote .help img {
    max-width: 20px;
    margin-right: 15px;
}

.content.menu-vote .help a  {
    color: var(--primary-vote);
}

.content.menu-vote .disconnect {
    padding: calc(.5 * var(--spacer));
}

.menu-vote .user {
    padding: calc(.25 * var(--spacer)) calc(.5 * var(--spacer));
    font-weight: 700;
    font-size: 1.275rem;
    border-left: 3px solid transparent;
}

.menu-vote .user:hover, .menu-vote .user.current {
    background-color: var(--primary);
    border-left: 3px solid var(--warning);
}

.menu-vote .user .current {
    background-color: var(--primary);
    border-left: 3px solid var(--warning);
}

.menu-vote .user .mini-id {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background-size: cover !important;
}

.nav-is-burgered .menu-vote .user {
    padding: calc(.25 * var(--spacer)) calc(.1 * var(--spacer));
}

.nav-is-burgered .menu-vote .user .mini-id {
    margin-right: 0px;
}

.current-lang {
    color: var(--primary-vote);
}

.flag {
    height: 20px;
}

.menu-vote .flag-list a:first-child {
    padding-left: 15px;
}

.menu-vote .flag:hover {
    opacity: .85;
}

/* --- TEMPLATE-USER-EDIT --- */
.user-id {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover !important;
}

.user-id .add-picture {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 30px;
    width: 30px;
    background: url(../img/icones/ico-add-picture.svg) no-repeat center;
    background-size: cover;
    border: none;
}

/* --- COL-USER-SHOW --- */
.col-user-show .p {
    color: var(--text);
    font-size: 1.125rem;
}

/* --- TOGGLE SHOW/HIDE PASSWORD --- */
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;

}

.input-group > .input-group-append > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    border-left: none;
    border-color: #ced4da;
}

.fa.fa-eye,
.fa.fa-eye-slash {
    color: var(--primary);
}

.btn-outline-secondary:hover {
    background: var(--primary);
}

.btn-outline-secondary:hover .fa.fa-eye,
.btn-outline-secondary:hover .fa.fa-eye-slash {
    color: var(--white);
}

.btn-outline-secondary:not(:disabled):not(.disabled):active {
    background: var(--primary);
    border-color: #ced4da;
}

.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

/* --- COL-NO-USER --- */
.col-no-user h2 {
    font-weight: 300;
    font-size: 4rem;
    color: var(--primary);
}

.col-no-user img {
    height: 350px;
}

/* --- COL-MAIL-MANAGE --- */
.col-mail-manage .dropdown-item:hover {
    color: var(--warning);
}

.col-mail-manage .table td {
    vertical-align: middle;
}

.col-mail-manage ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/*--- MODAL ---*/
.modal-backdrop {
    background: transparent;
}

.modal.fade:not(.default-modal) .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-25%) translateY(-70%);
}

.modal.show:not(.default-modal) .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-25%) translateY(-70%);
    box-shadow: 0px 15px 30px rgba(206, 212, 218, .35);
}

@media (min-width: 576px) {
    .modal:not(.default-modal) .modal-dialog {
        max-width: 960px;
    }
}

.modal:not(.default-modal) .modal-content {
    border: none;
    border-radius: 0;
    background: var(--white);
}

.modal:not(.default-modal) .modal-header {
    border-bottom: none;
    justify-content: flex-start;
    padding: 1rem 0;
}

.modal:not(.default-modal) .modal-header .img-40:hover {
    opacity: .5;
}

.modal:not(.default-modal) .modal-header button {
    background: none;
    border: none;
}

.modal:not(.default-modal) .modal-body {
    border: 1px solid var(--light-hover);
    border-radius: 10px;
}

#modalEditMailType .modal-body {
    padding: 0px;
}

#modalEditMailType .modal-body textarea {
    min-height: 120px;
}

.modal:not(.default-modal) .modal .title {
    font-size: 1.125rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 0;
}

.modal:not(.default-modal) .modal .custom-select {
    background: url(../../assets/img/icones/ico-select-arrow-down-pink.svg) no-repeat right .75rem center/12px 10px var(--pink);
    border: 1px solid var(--warning);
    color: var(--warning);
    font-size: .875rem;
    height: auto;
}

.modal:not(.default-modal) .modal .custom-select:hover {
    cursor: pointer;
}

.modal:not(.default-modal) .custom-select:focus {
    box-shadow: 0px 15px 30px rgba(236, 0, 140, 0.15);
}

.modal:not(.default-modal) .modal-footer {
    border-top: none;
    justify-content: center;
}

.modal:not(.default-modal) .modal-content .fields {
    border-left: 1px solid var(--light-hover);
}

.modal.default-modal {
    z-index: 20000;
}

.fields .modal-header {
    align-items: center;
    justify-content: space-between;
}

.fields .p {
    font-size: .875rem;
    color: var(--warning);
}

.fields ul {
    list-style: none;
    padding-left: 0;
}

.badge {
    font-weight: 400;
    padding: .5rem .5rem;
    margin: .25rem 0;
}

.badge-warning {
    color: var(--gray-dark);
    background-color: var(--white);
    border: 1px solid var(--warning);
}

button.badge-warning:hover {
    background: var(--warning-hover);
    color: var(--white);
}

/* --- SESSION DE VOTE --- */
.col-vote-new p {
    color: var(--text);
}

.colored-bold b {
    color: var(--warning);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
}

.col-vote-new .session-title input[type="text"]:not(.date) {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--warning);
    background: var(--white);
    height: 90px;
    caret-color: var(--warning);
    font-size: 3.25rem;
    color: var(--warning);
    font-weight: 300;
}

.col-vote-new .session-title input[type="text"]::placeholder {
    color: var(--warning);
    opacity: .5;
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: -15px;
}

.col-vote-new input[type="text"]:focus {
    box-shadow: none;
}

/* --- STEP-2 --- */
.col-vote-new .breadcrumb {
    background-color: transparent;
    padding: .75rem 1rem .75rem 0;
}

.col-vote-new .breadcrumb-item a {
    color: var(--gray);
}

.col-vote-new .breadcrumb li.breadcrumb-item:hover a {
    color: var(--warning);
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--gray);
    content: ">";
}

.col-vote-new .breadcrumb-item.active {
    color: var(--warning);
}

.col-vote-new h3, .stats-graph label {
    font-size: 1.125rem;
    color: var(--text);
}

.col-vote-new .selector {
    position: relative;
    height: 460px;
    /*    overflow-y: auto;*/
    border: 1px solid var(--gray);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
}

.col-vote-new .selector-recap {
    position: relative;
    height: 290px;
}

.col-vote-new .selector .search {
    position: sticky;
    z-index: 10;
    background: var(--white);
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.col-vote-new .selector input[type="search"] {
    width: 100%;
    height: 40px;
    border: none;
    background: #f2f2f2;
    font-size: 1.125rem;
    color: var(--text);
    border-radius: 15px;
}

.col-vote-new .selector input[type="search"]:focus {
    outline-color: rgba(236, 0, 140, .08);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.col-vote-new .selector input[type="search"]::placeholder {
    font-weight: 300;
    color: var(--gray-dark);
    font-size: 1.125rem;
    padding-left: 30px;
    background: url(../img/icones/ico-search.svg) no-repeat center left 5px transparent;
}

.col-vote-new .selector .add-new {
    margin-left: 25px;
    position: relative;
}

.col-vote-new .selector .add-new a::before {
    content: "";
    background: url(../img/icones/ico-add-picture.svg) no-repeat left 10px center;
    position: absolute;
    width: 30px;
    height: 17px;
    left: -21px;
    top: 4px;
}

.col-vote-new .selector .add {
    position: sticky;
    z-index: 10;
    background: var(--white);
    right: 0;
    bottom: 0;
    left: 0;
}

.col-vote-new .selector .simplebar-track {
    right: 5px !important;
}

.col-vote-new .selector ul {
    list-style: none;
    padding-left: 0;
}

.col-vote-new .selector li:hover:not(.disabled) {
    background: var(--pink);
}

.col-vote-new .selector li.disabled label {
    color: var(--white) !important;
}

.col-vote-new .selector li.disabled {
    background: var(--gray-hover);
}

.col-vote-new .selector li.disabled,
.col-vote-new .selector li.disabled label,
.col-vote-new .selector li.disabled input {
    cursor: not-allowed;
}

.col-vote-new .selector li.disabled label::before {
    border-color: var(--gray);
}

.col-vote-new .selector li label {
    color: var(--gray);
}

.col-vote-new .selector li:hover label {
    color: var(--warning);
}

.col-vote-new .custom-control {
    padding-left: 30px;
}

.col-vote-new .custom-control-label::before {
    display: inline-block;
    left: -2rem;
    right: inherit;
    border-color: var(--warning);
}

.col-vote-new .custom-control-input:checked ~ .custom-control-label.toggle::before {
    background-color: var(--warning);
}

.col-vote-new .custom-control-label.toggle::after {
    display: inline-block;
    left: -1.9rem;
    right: inherit;
}

.col-vote-new .custom-checkbox .custom-control-label::before {
    border-radius: 0.35rem;
}

.col-vote-new .custom-control-label::after {
    display: inline-block;
    left: -2rem;
    right: inherit;
}

.col-vote-new .custom-control-input:checked ~ .custom-control-label::before {
    color: var(--white);
    border-color: var(--warning);
    background-color: transparent;
}

.col-vote-new .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-check-vote.svg) no-repeat center;
    background-size: cover;
}

.col-vote-new .results.selected-gestionnaires {
    border: none;
    box-shadow: none;
}

.col-vote-new .results {
    height: auto;
    border: 1px solid var(--gray);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
}

.col-vote-new .results .item-contact {
    position: relative;
    display: inline-block;
    color: var(--warning);
    border: 1px solid var(--warning);
    background: var(--pink);
    border-radius: 15px;
}

.col-vote-new .results .item-contact span img {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -5px;
    right: -5px;
    transition: all ease-in-out .5ms;
}

.col-vote-new .results .item-contact span img:hover {
    transform: scale(1.2);
}

/* --- STEP-3 --- */
.col-vote-new .date {
    max-width: 255px;
}

.col-vote-new .date.select {
    color: var(--warning);
    font-size: 1.25rem;
    border: 1px solid var(--warning);
    border-radius: 15px;
    background: var(--pink) url('../img/icones/ico-select-arrow-down-pink.svg') no-repeat right 20px center;
    background-size: 20px;
}

.recap .date.select {
    font-size: 1rem;
}

.col-vote-new .date.unselect {
    color: var(--gray);
    font-size: 1.25rem;
    border: 1px solid var(--gray);
    border-radius: 15px;
    background: url('../img/icones/ico-select-arrow-down-gray.svg') no-repeat right 20px center;
    background-size: 20px;
}

.col-vote-new .small {
    color: var(--gray);
}

/* --- DATEPICKER --- */
.my-datepicker {
    position: relative;
}

.container-date {
    position: relative;
}

.container-date .mask, .mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    cursor: not-allowed;
}

.datepicker,
.datepicker-range .datepicker {
    margin: auto;
    margin-bottom: 15px;
    border-radius: 15px;
    min-height: 272px;
}

.datepicker .datepicker--nav-action:hover,
.datepicker .datepicker--nav-action:hover,
.datepicker-range .datepicker .datepicker--nav-action:hover {
    background: var(--pink) !important;
}

.datepicker .datepicker--nav-action:hover path,
.datepicker-range .datepicker .datepicker--nav-action:hover path {
    stroke: var(--warning) !important;
}

.datepicker .datepicker--nav-title,
.datepicker-range .datepicker .datepicker--nav-title {
    font-size: 1.25rem;
    color: var(--gray) !important;
}

.datepicker .datepicker--nav-title:hover,
.datepicker-range .datepicker .datepicker--nav-title:hover {
    background: var(--pink) !important;
    color: var(--warning) !important;
}

.datepicker .datepicker--nav-title i,
.datepicker-range .datepicker .datepicker--nav-title i {
    color: var(--gray) !important;
}

.datepicker .datepicker--nav-title:hover i,
.datepicker-range .datepicker .datepicker--nav-title:hover i {
    background: var(--pink) !important;
    color: var(--warning) !important;
}

.datepicker .datepicker--day-name,
.datepicker-range .datepicker .datepicker--day-name, .datepicker--day-name {
    color: var(--warning) !important;
}

.datepicker .datepicker--cell.-current-, .datepicker .datepicker--cell.-current-,
.datepicker-range .datepicker .datepicker--cell.-current- {
    color: var(--warning) !important;
}

.datepicker .datepicker--cell.-selected-, .datepicker--cell.-selected-.-current-, .datepicker .datepicker--cell.-selected- {
    color: var(--white) !important;
    background: var(--warning) !important;
    border-radius: 15px;
}

.datepicker .datepicker--cell.-focus- {
    background: var(--pink) !important;
    color: #4a4a4a;
}

.datepicker .datepicker--cell.-selected-.-focus- {
    border: 1px solid var(--warning) !important;
}

/* --- DATEPICKER RANGE --- */
.datepicker-range .datepicker .datepicker--cell.datepicker--cell-day.-focus- {
    background: var(--pink) !important;
    color: #4a4a4a;
}

.datepicker-range .datepicker .datepicker--cell.datepicker--cell-day.-focus- {
    background: var(--pink) !important;
    color: #4a4a4a;
}

.datepicker-range .datepicker .datepicker--cell.-range-from- {
    border: 1px solid rgba(236, 0, 140, .5);
    border-radius: 4px 0 0 4px;
}

.datepicker-range .datepicker .datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
    color: var(--white) !important;
    background: var(--warning) !important;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.datepicker-range .datepicker .datepicker--cell.-in-range- {
    background: var(--warning) !important;
    color: var(--white);
    border-radius: 0;
}

.datepicker-range .datepicker .datepicker--cell.-range-from- {
    border: 1px solid rgba(236, 0, 140, .5);
    background: var(--warning) !important;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

}

.datepicker-range .datepicker .datepicker--cell.-range-to- {
    border: 1px solid rgba(236, 0, 140, .5);
    background: var(--warning) !important;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

}

/* --- STEP-4 --- */
.col-vote-new .custom-select {
    background: url("../../assets/img/icones/ico-select-arrow-down-pink.svg") no-repeat right .75rem center/12px 10px var(--pink);
    border-radius: 15px;
    border-color: var(--warning);
    color: var(--warning);
}

.col-vote-new .custom-select:focus {
    box-shadow: var(--box-shadow);
    border-color: var(--warning);
}

.col-vote-new .custom-select.mini {
    width: 30%;
}

.col-vote-new .product-select {
    background: #f2f2f2;
    border-radius: 15px;
}

.col-vote-new .results.selected-prestataires {
    border: none;
    box-shadow: none;
}

/* --- STEP-5 --- */
.col-vote-new .results.themes {
    max-height: 230px;
}

.col-vote-new .results .choice-theme {
    color: var(--text);
    font-size: 1.25rem;
}

.col-vote-new .results .choice-theme .mandatory {
    color: var(--warning);
    font-size: 1rem;
}

/* --- STEP-5BIS --- */
.col-vote-new .selector.department {
    box-shadow: none;
    border: none;
    border-radius: 0px;
    height: auto;
}

.col-vote-new .selector.department li {
    border-radius: 15px;
}

.col-vote-new .selector.department li a {
    color: var(--gray);
}

.col-vote-new .selector.department li:hover {
    background: var(--pink);
}

.col-vote-new .selector.department li:hover a {
    color: var(--warning);
}

.col-vote-new .selector.department li .custom-checkbox:focus {
    border-radius: 15px;
}

.col-vote-new .results.selected-votants {
    border: none;
    box-shadow: none;
}

/* --- STEP-6 --- */
.progress-circle {
    width: 50px;
    height: 50px;
    background: none;
    position: relative;
}

.progress-circle::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid var(--pink);
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress-circle .progress-left {
    left: 0;
}

.progress-circle .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress-circle .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress-circle .progress-right {
    right: 0;
}

.progress-circle .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress-circle .progress-value {
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle .progress-value div {
    font-size: .75rem;
}

.table-fixed {
    max-height: 500px;
    overflow-y: auto;
}

/* --- REORDER --- */
.table-voter th {
    position: relative;
}

.table-voter .reorder {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10px;
    right: 20px;
    background: url(../img/icones/ico-reorder.svg) no-repeat center;
    background-size: 10px;
}

.table-voter .reorder:hover {
    opacity: .5;
}

/* --- STEP-6BIS --- */
.table-voter .percent {
    color: var(--warning);
    display: inline-flex;
    align-items: center;
}

/* --- RANGESLIDER --- */
.rangeslider {
    background: var(--pink);
    box-shadow: none;
}

.rangeslider--horizontal {
    height: 5px;
    width: 220px;
}

.rangeslider__fill {
    background: var(--warning);
    position: absolute;
    box-shadow: none;
}

.rangeslider--horizontal .rangeslider__handle {
    top: -4px;
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.rangeslider__handle {
    background: white;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: 13px;
    height: 13px;
    position: absolute;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…Igd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g);
    background-size: 100%;
    background: var(--warning);
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.rangeslider__handle:after {
    display: none;
}

/* --- RECAP --- */
.recap .results {
    position: relative;
}

.recap .results h4 {
    color: var(--text);
    font-size: 1.125rem;
}

.recap .results h4.h5 {
    font-size: 1.075rem;
}

.recap .recap-title {
    font-size: 1.625rem;
    font-weight: 300;
}

.recap .results .dots {
    position: relative;
}

.recap .results .dots button.dropdown-toggle {
    border: none;
    padding: 0;
}

.recap .results .dots button.dropdown-toggle:focus {
    outline: none;
}

.recap .results .dots .dropdown-toggle::after {
    position: absolute;
    width: 20px;
    height: 40px;
    content: "";
    background: url(../../assets/img/icones/ico-edit.svg) no-repeat right;
    background-size: contain;
    top: -10px;
    right: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
}

.recap .results .dots .dropdown-menu {
    position: absolute;
    will-change: transform;
    top: 0px !important;
    left: auto !important;
    right: 0;
    transform: translate3d(-10px, 10px, 0px) !important;
}

.recap .results .label-recap-date {
    color: var(--gray);
}

.recap .results ul.presta {
    list-style: none;
    padding-left: 0;
    /*height: 300px;*/
    overflow: auto;
}

.recap .results ul.rules {
    /*height: 160px;*/
    overflow: auto;
}

.change-role-display {
    color: var(--gray);
    cursor: pointer;
}

.change-role-display.current {
    color: var(--info);
    background: var(--pink);
}

.rules h4 {
    color: var(--text);
    font-size: 1.125rem;
}

button.bouton,
a.bouton {
    border: none;
}

.bouton {
    position: relative;
    margin: 0px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: .750rem;
}

.bouton.prev {
    background: var(--pink);
    color: var(--warning);
}

button.bouton.prev:hover,
a.bouton.prev:hover {
    background: var(--warning);
    color: var(--pink);
}

.bouton.next {
    background: var(--primary);
    color: var(--white);
}

.bouton.next:hover {
    background: var(--primary);
    color: var(--white);
    opacity: .65;
}

.bouton::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
}

.bouton:hover {
    background: #0585e8;
}

/* Arrow Buttons */
/* ------------- */
.next::after,
.prev::after {
    border-style: solid;
}

/* Next Button */
/* ----------- */
.next::after {
    right: -24px;
    border-width: 12px;
    border-color: transparent transparent transparent var(--primary);
}

.next:hover::after {
    border-color: transparent transparent transparent var(--primary);
}

/* Prev Button */
/* ----------- */
.prev::after {
    left: -24px;
    border-color: transparent var(--pink) transparent transparent;
    border-width: 12px;
}

.prev:hover::after {
    border-right-color: var(--warning);
}

.recap .results ul.recap-themes {
    /*height: 230px;*/
    list-style: none;
    padding-left: 0;
}

.recap .results ul.recap-votants {
    /*height: 330px;*/
    list-style: none;
    padding-left: 0;
}

/* --- COL-SUCCESS --- */
.col-success .success-message {
    box-shadow: 0 -40px 40px 10px #ffffff;
    background: #ffffff;
}

.col-success .success-message p b {
    color: var(--warning);
    font-style: italic;
    font-size: 1.125rem;
    font-weight: 500;
}

/* --- CREATION DE SESSION --- */
ol.create-session {
    list-style: none;
    padding-left: 0px;
}

ol.create-session li::before {
    content: "";
    display: inline-block;
    margin-right: 15px;
    width: 10px;
    height: 10px;
    border-radius: 250px;
    background: var(--warning);
}

ol.create-session li {
    color: var(--text);
}

ol.create-session .bouton.next {
    background: var(--warning);
    color: var(--pink);
    padding: 5px 10px;
    font-weight: 700;
}

ol.create-session .next::after {
    right: -28px;
    border-width: 14px;
    border-color: transparent transparent transparent var(--warning);
}

/* --- USER-VOTE --- */
/* --- STEP-1 --- */
.col-user-connect {
    height: calc(100vh - 92px);
    min-height: 570px;
    position: relative;
    overflow-x: hidden;
}

.col-user-connect a {
    color: var(--primary);
}

.col-user-connect .tick {
    position: absolute;
    top: 5%;
    right: 20%;
    height: 100px;
    width: 100px;
}

.col-user-connect .graph {
    position: absolute;
    bottom: 50%;
    right: -250px;
    max-height: 300px;
    width: 50%;
}

/* --- STEP-2 --- */
.session .title {
    font-size: 2rem;
}

.col-welcome {
    height: calc(100vh - 92px);
    min-height: 570px;
    position: relative;
    overflow-x: hidden;
}

.col-welcome .intro {
    position: relative;
    z-index: 10;
}

.col-welcome .p {
    color: var(--text);
    font-size: 1.625rem;
    font-weight: 300;
}

.col-welcome .p b {
    font-weight: 600;
}

/* --- TICK & GRAPH --- */
.tick {
    position: absolute;
    top: 5%;
    left: 15%;
    height: 100px;
    width: 100px;
    z-index: 1;
}

.graph {
    position: absolute;
    bottom: 20%;
    right: -250px;
    width: 50%;
    z-index: 1;
}

/* --- STEP-3 --- */
.dashboard-vote {
    border-top: 4px solid var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    margin: 45px 45px;
    position: relative;
    z-index: 10;
}

.dashboard-vote .title {
    font-size: 1.5rem;
    color: var(--text);
}

.table-session-vote .progress {
    height: .35rem;
    background-color: #ffe2f2;
}

.table-session-vote .progress-bar {
    background-color: var(--warning);
}

.table-session-vote th,
.table-stats-theme th {
    position: relative;
}

.table-session-vote .reorder,
.table-stats-theme .reorder {
    /*position: absolute;*/
    width: 20px;
    height: 20px;
    /*top: 50%;*/
    /*right: 10%;*/
    /*transform: translateY(-50%);*/
    background: url(../img/icones/ico-reorder.svg) no-repeat center;
    background-size: 10px;
}

.table-session-vote .reorder.reorder-up,
.table-stats-theme .reorder.reorder-up {
    background: url(../img/icones/ico-reorder-up.svg) no-repeat center;
    background-size: 10px;
}

.table-session-vote .reorder.reorder-down,
.table-stats-theme .reorder.reorder-down {
    background: url(../img/icones/ico-reorder-down.svg) no-repeat center;
    background-size: 10px;
}

.table-session-vote .reorder:hover,
.table-stats-theme .reorder:hover {
    opacity: .5;
}

/* --- STEP-4 --- */
.gestion .rangeslider {
    background: rgba(95, 194, 255, .1);
    box-shadow: none;
}

.gestion .rangeslider__fill {
    background: var(--primary);
    opacity: 1;
}

.gestion .rangeslider__handle {
    background: var(--primary);
}

#addPrestaModal .modal-dialog {
    transform: translateX(-50%) translateY(-50%);
}

/* --- STEP-5 --- */
.px-130 {
    padding-left: 130px !important;
}

.px-130 {
    padding-right: 130px !important;
}

.border-right {
    border-right: 1px solid var(--gray);
}

.table-hover tbody tr:hover {
    color: inherit;
    background-color: rgba(236, 0, 140, 0.075) !important;
}

.table-session-vote tr.no-point th,
.table-session-vote tr.no-point .percent {
    color: var(--gray);
}

.table-session-vote tr.no-point .percent .rangeslider,
.table-session-vote tr.no-point .percent .rangeslider__fill,
.table-session-vote tr.no-point .percent .rangeslider__handle {
    background: var(--gray);
}

.custom-3 .custom-control-label::after {
    right: -0.85rem;
    left: inherit;
}

.custom-3 .custom-control-label::before {
    right: -0.85rem;
}

.custom-3 .custom-control-input:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-custom-check-3.svg) no-repeat;
    background-size: cover;
    top: 1px;
    right: -20px;
    width: 20px;
    height: 15px;

}

.custom-checkbox.custom-3 .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: var(--gray);
}

.custom-checkbox.custom-3 .custom-control-input:disabled:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-custom-check-3-disabled.svg) no-repeat;
    background-size: cover;
}

.custom-3 .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--warning);
    background-color: transparent;
}

.table-session-vote td .percent {
    position: relative;
}

.table-session-vote td .percent .mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
}

.comment {
    font-size: .875rem;
    font-weight: 600;
    color: var(--info);
}

.comment textarea {
    border-radius: 20px;
}

/* --- ALERT-MANAGEMENT --- */
.alert-management {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--white);
    box-shadow: 0px 15px 30px rgba(206, 212, 218, .35);
    visibility: hidden;
}

.alert-management.active {
    visibility: visible;
}

.alert-management button[type="button"] {
    border: none;
    background: none;
}

.alert-management .message {
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
}

.alert-management .img-40:hover {
    opacity: .85;
}

/* --- STEP-6 --- */
.star-rating, .star-rating-interaction {
    line-height: 32px;
    font-size: 1.25em;
}

.star-rating .fa-star, .star-rating-interaction .fa-star {
    color: var(--warning);
}

.fa.fa-star-o {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: var(--warning);
}

.observation {
    width: 25px;
    height: 25px;
    margin-left: 25px;
}

.observation-vide {
    background: url(../img/icones/ico-observation-grey.svg) no-repeat center;
}

.observation-plein {
    background: url(../img/icones/ico-observation.svg) no-repeat center;
}

/* --- ALERT-OBSERVATION --- */
.alert-observation {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--white);
    box-shadow: 0px 15px 30px rgba(206, 212, 218, .35);
    visibility: hidden;
}

.alert-observation.active {
    visibility: visible;
}

.alert-observation button[type="button"] {
    border: none;
    background: none;
}

.alert-observation p {
    font-weight: 700;
}

.alert-observation p b {
    font-size: 1.5rem;
    font-weight: 500;
}

.alert-observation span.text-gray {
    font-weight: 500;
    font-style: italic;
}

.alert-observation .message {
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
}

.alert-observation .img-40:hover {
    opacity: .85;
}

/* --- SESSION VOTE --- */
.dropdown-session-filter.show .dropdown-menu {
    min-width: 284px !important;
}

/* --- TABLE-SUIVI --- */
.table-suivi .comment-dots .dropdown-item:hover {
    color: var(--warning);
}

.table-suivi .progress {
    height: .35rem;
    background-color: #ffe2f2;
}

.table-suivi .progress-bar {
    background-color: var(--warning);
}

.table-suivi .custom-control {
    padding-left: 30px;
}

.table-suivi .custom-control-label::before {
    display: inline-block;
    left: -2rem;
    right: inherit;
    border-color: var(--warning);
}

.table-suivi .custom-checkbox .custom-control-label::before {
    border-radius: 0.35rem;
}

.table-suivi .custom-control-label::after {
    display: inline-block;
    left: -2rem;
    right: inherit;
}

.table-suivi .custom-control-input:checked ~ .custom-control-label::before {
    color: var(--white);
    border-color: var(--warning);
    background-color: transparent;
}

.table-suivi .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-check-vote.svg) no-repeat center;
    background-size: cover;

}

/* --- MODAL-COMMENTS --- */
.modal-comments .modal-body {
    border-radius: 0;
    border: none;
    padding: 0;
}

.modal-comments .modal-dialog-scrollable {
    max-height: 480px;
}

.modal-comments .comments {
    position: relative;
}

.modal-comments .comments .comments-dots {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 25px;
    height: 25px;
}

.modal-comments .comments .comments-dots button {
    border: none;
}

.modal-comments .comments .comments-dots button:focus {
    outline: none;
}

.modal-comments .comments .comments-dots button.dropdown-toggle::after {
    position: absolute;
    content: "";
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    display: inline-block;
    content: "";
    background: url(../../assets/img/icones/ico-comments-dots.svg) no-repeat center;
    background-size: 5px;
    border: none;
}

.vote-other-after-submit {
    cursor: pointer;
}

.badge-save {
    background: rgba(0, 0, 0, 0.10);
    padding: 2px 10px;
    color: #005BA8;
    font-weight: 600;
    border-radius: 60px;
    font-size: 0.75rem;
}

.w500px {
    width: 500px;
}

ol.container-global-step {
    list-style: none;
    padding-left: 0px;
    display: flex;
}

.presentation ol.container-global-step li,
ol.container-global-step li {
    color: var(--text);
}
.presentation ol.container-global-step.broker li,
ol.container-global-step li {
    color: var(--yellow);
}

ol.container-global-step li {
    position: relative;
    font-size: .75rem;
    text-align: center;
    color: var(--gray);
    padding: 10px 5px;
}

ol.container-global-step li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 250px;
    background: var(--gray);
    position: absolute;
    z-index: 9;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.presentation ol.container-global-step li .step::before,
ol.container-global-step li.active .step::before {
    content: "";
    background: url('../img/icones/ico-arianne-step.svg') no-repeat center;
    height: 15px;
    width: 15px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.presentation ol.container-global-step.broker li .step::before,
ol.container-global-step.broker li.active .step::before {
    content: "";
    background: url('../img/icones/ico-arianne-step-broker.svg') no-repeat center;
    height: 15px;
    width: 15px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.presentation ol.container-global-step li .step::before,
ol.container-global-step li.active .step::before {
    display: none;
}

.presentation ol.container-global-step li:first-child .step::before,
ol.container-global-step li.active .step::before {
    display: block;
}

ol.container-global-step li .final::before {
    content: "";
    background: url('../img/icones/ico-arianne-final.svg') no-repeat center;
    height: 20px;
    width: 30px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
ol.container-global-step.broker li .final::before{
    background: url('../img/icones/ico-arianne-final-broker.svg') no-repeat center;
}
ol.container-global-step li.active .final::before {
    background: url('../img/icones/ico-arianne-final-active.svg') no-repeat center;
}
ol.container-global-step.broker li.active .final::before {
    background: url('../img/icones/ico-arianne-final-broker-active.svg') no-repeat center;
}

.presentation ol.container-global-step li::before,
ol.container-global-step li::before {
    background: var(--text);
}

.presentation ol.container-global-step.broker li::before,
ol.container-global-step.broker li::before {
    background: var(--yellow);
}

ol.container-global-step li::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--gray);
    display: block;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
}

.presentation ol.container-global-step li::after,
ol.container-global-step li::after {
    background: var(--text);
}
.presentation ol.container-global-step.broker li::after,
ol.container-global-step.broker li::after {
    background: var(--yellow);
}

ol.container-global-step li:first-child::after {
    left: 50%;
    width: 50%;
}

ol.container-global-step li:last-child::after {
    right: 50%;
    width: 50%;
}

ol.container-global-step li a {
    color: var(--text);
}

ol.container-global-step li.active:first-child {
    color: var(--text);
}
ol.container-global-step.broker li a {
    color: var(--yellow);
}

ol.container-global-step.broker li.active:first-child {
    color: var(--yellow);
}

ol.container-global-step li.active ~ li a {
    color: var(--gray);
}

ol.container-global-step li.active ~ li::before {
    background: var(--gray);
}

ol.container-global-step li.active ~ li::after {
    background: var(--gray);
}

ol.container-global-step li.active::after {
    background: -webkit-linear-gradient(left, #015ba9 50%, #c5c5c5 50%);
    background: -moz-linear-gradient(left, #015ba9 50%, #c5c5c5 50%);
    background: -ms-linear-gradient(left, #015ba9 50%, #c5c5c5 50%);
    background: linear-gradient(left, #015ba9 50%, #c5c5c5 50%);
}

ol.container-global-step.broker li.active::after {
    background: -webkit-linear-gradient(left, #f29100 50%, #c5c5c5 50%);
    background: -moz-linear-gradient(left, #f29100 50%, #c5c5c5 50%);
    background: -ms-linear-gradient(left, #f29100 50%, #c5c5c5 50%);
    background: linear-gradient(left, #f29100 50%, #c5c5c5 50%);
}

ol.container-global-step li.active:first-child::after {
    background: var(--gray);
}

ol.container-global-step li.active:last-child::after {
    background: var(--text);
}
ol.container-global-step.broker li.active:last-child::after {
    background: var(--yellow);
}
/*
.container-global-step .badge{
    color: var(--white);
    border: 1px solid var(--entitled);
    background-color: var(--primary);
    height: 55px;
}
.container-global-step .badge.active{
    color: var(--warning);
    border: 1px solid var(--warning);
    background-color: var(--pink);
}
*/

/** INTERACTION **/

.col-interaction h3 {
    font-size: 1.125rem;
    color: var(--text);
}

.col-interaction .selector {
    height: 460px;
    overflow-y: scroll;
    border: 1px solid var(--gray);
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
}

.col-interaction .selector ul {
    list-style: none;
    padding-left: 0;
}

.col-interaction .selector li:hover {
    background: var(--pink);
}

.col-interaction .selector li label {
    color: var(--gray);
}

.col-interaction .selector li:hover label {
    color: var(--warning);
}

.col-interaction .custom-control {
    padding-left: 30px;
}

.col-interaction .custom-control-label::before {
    display: inline-block;
    left: -2rem;
    right: inherit;
    border-color: var(--warning);
}

.col-interaction .custom-checkbox .custom-control-label::before {
    border-radius: 0.35rem;
}

.col-interaction .custom-control-label::after {
    display: inline-block;
    left: -2em;
    right: inherit;
}

.col-interaction .form-group .custom-switch label.custom-control-label {
    color: var(--gray);
}

.col-interaction .custom-control-input:checked + .custom-control-label {
    color: var(--warning) !important;
}

.col-interaction .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-check-vote.svg) no-repeat center;
    background-size: cover;
}

.custom-checkbox.multiple-choices .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url(../../assets/img/icones/ico-validate-checkbox.svg);
    background-size: 70%;
}

.blink-warning {
    -webkit-animation: 0.5s linear infinite condemed_blink_effect;
    margin-left: 5px;
/ / pour Safari 4.0 - 8.0 animation: 0.5 s linear infinite condemed_blink_effect;
}

@-webkit-keyframes condemed_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

@keyframes condemed_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

ul.interaction {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 22px 0;
    border-radius: 3px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 15px;
    margin-left: -1px;
    line-height: 1.57142857;
    color: #0c0500;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #c8cfd1;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #89bceb;
    background-color: #e3e7e9;
    border-color: #c8cfd1;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #62a8ea;
    border-color: #62a8ea;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #ccd5db;
    pointer-events: none;
    cursor: not-allowed;
    background-color: transparent;
    border-color: #c8cfd1;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 18px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 6px 13px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

tr.broker-vote-list.active {
    background-color: rgba(236, 0, 140, 0.1) !important;
}

.display-vote-themes {
    cursor: pointer;
}

.nav-link.active {
    font-weight: bold;
}

/* --- STATS --- */
.stats .nav {
    background: var(--white);
}

.stats .nav .nav-item .active {
    background: var(--white);
}

.stats .nav .nav-item:hover {
    background: var(--white);
}

.stats .nav .nav-item:hover .nav-link {
    color: var(--text);
}

.stats .nav .nav-item .nav-link {
    color: var(--gray-hover);
}

.stats .nav .nav-item .nav-link.active {
    color: var(--text);
}

.stats .nav .nav-item:first-child .nav-link.active {
    color: var(--text);
}

.stats .nav .nav-item:last-child .nav-link {
    border-right: none;
}

.stats .nav .nav-item:last-child {
    background: var(--white);
}

.stats .nav .nav-item:last-child .nav-link {
    color: var(--primary);
}

.stats .nav .nav-item:last-child:hover .nav-link {
    opacity: .85;
}

.dashboard.stats h3 {
    color: var(--text);
}

.stats .table-recap tr:first-child th,
.stats .table-recap tr:first-child td {
    border-top: none;
}

/* --- SCROLLBAR --- */
.simplebar-track {
    right: -10px !important;
}

.simplebar-track.simplebar-vertical {
    width: 8px !important;
}

.simplebar-scrollbar::before {
    background: var(--warning) !important;
}

.col-vote-new .selector li.title {
    color: #ec008c;
    font-size: 1.1em;
}

li.undeselectable label:before,
li.undeselectable label:after {
    display: none !important;
}

.container-arrow {
    padding-left: 10px;
    padding-right: 10px;
}

/* --- MODAL RECAP INCIDENT --- */
#recapModal.modal.recap-modal .recap .results {

    border: 1px solid var(--border) !important;
    border-radius: 15px !important;

}

/* --- Votant pointsVoteThème --- */
.broker-list-item.icon-check {
    background-size: cover;
    width: 20px;
    height: 15px;

}

.broker-list-item.icon-check.not-completed {
    background: url(../img/icones/ico-custom-check-3-disabled.svg) no-repeat;
}

.broker-list-item.icon-check.completed {
    background: url(../img/icones/ico-custom-check-3.svg) no-repeat;
}

@media only screen and (min-width: 576px) {
    body:not(.nav-is-burgered) .container {
        max-width: 240px;
    }
}

@media only screen and (min-width: 768px) {
    body:not(.nav-is-burgered) .container {
        max-width: 420px;
    }
}

@media only screen and (min-width: 992px) {
    body:not(.nav-is-burgered) .container {
        max-width: 660px;
    }
}

@media only screen and (min-width: 1200px) {
    body:not(.nav-is-burgered) .container {
        max-width: 840px;
    }
}

@media only screen and (min-width: 1500px) {
    body .container {
        max-width: 1400px;
    }

    body:not(.nav-is-burgered) .container {
        max-width: 1100px;
    }
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--pink) !important;
    /*opacity: 0.8;*/
    margin: 0 3px;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-dots button.owl-dot.active {
    background-color: var(--warning) !important;
    opacity: 1;
}

.poids-step-manual {
    padding: 0em;
    height: 20px;
    width: 20px;
    line-height: 1em;
}

.percentage-container {
    min-width: 45px;
    max-width: 45px;
}

@supports (-ms-ime-align:auto) {
    .container-votant-gestion .sticky-top {
        top: 0px !important;
    }
}

ol.custom {
    /*max-width: 350px;*/
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 40px;
}

ol.custom li {
    margin: 0 0 0.5rem 0;
    counter-increment: my-awesome-counter;
    position: relative;
}

ol.custom li::before {
    content: counter(my-awesome-counter);
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    --size: 32px;
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    width: var(--size);
    height: var(--size);
    top: 10px;
    text-align: center;

}

ol.custom li.ecran-perso::before {
    color: var(--warning);
}

.ecran-invisible-container li {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 40px;
}

.table-votant th, .table-votant td {
    vertical-align: middle;
}

.user-logo-container img {
    width: 30px;
}

ul .ecran-container {
    list-style: none !important;
}

.badge-ecran-perso {
    margin: 0;
    margin-left: 10px;
    background: var(--success);
    color: #fff;
    padding: 3px;
    font-size: 11px;
    margin-left: 5px;
    border-radius: 10px;
}

.badge-ecran-fixe {
    margin: 0;
    margin-left: 10px;
    background: var(--warning);
    color: #fff;
    padding: 3px;
    font-size: 11px;
    margin-left: 5px;
    border-radius: 10px;
}

.white-space-nowrap {
    white-space: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

.border-top-big {
    border-top: solid 4px var(--border) !important;
}

.stats-graph {
    margin: auto;
    background-color: white;
    padding: 40px;
    max-width: 800px;
}

/*.table-suivi-index th {*/
/*    border-right: 1px solid #dee2e6 !important;*/
/*}*/

.table-suivi-index .tablesorter-header::after {
    margin-right: 5px;
}

/*.table-suivi-index td {*/
/*    border-right: 1px solid #dee2e6;*/
/*}*/

.table-suivi-index th {
    width: auto;
}

/*.table-suivi-index th:nth-child(0), .table-suivi-index td:nth-child(0),*/
/*.table-suivi-index th:nth-child(1), .table-suivi-index td:nth-child(1),*/
/*.table-suivi-index th:nth-child(2), .table-suivi-index td:nth-child(2),*/
/*.table-suivi-index th:last-child, .table-suivi-index td:last-child {*/
/*    border-right: none !important;*/
/*}*/

.w-max-content {
    width: max-content;
}

.max-w-150 {
    width: 150px !important;
    max-width: 150px;
}

/* Sortable */

.table-sortable thead th:not(.no-sort) {
    cursor: pointer;
    position: relative;
}

.table-sortable thead th:not(.no-sort):after {
    content: " ";
    background-size: 10px;
    background: url(../img/icones/ico-reorder.svg) no-repeat center;
}

.table-sortable thead th:not(.no-sort):after, .icon-order {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    vertical-align: center;
    display: flex;
    align-items: center;
    width: 10px;
}

th.sorted.ascending:after, th.tablesorter-headerAsc:after {
    /*content: "  \2191";*/
    background: url(../img/icones/ico-reorder-up.svg) no-repeat center !important;
}

th.sorted.descending:after, th.tablesorter-headerDesc:after {
    /*content: " \2193";*/
    background: url(../img/icones/ico-reorder-down.svg) no-repeat center !important;
}

/***** Middle interactions *****/

.modal.recap-modal .modal-content {
    color: var(--text);
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #bcbcbd;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    border-color: rgba(236, 0, 140, 0.3);
}

.table-multi-columns {
    height: unset !important;
}

[data-freeze_nb_col="1"] table th:nth-child(1),
[data-freeze_nb_col="1"] table td:nth-child(1) {
    border-right: 1px solid #dee2e6;
}

[data-freeze_nb_col="2"] table th:nth-child(2),
[data-freeze_nb_col="2"] table td:nth-child(2) {
    border-right: 1px solid #dee2e6;
    width: 170px !important;
    max-width: 170px !important;
    min-width: 170px !important;
}

[data-freeze_nb_col="3"] table th:nth-child(3),
[data-freeze_nb_col="3"] table td:nth-child(3) {
    border-right: 1px solid #dee2e6;
    width: 170px !important;
    max-width: 170px !important;
    min-width: 170px !important;
}

.width-100px {
    width: 100px;
    min-width: 100px !important;
}


.reponse-review {
    color: var(--warning);
    background: var(--pink);
    border: 1px solid var(--warning);
    border-radius: 10px;
    text-align: center;
}

.text-yellow {
    color: #f29100;
}

.category_collapse {
    cursor: pointer;
}

.category_collapse > div.chevron:before, .category_collapse.chevron:before {
    font-family: FontAwesome;
    content: "\f077";
    padding-right: 5px;
}

.category_collapse.collapsed > div.chevron:before, .category_collapse.collapsed.chevron:before {
    content: "\f078";
}

.custom-warning {
    color: var(--warning);
}

.custom-yellow, .text-br {
    color: #f29100 !important;
}

.badge-reponse {
    color: #ffffff !important;
    background-color: #F29100;
}
.text-br {
    color: var(--br-color);
}
.col-question-new .custom-control-input:checked ~ .custom-control-label::before {
    color: var(--white);
    border-color: var(--br-color);
    background-color: transparent;
}
.col-question-new .session-title input[type="text"]:not(.date) {
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-radius: 0;
    border-bottom: 1px solid var(--br-color);
    background: var(--white);
    height: 90px;
    caret-color: var(--br-color);
    font-size: 3.25rem;
    color: var(--br-color);
    font-weight: 300;
}

.col-question-new .session-title input[type="text"]::placeholder {
    color: var(--br-color);
    opacity: .5;
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: -15px;
}

.col-question-new input[type="text"]:focus {
    box-shadow: none;
}
.col-question-new .selector li:hover label {
    color: var(--br-color);
}

.remove-reponse .btn {
    border-radius: 0 !important;
}

.add_action_link, .add_action_link_broker {
    position: absolute;
    bottom: -25px;
    width: 55px;
    border-radius: 20px;
    height: 55px;
    /*background: var(--warning);*/
    right: -10px;
    font-size: 24px;
    padding: 5px;
    background: url(../img/icones/ico-add-picture.svg) no-repeat center;
}
.add_action_link_broker {
    right: 0;
    left: 0;
    margin: auto;
    bottom: -38px;
    background: url(../img/icones/ico-add-picture-broker.svg) no-repeat center;
}
.col-question-new .custom-control-label::before {
    display: inline-block;
    left: -2rem;
    right: inherit;
    border-color: var(--br-color);
}
.col-question-new .custom-checkbox label::before {
    border-radius: 0.35rem;
}
.col-question-new .selector li:hover:not(.disabled) {
    background: var(--br-color-light);
}
.col-question-new label::after {
    display: inline-block;
    left: -1.9rem;
    right: inherit;
}

.col-broker .custom-control-input:checked + .custom-control-label {
    color: var(--br-color) !important;
}

.col-question-new .custom-control-input:checked + label {
    color: var(--br-color) !important;
}

.col-question-new .custom-checkbox .custom-control-input:checked ~ label::after,
.col-question-new .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background: url(../img/icones/ico-check-br.svg) no-repeat center;
    background-size: cover;
}

.table-question tbody td {
    vertical-align: middle !important;
}

.reponse-container {
    display: flex;
    flex-direction: column;
}

.reponse-review {
    color: var(--yellow);
    background: #faeedd;
    border: 1px solid var(--yellow);
    border-radius: 10px;
    text-align: center;
}


.question label {
    color: var(--yellow) !important;
}

.img-categorie {
    max-width: 300px;
    max-height: 220px;
    height: auto;
    width: auto;
}
