﻿@font-face {
    font-family: 'Exo 2';
    src: url('/assets/fonts/Exo_2/Exo2-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Light';
    src: url('/assets/fonts/Proxima Nova Light/Proxima Nova Light.ttf') format('truetype');
    font-style: normal;
}

/******************************************** ÉLÉMENTS ********************************************/

body {
    font-family: 'Proxima Nova Light';
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2';
    font-weight: bold;
}



/******************************************** CLASSES ********************************************/

/*Ici, c'est pour tinyMCE. Sans ça le texte ne "break" pas et continue à l'horizontal.*/

/*selecteur qui sélectionne tout ce qui commence par "col-"*/
[class^="col"]{
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.min-width-50 {
    min-width: 50px;
}

.loggedIn {
    color:#12c779;
}
.loggedOut {
    color:#f04343;
}

.align-middle {
    vertical-align:middle;
}
.input-invalid {
    background-color: #ffc1c1;
}

.form-control, .btn {
    border-radius: 0;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;

}

    .hover-underline-animation::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -3px;
        left: 50%;
        background-color: #00DC7D;
        transform-origin: center;
        transition: width 0.25s ease-out, left 0.25s ease-out;
    }

    .hover-underline-animation:hover::after {
        width: 100%;
        left: 0;
    }

.btn-green {
    font-family: 'Exo 2';
    background-color: #00DC7D;
    color: #021239;
    font-weight: bold;
    border-radius: 0;
}

    .btn-green:hover {
        background-color: #C7D4D6;
    }

    .btn-green:focus {
        background-color: #C7D4D6;
        border: 1px solid rgba(38, 143, 255, 0.35);
        outline: 0;
        box-shadow: 0 0 0 0.27rem rgba(38, 143, 255, 0.35);
    }

.btn-soft-delete {
    background-color: #fa8225;
    color: white;
    font-weight: bold;
    border: 2px solid #fa8225;
}

    .btn-soft-delete:hover {
        background-color: #cc610e;
        border: 2px solid #cc610e;
        color: white;
    }

.bg-img-login {
    /* background-image: linear-gradient(to bottom,#021239,#001d64);*/
    /*    background-image: radial-gradient(circle, #021239, #001d64);*/
    /*    background-image: radial-gradient(circle, #032882, #021239);*/
    background-image: radial-gradient(circle, rgba(2, 18, 57, 0.8), rgba(0, 35, 120, 1) ), url('../assets/img/Multihexa_Symbole_Outline.png');
    background-image: radial-gradient(circle, rgba(0, 35, 120, 0.8), rgba(2, 18, 57, 1) ), url('../assets/img/Multihexa_Symbole_Outline.png');

    /*background-image: radial-gradient(circle, rgba(14, 52, 143, 0.8), rgba(2, 18, 57, 1) ), url('../assets/img/Multihexa_Symbole_Outline.png');*/


    background-size: cover; /* image + gradient */
    background-position: center;
    background-repeat: no-repeat;
}
.bg-img-confirmed-email {
/*    background-image: linear-gradient(to bottom,#021239,#001d64);*/
    background-image: radial-gradient(circle, #021239, #001d64);
}
.bg-2fa-auth {
   /* background-image: linear-gradient(to bottom,#021239,#001d64);*/
    background-image: radial-gradient(circle, #021239, #001d64);
}

.input-line {
    border: none;
    border-bottom: 2px solid #021239;
    margin-top: 0px;
    margin-bottom: 0px;
}

.custom-shadow-green {
    box-shadow: 0 0 50px #00DC7D
}

.no-border {
    border: 0;
}

.form-logos {
    position: relative;
}

.form-logo {
    position: absolute;
    top: calc(25%);
    left: 0.5rem;
}

.form-control.no-border {
    padding-left: 2.5rem;
}

.mandatory-input {
    color:red;
}

.table-striped tbody tr td.mandatory-input {
    color: red; 
}
.btn-admin-add {
    width: 90px;
}
.mrg-btm-2fa {
    margin-bottom: 0px;
}
.pagination .page-link {
    background: white;
    color: #021239;
}
.page-link:hover {
    color: white;
    background-color: #021239;
}

.page-item.active .page-link {
    z-index: 3;
    color: white;
    background-color: #021239;
    border-color: #021239;
}

.btn-green-search {
    font-family: 'Exo 2';
    background-color: #00DC7D;
    color: #021239;
    font-weight: bold;
}

    .btn-green-search:hover {
        background-color: #C7D4D6;
    }
.hover-effect-warning-two:hover svg path {
    fill : black;
}
.hover-effect:hover svg path {
    fill: white;
}
.hover-effect-two:hover svg path {
    fill: white;
}
.hover-effect-two:hover span {
    color:white;
}
.hover-effect-warning:hover svg path {
    fill: #ffc13b;
}
.hover-effect-primary:hover svg path {
    fill: #00b3ff;  
}
.hover-effect-default:hover svg path {
    fill: black;
}
.icon-svg {
    transition: transform 0.1s ease;
}
.hover-effect-primary:hover .icon-svg,
.hover-effect-default:hover .icon-svg,
.hover-effect-warning:hover .icon-svg {
    transform: scale(1.15);
}

.custom-btn-outline-orange {
    border: 1px solid #fa7900;
    color: #fa7900;
    background-color: transparent;
}

    .custom-btn-outline-orange:hover {
        background-color: #fa7900;
        color: white;
    }

.card {
    border-radius: 0;
}

.left-side-panel {
    background-image: linear-gradient(#021239,#9597F2);
}
.top-side-panel {
      background-color:#021239;
}
.panel-bg {
  
    background-color: #F0F5F9;

}
.no-margin-validation ul {
    margin: 0;
    padding: 0;
    list-style-type: none; 
}

.nav-link.dropdown-toggle::after {
    color: #F0F5F9;
}

.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #4e73df !important;
}

.border-left-secondary {
    border-left: 0.25rem solid #858796 !important;
}

.border-bottom-secondary {
    border-bottom: 0.25rem solid #858796 !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-right-success {
    border-right: 0.25rem solid #1cc88a !important;
}
.border-top-dark-blue {
    border-top: 0.25rem #021239 solid !important;
}

.border-top-success {
    border-top: 0.25rem #00DC7D solid !important;
}

.border-top-turquoise {
    border-top: 0.25rem #00CFBE solid !important;
}

.border-top-blue-web {
    border-top: 0.25rem #008DFF solid !important;
}

.border-top-purple {
    border-top: 0.25rem #9597F2 solid !important;
}

.border-left-purple {
    border-left: 0.25rem #9597F2 solid !important;
}

.border-left-dark-blue {
    border-left: 0.25rem #021239 solid !important;
}
.border-top-blue {
    border-top: 0.25rem #9597F2 solid !important;
}
.border-bottom-success {
    border-bottom: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid #e74a3b !important;
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
    border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
    border-bottom: 0.25rem solid #5a5c69 !important;
}

.btn-blue-superior {
    background-color: #021239;
    color: white;
    font-weight: bold;
    border: 2px solid #021239;
}

    .btn-blue-superior:hover {
        background-color: #262d33;
        border: 2px solid #262d33;
        color: white;
    }

.btn-blue-superior-two {
    background-color: #021239;
    color: white;
    font-weight: bold;
    border: 2px solid #021239;
}

    .btn-blue-superior-two:hover {
        background-color: #222a3e;
        border: 2px solid #222a3e;
        color: white;
    }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: white;
}

.font-size-profil {
    font-size: 17px;
}

.card-hover:hover {
    transform: scale(1.01);
}


.btn-close-small {
    width: 10px;
    height: 10px;
    background-size: 10px 10px;
}


.validation-summary-errors ul {
    list-style-type: none;
    padding-left: 0;
}

.card-text-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.custom-square-outline {
    width: 35px;
    height: 35px;
    background-image: linear-gradient(to right,#9597F2,#696bf1);
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

    .custom-square-outline svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
    }

.purple-bg {
    background-image: linear-gradient(to right,#9597F2,#7a7df2);
}

.green-bg {
    background-image: linear-gradient(to right,#00DC7D,#00b768);
}

.turquoise-bg {
    background-image: linear-gradient(to right,#00CFBE,#00b4a5);
}

.blue-bg {
    background-image: linear-gradient(to right,#008DFF,#006ac1);
}

.registration-card {
    color: white;
}

    .registration-card .card-body {
        display: flex;
        flex-wrap: wrap;
    }

.pageSizeDropdownButton {
    white-space: normal;
}

.registration-card-svg-div {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

    .registration-card-svg-div svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        max-height: 100%;
    }

.card-font-size {
    font-size: 15px;
}

.pageSizeDropdownButton::after {
    border-top-color: white;
}

.news-hover::after {
    content: 'Voir plus...';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
    transition: all 0.3s ease;
}

.news-hover:hover::after {
    display: block;
}

.btn-outline-turquoise {
    border: 1px solid #008DFF;
    color: #008DFF;
    background-color: transparent;
}

    .btn-outline-turquoise:hover {
        background-color: #008DFF;
        color: white;
    }

.image-container-default {
    width: 100%;
    height: 150px;
    background-size: cover;
}

.image-container {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center; 
    display: block;
}

.card-img-top {
    width: 100%;
    height: 25vh;
    object-fit: cover;
}

.card-img-top-dashboard {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.border-radius-zero {
    border-radius: 0;
}

.status-open {
    color: rgb(0, 220, 125);
}

.status-pending {
    background-color: rgba(219, 231, 0, 0.3);
    font-weight: bold;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 80px;
    font-size: 12px;
    color: rgba(223, 235, 0, 0.8);
}

.status-closed {
    color: rgb(224, 0, 0);
}

.status-to-edit-shape {
    width: 90px;
    background-color: rgba(255, 191, 0);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-closed-shape {
    width: 90px;
    background-color: rgb(224, 0, 0);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-pending-shape {
    width: 90px;
    background-color: rgba(235, 196, 57);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-open-shape {
    width: 90px;
    background-color: darkorange;
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}



.status-tovalidate-shape {
    width: 90px;
    background-color: rgba(38, 202, 3, 0.5);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}


.status-closed-outline {
    color: rgb(224, 0, 0);
    border: 1px solid rgb(224, 0, 0);
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 8px;
    padding-right: 8px;
}

.status-validated-shape {
    width: 90px;
    background-color: rgba(38, 202, 3);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-refusal-shape {
    width: 90px;
    background-color: rgba(214, 0, 0);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-completed-shape {
    width: 90px;
    background-color: rgb(44, 165, 300);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}


.status-caq-shape {
    width: 42px;
    /*  background-color: rgba(38, 202, 3);*/
    background-color: rgba(117, 83, 62);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    margin-right: 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.status-caq-date-shape {
    width: 42px;
    /*  background-color: rgba(38, 202, 3);*/
    background-color: rgba(117, 83, 62,0.6);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    margin-right: 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}


.status-pe-shape {
    width: 42px;
    /*    background-color: rgba(38, 202, 3);*/
    background-color: rgba(117, 83, 62);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}
.status-pe-date-shape {
    width: 42px;
    /*    background-color: rgba(38, 202, 3);*/
    background-color: rgba(117, 83, 62,0.6);
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7em;
    font-family: 'Exo 2';
}

.demand-legend {
    width: 4.7rem;
    padding-top: 3px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.6em;
    font-family: 'Exo 2';
    height:18px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 10;
    text-align: center;
    padding-right: 10px;
    padding-left: 10px;
}

.overlay-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 10;
    text-align: center;
}

.overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 10;
    text-align: center;
    padding-right: 10px;
    padding-left: 10px;
}

.demand-circle-num {
    min-height: 20px;
    min-width: 20px;
    background-image: linear-gradient(to right,#9597F2,#7a7df2);
    color: white;
    text-align: center;
    border-radius: 50%;
    line-height: 20px;
    display: inline-block;
    font-size: 11px;
    font-family: 'Exo 2';
    font-weight: bold;
}

.bg-form-color {
    background-color: #f3faff;
}


.truncate-td {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 1px;
}

.spinner-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pdf-iframe {
    display: none;
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-iframe-preLoa {
    display: none;
    width: 100%;
    height: 100%;
    border: none;
}

.spinner-border {
    color: #00DC7D;
}


.btn-outline-dark-blue {
    border: 1px solid #021239;
    color: #008DFF;
    background-color: transparent;
}

    .btn-outline-dark-blue:hover {
        background-color: #021239;
        color: white;
    }

.nav-item {
    border-radius: 0;
}

.nav-pills .nav-link.disabled {
    background-color: rgba(2, 18, 57, 0.3);
    color: white;
}

.nav-pills .nav-link.active {
    background-color: #021239;
    color: white;
}

.nav-pills .nav-link {
    background-color: #021239;
    color: white;
    border-radius: 0;
}

    .nav-pills .nav-link:hover {
        color: white;
        background-color: #2a3141;
    }

.nav-border-right {
    border-right: 1px solid white;
}

.docs-circle-num {
    height: 20px;
    width: 20px;
    background-color: #00DC7D;
    color: white;
    text-align: center;
    border-radius: 50%;
    line-height: 20px;
    display: inline-block;
    font-size: 11px;
    font-family: 'Exo 2';
    font-weight: bold;
}

.btn-green.disabled,
.btn-green:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.65;
}

.btn-green.active {
    background-color: #C7D4D6;
    border-color: #C7D4D6;
}


.btn-cancel {
    font-family: 'Exo 2';
    background-color: #dc3545;
    color: #021239;
    font-weight: bold;
    border-radius: 0;
}

    .btn-cancel:hover {
        background-color: #C7D4D6;
    }

    .btn-cancel.disabled,
    .btn-cancel:disabled {
        background-color: #6c757d;
        border-color: #6c757d;
        color: #ffffff;
        cursor: not-allowed;
        opacity: 0.65;
    }


.row-disabled {
    background-color: rgba(236, 240, 241, 0.5);
    background-color: rgb(225, 225, 225);
    pointer-events: none;
    width: 100%;
}


.date-news-color {
    color: #008DFF;
}

.inherit-color {
    color: inherit;
}

.cancel-demand-pointer {
    cursor: pointer;
    color: #dc3545;
}

.li-demand-manage {
    width: 300px;
    border-bottom: 1px solid white;
}

.icon-with-badge {
    position: relative;
    display: inline-block;
}

    .icon-with-badge .badge {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: red;
        color: white;
        font-size: .75em;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .icon-with-badge .badge.more-than-nine {
            width: auto;
            min-width: 20px;
            padding: 0 5px;
            border-radius: 50%;
            background-color: red;
            color: white;
            font-size: .75em;
            display: flex;
            justify-content: center;
            align-items: center;
        }


.text-danger {
    font-style: italic;
    color: #ffc1c1;
}

.text-red {
    color: rgb(224, 0, 0);
}

.text-green {
    color: #00DC7D;
}

.bg-white-screen {
    background-color: #F0F5F9;
}

.badge-outline-blue {
    color: #008DFF;
    border: 1px solid #008DFF;
    background-color: transparent;
    border-radius: 0.25rem;
    padding: 0.25em 0.75em;
    font-size: 0.85rem;
}

.label-truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disabled-select {
    pointer-events: none;
    background-color: #e9ecef;
    opacity: 1;
}

.iti--allow-dropdown .iti__country-list {
    max-height: 120px;
    overflow-y: auto;
}

/*.info-icon {
    display: inline-block;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
}
*/

a.info-icon {
    vertical-align: middle; 
    text-decoration: none;
}

    a.info-icon:hover {
        color: #C7D4D6; 
    }


.round-hover svg {
    fill: #021239; /* Default color (black) */
    transition: fill 0.2s ease; /* Smooth transition */
}
    .round-hover:hover svg {
        fill: gray;
    }

/*.modal-header {
    border-bottom:none;
}*/


.btn-gear-student {
    top: 5px;
    right: 10px;
    z-index: 10;
}

.modal-dialog.modal-xxl {
    max-width: 100%;
}

.info-icon {
    cursor:pointer;
    
}
    .info-icon svg {
        fill:black;
    }

.invisible-text {
    color:transparent;
    user-select:none;
}

#form-big-modal .modal-header {
    border-top: 3px solid #00DC7D;
   /* border-right: 3px solid #00DC7D;*/
}

#preLoaSubmit svg {
    margin-bottom: 2px;
}



/******************************************** MEDIA QUERIES ********************************************/
@media (max-width: 575px) {
    .container-mobile-admin {
        font-size: 11px;
    }
    .mrg-btm-2fa {
        margin-bottom: 10px;
    }
    h2,h3{
        font-size :1.2rem;
    }

    th.cell-mobile,
    td.cell-mobile {
        min-width: 160px;
    }
    th.cell-mobile-alert,
    td.cell-mobile-alert {
        min-width: 190px;
    }

    th.cell-mobile-alert-reminders,
    td.cell-mobile-alert-reminders {
        min-width: 190px;
    }

    th.cell-mobile-logging,
    td.cell-mobile-logging {
        min-width: 100px;
    }


    /*Test table filtres*/
    th.cell-mobile-filter,
    td.cell-mobile-filter {
        min-width: 160px;
    }

    th.cell-mobile-alert-filter,
    td.cell-mobile-alert-filter {
        min-width: 190px;
    }

    th.cell-mobile-logging-filter,
    td.cell-mobile-logging-filter {
        min-width: 100px;
    }

    .payment-confirm-modal-size {
        max-width: 100%;
    }
}

@media (min-width: 576px) {

   
    th.cell-mobile,
    td.cell-mobile {
        min-width: 150px;
        max-width: 200px;
    }

    th.cell-mobile-alert,
    td.cell-mobile-alert {
        min-width: 190px;
        max-width: 200px;
    }

    th.cell-mobile-alert-reminders,
    td.cell-mobile-alert-reminders {
        min-width: 140px;
        max-width: 180px;
    }

    th.cell-mobile-logging,
    td.cell-mobile-logging {
        min-width: 100px;
    }


    /*Test table filtres*/

    th.cell-mobile-filter,
    td.cell-mobile-filter {
        min-width: 180px;
        max-width: 230px;
    }

    th.cell-mobile-alert-filter,
    td.cell-mobile-alert-filter {
        min-width: 190px;
        max-width: 200px;
    }

    th.cell-mobile-logging-filter,
    td.cell-mobile-logging-filter {
        min-width: 100px;
    }

    /* 
        - 50% de largeur sur les ordinateurs
        - 100% de largeur sur mobile
    */
    .documents-modal {
        max-width: 50%;
    }
    .next-session-modal {
        max-width: 50%;
    }

    .modal-dialog.modal-xxl {
        max-width: 85%;
    }

    .payment-confirm-modal-size {
        max-width: 95%;
    }

}


@media (max-width: 767px) {
    .results-page-size-mt {
        margin-top: 10px;
    }
}


@media (min-width: 768px) {
    #modal-first-login{
        width :50px;
    }

    .results-page-size {
        justify-content: end;
    }

    .carousel-control-prev {
        left: -5%;
    }

    .carousel-control-next {
        right: -5%;
    }
    
}

@media (max-width: 767px) {

    .nav-bar-pages {
        font-size: 10px;
    }

    .pagination-center {
        display: flex;
        justify-content: center;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .results-page-size-mt {
        margin-top: 10px;
    }

    #results-page-mobile-news {
        flex-direction: column;
        align-items: start;
    }

    .admin-manage-cards {
        min-height: 70px;
    }
}

@media (min-width: 768px) {

    .pagination-text-right {
        justify-content: end;
        padding-right: 30px;
    }

    .results-page-size {
        justify-content: end;
    }
    #results-page-mobile-news {
        align-items: center;
    }

    .admin-manage-cards {
        min-height: 100px;
    }

    .payment-confirm-modal-size {
        max-width: 85%;
    }

}

@media (min-width : 992px) {
    .payment-confirm-modal-size {
        max-width: 80%;
    }
}

@media (min-width : 1200px) {
    .payment-confirm-modal-size {
        max-width: 60%;
    }
}

@media (min-width: 1400px) {

    .card-font-size {
        font-size: 13px;
    }

    .registration-card-svg-div {
        width: 80px;
        height: 80px;
        background-color: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        border-radius: 50%;
    }

        .registration-card-svg-div svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 100%;
            max-height: 100%;
        }

    .modal-dialog.modal-xxl {
        max-width: 65%;
    }

    .payment-confirm-modal-size {
        max-width: 50%;
    }

}

@media (min-width: 1700px) {

    .card-font-size {
        font-size: 15px;
    }

    .registration-card-svg-div {
        width: 100px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        border-radius: 50%;
    }

        .registration-card-svg-div svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 100%;
            max-height: 100%;
        }
}


@media (max-width: 1399px) {

    .table-container {
        width: 100%;
        overflow-x: scroll;
    }

    .stat-card {
        position: relative;
        border-radius: 14px;
        color: #fff;
        padding: 18px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,.12);
        margin-bottom:10px;
    }
}

@media (max-width: 1399px) {

    .table-font-size {
        font-size: 13px;
    }
}








/******************************************** IDs ********************************************/

#pdf-iframe {
    min-height:500px;
}

#pdf-iframe-preLoa {
    min-height: 650px;
}


#customSavedFilterDropdown {
    max-width: 230px;
    max-height: 300px;
    overflow-y: auto;
}
#toggleDetailsBtn {
    color:#008DFF;
    font-weight:100;
    margin-bottom:5px;
}
    #toggleDetailsBtn:hover {
        color: #0063b4;
    }


/* Keyframes pour le badge "Nouveau" dans le dashboard */
.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 6px;
    background-color: #008DFF;
    color: #fff;
    font-weight: bold;
    border-radius: 7px;
    font-size: 0.65rem;
    animation: wiggle 1.5s ease-in-out infinite, glow 1.5s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 141, 255, 0.6);
    }

    50% {
        box-shadow: 0 0 12px rgba(0, 141, 255, 0.8);
    }
}


