:root {
    --white: #fff;
    --black: #000;
    --black-orange: #1D1814;
    --black-orange-80: #1D181480;
    --black-80-opacity: #000000cc;
    --black-30-opacity: rgba(0, 0, 0, 0.3);
    --color-gray-100: rgba(0, 0, 0, 0.3);
    --dark-grey: #333;
    --medium-gray: #8c8c8c;
    --grey: #ccc;
    --gainsboro: #dcdcdc;
    --gray-light: #f0f0f0;
    --ivory-gray: #f3f3f1;
    --gray-lighter: #f8f8f8;
    --red: #a94442;
    --danger-red: #dc3545;
    --golden-yellow: rgba(255, 201, 94, 1);
    --sunset-gold: #FFC95E;
    --golden-brown: #B28C42;
    --maximum-yellow-red: #ffc966;
    --padding-21xl: 40px;
    --padding-xl: 20px;
    --bg: #f3f3f1;
    --gap-11xl: 30px;
    --gap-xl: 20px;
    --padding-11xs: 2px;
}


/* Font */
body {
    font-family: 'Rubik', sans-serif;
}
h1, h2, h3 {
    font-family: "Crimson Pro", Helvetica;
}
.vdt-footer {
    font-family: Arial, sans-serif;
}

/**/

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #333;
}

.container {
    margin: 0;
    padding: 0;
    width: 100%;
    font-weight: normal;
    font-size: 15px;
    color: var(--dark-grey);
}

a {
    text-decoration: none;
    color: var(--black);
}

.dotted {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    cursor: pointer;
}

.ck-content a {
    color: #2f5fef;
    text-decoration: underline
}

a:hover, a:focus {
    color: var(--black);
    text-decoration: none;
}

h1, h2, h3 {
    position: relative;
    color: var(--black);
    font-style: normal;
}

h1 {
    font-size: 76px;
}

p {
    /*
    margin-bottom: 20px;
    */
}

.d-none {
    display: none !important;
}

