@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --blue: #175BA3;
    --dark-blue: #0C163C;
    --white: #FFFFFF;
    --small-font: 16px;
    --medium-font: 24px;
    --large-font: 32px;
    --thin-wieght: 400;
    --normal-wieght: 500;
    --bold-wieght: 600;
    --line-height: 1.2;
}

::placeholder {
    opacity: 1 !important;
    color: #A0AEC0;
    font-weight: 500;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

html,
body {
    overflow-x: hidden;
}


.marker {
    background-image: url('../img/iconMarker.png');
    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
  }
/*////////////ALERT////////////*/
/* Style commun à toutes les alertes */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

/* Style spécifique pour les succès */
.alert-success {
    color: #155724;
    background-color: #d4edda;
}

/* Style spécifique pour les erreurs */
.alert-error {
    color: #721c24;
    background-color: #f8d7da;
}

/* Bouton de fermeture */
.custom-alert button.alert-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: inherit; /* Prend la couleur du texte défini par l'alerte */
}

/* Simple fade-out animation */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/*////////////LOADER////////////*/

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 9999;
    display: none; /* Initially hidden */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Background overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none; /* Initially hidden */
}
/*/////////// PARC  ///////////*/

.viewer-360-btn {
    position: absolute;
    top: 30px; /* Ajuste cette valeur si nécessaire pour le placement */
    right: 30px;
    z-index: 1000; /* Assure-toi que le bouton reste au-dessus de la carte */
}

.btn-viewer-360 {
    background-color: #2E519D; /* Couleur du bouton (bleu) */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-viewer-360:hover {
    background-color: #1e3c73; /* Couleur du bouton au survol */
}

.button-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-import {
    background-color: #5776E7;
}


/*/////////// POV  ///////////*/
.panorama-list {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pano-item {
    display: flex;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 10px;
}

.pano-thumbnail img {
    width: 100px;
    height: 70px;
    margin-right: 10px;
}

.pano-info {
    display: flex;
    flex-direction: column;
}

.form-fields-column {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Adds space between each div */
}

.form-fields-column-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fields-column-map .display-flex {
    justify-content: flex-end; /* Aligns the button to the right */
}

#pov-button {
    background-color: #E1F0FF;
    color: var(--blue);
    border-radius: 120px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

#pov-button  svg,
.content-register-form .popup-action svg {
    position: unset;
}

#pov-button.disabled svg path {
    fill: #888888; 
}


#pov-button.disabled {
    background-color: #e0e0e0;
    color: #888888;
    cursor: not-allowed;
    pointer-events: none;
}

.pano-radio-wrapper input.pano-radio {
    color: initial;
    width: auto;
    height: auto;
    line-height: normal;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    appearance: radio;
}
.steps {
    margin-bottom: 20px;  /* Ajoute un espacement sous les étapes */
    line-height: 1.6;
    color: #333;     /* Ajuste l'interligne pour plus d'aération */
}
.steps p {
    margin-bottom: 10px;  /* Ajoute de l'espace entre chaque étape */
}

/*/////////// LOGIN FORM ///////////*/

.flex-stack {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-stack span {
    display: inline-block; /* Assure un comportement contrôlé */
    height: 20px;
    font-weight: var(--bold-wieght);
    margin-bottom: 5px;
}

.login-form {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
        url('/app/img/background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 80px;
    max-width: 100vw;
    min-height: 100vh;
    padding: 0px 10px;
}

.login-form .logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px; /* Optionnel : espace entre le logo et le formulaire */
}

.login-form .logo-img img {
    width:55%;
    height: auto; /* Conserve le ratio de l'image */
}

.login-form form {
    width: 100%;
    max-width: 550px;
    padding: 20px 40px 40px 40px;
    border: 1px solid #0000001A;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.login-form form * {
    font-size: var(--small-font);
}

.login-form form label {
    color: #000000;
    margin-bottom: 30px;
    display: block;
    position: relative;
}


.login-form form input {
    color: #A0AEC0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #0000001A;
    line-height: 50px;
    padding: 0px 15px;
    margin-top: 10px;
    outline: none;
}

.password-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.button-connexion {
    background-color: var(--blue);
    color: var(--white);
    width: 100%;
    border-radius: 10px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    margin-top: 10px;
}

.login-form form .forget-password {
    color: var(--blue);
    text-decoration: none;
    display: block;
    text-align: right;
}

.login-form form .is-checked {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-form form .is-checked input {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #0000001A;
    margin-top: 0px;
    appearance: none;
    border-radius: 100%;
    padding: 0px;
}

.login-form form .is-checked input::before {
    width: 100%;
    height: 100%;
    display: none;
    content: "✔";
    position: absolute;
    top: -19px;
    left: 3px;
    font-size: 14px;
}

.login-form form .is-checked input:checked::before {
    display: block;
}

.login-form form .light-color {
    color: #A0AEC0;
    padding-top: 30px;
    text-align: center;
}

.login-form form .create-account {
    color: var(--blue);
    font-weight: var(--bold-wieght);
    text-decoration: none;
    margin-left: 5px;
}

/*/////////// DASHBOARD ///////////*/

.dashboard {
    background-color: #F5F5F5;
    display: flex;
    width: 100vw;
    min-height: 100vh;
}

.dashboard .side-bar {
    min-width: 253px;
    max-width: 253px;
    background-color: var(--dark-blue);
    padding: 30px 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.dashboard .side-bar .logo-img {
    width: 171px;
    display: block;
}

.dashboard .content .logo-img {
    width: 140px;
    display: none;
}

.dashboard .content .side-bar-opner {
    margin-right: 25px;
    cursor: pointer;
    display: none;
}

.side-bar-close {
    display: none;
}

.dashboard .logo-img img {
    width: 100%;
    display: block;
}

.dashboard .side-bar .menu-lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    list-style: none;
}

.dashboard .side-bar .menu-lists a.parent-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--blue);
    cursor: pointer;
}