.table-scroll {
    max-height: 300px;
    overflow-y: auto;
}


.custom-shadow {
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.15);
}

.card-hover-two {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-hover-two:hover {
        transform: scale(1.01);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);

    }

.card-wrapper {
    padding-bottom: 1rem;
}




.doc-delete-btn-wrapper {
    position: absolute;
    top: -8px;
    right: -9px;
}

/* Additional styling to ensure consistency */
.doc-delete-btn {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .doc-delete-btn svg {
        fill: #e60000; /* Default color */
    }


    .doc-delete-btn:hover svg {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transform: scale(1.15);
        fill: #D10000;
    }

.popover {
    max-width:100%;
}

.content-no-wrap {
    white-space:nowrap;
}


.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
}

    .loader-overlay.active {
        display: flex;
    }


.logo-container {
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%); 
    z-index: 10; 
}


.logo-wrapper {
    width: 40px; 
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.logo-svg {
    width: 50%; 
    height: auto;
}
.rounded-circle {
/*    background-color:rgba(149,151,242,0.4);*/
}


.card-container {
    transition: all 0.3s ease;
}

    .card-container.expanded {
        width: 100% !important; /* Full row */
        flex: 0 0 100%;
        max-width: 100%;
    }

.expand-btn {
    position: absolute;
    top: 5px;
    left: calc(100% - 25px);
    transform: translateX(-50%);
    width:18px;
   
}

.btn-reset {
    background: none;
    border: none; 
    padding: 0;
    margin: 0; 
    font: inherit; 
    color: inherit; 
    cursor: pointer; 
    position: relative; 
}

.text-green {
    color: #00DC7D;
}



.gray-btn-container {
    width: 30px;

}
    .gray-btn-container:hover {
        background-color: #e6e6e6;
        width: 30px;
        cursor: pointer;
    }
.gray-btn-square {
    max-width:130px;
    padding-right:5px;
    padding-left:5px;

}
    .gray-btn-square:hover {
        background-color: #e6e6e6;
        max-width: 130px;
        cursor: pointer;
    }

.dropdown-header {
    cursor:default;
}
.dropdown-divider {
    border: none;
    border-top: 1px solid #dee2e6; 
    margin: 4px 14px;
}

.dropdown-menu {
    display: none;
}

    .dropdown-menu.show {
        display: block;
    }

.badge-custom-reports {
    background-color:#e4e6e9;
    padding-right:8px;
    padding-left:8px;
    padding-top:4px;
    padding-bottom:2px;
    font-size:11px;
    text-transform:uppercase;
    font-weight:bold;
    display:inline-block;

}


.remove-pointer {
    pointer-events:none;
    cursor:default;
}

.small-popover-financial-year {
    max-width: 250px;
    
}


@keyframes moveUpToDown {
    0% {
        transform: translateY(-20%);
    }

    50% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0%);
    }
}