.col-md-8,
.col-md-4 {
    padding: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.ms-0 {
    margin-left: 0px !important;
}

.ms-15 {
    margin-left: 15px;
}

.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.pe-5 {
    padding-right: 5px;
}

.ps-5 {
    padding-left: 5px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.p-15 {
    padding: 15px !important;
}

.pb-80{
    padding-bottom: 80px;
}

.fs-12 {
    font-size: 12px !important;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.w-100 {
    width: 100%;
}

.justify-content-spacebetween {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.standard-button {
    display: block;
    background-color: var(--black);
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 20px 0;
    margin: 15px 0px 0px 0px;
    position: relative;
    width: 100%;
    font-family: "Rubik", Helvetica;
    font-weight: 500;
    color: var(--white);
    font-size: 20px;
    white-space: nowrap;
    border-radius: 10px;
    transition: background-color 0.3s 
    ease, color 0.3s 
    ease, transform 0.2s 
    ease;
}

.standard-button:hover { 
    border: 0px;
    color: var(--white);
    background-color: var(--black);
    transform: scale(1.05);
}

.text-danger {
    color: var(--red);
}

.btn:focus, .btn:active:focus {
    outline: none;
}

.btn-outline {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    z-index: 3;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s 
    ease, color 0.3s 
    ease, transform 0.2s 
    ease;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    transform: scale(1.05);
}

.btn-outline:focus, .btn-outline:active, .btn-outline:active:focus {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

a.btn-primary {
    float: inline-end;
}

.btn-primary {
    letter-spacing: -0.4px;
    z-index: 3;
    display: block;
    border: none;
    background-color: var(--black);
    font-family: "Rubik", Helvetica;
    font-weight: 500;
    color: var(--white);
    font-size: 17px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 20px;
    transition: background-color 0.3s 
    ease, color 0.3s 
    ease, transform 0.2s 
    ease;
}

.entity-action-button input,
.entity-action-button #customLinkButton{
    height: 45px;
}

#customLinkButton{
    display: flex;
    align-items: center;
}

.btn-primary:hover, .btn-primary[disabled]:hover {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    transform: scale(1.05);
}

.btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    border: none;
}

.btn-outline[disabled]:hover, .btn-primary[disabled]:hover {
    transform: none;
}

.btn-search-ok {
    display: none;
    color: #4CAF50;
    border-radius: 0px;
    background-color: #fff;
    border: none;
    padding: 10px;
    margin-top: -1px;
    border: 1px solid lightgray;
}

.form-control {
    align-self: stretch;
    font-size: 17px;
    text-align: left;
    border: 1px solid var(--black-orange-80);
    border-radius: 6px;
    color:  var(--black-80-opacity);
    height: auto;
}

.section-banner {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
}

.section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.banner-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 78px;
    color: var(--Blanc, #FFF);
    font-family: "Crimson Pro";
    line-height: 61px;
    letter-spacing: -2px;
}

.breadcrumb {
    margin: 20px 0 20px 50px;
}

ul.breadcrumb > li > a {
    font-weight: bold;
    text-decoration: underline;
}

h1.page-title {
    font-size: 56px;
    margin-bottom: 40px;
    margin-top: 50px;
    line-height: 1;
}

h2.tab-title {
    font-size: 17px;
    font-family: 'Rubik';
    font-weight: bold;
}

.content {
    display: flex;
    justify-content: center;
}

.vdt-main-content {
    max-width: 1200px;
    box-sizing: border-box;
    width: 100%;
}

.crmEntityFormView .tab-title {
    border-bottom: none;
    line-height: normal;
}

.crmEntityFormView .cell {
    padding-left: 0px;
    padding-bottom: 5px;
}

.crmEntityFormView .cell.checkbox-cell:first-child {
    padding-top: 15px;
}

.crmEntityFormView .actions {
    border-top: none;
}

.crmEntityFormView > .actions > .col-sm-6.clearfix {
    padding-left: 0px;
}

#consentErrorMessage {
    color: var(--danger-red);
    font-style: italic;
}

a:focus {
    outline: none;
}
/*
#subject {
    width: 210%;
    max-width: 210%;
}
*/

.vdt-blanc {
    display: block;
    color: #000;
    padding: 0 15px;
    font-family: "Rubik", Helvetica;
    font-weight: 500;
    background-color: white;
    font-size: 17px;
    letter-spacing: -0.3px;
    line-height: 45px;
    white-space: nowrap;
    font-style: normal;
    border-radius: 10px;
    height: 45px;
    text-align: center;
    border: 1px solid var(--color-gray-100);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.vdt-blanc:hover {
    transform: scale(1.05);
}

.content-box h3 {
    font-family: "Crimson Pro";
    font-size: 30px  !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 30px;
    letter-spacing: -0.2px;
    border: 0;
}

.content-box a{
    height: auto;
}

h3 {
    white-space: normal;
}

.col-md-4.columnBlockLayout .content-box p {
    font-size: 17px;
    line-height: 18px;
}

legend.section-title h3 {
    line-height: 0.85;
    font-size: 35px;
    font-weight: bold;
    border-bottom: none;
    font-family: "Crimson Pro", Helvetica;
}
fieldset[aria-label="INFORMATIONS SUPPLÉMENTAIRES"] legend.section-title h3 {
    font-weight: 400;
}

.line {
    border-bottom: #666 1px solid;
    margin: 0px 20px;
    height: 10px;
}

.error-message {
    color: var(--danger-red);
    margin: 0px;
}

.frame-parent5 {
    align-self: stretch;
    font-size: var(--desktop-h5-size);
    padding: 20px 80px;
    gap: 35px;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 35px;
}

.frame-parent5 a{
    color: var(--black);
    text-decoration: none;
}

    /* animation */
.frame-parent5 img {
    transition: all .4s ease;
}

.frame-parent5:hover img { 
    transform: translateX(-6px); 
}

.line-wrapper {
    height: 2px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 0 var(--padding-11xs);
}

.frame-item {
    flex: 1;
    position: relative;
    border-top: 2px solid #000;
    align-self: stretch;
    box-sizing: border-box;
    max-width: 100%;
}

.home-button-container {
    flex-direction: row;
    align-items: center;
    gap: var(--gap-xl);
}

.home-button-container, .request-details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.retour-laccueil {
    font-size: 22px;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 26px;
    font-weight: 500;
    font-family: 'Rubik';
}

/* widget */
div#userwayAccessibilityIcon {
    position: fixed;
    right: 20px;
    top: 140px;
}

/* header */

.vdt-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.vdt-badge a:hover{
    color: var(--black);
    text-decoration: none;
}

.vdt-badge-header-icon {
    width: 18px;
    height: 18px;
}

.breadcrumbs-holder {
    border-top: var(--color-gray-100) 1px solid;
    padding-top: 10px;
}

#name-page h2 {
    font-size: 1em;
    color: var(--Noir, #1D1814);
    font-family: Rubik;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    min-width: 86px;
}

/* menu */

.left-panel {
    flex-shrink: 0;
    width: 576px;
    background-color: var(--golden-yellow);
    border-radius: 0 0 0 20px;
    padding: 0px 80px;
}

.right-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0;
}

.max-height-729 {
    max-height: 729px;
}

.max-height-538 {
    max-height: 538px;
}

.right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 0;
}

.fether-icons-chevron-right {
    width: 9.83px;
    height: 16.83px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: -1.41px;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Rubik", Helvetica;
    font-weight: 500;
    color: var(--black);
    font-size: 18px;
    white-space: nowrap;
    padding: 30px 0;
}

.menu-item:hover,
.menu-item:active,
.menu-item:hover:focus {
    color: var(--black);
    text-decoration: none;
}

.left-panel a.menu-item:not(:last-of-type){
    border-bottom: 1px solid var(--golden-brown);
}

    /* animation */
.menu-item img {
    transition: all .4s ease;
}

.menu-item:hover img { 
    transform: translateX(6px); 
}

/* Accueil */ 

.tooltip {
    position: absolute !important;
}


@media (max-width: 450px) {
    .vdt-badge{
        padding: 0 10px;
    }
}

