.ls-zoho-no-bg *{
	background-color: unset;
}

.ls-zoho-horizontal-center{
	display:flex;
    justify-content:center;
}

.ls-zoho-no-padding{
padding:unset !important;
}



     /* @import depuis odoo */
    /* Vars */
    :root {
     /* Colors : used as text or Backgrounds */
     --ls-cl-orange: #FBB217;
     --ls-cl-orange-light: #ffe454;
     --ls-cl-orange-dark: #c38300;
    
     --ls-cl-green: #8ec44a;
     --ls-cl-green-light: #e5efdf;
     --ls-cl-green-dark: #4d6a54;
    
     --ls-cl-blue: #47C3E7;
     --ls-cl-blue-light: #83f6ff;
     --ls-cl-blue-dark: #413c7a;
    
     --ls-cl-deep-blue1: #1D262D;
     --ls-cl-deep-blue-mix: #0B1C29;
     --ls-cl-deep-blue2: #031E33;
    
     --ls-blue-gradient: linear-gradient(180deg, var(--ls-cl-deep-blue1) 0%, var(--ls-cl-deep-blue2) 100%);
     --ls-blue-gradient-reverse: linear-gradient(180deg, var(--ls-cl-deep-blue2) 0%, var(--ls-cl-deep-blue1) 100%);
    
     --ls-cl-grey5:  #fafafa;
     --ls-cl-grey10: #e4e4e4;
     --ls-cl-grey20: #cecece;
     --ls-cl-grey50: #8e8e8e;
     --ls-cl-grey80: #4e4e4e;
    
     --ls-white-transp-gradient: linear-gradient(103.37deg, #e4e4e4 2.37%, rgba(255, 255, 255, 0) 99.35%);
    
     --ls-cl-black: #000000;
     --ls-cl-white: #ffffff;
     --ls-cl-red: #f44336;
    
     --ls-cl-tooltip: var(--ls-cl-orange);
    
     --ls-font-title: 'nulshock';
     --ls-font-text: 'Poppins';
    
     /* Site Wide Vars */
     --ls-bt-display: inline-block;
     --ls-bt-minwidth: 120px;
     --ls-bt-padding: 10px;
     --ls-header-height: 0px;
    }
    
    .comparison-container {
            /*max-width: 900px;*/
            margin: 0 auto;
            font-family: Arial, sans-serif;
            position: relative;
            width:100%
        }
        table {
            width: 100%;
            text-align: center;
            position: relative;
        }

        /* Première colonne (caractéristiques) */
        .ls-first-col {
            background-color: #efefef;
            color: #000 !important;
            font-weight: bold;
            text-align: left;
            padding: 10px;
            /*position: relative;*/
            border: none;
            width: 20%;
        }

        /* Les colonnes "Trackers" reprennent leur couleur jusqu’en bas */
        .ls-col-1 {
            background-color: #1598A5; /* Bleu */
            color: #fff !important;
            padding: 10px;
            position: relative;
            border: none;
            text-align: center;
            width: 16%;
        }
        .ls-col-2 {
            background-color: #F7A843; /* Orange */
            color: #fff !important;
            padding: 10px;
            position: relative;
            border: none;
            text-align: center;
            width: 16%;
        }
        .ls-col-3 {
            background-color: #F7A843; /* Orange */
            color: #fff !important;
            padding: 10px;
            position: relative;
            border: none;
            text-align: center;
            width: 16%;
        }
        .ls-col-4 {
            background-color: #F7A843; /* Orange */
            color: #fff !important;
            padding: 10px;
            position: relative;
            border: none;
            text-align: center;
            width: 16%;
        }
        .ls-col-5 {
            background-color: #7CBC60; /* Vert */
            color: #fff !important;
            padding: 10px;
            position: relative;
            border: none;
            text-align: center;
            width: 16%;
        }

        /* Angles arrondis sur les 4 coins de chaque colonne */
        /* Pour la première colonne */
        thead th.ls-first-col {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        tbody tr:last-child td.ls-first-col {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        /* Pour les colonnes trackers */
        thead th.ls-col-1,
        thead th.ls-col-2,
        thead th.ls-col-3,
        thead th.ls-col-4,
        thead th.ls-col-5 {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            padding-top: 20px;
        }
        tbody tr:last-child td.ls-col-1,
        tbody tr:last-child td.ls-col-2,
        tbody tr:last-child td.ls-col-3,
        tbody tr:last-child td.ls-col-4,
        tbody tr:last-child td.ls-col-5 {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        /* Couleur légèrement plus claire sur une ligne sur deux */
        tbody tr:nth-child(even) .ls-first-col {
            background-color: #f5f5f5; /* Légèrement plus clair que #efefef */
        }

        tbody tr:nth-child(even) .ls-col-1 {
            background-color: #1fa2af; /* plus clair que #1598A5 */
        }
        tbody tr:nth-child(even) .ls-col-2 {
            background-color: #F9B466; /* plus clair que #F7A843 */
        }
        tbody tr:nth-child(even) .ls-col-3 {
            background-color: #F9B466; /* plus clair que #F7A843 */
        }
        tbody tr:nth-child(even) .ls-col-4 {
            background-color: #F9B466; /* plus clair que #F7A843 */
        }
        tbody tr:nth-child(even) .ls-col-5 {
            background-color: #8DD776; /* plus clair que #7CBC60 */
        }


        /* Exemple d'ajout d'icônes en position absolue (logos) */
        /* Vous pouvez remplacer ces images par celles de votre choix. */

        table .logo {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            top: -20px; /* Pour éviter que le logo soit trop haut */
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: #000;
        }
table .logo img {
    width:32px;
}

        /* Logos spécifiques par colonne si désiré */
        /* .logo-a { background-image: url('logoA.png'); } etc. */
        
.ls-bx-custom-tooltip {
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    cursor: help;
    color: var(--ls-cl-orange);
}

.ls-bx-custom-tooltip > .fa-info-circle {
    font-size: 1.2rem;
}

.ls-bx-custom-tooltip + .tooltip.top > .tooltip-arrow {
    border-top-color: var(--ls-cl-tooltip);
}

.ls-bx-custom-tooltip + .tooltip.right > .tooltip-arrow {
    border-right-color: var(--ls-cl-tooltip);
}

.ls-bx-custom-tooltip + .tooltip.bottom > .tooltip-arrow {
    border-bottom-color: var(--ls-cl-tooltip);
}

.ls-bx-custom-tooltip + .tooltip.left > .tooltip-arrow {
    border-left-color: var(--ls-cl-tooltip);
}

.ls-bx-custom-tooltip + .tooltip {
    opacity: 1;
}

.ls-bx-custom-tooltip + .tooltip > .tooltip-inner {
    background-color: var(--ls-cl-tooltip);
    text-align: left;
    max-width: 800px;
}

.tooltip-inner > h4 {
    padding-bottom: 0rem;
    margin: 0.1rem 0;
    font-size: 0.9em;
}

.tooltip-inner > h5 {
    padding-bottom: 0rem;
    margin: 0.1rem 0;
    font-size: 0.9em;
}

.tooltip-inner > hr {
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    border-top: 1px solid var(--ls-cl-grey80);
}

.tooltip-inner > p {
    padding-bottom: 0.1rem;
    font-size: 0.9em;
    color: var(--ls-cl-grey80);
}

.ls-tx-vertical-align-middle {
    vertical-align: middle;
}

/* @import 'ls-styles-texts.css'; */
/*Text Colors*/
.ls-tx-orange {
    color: var(--ls-cl-orange);
}

.ls-tx-orange-light {
    color: var(--ls-cl-orange-light);
}

.ls-tx-orange-dark {
    color: var(--ls-cl-orange-dark);
}

.ls-tx-green {
    color: var(--ls-cl-green);
}

.ls-tx-green-light {
    color: var(--ls-cl-green-light);
}

.ls-tx-green-dark {
    color: var(--ls-cl-green-dark);
}

.ls-tx-blue {
    color: var(--ls-cl-blue);
}

.ls-tx-blue-light {
    color: var(--ls-cl-blue-light);
}

.ls-tx-blue-dark {
    color: var(--ls-cl-blue-dark);
}

.ls-tx-white {
    color: var(--ls-cl-white);
}

.ls-tx-grey80 {
    color: var(--ls-cl-grey80);
}

/* Capitalization */
.ls-tx-caps {
    text-transform: uppercase;
}

.ls-tx-nocaps {
    text-transform: none;
}

.ls-tx-underline {
    text-decoration: underline;
}

/* retour à la ligne */
.ls-tx-line-break {
    white-space: normal;
}

.ls-tx-line-no-wrap {
    white-space: nowrap;
}

.ls-tx-justify {
    text-align: justify;
}

.ls-txt-twolines {
    min-height: 70px;
}

.ls-tx-vertical-align-middle {
    vertical-align: middle;
}

.ls-tx-center{
    text-align: center;
}

.ls-tx-align-left{
    text-align: left;
}

.ls-tx-bold{
    font-weight: bold;
}

/* Taille de textes générique */

.ls-tx-normal-weight{
    font-weight: 400;
}

.ls-tx-large-weight{
    font-weight: 500;
}

.ls-tx-bold{
    font-weight: 700;
}

.ls-tx-center {
    text-align: center;
}

.ls-tx-align-right {
    text-align: right;
}


/* texte titre */
.ls-tx-font-title{
    font-family: var(--ls-font-title);
    font-style: normal;
}

[data-toggle="tooltip"]:hover:after {
    content: attr(data-original-title);
    position: absolute;
    background-color: white;
    color: black;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid black;
    padding: 2px;
    white-space: pre-wrap;
    max-width:50vw;
    z-index:1;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip {
position: absolute;
    top: 10%;
    left: 200%;
    transform: translateY(-50%);
    background-color: #726d6d;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
    word-wrap: break-word;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(-50%) translateX(10px);
    min-width: 150px;
    max-width: 400px;
    text-align: left;
    z-index: 1000;
    font-size: 0.9rem;
    width: max-content;
}

/* Flèche */
.tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
}

/* Affichage au survol */
.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .o_container_small {
        max-width: 80%;
    }
}
@media (min-width: 1400px) {
    .ls100 {
        width: 100%;
        max-width: 100%;
    }
}