.animated-svg {
    display: inline-block;
    animation: moveUpToDown 1s ease-out forwards; /* Adjust duration and repeat */
}

.status-shape-btn {
    height:35px;
}
.status-shape-btn:hover {
    background-color:#c1c1c1;
}
 

.custom-disabled-status {
    background-color: #c1c1c1;
}

.delay-color {
    background-color: #ffe6e6;
}




.page-reminders {
    font-size:14px;
}

#cancel-demand-reminder {
    background-color: #ffb5b5;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    line-height: 0;
    margin-top: 3px;
    margin-left: 5px;
}

    #cancel-demand-reminder:hover {
        transform: scale(1.15);
        z-index: 2;
    }

#cancel-demand-reminder svg {
    width: 60%;
    height: 60%;
}

.btn-confirm-payment {
    background-color: #fff2f2;
    border: none;
    border-radius: 5px;
   

}

    .btn-confirm-payment:hover {
        background-color: #ffd6d6;
        border: none;
        border-radius: 8px;
    }



/* Carte stats */
.stat-card {
    position: relative;
    border-radius: 14px;
    color: #fff;
    padding: 18px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
    margin-bottom:10px;
    
}

.gradient-green {
    background: linear-gradient(135deg, #00DC7D, #00CFBE);
}

.gradient-teal {
    background: linear-gradient(135deg, #00CFBE, #008DFF);
}

.gradient-blue {
    background: linear-gradient(135deg, #008DFF, #9597F2);
}

/* En-tête: titre à gauche, filtres à droite */
.card-head {
    display: flex;
/*    align-items: center;*/
    justify-content: space-between;
    margin-bottom: 10px;

    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
}

.title-card-dashboard {
    margin: 0;
    font-weight: 700;
    letter-spacing: .5px;
}

/* Groupe de filtres */
.filters {
    display: flex;
/*    flex-direction:column;*/
    gap: .5rem;
    flex-wrap: wrap;
}

/* Bouton “pill” translucide */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    font-weight: 600;
    font-size: .9rem;
    line-height: 1;
    color: #fff;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);

    min-width:100px;
    max-width: 100px; /* ✅ limit width */
    overflow: hidden; /* hide overflow text */
}

    .filter-pill:hover {
        background: rgba(255,255,255,.22);
        color: #fff;
    }

    .filter-pill:focus {
        box-shadow: 0 0 0 .2rem rgba(255,255,255,.25);
    }

    /* Chevron blanc pour .dropdown-toggle */
    .filter-pill.dropdown-toggle::after {
        flex-shrink: 0;
        margin-left: .35rem;
        border-top: .4em solid #fff; /* chevron blanc */
        border-right: .4em solid transparent;
        border-left: .4em solid transparent;
    }

.pill-text {
    display: inline-block;
    max-width: 120px; 
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}


/* Menu de la dropdown dans la carte */
.dropdown-menu-card {
    --menu-bg: rgba(0, 18, 57, .92); /* #021239 semi-opaque */
    --menu-border: rgba(255,255,255,.12);
    background: var(--menu-bg);
    border: 1px solid var(--menu-border);
    border-radius: 12px;
    padding: .4rem;
    min-width: 10rem;
    max-height: 250px; /* adjust as needed */
    overflow-y: auto;
    scrollbar-width:thin;
}

    .dropdown-menu-card .dropdown-item {
        color: #fff;
        border-radius: 8px;
        padding: .45rem .65rem;
       
    }

        .dropdown-menu-card .dropdown-item:hover,
        .dropdown-menu-card .dropdown-item:focus {
            background: rgba(255,255,255,.12);
            color: #fff;
        }

/* Bloc total */
.card-body-stat {
    display: flex;
    align-items: baseline;
    gap: .4rem;
}

    .card-body-stat .label {
        font-size: 1.05rem;
        font-weight: 700;
        opacity: .9;
    }

    .card-body-stat .value {
        font-size: 2rem;
        font-weight: 800;
    }





.card-body-stat-2 {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 2rem; /* space between PLOA and LOA */
    margin-top: 1rem; /* push totals lower */
}

.stat-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

    .stat-block .label {
        font-size: 1.05rem;
        font-weight: 700;
        opacity: 0.9;
    }

    .stat-block .value {
        font-size: 2rem;
        font-weight: 800;
    }



.card-payment {
    height:110px;

}

#cardFlywire {
   /* width:50px;*/
   height:25px;
}

#cardInterac {
    /*width: 50px;*/
    height: 25px;
}