@media (max-width: 925px) {

    /* Accueil */
    .main-menu {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        width: 100%;
    }

    .right-panel img {
        height: auto !important;
        border-radius: 0 !important;
    }

    .left-panel {
        width: 100% !important;
        border-radius: 0 0 20px 20px !important;
        padding: 0 10% !important;
    }

    .left-panel h1 {
        font-size: 12vw !important;
        letter-spacing: -2px !important;
    }

    .sections-wrapper {
        margin: 0;
    }

    .page-section{
        margin: 0 !important;
        padding: 0 5%;
    }

    .div-desktop{
        width: auto;
    }

    .div-desktop h2{
        font-size: 9.5vw !important;
    }

    .sections-wrapper .page-section{
    display: flex;
    flex-direction: column;
    }

    #requests-section-id{
       padding: 60px 5% !important; 
    }

    #micrositeThemesRESO .row {
        padding: 0 !important;
    }

    .theme-cell {
        margin: 0px 5px 15px 5px !important;
    }

    .info-section {
        padding: 20px 5% !important;
        margin: 10px 5% 20px !important;
        border-radius: 10px !important;
    }

    .vdt-footer {
        padding: 10% 5% !important;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-bo {
        flex-direction: column;
        align-items: center;
    }

    .footer-right {
        display: none;
    }

    .footer-droits{
        padding: 20px;
        text-align: center;
    }

    .footer-link{
        padding: 20px;
        text-align: center;
        font-size: 16px;
    }

    /* Toutes mes requetes */

    .page-list-section {
    padding: 20px 5% !important;
    }

}

@media (max-width: 775px){

    /* Accueil */ 
    html[dir="ltr"] .table-fluid td {
        justify-content: left;
        padding: 3px 0px 1px 5px !important;
    }

    .button-desktop{
        display: none;
    }

    .button-mobile{
        display: flex !important;
        padding-bottom: 2em;
    }

    /*  Toutes les requetes */
    .pull-right.toolbar-actions {
        float: none !important;
        margin-left: 3px;
    }

    .toolbar-actions .input-group{
        margin-left: 3px !important;
    }

    .grid-actions ul.nav {
        margin-left: 3px !important;
    }
}

@media (max-width: 500px){
    /* Accueil */
    .left-panel h1 {
        font-size: 17vw !important;
        letter-spacing: -2px;
    }

    .left-panel {
        width: 100% !important;
        border-radius: 0 0 20px 20px !important;
        padding: 0 20px !important;
    }

    #mainContent > .page-section h2,
    .xrm-attribute-value > .page-section h2 {
        font-size: 12.5vw !important;
    }

    .page-section h2{
        letter-spacing: normal !important;
    }

    .info-section h2{
        font-size: 9.5vw !important;
    }

    /* Toutes mes requetes */

    ul.pagination li {
    margin: 0 4px !important;
    }

    .dropdown-menu>li>a {
        padding: 3px 10px;
    }

    .dropdown-menu>.active>a, 
    .dropdown-menu>.active>a:focus, 
    .dropdown-menu>.active>a:hover {
        padding: 1px 10px;
    }

    /* créer une requete */
    

    /* requete consenti */

    #closeCreatePortalComment{
        display: none;
    }
}

/* Liste */

#requests-section-id {
    padding-top: 70px;
    border-top: 1px solid var(--grey);
}

.page-section {
    margin: 0px 80px;
    background-color: var(--white);
    padding-bottom: 70px;
}

.sections-wrapper .page-section:not(:first-of-type) {
    padding-top: 70px;
}

.sections-wrapper .page-section:not(:last-of-type) {
    border-bottom: 1px solid var(--grey);
}

.button-mobile {
    display: none;
}

.page-section h2{
    font-size: 56px;
    letter-spacing: -2px;
    display: flex;
}

.star-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.title-star-icon {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

td[data-attribute="gs_isfollowed"] {
    display: flex;
    justify-content: center;
}

/* Table */

.resuts-table-container {
  width: 100%;
  overflow-x: auto;
}

.details-link:hover{
    text-decoration: underline;
}

.details-link{
    text-decoration: underline;
    position: relative;
    display: inline-block;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Rubik", Helvetica;
    font-size: 16px;
    font-weight: 500;
}

.table tr:first-child th:first-child {
    border-top-left-radius: 5px;
}

.table tr:first-child th:last-child {
    border-top-right-radius: 5px;
}

.table thead th {
    background-color: var(--sunset-gold);
    color: var(--dark-grey);
}

.table>tbody>tr>td,
.table>thead>tr>th {
    border: none;
    padding: 15px;
    text-align: left;
    word-break: auto-phrase;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color:var(--white);
}

.table-striped>tbody>tr:nth-of-type(even) {
    background-color: var(--gray-lighter);
}


.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-90%);
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
    transition: visibility 0s, opacity 0.2s ease-in-out;
}

.details-link:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.hover-window {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  pointer-events: none;
  display: none;
}

.table td {
    font-weight: 400;
}

ul.pagination li.active a {
    background-color: var(--maximum-yellow-red) !important;
    color: var(--black);
    border-radius: 12px;
    font-weight: bold;
    padding: 10px 14px;
    border: none;
}