.dashboard .side-bar .menu-lists .menu-drop-icon {
    margin-left: auto;
}

.menu-lists .sub-menu {
    padding-top: 15px;
    display: none;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
}

.menu-lists .sub-menu.active {
    display: flex;
}

.dashboard .side-bar .logout-side-bar {
    margin-top: auto;
    display: none;
}

.dashboard .side-bar .logout-side-bar svg * {
    fill: #fff;
}

.menu-lists .sub-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: 0.3s;
    display: block;
    text-decoration: none;
    padding-left: 10px;
}

.menu-lists .sub-menu a:hover {
    color: var(--blue);
}

.dashboard .content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard .content .content-header {
    width: 100%;
    padding: 20px 50px;
    background-color: var(--white);
    display: flex;
    align-items: center;
}

.dashboard .content .user-information {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.dashboard .content .user-information img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: cover;
    border-radius: 100%;
    overflow: hidden;
}

.dashboard .content .user-information h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.30000001192092896px;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard .content .user-information h3 span {
    font-size: 12px;
    font-weight: 400;
    color: #747681;
}

.dashboard .content .user-information .logout {
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.dashboard .content .content-form {
    width: calc(100% - 100px);
    margin: 25px 50px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 30px;
    gap: 15px;
}

.dashboard .content .content-form h3 {
    color: #000000;
    font-size: 26px;
    font-weight: 700;
}

.dashboard .content .content-form h3 span {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.dashboard .content .content-form form {
    width: 412px;
    height: 48px;
    border-radius: 10px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #F5F5F5;
}

.dashboard .content .content-form form svg {
    min-width: 24px;
    max-width: 24px;
}

.dashboard .content .content-form form input {
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #747681;
    outline: none;
    border: none;
    background-color: transparent;
}

.dashboard .content .content-form button {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    border: unset;
    outline: unset;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.dashboard .content .content-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    font-size: 26px;
    font-weight: 700;
    color: #11182733;
    margin: auto;
    padding: 50px 15px;
}

/* Style pour le bouton de suppression désactivé */
.disabled-delete {
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important; /* Fond légèrement grisé */
}

/* Style pour améliorer la visibilité du tooltip */
[title]:hover::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    z-index: 100;
    white-space: nowrap;
}
/* Style pour le bouton de modification */
div.tableGrid table.myTable tbody tr td.ActionVm a.modifyItem {
    width: 40px;
    height: 40px;
    background: #E1F0FF;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
}

.disabled-modify {
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important;
}


/*/////////// ADD EOLIENNE ///////////*/
.content-register-form {
    width: calc(100% - 100px);
    margin: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px 50px;
}


.content-register-form .form-field input.field-error {
    border: 1px solid red !important;
}

.form-fields-row-map,
.form-fields-row {
    display: flex;
    gap: 20px;
}

.form-fields-row-map .form-fields-row,
.form-fields-row-map .google-map {
    width: 100%;
    flex-wrap: wrap;
}

.form-fields-row-map {
    padding-bottom: 20px;
}

.form-fields-row-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: unset;
    outline: unset;
}

.content-register-form * {
    font-size: var(--small-font);
    font-weight: var(--normal-wieght);
}

.content-register-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0px 25px 0px;
}

.content-register-form label {
    color: #175BA3;
    font-weight: 700;
    display: block;
    position: relative;
    width: 100%;
}

.content-register-form label.display-flex {
    display: flex;
    align-items: flex-end;
}