#cardBank {
    /* width: 21px;*/
    height: 25px;
}

#cardCreditCard {
    /* width: 21px;*/
    height: 25px;
}

#cardCash {
    /*width: 21px;*/
    height: 25px;
}







.preview-card {
    width:fit-content;
    cursor: pointer;
    border-radius: 10px;
   /* border-left:3px solid #00DC7D;*/
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    /*border: 1px solid rgba(255, 255, 255, 1);*/
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

    .preview-card .card-body {
        padding: 0.75rem 1rem;
    }

    .preview-card:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
    }

/* Fullscreen PDF overlay */
.pdf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* hidden by default */
    z-index: 2000; /* above your modal */
}

    .pdf-overlay.show {
        display: block;
    }

.pdf-overlay-inner {
    position: absolute;
    inset: 4rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.pdf-overlay-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.pdf-overlay-close {
    position: fixed;
    top: 20px;
    right: 25px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 3000; /* must be ABOVE the viewer */
}

    .pdf-overlay-close:hover {
        background: rgba(0, 0, 0, 0.5);
    }

.pdf-overlay-inner {
    background: #1a1a1a; /* dark background */
}



.pdf-payment-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4000;
    display: none;
}



.payment-confirm-modal .nav-tabs .nav-link {
    color: #333;
}

    .payment-confirm-modal .nav-tabs .nav-link.active {
        color: #021239;
        font-weight: 600;
    }