ul.pagination li a {
    margin: 0px;
    color: var(--black);
    background-color: transparent;
    border: 2px solid var(--gainsboro);
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-radius: 0 10px 10px 0;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-radius: 10px 0 0 10px;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover {
    background-color: var(--maximum-yellow-red) !important;
    color: var(--black);
    border-radius: 10px;
}

ul.pagination li a:hover {
    background-color: var(--gray-light);
    border-color: var(--black);
}

.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
    color: var(--black);
}

ul.pagination {
    display: flex;
    justify-content: center;
    padding: 10px;
}

ul.pagination li {
    margin: 0 5px;
    font-size: 16px;
}

.table td[data-attribute="gs_sujetpourportail"], 
.table td[data-attribute="gs_calc_requesttype"], 
.table td[data-attribute="gs_reminderdate"] {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

table td[data-th="Date du rappel"]::before,
table td[data-th="N˚ requête spécifique"]::before,
table td[data-th="Date de relance"]::before,
table td[data-th="Emplacement"]::before,
table td[data-th="a_5c79f2fa67f840549bb945e9dfc20127.ticketnumber"]::before,
table td[data-attribute="gs_recalldate"]::before,
table td[data-attribute="createdon"]::before,
table td[data-attribute="gs_calc_ticketnumber"]::before {
    display: none !important;
}

td[data-th="Statut"] {
    width: 88px;
}

.reactivate-link, .reactivate-link:hover, .reactivate-link:active, .reactivate-link:focus,
.relance-link, .relance-link:hover, .relance-link:active, .relance-link:focus {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.fa-trash-o {
    color: var(--medium-gray);
    display: inline-flex;
}

.fa-trash-o:hover, .fa-trash-o:focus, .fa-trash-o:active {
    text-decoration: none;
    color: var(--danger-red);
    cursor: pointer;
}

a.details-link:focus, a.details-link:active {
    outline: none;
}

.div-desktop h2{
    margin-top: 0px;
}

.sous-titre{
    margin-bottom: 10px;
}

/* Modal */

.modal-deactivate .cancel {
    display: none;
}

.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0px;
}

.modal-header:before, .modal-header:after {
    content: none;
}

.modal-header {
    padding: 0px;
    margin: 0px 15px;
    border-bottom: 1px solid var(--dark-grey);
}

.modal-header .close{
    font-weight: 600;
    margin-top: 25px;
    margin: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    background: var(--black-30-opacity);
    color: var(--white);
}

.modal-header .close:hover,
.modal-header .close:focus{
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
}

h1.modal-title {
    font-family: 'Rubik', sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    padding: 40px 25px 25px;
}

#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window {
    z-index: 1049 !important;
}

.close > span:first-child,
.form-close > span:first-child {
  display: none;
}

.close > span:last-child,
.form-close > span:last-child {
  position: relative;
}

h4.modal-title {
    font-family: 'Rubik', sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    padding: 40px 25px 25px;
}

.modal-body {
    margin: 10px 20px;
}

.modal-form .modal-body iframe {
    height: 400px;
}

.crmEntityFormView fieldset {
    margin: 0;
}

button.close,
button.form-close {
    font-weight: 600;
    margin: 5px;
    padding: 15px 20px;
    border-radius: 10px;
    background: var(--black-30-opacity);
    color: var(--white);
}

.close:focus, .close:hover,
.form-close:focus, .form-close:hover {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
}

.input-group > :last-child {
    border-radius: 0 8px 8px 0;
}

input[type="button"] {
    display: inline-block;
    color: var(--white);
    border-radius: 6px;
    border: 0;
    transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    background: var(--black);
    text-decoration: none;
    padding: 10px;
}

.input-date-short{
    width: fit-content !important;
    border-radius: 8px 0 0 8px !important;
}

.search-citizen-button {
    padding: 0px 40px;
}

.modal fieldset {
    margin-bottom: 10px;
}

.results-title {
    font-family: 'Rubik', sans-serif;
}

.form-check-label {
    color: var(--black);
}

.form-check  {
    align-items: start;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0px;
    margin: 0px 35px 20px;
    justify-content: flex-start;
    gap: 8px;
}

.modal-footer::before{
    display: none;
}

.modal-footer .btn+.btn {
    margin: 0;
}

.modal-footer .cancel{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    z-index: 3;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.modal-footer .cancel:hover,
.modal-footer .cancel:focus{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    transform: scale(1.05);
}

#iframeBody {
    width: 100%;
    border: none;
}

#previewModalTitle{
    text-transform: none;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-form .modal-body iframe[src*="refrel=incident_adx_portalcomments"] {
    height: 510px;
}

.crmEntityFormView .actions {
    padding: 0;
}

@media (max-width: 390px) {
    h1.modal-title{
        padding: 40px 5px 25px 0;
    }
}

@media (max-width: 567px) {
    
    #closeconfirmRelanceModal{
        display: none;
    }

    .search-citizen-button {
      padding: 0px 10px;
    }
}

/* page connexion*/

#if6zm img {
    object-fit: cover !important;
}

/* Page connexion failed */

a[href*="Account/Login/ExternalLogin"]{
    max-width: fit-content;
    margin: 30px auto;
    float: none;
}

/* page de requete*/

ol.progress > li.list-group-item.active,
ol.progress > li.list-group-item.list-group-item-success {
    color: #0083BE;
}