.content-register-form input,
.content-register-form select {
    color: #000000;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #0000001A;
    height: 56px;
    line-height: 56px;
    padding: 0px 15px;
    margin-top: 10px;
    appearance: unset;
    background: #fff;
    outline: none;
}

.content-register-form form.ViewForm input,
.content-register-form form.ViewForm select {
    border: 0px solid #0000001A;
}

.content-register-form svg {
    position: absolute;
    right: 15px;
    bottom: 18px;
    pointer-events: unset;
}

.form-fields-row-map label {
    width: calc(50% - 10px);
    margin-bottom: 0px;
}

.form-fields-row-map button {
    background-color: #E1F0FF;
    color: var(--blue);
    border-radius: 120px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-fields-row-map button svg,
.content-register-form .popup-action svg {
    position: unset;
}
[x-cloak] {
    display: none;
}
.content-register-form .popup-action {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.actionContent {
    display: flex;
    gap: 10px; /* Espacement entre les boutons */
    align-items: center;
    justify-content: center; /* Centrer les boutons dans la colonne */
}
.btnAction {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 10px;

    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.form-submition-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.form-submition-button button {
    background-color: var(--white);
    color: var(--blue);
    border-radius: 120px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    width: 218px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--blue);
}

.form-submition-button button.button-action-green {
    background-color: var(--blue);
    color: var(--white);
}

.content-register-form .first-heading-tag {
    margin-top: 0px;
}

.content-register-form label.equal-width-field {
    width: calc(50% - 10px);
}

.form-submition-button .form-submition-button-large {
    width: 308px;
}

.popup-action .btn-text {
    display: inline;
}

.info-icon {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    vertical-align: middle;
}

.info-icon i {
    font-size: 18px;
    color: #000; /* Adjust this to match your design */
}



/* /////////// POPUP ////////// */

.overlays {
    background: #0000005C;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
}

.overlays .pop-up {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 529px;
    padding: 30px 40px 50px;
    border: 1px solid #0000001A;
    border-radius: 10px;
    background-color: var(--white);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: #000000;
    line-height: 26px;
}

.overlays .pop-up div.myOperation {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.overlays .pop-up button {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 120px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    border: unset;
    outline: unset;
    width: calc(50% - 10px);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.overlays .pop-up button.popup-action-red {
    background-color: #EB5050;
}

.overlays .pop-up div.myOperation .popup-action-blueN.single {
    width: 100%;
}
.opacity-40 {
    opacity: 0.4;
}

.opacity-100 {
    opacity: 1;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer;
}
/**Screen 3**/
div.contentGrid {
    width: calc(100% - 100px);
    margin: 25px auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

div.tableGrid {
    width: 100%;
    display: inline-block;
}

div.tableGrid table.myTable {
    width: 100%;
    border-collapse: collapse;
}
div.tableGrid table.myTable tbody tr td {
    overflow-wrap: break-word;
    white-space: normal;
}
td[data-label="Communes"] {
    word-wrap: break-word;
    white-space: normal;
}

span.Communes {
    display: inline-block;
    margin: 5px 0;
}
div.tableGrid table.myTable thead tr th {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #0C163C;
    text-align: left;
}

div.tableGrid table.myTable thead tr th svg {
    cursor: pointer;
}

div.tableGrid table.myTable thead tr th:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

div.tableGrid table.myTable thead tr th:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 120px;
}

div.tableGrid table.myTable tbody tr td {
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

div.tableGrid table.myTable tbody tr {
    border-bottom: 1px solid #ccc;
}

div.tableGrid table.myTable tbody tr:last-of-type {
    border-bottom: 0px solid #ccc;
}

div.tableGrid table.myTable tbody tr td span.Communes {
    background: #d1deed;
    color: #175BA3;
    padding: 7px 20px;
    border-radius: 5px;
}
.warningButton {
    border: none;
    width: 40px;
    height: 40px;
    background: #FFEDD7;
    color: #FFA500;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 43px;
}

div.tableGrid table.myTable tbody tr td.status {
    color: #63BB71;
}

div.tableGrid table.myTable tbody tr td a.goItem {
    background: #175BA3;
    color: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 90px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    margin-right: 20px;
}

div.tableGrid table.myTable tbody tr td .actionItem {
    width: 30px;
    height: 30px;
    display: inline-block;
    cursor: pointer;
    color: #175BA3;
    text-align: center;
    line-height: 26px;
}

div.tableGrid table.myTable tbody tr td .actionItem i {
    position: relative;
    top: 2px;
}

div.tableGrid table.myTable tbody tr td span.popupEdit {
    position: absolute;
    background: #fff;
    display: none;
    z-index: 123;
    padding: 10px 20px;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 6px;
    margin-left: -104px;
}

div.tableGrid table.myTable tbody tr td span.popupEdit a {
    text-decoration: none;
    font-size: 16px;
    color: #030303;
}

div.tableGrid table.myTable tbody tr td span.popupEdit a i {
    color: #175ba3;
    font-size: 13px;
}

/**SCREEN 17**/
.overlays .pop-up div.boxItem {
    flex-flow: column;
    width: 100%;
}

.overlays .pop-up div.boxItem h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.overlays .pop-up div.boxItem form .formGroup label {
    display: block;
    text-align: left;
    color: #175ba3;
    font-weight: 700;
}

.overlays .pop-up div.boxItem form .formGroup {
    margin-bottom: 10px;
}

div#tagWrap {
    width: 100%;
    display: inline-block;
}

div#tagWrap p.btween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-tags {
    border: 1px solid #ccc;
    border-radius: 5px;
    outline-style: none;
    display: flex;
    align-items: center;
    padding: 5px 15px 5px 35px;
    width: 100%;
    font-size: 16px;
    margin-top: 6px;
    position: relative;
}

.input-tags input {
    border: none;
    padding: 10px 0;
    outline-style: none;
    font-size: 16px;
    width: 100%;
}
.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.tag {
    display: flex;
    align-items: center;
    background-color: #0c163c;
    color: #fff;
    border-radius: 4px;
    padding: 0.4em 0.6em;
    margin-right: 0.4em;
    margin-bottom: 0.4em;
}
.tag-name {
    margin-right: 0.4em;
}
.tag-remove {
    cursor: pointer;
    color: #fff;
}
.tag-remove:hover {
    color: #ccc;
}
.input-tags .tag:last-child {
    margin-right: 0.6em;
}

.overlays .pop-up div.boxItem form .formGroup select {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    margin-top: 8px;
    background: transparent;
    border: 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
}

.overlays .pop-up div.boxItem form .formGroup input#Intitulé_sh {
    width: 100%;
    height: 50px;
    margin-top: 6px;
    outline: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-indent: 15px;
    font-weight: 600;
}

.overlays .pop-up div.boxItem form .myOperation button {
    border-radius: 6px;
    border: 2px solid #175ba3;
    cursor: pointer;
}

.overlays .pop-up div.boxItem form .myOperation button.add-action-cencel {
    background: transparent;
    color: #175ba3;
}

div#tagWrap p.btween label {
    font-weight: 700;
    color: #175ba3;
}

div#tagWrap p.btween span.tip {
    font-weight: 700;
    color: #175ba3;
}

