:root {
}

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

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--entitled);
    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);
    border-radius: 0;
    padding: 7px 30px;
}

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

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

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

.btn-tertiary {
    background-color: var(--primary-light);
    color: var(--text);
    border: 1px solid var(--text);
    border-radius: 0;
    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;
}

a:hover {
    text-decoration: none;
}

hr {
    margin-top: 0;
}

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

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

/*--- LOGIN PAGE ---*/
.login {
    height: 100vh;
    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(--warning);
}

.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 {
    left: 2.5rem;
    border-color: var(--warning);
}

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

.dashboard .custom-control-label::after {
    left: 2.5rem;
}

.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 {
    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.nb-dots .dropdown-toggle::after {
    position: relative !important;
}

.nb-dots button {
    background: none !important;
}

.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: 330px repeat(4, 1fr);
    grid-template-rows: 80px repeat(4, 1fr);
}

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: 10;
}

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

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

.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;
    overflow: auto;
    width: 300px;
}

.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.2rem;
}

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

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

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

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

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

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

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

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

/*--- 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;
    min-width: 285px;
}

/*--- 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;
}

/*--- 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;
}

.table-vote th {
    position: relative;
}

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

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

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

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

/** 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: -2rem;
    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;
}

.col-interaction .display-4 {
    font-size: 3.5rem;
}

.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%;
}

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;
}

.star-rating-interaction {
    line-height: 32px;
    font-size: 1.25em;
}

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

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

.content.menu-vote .outils {
    border-bottom: 1px solid #9DCCF1;
    border-top: 1px solid #9DCCF1;
    padding-bottom: 10px;
    /*margin-bottom: 30px;*/
}

.content.menu-vote .logo {
    /*border-bottom: 1px solid #9DCCF1;*/
}

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

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

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

}

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

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

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

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

/* menu*/
.logo-container {
    border-bottom: 1px solid #9DCCF1;
    display: flex;
    align-items: center;
}

.content.menu-vote .logo {
    width: 100%;
}

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

.content.menu-vote .outils img.large {
    display: block;
    /*max-width: 236px;*/
}

.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(--warning);
    background: var(--white);
    height: 90px;
    caret-color: var(--warning);
    font-size: 3.25rem;
    color: var(--warning);
    font-weight: 300;
}

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

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

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

.add_action_link {
    position: absolute;
    bottom: -25px;
    width: 55px;
    border-radius: 20px;
    height: 55px;
    background: var(--warning);
    right: -10px;
    font-size: 24px;
    padding: 5px;
}

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

.col-question-new label::after {
    display: inline-block;
    left: -1.9rem;
    right: inherit;
}

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

.col-question-new .custom-checkbox .custom-control-input:checked ~ label::after {
    background: url(../img/icones/ico-check-vote.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(--warning);
    background: var(--pink);
    border: 1px solid var(--warning);
    border-radius: 10px;
    text-align: center;
}

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

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;
}

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

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

.badge-reponse {
    color: #ffffff !important;
    background-color: #F29100;
}

/* Sortable */

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

.table-sortable thead th:not(.no-sort):after {

    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    vertical-align: center;
    display: flex;
    align-items: center;
    width: 10px;
    background-size: 10px;
    background: url(../img/icones/ico-reorder.svg) no-repeat center;
}

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

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

.text-gray-dark {
    color: var(--info);
}

/******* Stats *******/

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

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

.nav-link:hover, .nav-link:focus {
    text-decoration: none;
}

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

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

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

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

.text-yellow {
    color: #f29100;
}

.category_collapse {
    cursor: pointer;
}

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

.category_collapse.collapsed > div.chevron:before {
    content: "\f078";
}
.dropdown-session-filter.show .dropdown-menu {
    min-width: 284px !important;
}

.client_users_item a {
    opacity: 0;
    transition-duration: 100ms;
}

.client_users_item:hover a {
    opacity: 1;
    transition-duration: 100ms;
}

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

.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-left-color: currentcolor;
    border-color: #ced4da;
}

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

.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);
}

.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

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