ol.progress > li.list-group-item.incomplete {
    color: #666;
}

ol.progress, 
ol.progress > li.list-group-item, 
.list-group-item.active:hover {
    border: none;
    background-color: #fff;
    box-shadow: none;
}

ol.progress > li.list-group-item {
    font-weight: bold;
    padding: 0px;
}

ol.progress > li.list-group-item:not(:last-child)::after {
    white-space: pre;
    font-size: 18px;
}

ol.progress > li.list-group-item.active > span.number {
    border: 3px solid #0083BE;
}

ol.progress > li.list-group-item.incomplete > span.number {
    border: 3px solid #ccc;
}

ol.progress > li.list-group-item > span.number {
    position: relative;
    display: inline-block;
    float: none;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    margin-right: 5px;
    padding-right: 0px;
    vertical-align: middle;
}

ol.progress > li.list-group-item.list-group-item-success > span.number {
    background: url(icon-check.svg) #0083BE center center no-repeat;
    background-size: 13px 13px;
    font-size: 1px;
}

ol.progress > li > span.glyphicon.glyphicon-ok {
    display: none;
}

.btn-search-remove {
    color: #C25700;
    border-radius: 0px;
    background-color: #fff;
    padding: 10px;
    margin-top: -1px;
    border: 1px solid lightgray;
}

#displayDiv {
  display: flex;
  align-items: center;
}

.spinner-small {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 5px;
}

#errorResult {
    font-style: italic;
    font-size: 13px;
    color: #a94442;
}

#mapid {
    height: 300px;
}

.loader {
	background: url(/loading.gif);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}

.ui-autocomplete {
    position: absolute;
    z-index: 1000;
    cursor: default;
    padding: 0;
    margin-top: 2px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

div#ValidationSummaryEntityFormView {
    padding-top: 0px;
    margin-right: 25px;
    border-radius: 10px;
    font-size: 15px;
}

h2.validation-header{
    font-size: 26px;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    white-space: normal;
}

.alert-info, .alert-warning, .view-empty.message {
    background-color: #f2f2f3;
    border-color: #ccc;
    color: #333;
    border-radius: 3px;
}

.view-empty.message {
    padding: 15px;
}

.entity-grid .message {
    margin: 0px;
}

.requestConfirmationHeader1{
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 45px;
}

.requestConfirmationContent {
    margin: 12em 10em;
}

@media (max-width: 667px) {
 
    .breadcrumb {
        margin: 20px 0 20px 35px;
    }
    .crmEntityFormView .cell {
        padding: 0;
    }
}

.statut-name{
    padding: 8px;
    line-height: 1.42857;
}

/* Détails de requetes*/

td[data-attribute="ticketnumber"] a,
td[data-attribute="gs_calc_ticketnumber"] a{
    cursor: pointer;
    color: blue ;
}

.info:has(.field-label) {
    width: 100%;
    padding-top: 5px;
    box-sizing: border-box;
    font-family: var(--desktop-bouton);
    color: black;
    max-width: 100%;
}

/*
.commentaire-citoyen:last-of-type {
    border-bottom: solid 1px var(--color-gray-100);
}
*/

.commentaire-citoyen, div.info {
    border-top: solid 1px var(--color-gray-100);
}

td[data-attribute="gs_subject"] {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.form-custom-actions .vdt-modalaction-navigatehome {
    margin-bottom: 50px;
}

img.attachment-thumbnail {
    max-width: 315px;
    max-height: 200px;
    width: auto;
    height: auto;
}

.vdt-pj-downloadicon {
    max-width: 48px;
    max-height: 32px;
    width: auto;
    height: auto;
}

.flex-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 32px;
    padding: 12px 0px;
}

#openArchiveConsent{
    margin-bottom: 20px;
}

.mobile{
    display: none !important;
}

.px-2 {
  padding-bottom: 2rem !important;
  padding-top: 2rem !important;
}

.info {
    padding-bottom: 12px;
}

td[data-type="System.DateTime"] a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
    .table-responsive>.table>thead>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>tfoot>tr>td {
        white-space: normal;
    }
}
@media (max-width: 991px) {
 
    .mobile {
        display: block !important;
    }

    .computer {
        display: none !important;
    }
}

/* profil */

#gs_adresseprincipaleid_label {
    padding-top: 20px;
}

.page-heading {
    visibility: hidden;
    padding: 0px;
    width: 0px;
    height: 0px;
}

.vdt-italic {
    font-style: italic;
}

@media (max-width: 576px) {
    .section-banner {
        height: 150px;
    }

    .banner-text {
        font-size: 36px !important;
        bottom: 25px;
    }
}

@media (max-width: 767px) {
    .requestConfirmationContent {
      margin: 6em 1em;
    }
}

@media (max-width: 995px) {
    .row {
        margin: 0;
        padding: 0 !important;
    }

    .col-md-12{
        padding: 0;
    }

    .toolbar-actions .input-group {
        width: auto !important;
    }
}


/* Créer une requête/requete */

#micrositeThemesRESO .row {
    margin: 0px;
    padding: 5px 0;
}

.theme-cell {
    margin: 5px;
    background: var(--ivory-gray);
    border-radius: 10px;
}