.input-tags .tag .remove-tag {
    margin-left: 11px;
    font-size: 14px;
    cursor: pointer;
    color: #b3414b;
}

.input-tags svg {
    position: absolute;
    left: 10px;
}


div.myGooglemap {
    width: calc(100% - 100px);
    margin: 25px auto 0px;

    height: 400px;
    border: 0;
    border-radius: 15px;
}

div.tableGrid table.myTable th.tableSortAction {
    width: 180px !important;
}

div.tableGrid table.myTable tbody tr td.ActionVm a.eyeView {
    width: 40px;
    height: 40px;
    background: #FFEDD7;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 43px;
}

div.tableGrid table.myTable tbody tr td.ActionVm a.editItem {
    width: 40px;
    height: 40px;
    background: #D7E0FF;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
}

div.tableGrid table.myTable tbody tr td.ActionVm a.delteItem {
    width: 40px;
    height: 40px;
    background: #FFD9D9;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 40px;
}

.over-lay .pop-up div.myOperation button.popup-action-blueN {
    width: 100%;
}

.content-register-form form {
    width: 100%;
}

.dashboard .side-bar .menu-lists li.black a {
    background: #25314C;
}

.menu-lists .sub-menu.active .active {
    color: #6D6F73;
}

.menu-lists .sub-menu.active a.activeBlue {
    color: #396CE8;
}

div#tagWrap p.btween span.tip b.tags-count {
    font-weight: 700;
}
.dashboard .content .content-header .user-mobile {
    display: none;
}
div.table-formobile {
    display: none;
}
/*....................ADD ET EDIT.........................*/
.short-select {
    width: 50%;
    color: #000000;
    border-radius: 10px;
    border: 1px solid #0000001A;
    height: 56px;
    line-height: 56px;
    padding: 0px 15px;
    margin-top: 10px;
    appearance: unset;
    background: #fff;
    outline: none; 
}

.disabled-email {
    background-color: #f0f0f0 !important; /* Fond gris clair */
    color: #6c757d !important; /* Texte grisé */
    cursor: not-allowed !important; /* Curseur non cliquable */
    border: 1px solid #ddd !important; /* Bordure légèrement visible */
}