.btn-link.btn-link-dark {
    color:black;
    text-decoration:none;
}

.pdf-icon-btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

    .pdf-icon-btn svg {
        transition: transform 0.1s ease, opacity 0.1s ease;
    }

    .pdf-icon-btn:hover svg {
        transform: scale(1.08);
        opacity: 0.85;
    }

.confirmationPaymentTable td,
.confirmationPaymentTable th {
    white-space: nowrap;
}


.paymentTableVerticalScroll {
    max-height: 300px; 
    overflow-y: auto;
}
    .paymentTableVerticalScroll::-webkit-scrollbar {
        width: 6px;
    }

    .paymentTableVerticalScroll::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.2);
        border-radius: 4px;
    }


.paymentSelectScroll {
    max-height: 250px;
    overflow-y: auto;
}




.documents-scroll-wrapper {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

    .documents-scroll-wrapper::-webkit-scrollbar {
        width: 8px;
    }

    .documents-scroll-wrapper::-webkit-scrollbar-thumb {
        background: #bfc3ca;
        border-radius: 4px;
    }

        .documents-scroll-wrapper::-webkit-scrollbar-thumb:hover {
            background: #9da2a8;
        }



.documents-scroll-wrapper-two {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

    .documents-scroll-wrapper-two::-webkit-scrollbar {
        width: 8px;
    }

    .documents-scroll-wrapper-two::-webkit-scrollbar-thumb {
        background: #bfc3ca;
        border-radius: 4px;
    }

        .documents-scroll-wrapper-two::-webkit-scrollbar-thumb:hover {
            background: #9da2a8;
        }

.payment-check-svg path {
    fill: #02c737;
}