.themelink {
    padding: 8px 12px;
    display: flex;
    white-space: normal;
}

.cell-bordered-aligned {
    margin: 6px 0px;
    width: 100%;
    display: flex;
}

.theme-title {
    color: var(--black-orange);
    font-size: 22px;
    font-weight: 500;
    text-align: left;
}

.theme-title:hover,
.plus:hover,
.theme-subtitle:hover,
.requesttypelink:hover,
.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
}

.plus {
    color: var(--black);
    margin: auto 15px;
    font-weight: 500;
}

.cell-img > img {
    height: 30px;
    width: 30px;
    align-items: center;
    vertical-align: middle;
    padding: 5px;
    margin-right: 5px;
}

.micrositeSubThemesRESO ul {
    list-style: none;
    padding: 0px;
}

.micrositeSubThemesRESO {
    margin-left: 15px;
    padding-bottom: 3px;
}

.theme-subtitle {
    color: var(--black-orange);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    display: flex;
}

.theme-thirdtitle {
    text-align: left;
    margin-bottom: 3px;
    color: var(--Noir, #1D1814);
    line-height: 24px;
    letter-spacing: -0.09px;
    font-size: 18px;
}

.requesttypelink {
    padding: 0px;
}

.other-req-link,
.other-req-link:hover,
.other-req-link:focus {
    text-decoration: none;
    display: flex;
    justify-content: center;
    border: 1px solid var(--black);
    border-radius: 0.5rem;
    color: var(--black);
    margin-top: .5em;
}

    /* animation*/
.cell-bordered-aligned .theme-info {
    transition: all .4s ease;
}

.cell-bordered-aligned:hover .theme-info { 
    transform: translateX(6px); 
}

.content{
    padding: 0 20px;       
}

/* Boutton recherche*/

.toolbar-actions .input-group{
    width: 100%;
    max-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 36px;
    overflow: hidden;
}

.toolbar-actions .input-group .fake-query {
    border: none !important;
    box-shadow: none;
    padding: 0px;
    letter-spacing: -0.054px;
}

.list-clear-button{
    padding-right: 21px;
    border: none;
    font-size: 15px;
    color: #666;
    background: none;
    cursor: pointer;
    height: 20px;
    min-width: 0px;
    transition: transform 0.2s ease;
}

.list-clear-button:hover{
    transform: scale(1.1);
}

.toolbar-actions .input-group .fa-search {
    color: #666;
}

.toolbar-actions .input-group .btn-hg {
    border: none;
    padding: 0px;
    top: 1px;
}

.toolbar-actions .input-group .btn-hg:hover,
.toolbar-actions .input-group .btn-hg:active,
.toolbar-actions .input-group .btn-hg:focus {
    background-color: var(--white);
    box-shadow: None;
}

.toolbar-actions .input-group .input-group-btn {
    padding: 0 15px;
    width: auto;
    border: none;
    background-color: var(--white);
    box-shadow: None;
    transition: transform 0.2s ease;
}

.toolbar-actions .input-group .input-group-btn:hover {
    transform: scale(1.1);
}

/* Détails Requête consentie */

.doc-grid {
    display: grid !important;
    font-size: 12px !important;
}

#incidentAllDocs {
    margin-right: 15px;
}

/* Toutes les requêtes */

.name-page a:hover{
    text-decoration: none;
    color: var(--black);
}

a.selected-view .fa.fa-list {
    display: none;
}

.dropdown-toggle {
    border:  1px #e0e0e0 solid;
    border-radius: 5px !important;
    font-size: 17px;
    font-weight: 500;
}

.container .sort-enabled a:link{
    color: var(--black);
}

.dropdown-toggle:hover,
.dropdown-toggle:active,
.dropdown-toggle:focus,
.dropdown-toggle:focus-within,
.nav .open>a {
    color: var(--black);
    border: 1px #e0e0e0 solid !important;
    border-radius: 5px !important;
    background-color: var(--white) !important;
    outline: 0 !important;
}

.caret {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(/chevron-menu-microsite-down.png) no-repeat center center;
    background-size: contain;
    border: none;
    margin-left: 10px;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    color: #000000;
    background-color: #e4e4e4;
}

.page-list-section{
    padding: 20px 80px;

}

.name-page {
    padding-left: 80px;
    padding-right: 80px;
}

.name-page h2{
    font-size: 1em;
    font-family: Rubik;
    font-weight: 400;
    margin-top: 21px;
    margin-bottom: 10.5px;
    letter-spacing: 0px;
}

.page-list-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    font-family: "Crimson Pro";
    font-weight: 400;
    letter-spacing: -1px;
}

.search-button {
    display: inline-block;
    background-color: inherit;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-family: Rubik;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.3px;
    border: var(--black) solid .05em;
    margin-bottom: 30px;
}

.search-button:hover {
    color: var(--black);
    text-decoration: none;
}

span.icone {
    display: inline-block;
    font-weight: bold;
    background-color: #d9534f;
    color: white;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
}

h3.text-explicatif {
    display: none;
    font-size: 20px;
    background-color: #a7a6a6;
    padding: 20px;
    border-radius: 5px;
    border: 1px #1D181480 solid;
    font-family: "Segoe UI Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: #232222;
}

@media (max-width: 768px) {
    .name-page {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* page de centre d'information */

#search_button_displayed {
    background-color: #1D1814;
    margin: 0;
}

.panel-default {
    border: 0;
}

#search_text,
#search_button{
    display: none !important;
}

.search-container {
    display: flex;
    height: 70px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-container .search-button {
    background-color: var(--black);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 0 0 10px;
    width: 20%;
}

.case-deflection {
    width: 100%;
    max-width: 1200px;
}

.panel {
    border: none;
}

input.search-input.form-control.subject.case-deflection {
    align-self: center;
    margin: 0;
    border: 0;
    outline: none;
    box-shadow: none;
}


input.search-input.form-control.subject.case-deflection::placeholder {
    color: #d0d0d0;
}


.search-container .list-clear-button{
    height: 20px;
    margin-top: 25px;
    min-width: 0px;
}

.section-banner + .content{
    /*margin: 0 5vw;*/
}

.info-center-title h1{
    text-align: center;
}

.info-center p{
    text-align: justify;
}

@media (max-width: 688px) {
    .info-center-title{
        margin: 20px;
        flex-direction: column;
    }

    .info-center-title h1{
        font-size: 9.5vw;
    }

    .info-center p{
        font-size: 18px;
    }

    #search_button_displayed{
        padding: 10px;
        width: auto;
    }
}

/* page de message*/

.messageTitle {
    font-size: 48px;
    margin-bottom: 60px;
    margin-top: 60px;
    font-family: "Crimson Pro", Helvetica;
    color: var(--black);
}

.messageFieldBold {
    font-weight: 500;
    color: var(--black);
}

.messageField {
    font-size: 25px;
    font-family: "Rubik", Helvetica !important;
}

.messageRequestButton {
    margin-top: 20px;
    text-align: center;
    width: 300px;
    margin-bottom: 70px;
}

.messageRequestButton a{
    float: none;
}

.messageBackToMessagesLink {
    border-top: #000 2px solid;
    padding: 20px 0px;
    text-align: left;
    margin: 0px;
}

.returnToLabel {
    color: black;
    font-family: 'Rubik', Helvetica;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
}

.messageLongRightArrow {
    vertical-align: baseline;
    margin-right: 15px;
    width: 36px;
    height: 17px;
    transform: rotate(180deg);
    transition: transform .4s ease;
}

.messageContent {
  padding: 25px 18px;
  margin: 0 !important;
}

.messageBottomBorder {
  margin-bottom: 60px;
}

.email-format{
    margin: 0 3vw;
}

.case-info{
    padding: 20px;
}

@media (max-width: 688px) {
  ul.pagination {
    justify-content: flex-start;
  }

  .messageTitle {
    font-size: 30px;
    line-height: 30px;
    margin: 30px 18px;
  }

  .messageField {
    padding: 0px 18px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .returnToLabel{
    font-size: 20px;
  }

  .breadcrumbs-holder{
    padding: 0 20px
  }
}

/* animation */

.returnToLabel:hover img { 
    transform: translateX(-6px) rotate(180deg); 
}

/* page consentements*/
/*
.form-control:focus {
    border-color: #ffc95e;
    outline: 0;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(255 201 94 / 52%);
}
*/
/* Articles BDI */

.info-section {
    padding: 20px 80px 20px 80px;
    border-radius: 8px;
    background: var(--Bg, #F3F3F1);
    margin: 10px 80px 20px 80px;
}

.info-section h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: "Crimson Pro", Helvetica;
    font-weight: 500;
    color: black;
    font-size: 38px;
    letter-spacing: -1px;
    white-space: normal !important;
}

.search-button-bdi,
.search-button-bdi:hover,
.search-button-bdi:focus {
    text-decoration: none;
    display: inline-block;
    background-color: inherit;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    color: black;
    font-family: Rubik;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.3px;
    border: #000 solid .05em;
    margin-bottom: 30px;
}

p#result, #no-results, #no-results h2, #no-results p {
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: Crimson Pro;
    font-size: 34px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.5px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

ul.list-group > li.list-group-item {
    border: none;
}

h4.list-group-item-heading {
    font-size: 28px;
    font-family: Crimson Pro;
    text-decoration: underline;
}

.container h4 {
    font-weight: bold;
}

.complements-information h3 {
    font-family: 'Rubik';
}

.commentaire-citoyen.content-padding h4 {
    font-size: 16px;
}

.vdt-email a {
    /*color: #2f5fef; -- à vérifier pourquoi TODO*/
}

.vdt-badge a, .breadcrumb a {
    color: #000;
    text-align: center;
}

/* Footer */

.vdt-footer {
    background-color: var(--ivory-gray);
    padding: 20px 100px;
    font-size: 14px;
    color: var(--dark-grey);
    line-height: normal;
}

.footer-coordinate-title {
    font-size: 34px;
    margin: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-bo {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-left p {
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.footer-droits {
    margin-bottom: 0;
}

.footer-left p:first-of-type {
    margin-top: 10px;
}

.footer-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: bold;
}

.footer-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.fw-bold,
tr.fw-bold > td,
tr.fw-bold > th,
tr.fw-bold a {
  font-weight: 700;
}


td.text-muted a,
td.text-secondary a,
td.my-grey a {
    color: inherit;
}

/* Filtres */
.panel {
    padding: 0;
    background-color: white;
    overflow: hidden;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d6d7d8;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
 
input:checked + .slider {
    background-color: var(--sunset-gold);
}

input:checked + .slider::before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.switch > input[type='checkbox'] {
    opacity: 0;
}
 
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.entitylist {
    position: relative;
}

.btn-filters, .btn-filters:active, .btn-filters:focus {
    color: var(--golden-brown) !important;
    background-color: white !important;
    Border: 1px solid rgb(204, 204, 204) !important;
    padding: 10px 16px !important;
    font-weight: 500 !important;
    border-radius: 0.375em !important;
    margin-right: 1em !important;
}

.btn-filters:hover {
    background-color: #e6e7e8 !important;
    border-radius: 0.375em !important;
}

#filterButton {
    margin: 0 !important;
    margin-left: 15px;
    border: 0 !important;
    font-size: 17px;
}

.entitylist-filter > .panel-body {
    position: absolute;
    top: 47.8px;
    background: white;
    width: 100%;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    border-radius: 6px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    display: none;
}

.entitylist-filter-option-group-box-overflow {
    max-height: none !important;
    overflow-y: auto;
}

#filterSection3 input[type="text"] {
    margin-left: 0;
    border-radius: .375rem;
}

#entitylist-filters {
    display: flex;
    flex-wrap: wrap;
}

.entitylist-filter-option-text, #teamDropdown, #filterSection3 .btn-group {
    width: 100%;
}

#filterSection1, #filterSection2, #filterSection3 {
    padding: 12px 36px;
    border: 0;
    border-right: 0;
}

#filterSection1 {
    border-left: 0;
}
@media screen and (max-width: 1024px) {
    #filterSection3 {
        width: auto;
    }
}

.reinitFilterButtons {
    line-height: 1.1;
    margin: 8px 0;
    cursor: pointer;
}

.filterTag {
    font-size: 12px;
    display: inline-block;
    white-space: nowrap;
    border-radius: 16px !important;
    padding: 5px 5px 5px 12px;
    background: rgba(255,201,94,0.15);
    color: var(--golden-brown);
    align-items: center;
    margin-left: 10px !important;
    margin-bottom: 5px;
    text-wrap: wrap;
}

.removeFilterTag {
    background: var(--sunset-gold);
    align-items: center;
    border-radius: 50%;
    padding: 3px;
    height: 16px;
    width: 16px;
    text-align: center;
    font-size: 8px;
    font-weight: bolder;
    margin-left: 5px;
}

.removeFilterTag:hover {
    background: var(--golden-brown);
    color: white;
    cursor: pointer;
}

.entitylist-filter-option > div.checkbox {
    margin: 0;
}

.entitylist-filter-option-group-label {
    font-weight: bolder;
    font-size: 15px;
}

.clearable-input input {
    padding-right: 30px;
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    color: #999;
    z-index: 100;
}

.clear-btn:hover {
    color: #333;
}

@media screen and (max-width:992px) {
    .entitylist-filter .btn, .btn {
        padding: 5px 14px;
    }

    #filterSection1, #filterSection2, #filterSection3 {
        border-left: 0;
    }
    
    #filterSection2, #filterSection3 {
        border-top: 0;
    }
}

.custom-header-icon {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.header-icon-img {
  height: 20px;
  width: 20px;
  cursor: pointer;
  opacity: 0.85;
}

.header-icon-img:hover {
  opacity: 1;
}
/* Generic badge layout: icon on top, text under, centered */
.vdt-badge-user,
.vdt-badge-dashboard {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 14px; /* spacing like the others */
}

/* Make both links behave like one vertical stack */
.vdt-badge-user a,
.vdt-badge-dashboard a {
  display: block;
  padding: 0;
  line-height: 1.2;
}

/* Icon sizing */
.vdt-badge-header-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
  opacity: 0.85;
}

.vdt-badge-user:hover .vdt-badge-header-icon,
.vdt-badge-dashboard:hover .vdt-badge-header-icon {
  opacity: 1;
}

/* Label text */
.vdt-badge-user a:last-child,
.vdt-badge-dashboard a:last-child {
  font-size: 12px;
  white-space: nowrap;
}

.dashboard-hero {
  background-color: #FFD16A;
  padding: 60px 40px 70px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.dashboard-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.dashboard-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
}

.dashboard-btn {
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
}

.dashboard-filters h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.filter-line {
  display: flex;
  gap: 10px;
  max-width: 420px;
}

.filter-date {
  margin-top: 10px;
  font-size: 14px;
}

div[data-name="tab_Instructions"] ul li p, div[data-name="tab_Instructions"] ul li div {
    display: inline;
}

/* Requête consentie */

.doc-download{
    color: #111 !important;
}

.doc-thumb{
    object-fit: contain !important;
}

/* chat bot et Acc Icon */

#vt-chat-launcher{
    z-index: 999 !important;
}

.uwy {
    z-index: 999 !important;
}