:root {
    --bigMenu-w:260px;
}

.FlashBox{
    width: 20%;
    display: flex;
    align-items: center;
}
.FlashBox .icon{
    display: flex;
}
.FlashBox .icon svg{
        width: 34px;
    height: 34px;
}
.FlashBox.success{
    background: rgb(var(--greenFront));
    color: #fff;
    border: none;
}
.FlashBox.alert{
    background: #f26161;
    color: #fff;
     border: none;
}

 .field-input {
    padding: 8px 1rem;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background: rgb(225 225 225 / 29%);
        color: rgba(var(--secondary), .95);
}

.field::after {
  background-color: rgba(var(--primary), 1); 
}

/*
.withLoading span{
    width: 22px;
    height: 22px;
    margin-top: -3px;
    vertical-align: middle;
    display: none;
}
*/
.withLoading span{
  width:22px; height:22px;
  margin-top:-3px;
  vertical-align:middle;
  display: inline-block;
  /* évite display:none pendant l'anim: on contrôle via .active */
   align-items:center; justify-content:center;
  opacity:0; 
  /*display: none;*/
  margin-left: -22px;
  pointer-events:none;
}

.withLoading span.active{
  opacity:1; display: inline-block;margin-left: 0;
}

/* assure la taille du SVG */
.withLoading span .loader-svg{ width:22px; height:22px; margin-top: -2px}

/* animation CSS robuste */
.withLoading span .loader-svg .spin,
.withLoading span img.loader-svg
{
  animation: spin 1s linear infinite;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform;
}

@keyframes spin { to { transform: rotate(360deg); } }

.checkbox-wrapper-35 .switch + label::before {
    background-color: rgb(var(--borderBox));
}
.checkbox-wrapper-35 .switch:checked + label::before {
    background-color: rgb(var(--primary));
}



.pgbar {
    position: relative;
    width: 100%;
    height: 9px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 2px;
    background: #e1e1e1;
    box-shadow: inset 0 1px 1px rgba(212, 212, 212, .5);
    float: left;
    overflow: hidden;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
}
.pgbar-message {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    opacity: 0.7;
    overflow: hidden;
    font-size: 10px;
}
.pgbar-message span {
    font-weight: bold;
}

.pgbar-inner {
    background-color: rgba(var(--primary), 1);
    width: 1%;
    height: 100%;
    background-size: 18px 18px;
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    -o-border-radius: 40px;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -ms-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    /* box-shadow: inset 0 2px 8px rgba(255, 255, 255, .35); */
    box-sizing: border-box;
    -webkit-animation: slide 20s linear infinite;
}


.jq-has-icon {
    padding: 10px 20px 10px 14px!important;
}
.jq-toast-single {
    border-radius: 28px!important;
}

/* Animation apparition slide + fade */
@keyframes toast-slide-fade {
    from {
        transform: translateY(50px); /* décale de 20px vers le bas */
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.jq-toast-single.toast-animate {
    animation: toast-slide-fade 0.3s ease-out;
    font-size: 16px;
    font-weight: 500;
    font-family: inter;
    letter-spacing: -0.05rem;
    line-height: 19px;
    padding: 1rem 1.5rem !important;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .2) !important;
    color: rgb(var(--secondary)) !important;
}
.jq-icon-success span.ico{
    width: 26px!important;
    height: 26px!important;
}
@-webkit-keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 400px 0; }
}
.tooltip3 {
   position: relative; /* référence pour le positionnement du tooltip */
}

.tooltiptext, /* For Nav */
.tooltip3 .tooltiptext {
    font-size: 13px;
    line-height: 18px;
    visibility: hidden;
    font-weight: 400;
    width: auto;
    background-color: #344563;
    color: #fff;
    border-radius: 6px;
    padding: 6px 2rem;
    text-shadow: 0 0 rgb(0 0 0 / 0.2);
    position: absolute;
    z-index: 1200;

    /* Position à droite */
    top: 50%;
    left: 105%;
    transform: translateY(-50%);

    /* Centrage du texte dans la bulle */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: all 0.3s;
}

/* For Nav */
body > .tooltiptext{
    display: none;
 }
/*
.tooltip3 .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%; 
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #344563; 
}
*/

.small_arround{
    border-radius: 60px;
    padding: 10px!important;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}


/* Affichage au hover */
.collapsed.apps .tooltip3:hover .tooltiptext {
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.3);
    visibility: visible;
    opacity: 1;
}



 textarea{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    line-height: 23px !important;
    /* box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05); */
    border: 2px solid rgba(var(--borderBox), 1)!important;
    height: 110px!important;
    border-radius: 6px;
    background: rgb(225 225 225 / 29%);
}
 .field.textarea{
    margin-top: 1rem;
    margin-bottom: 1rem;
        height: auto;
 }
 .field.textarea:before, .field.textarea:after{
    display: none;
 }
 textarea:focus{
        outline: 0;
    border: 2px solid rgba(var(--primary), 1)!important;

}


.apps{
    background-color: #fafafa;
}

.apps .sep{
    display: block;
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
}

.apps .no-contacts {
    display: block;
    margin: 2rem auto;
}

.apps .navApps a.logoNav {
    
    display: flex;
    font-weight: 600;
    overflow: hidden;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    justify-content: flex-start;
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
    align-items: center;
    padding: .5rem .85rem;    
}

.apps .navApps a.logoNav svg{
    width: 52px !important;
    height: 32px !important;
   
}
.apps .navApps a.logoNav span{
    margin-left: .5rem;
    font-size: 22px;
}

.apps .navApps a svg{
     flex-shrink: 0; /* si dans un flex, empêche de rétrécir */
}
.apps .navApps a span{
    font-size: 14px;
}



.apps a.delete-img {
    margin-left: .5rem;
}
.apps a.delete-img svg{
    fill: rgba(var(--secondary), 1);
}
.apps a.delete-img:hover svg{
    fill: rgba(var(--primary), 1);
}

.apps .s_orga{
    /* display: flex; */
    align-content: flex-start;
    justify-content: center;
   /* margin-bottom: 2rem;*/
}
 

.apps .s_orga a.add{
    text-decoration: underline;
    font-weight: 600 !important;
}

 

.apps .navApps .dropdown{
    white-space: nowrap;
}

.apps .s_orga .dropdownOn {
    margin-top: -3px;
}
.apps .s_orga .dropdown-menu {
    left: 20px;
    border-radius: 6px;
    padding: 0;
    min-width: 170px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.apps .s_orga .dropdown-menu a {
    margin: 0;
    padding: .15rem .85rem;
    min-height: 34px;
    font-weight: 100;
    font-size: 12px;
}
 
.apps .navApps .dropdown svg.arrow{
    stroke: rgb(var(--secondary));
    transform: rotate(90deg);
    margin-left: .75rem;
}
.collapsed.apps .navApps .dropdown svg.arrow{
    display: none;
}
.dropdown-menu li a:hover{
    color: rgb(var(--secondary));
    background-color: #fafafa;
}
.apps .s_orga li > a > span{
    margin-left: 10px;
}
.collapsed.apps .s_orga li > a > span{
    display: none;
}
.apps .s_orga .select{
    display: none;      
}
.collapsed.apps .s_orga .select{
    display: block;      
}


.apps .s_orga li > a > span,
.collapsed.apps .s_orga .select{
     background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 0 .5rem;
    font-weight: 100;
    font-size: 12px;
}
.collapsed.apps .s_orga .select{
    padding: .15rem 1rem 0;
    margin-bottom: .25rem;
}

.apps .navApps .export {
    background: #fff;
    margin: 1.25rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: left;
    padding: 1rem;
    font-size: 13px;
    display: flex;
    flex-direction: column;
}
.apps.collapsed .navApps .export{
    align-items: center;
    padding: .75rem 0;
}
.apps .navApps .export .title{
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 0;
}
.apps .navApps .export .subtitle{
    font-weight: 100;
    margin-bottom: .25rem;
    font-size: 12px;
}
.apps .navApps .export > span{
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
}
.apps .navApps .export a {
    margin: 0;
    display: inline-block;
    color: #fff;
    padding: .25rem 1rem .35rem;
    min-height: auto;
    max-height: 50px;
}
.apps .navApps .export a:hover {
    background-color: rgba(var(--primary), 1);
}
.apps .navApps .export .title svg{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.apps .navApps .export a svg{
    margin-right: 10px;
}
.collapsed.apps .navApps .export a {
    padding: .25rem;
    margin-top: 0.5rem;
}
.collapsed.apps .navApps .export a svg{
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.apps .content_sample_email_btn{
    display: flex;
    margin-top: 1rem;
    justify-content: flex-end;
}
.apps .content_sample_email_btn a{
    padding: .25rem 1rem;
}

.apps .navApps a.account {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
    margin: 0 1.25rem;
}
.apps.collapsed .navApps a.account {
    flex-direction: row;
}
.apps .navApps a.account svg{margin-right: .25rem}
.apps .navApps .account > div {
    display: flex;
    flex-direction: row;
}
.apps .navApps a.account > span{
    font-weight: 100;font-size: 12px;
}
.apps .btnNext{
    background-color: rgba(var(--primary), 1);
    border: 2px solid rgba(var(--primary), 1);
}

.apps .navApps a.doc svg{margin-right: .5rem}
.apps .navApps a.doc .nameTxt{
    font-size: 13px;
    font-weight: 100;opacity: .7;
    text-decoration: underline;
    min-height: 24px;
}
.apps .navApps a.doc:hover{
    background-color: transparent;
}
.apps .navApps a.doc{
    padding: 1rem;
    margin: 1rem 1.25rem;
}
.apps .navApps{
      height: 100vh;          /* hauteur fixe égale à la fenêtre */
    /* overflow-y: auto; overflow-x: hidden; */
    width: var(--bigMenu-w);
    position: fixed;
    min-width: 86px;
    display: flex;
    text-align: center;
    z-index: 500;
    /* z-index: 500; */
    background-color: #fafafa;
    flex-direction: column;
    align-items: center;
      justify-content: space-between;
}
.apps .navApps .nameTxt{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.apps .navApps .nameTxt svg {
    width: 22px;
    height: 22px;
    margin-right: 14px;
}



.collapsed.apps .navApps .no-minmal{
    display: none;
}
.collapsed.apps .navApps{
    width: 100px;
    min-width: auto;
}
.collapsed.apps .navApps .nameTxt svg {
    margin-right: 0;
}
.collapsed.apps .navApps .nameTxt {
    justify-content: center;
}
.collapsed.apps .warper {
    padding-left: 100px;
}

/*
.mobile.apps
et media Queries doivents avoir la mm configuration

*/



/*? Expand button */
.expand-btn {
    position: absolute;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
    z-index: 2;
    bottom: 2rem;
    right: -22px;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
}
body.collapsed .expand-btn {
    right: -20px;
}
.expand-btn:hover {
  border: 1px solid rgb(var(--primary));
  stroke: rgb(var(--primary));
}
.expand-btn svg {
  transform: rotate(-180deg);
  stroke: rgb(var(--secondary));
  width: 1.25rem;
  height: 1.25rem;
}
body.collapsed .expand-btn svg {
  transform: rotate(-360deg);
}

 

.apps .warper {
    width: calc(100% - 16px);
    height: 100vh;
    padding-left: var(--bigMenu-w);
    display: flex;
    align-items: center;
    justify-content: center;
}
.apps .warper .content{
    background-color: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    height: calc(100% - 28px);
    width: 100%;
    border-radius: 8px;
    justify-content: flex-start;
    overflow: hidden;
}

.apps .navApps > div{
    overflow: auto; /* souci !!! de Clip et de débordement tooltip */
    overflow-x: hidden;
    display: flex;
   height: 100%;
    justify-content: space-between;
}


.apps .navApps > div:first-of-type,
.apps .navApps > div:last-of-type {
        width: 100%;
        display: flex;
    flex-direction: column;
}
 


.ico-builer {
    position: absolute;
    background: red;
    background: #ffc107;
    right: -4px;
    top: -2px;
    padding: 0px 6px;
    border-radius: 4px;
    font-size: 10px !important;
    transform: rotate(23deg);
    color: rgba(var(--secondary), 1);
}

.apps .navApps a{
    text-align: left;
    color: var(--secondary);
    padding: .5rem .85rem .5rem 1.5rem;
    margin: .15rem 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 42px;
    flex-wrap: nowrap;
    text-wrap: nowrap;
}
.apps.collapsed .navApps a{
    padding: .5rem .0 .5rem 0;
    justify-content: center;
}
.apps .navApps .current,
.apps .navApps a:hover,
.apps .navApps a:focus,
.apps .navApps a:active {
    background-color: #ededf3;
}

.content-data {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}
.content-data header{
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    justify-content: space-between;
    align-items: center;
        flex-shrink: 0;

}
.content-data header .btnNext{
    margin:0;
    font-weight: 100;
    font-size: 16px;
    padding: 4px 20px;
}
.content-data header .btnNext.withLoading{
    padding:  4px 16px 4px 14px
}
.content-data .content-content {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.apps h1 {
    font-size: 1.25em;
    line-height: 40px;
    display: flex;    align-items: center;
}
.apps h1 svg{margin-right: 1rem }
.apps .navApps .nice-select .current{
    background-color: transparent;!important;
}

.apps .navApps .nav-item {
    display: flex;
    flex-direction: column;
}

.apps .navApps .nav-item.current{
        background-color: #ededf3;
        border-radius: 12px;
        padding-bottom: 10px;
}
.apps .navApps .nav-item .nice-select{
    width: 90%;
    margin: 0 auto;
}

.apps .drop-zone {
    border: 2px dashed #ededf3;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    max-width: 200px;
}
.apps .drop-zone.hover, .apps .drop-zone:hover  {
    border-color: rgba(var(--primary), 1);
}
.apps .drop-zone img {
    max-width: 100%;
    display: block;
}

.apps .organization .content-content form {
    display: flex;
}
.apps .organization .content-content form > div {
    width: 50%;
}

.apps .organization .content-content form > div:first-child  {
    /* text-align: center; */
    padding-left: 2rem;
    width: 30%;
}

.apps .organization .content-content form > div:first-child > div {
    padding-left: 2rem;
    display: flex;
    margin-bottom: 3rem;
    flex-direction: column;
}



.apps .organization .info_img,
.apps .team .info_img{
    color: #b8b5bd;
    font-weight: 100;
    font-size: 12px;
    font-style: italic;
    line-height: 20px;
}
.apps .lablel_color label {
    min-width: 160px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 100;
}

.apps .tabs-menu{
    border-bottom: 2px solid rgb(var(--secondary), .05);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: .75rem;
}

.apps .tabs-menu > span {
    display: inline-block;
    padding: 1rem;
    position: relative;
    bottom: -2px;
}

.apps .tabs-menu> span:hover{
    cursor: pointer;
}
.apps .tabs-menu > span:hover:not(.active) {
    color: rgba(var(--primary), 1);
/*    box-shadow: inset 0px -2px 0 0px  rgba(var(--primary), 1);*/
}
.apps .tabs-menu> span.active{
    color: rgba(var(--primary), 1);
    box-shadow: inset 0px -2px 0 0px rgba(var(--primary), 1);
}


.apps .field  em{
    font-size: 12px;
    opacity: .5;
    font-weight: 100;
    padding-left: 1rem;
    margin-bottom: 1rem;
    position: relative;
    text-align: right;
    display: block;
}


/* Team */
.apps .team .content-content {
    display: flex;
    height: 100vh; /* ou 100% si parent déjà géré */
    overflow: hidden;
    padding: 0;
}

.apps .team .list {
    width: 25%; /* largeur fixe ou en % */
    display: flex;
    flex-direction: column;
    height: 100%;
    border-right: 1px solid #e5e7eb;
     /*   box-shadow: 7px 0px 14px rgba(0, 0, 0, .05);*/
}

.apps .nice-select .list {
    width: 100%;
    border: none;
    height: auto;
}


.apps .team .list header {
    height: 60px;
    /* background: #f5f5f5; */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apps .team .list-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.apps .team .other {
    flex: 1;
    padding: 20px;
}

.apps .team .content-form{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
 
}

.apps .team .form{
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
.apps .team .form form {
    display: flex;
}

.apps .team .form form > div{
    width: 50%;
}
.apps .team .form form > div:first-child{
   width: 20%
}

.apps .team .list-content .item {
    margin: 1rem;
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.apps .team .list-content .item:hover{
    border: 1px solid rgba(var(--primary), 1.0);
}

.apps .team .list-content .item.current {
     border: 1px solid rgba(var(--primary), 1.0);
}
.apps .team .list-content .item a{
    display: flex;
    width: 100%;
    color: rgb(var(--secondary));
}
.apps .team .list-content .item a > div{
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 18px;
    justify-content: center;
}
.apps .team .list-content .item a > div .info-2{
    font-weight: 100;
    font-size: 12px;
    opacity: .7;
}


.apps span.no-list {
    text-align: center;
    display: block;
    font-style: italic;
    font-weight: 100;
}


/* campaigns */
.apps .team.campaigns .list-content .item a {
    padding: 1rem;
}
.apps .team.campaigns .list-content .item{
    overflow: visible;
        margin-bottom: 1.5rem;
}
.apps .team.campaigns .list-content .item a.edit {
    position: absolute;
    top: -20px;
    height: 20px;
    right: 0px;
    text-align: right;
    font-size: 12px;
    display: inline-block;
    padding: 0;
}
.apps .team.campaigns .list-content .item a.edit:hover {
    text-decoration: underline;
}


.apps .team.campaigns .form form > div:first-child {
    width: 60%;
    margin: 0 auto;
}


.apps .team .menu_banners .list-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.apps .team .menu_banners .list-content .info{
    background-color: #f3f4f6;
    border: 0;
    margin: 1rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 100;
    text-align: center;
    font-size: 12px;
}
.apps .team .menu_banners .list-content .info strong{
   font-weight: 600;

}

.apps .team .menu_banners .item:before{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background: #E57373;
    border-radius: 50px;
    right: 10px;
    top: 8px;
}
.apps .team .menu_banners .item.live:before{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background: #8BC34A;
    border-radius: 50px;
    right: 10px;
    top: 8px;
}

/* Signatures */
.apps .team.signatures .list{
    overflow-y: auto;
}
.apps .team.signatures .form{
    padding: 0;    background: #fafafa;
}
.apps .team.signatures .playground .nice-select{
        min-width: 200px;
}
.apps .team.signatures .playground nav{
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
.apps .team.signatures .playground nav h1{
    text-align: center;
    display: block;
    font-size: 26px;
    margin: 0 0 1rem;
}
.apps .team.signatures .list.sign .list-content .item{
    min-height: 70px;
    min-width: 150px;
}

.apps .team.signatures .playground { position: relative; } /* parent */
.apps .team.signatures .playground .loader-Content {
  width: 15%;
  position: absolute;
  left: 50%;top: 150px;
  transform: translateX(-50%);
  /* optionnel : z-index: 10; */
}
.apps .team.signatures .playground nav > div{
    display: flex;
    justify-content: center;
}
.apps .team.signatures .playground nav > div > div{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 2rem;
}
.apps .team.signatures .nice-select .list{
    overflow: hidden;
    width: 100%;
    height: auto;
    border-right: none;
}

.apps .team.signatures .item a > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}
.apps .signatures .item a > div svg{
    margin-right: .75rem;
}

.apps .team.signatures .item a > div .info-1{
    font-weight: 100;
}


.apps .signatures_config{
    margin: 0 2rem;
}

.apps .signatures .list.config{
    display: flex;
    flex-direction: row;
    width: 40%;
    min-width: 380px;
}
.apps .signatures .list.config > div{
    display: flex;
    flex-direction: column;
    /* width: 50px; */
    align-items: center;
    border-right: 1px solid #e5e7eb;
}
.apps .signatures .list.config > div a{
    display: flex;
    width: 90px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 90px;
    min-height: 90px;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    font-size: 11px;
    /* margin-top: .5rem; */
    font-weight: 100;
    line-height: 16px;
    color: rgb(var(--secondary));
}
.apps .signatures .list.config > div a span{
    margin-top: .25rem;
}
 
.apps .signatures .list.config > div a:hover{
   background:  #fafafa;
}
.apps .signatures .list.config > div a.active{
    background-color: rgb(var(--primary));
    color: #fff;
}
.apps .signatures .list.config > div a svg {
    width: 32px;
    height: 32px;
    fill: rgb(var(--secondary));
    
}
.apps .signatures .list.config > div a.active svg{
    fill: #fff;
}
.apps .team.signatures .list.config {
    overflow-y: unset;
}
.apps .team.signatures .list.config #form_signatures{
    overflow-y: auto;
    width: 100%;
}


/* Tabs */
.apps .team.signatures .signatures_config > div > div { display: none; }
.apps .team.signatures .signatures_config > div > div.active { display: block; }

.apps .signatures_config .model-name {
    margin-top: 1rem;
}
.apps .signatures_config .section {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.apps .signatures_config .section .titre{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
    font-weight: 600;
    border-bottom: 1px solid rgb(var(--borderBox));
}
.apps .signatures_config .section hr{
    border-top: 1px solid rgb(var(--borderBox));
}
 
.apps .signatures_config .section .titre svg{
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
}
.apps .signatures_config .section .c{
}

.apps .signatures_config .section .stitre {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 100;
    align-items: center;
}
.apps .signatures_config .section .stitre .c{
        display: flex;
        align-items: center;
}

.apps .signatures_config .section .stitre.alone > .c{
    width: 100%;
    justify-content: space-between;
}
.apps .signatures_config .section .stitre.alone .c.treeRight{
      justify-content: flex-end;
}
.apps .signatures_config .section .stitre.alone .c.treeRight .nice-select.small{
    padding-left: 12px;
    padding-right: 25px;
}
.apps .signatures_config .section .stitre.alone .c.treeRight .small_group{
    margin-right: .5rem;
}
.apps .signatures_config .alone .c.small_group > div {
    padding: 0;
}
.apps .signatures_config .alone .c.small_group > div > div,
.apps .signatures_config .c.small_group > div
 {
    padding: .5rem .5rem;
    display: flex;    align-items: center;
    max-height: 36px;
}

.apps .signatures_config .alone .c.small_group .active,
.apps .signatures_config .c.small_group .active{
    box-shadow: inset 0 0 0 2px #3498db;
    overflow: hidden;border-radius: 5px;
}
.apps .signatures_config .alone .c.small_group > div:first-child  .item-config.active,
.apps .signatures_config .c.small_group > .item-config:first-child.active  { 
    border-top-right-radius: 0 ;
    border-bottom-right-radius: 0 ;
}
.apps .signatures_config .alone .c.small_group > div:nth-child(2) .item-config.active ,
.apps .signatures_config .c.small_group > .item-config:nth-child(2).active {
    border-radius: 0;
}
.apps .signatures_config .alone .c.small_group > div:nth-child(3) .item-config.active,
.apps .signatures_config .c.small_group > .item-config:nth-child(3).active { 
    border-top-left-radius: 0 ;
    border-bottom-left-radius: 0 ;
}


.apps .signatures_config .color{
    display: flex;
    margin-left: 1rem;
}

.apps .signatures_config .c.small_group.one-level > div > div:not(:first-child) {
    border-left: 1px solid rgb(var(--borderBox));
}

.apps .signatures_config  .c.small_group.one-level > div > div.active:first-child  { 
    border-top-right-radius: 0 ;
    border-bottom-right-radius: 0 ;
}
.apps .signatures_config .c.small_group.one-level > div > div.active:nth-child(2) {
    border-radius: 0;
}
.apps .signatures_config .c.small_group.one-level > div > div.active:last-child { 
    border-top-left-radius: 0 ;
    border-bottom-left-radius: 0 ;
    border-top-right-radius: 5px!important ;
    border-bottom-right-radius: 5px!important ;
}



.apps .signatures_config .section .stitre .c.font-family {
    display: flex;
    flex-direction: column;
}
.apps .signatures_config .section .stitre .font-family-select{
    min-width: 142px;
}
.apps .signatures_config .section .stitre .group{
    display: flex;
    align-items: center;
}
.apps .signatures .cld-open-modal.delete{
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.apps .signatures_config .info {
    background-color: #f3f4f6;
    border: 0;white-space: normal;
    margin: 1rem;
    padding: 1rem;margin-top: 2rem;
    border-radius: 6px;
    font-weight: 100;
    text-align: center;
    font-size: 12px;
}
.apps .signatures_config .info strong{
    font-weight: 600;
}


/* TPL */
.apps .signatures_config .section .tpl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 1.25rem;
}

.apps .signatures_config .section .small_group.tpl > div {
    position: relative;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
    border: 1px solid rgb(var(--borderBox));
    flex: 0 0 calc(50% - 5px);
    border-radius: 1px!important;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
     font-weight: 100;
      color: rgb(var(--secondary));
      max-height: 100%;box-shadow: none;
}
.apps .signatures_config .section .tpl > div.active {
    font-weight: 600;
}
.apps .signatures_config .section .tpl > div > svg{
    fill:rgb(var(--borderBox));
}
.apps .signatures_config .section .tpl > div.active > svg{
    fill:rgb(var(--secondary));
}
.apps .signatures_config .section .tpl > div span{
    display: none;
}
.apps .signatures_config .section .tpl > div.active span{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: 20px;
    height: 20px;
    background: rgb(var(--primary));
    align-content: center;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 4px;
}
.apps .signatures_config .section .tpl > div.active span svg{
    fill:#fff;
}
.apps .signatures_config .c.small_group.tpl{
        border: none;
}
 
 
.apps .signatures_config .c.small_group.tpl .item-config:hover {
    border: 1px solid rgb(var(--primary))!important;
    cursor: pointer;
}
.apps .signatures_config .c.small_group.tpl .item-config.active{
    border: 1px solid rgb(var(--primary))!important;
}

.apps .playground #Preview #build{
    margin: 5rem auto 0 auto;
    background: #fff;
    box-shadow: 0px 2px 8px rgba(40, 41, 61, .08), 0px 20px 32px rgba(25, 28, 43, .06);
    padding: 2rem 1.75rem 2rem;
    padding-top: .75rem;
    border-radius: 8px;
    min-width: 590px;
    width: max-content;
}
.apps .playground #Preview #build .bolo {
    margin-bottom: .65rem;
    margin-top: -16px;
}
.apps .playground #Preview #build .cld-m-hd-title-fix header{
    border-bottom: none;    justify-content: flex-end;
        padding: 0.75rem 0rem;
}

.apps .signatures_config .font-family .nice-select ul.list li:nth-child(1),
.apps .signatures_config .font-family .nice-select .current.value-1 { 
    font-family: "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
}
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(2),
.apps .signatures_config .font-family .nice-select .current.value-2 { 
    font-family: "Arial";
}
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(3),
.apps .signatures_config .font-family .nice-select .current.value-3{ 
    font-family: "Verdana";
}
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(4),
.apps .signatures_config .font-family .nice-select .current.value-4{ 
    font-family: "Trebuchet MS";
}
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(5),
.apps .signatures_config .font-family .nice-select .current.value-5{ 
    font-family: "Georgia";
}
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(6),
.apps .signatures_config .font-family .nice-select .current.value-6{ 
    font-family: "Palatino";
}  
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(7),
.apps .signatures_config .font-family .nice-select .current.value-7 { 
    font-family: "Lucida Sans";
}                 
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(8),
.apps .signatures_config .font-family .nice-select .current.value-8 { 
    font-family: "Times New Roman";
}                        
.apps .signatures_config .font-family .nice-select ul.list li:nth-child(9), 
.apps .signatures_config .font-family .nice-select .current.value-9 { 
    font-family: "Courier New";
}                  



 
.apps .signatures_config input[type="color"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

    width: 18px;
    height: 18px;
    border: none;
    border-radius: 27px;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    outline: 1px solid rgba(var(--borderBox), 1);
    outline-offset: 2px;
}

/* Chrome */
.apps .signatures_config input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.apps .signatures_config input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

/* Firefox */
.apps .signatures_config input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 4px;
}



.apps .signatures_config .section .titre + .stitre {
    margin-top: 1rem;
}
.apps .signatures_config .svg_icon1 svg{
    display: block;
    width: 18px;
    height: 18px;
    fill:rgb(var(--secondary));
}
/**/
.apps .signatures_config .svg_icon2 svg{
    display: block;
    width: 18px;
    height: 18px;
}

.apps .signatures_config .section  .c.small_group .item-config:hover{
    border:none;
    border-left: 1px solid rgb(var(--borderBox));
}
.apps .signatures_config .section  .c.small_group .item-config:hover{
    border:none;
}
.apps .signatures_config .section  .c.small_group .item-config:not(:first-child):hover{
   border-left: 1px solid rgb(var(--borderBox));
}

.apps .signatures_config .section  .c.small_group .item-config.active{
    border:none;
}
.apps .signatures_config .section  .c.small_group .item-config:not(:first-child).active{
    border-left: 1px solid rgb(var(--borderBox));
}
/*
.apps .signatures_config .section .stitre.svg_icon1 .c.small_group .item-config.active svg > rect{
     fill:rgb(var(--primary));
}

.apps .signatures_config .section .stitre.svg_icon1 .c.small_group .item-config.active svg > path{
    fill:#fff;
}*/
.apps .signatures_config .section .stitre.svg_icon2 .c.small_group .item-config.active svg > rect,
.apps .signatures_config .section .stitre.svg_icon2 .c.small_group .item-config.active svg > circle{
     stroke:rgb(var(--primary));
}

.apps .signatures_config .c.small_group > div:not(:first-child) {
     border-left: 1px solid rgb(var(--borderBox));
}
.apps .signatures_config .c.small_group {
    border: 1px solid rgb(var(--borderBox));
    display: flex;
    /* gap: 10px; */
    align-items: center;
    border-radius: 6px;
    justify-content: center;
   
}
.apps .signatures_config .stitre{
     margin: .75rem 0rem;
}
.apps .signatures_config .stitre.small-m{
     margin: .05rem 0rem;
}
#font_family + .nice-select {
    min-width: 130px;
}














/* Export */
.apps .team.export .item{
display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin: 2rem;
    min-width: 250px;
    box-shadow: 0px 5px 20px 0px rgb(44 54 59 / 17%);
}
.apps .team.export .item a{
     display: flex;
}
.apps .team.export .item:hover{
    box-shadow: -6px 5px 10px 0px rgb(44 54 59 / 17%);
    transform: translateY(-1px);
    /* border: 1px solid transparent; */
}

.apps .team.export .content-form .form{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}
.apps .export .blc-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.75rem 1rem 1.5rem 1rem;
}

.apps .export .blc-header img {
    border-radius: 50%;
}
.apps .export .blc-header .blc-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 20px;
    margin: .75rem 0 0 0;
}
.apps .export .blc-header .blc-title .info-2{
    font-weight: 100;
    font-style: italic;
    font-size: 12px;
    opacity: .8;
    min-height: 20px;
}

.apps .export .blc-select {
    background: #fafafa;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/*
.apps .export .item .blc-select:nth-of-type(3)  {
        padding-bottom: 2rem;
}*/

.apps .export .blc-select > span{
    font-weight: 400;
    font-size: 14px;
    text-align: left;
}

.apps .export .blc-export{
    display: block;
    width: 100%;
    text-align: center;
}

.cld-AddIcon {
    background: rgba(var(--primary), 1);
    color: #fff;
    width: 100%;
    padding: .75rem 1rem;
}
.apps .team.export .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.apps .team.export .item a svg {
    margin-right: .25rem;
}

.apps .team.export .person {
    display: block;
    transform-origin: top;
    transition: all 0.25s ease;
    opacity: 1;
    transform: scale(1) translateY(0);
}

.apps .team.export .person.hide {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: none;
}



.cld-m-hd-title-fix header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8eced;
    padding: .75rem 1rem;
}
.cld-m-hd-title-fix header .left {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.cld-m-hd-title-fix header .right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.cld-m-hd-title-fix header .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}
.cld-m-hd-title-fix header .dots > div{
width: .8rem;
    height:  .8rem;
    border-radius: 2.4rem;;
}
.cld-m-hd-title-fix header .dots .close-i {
    background-color: #ff5f56;
}
.cld-m-hd-title-fix header .dots .minimize {
    background-color: #ffbd2e;
}
.cld-m-hd-title-fix header .dots .maximize {
    background-color: #27c93f;
}

#cld-modal .cld-m-hd-title-fix header button.cld-close-modal {
    position: relative;
    right: auto;
    top: auto;
}

.cld-m-hd-title-fix header button {
    border: 1px solid #e8eced;
    align-items: center;
    gap: .8rem;
    padding: .75rem;
    border-radius: .8rem;
    cursor: pointer;
    font-size: 1.4rem;;
    display: flex;
    align-items: center;
        text-transform: capitalize;
    background-color: #fff;
}
.cld-m-hd-title-fix header button svg,
.cld-m-hd-title-fix header button .icon-close{
    height: 14px;width:14px;
}
.cld-m-hd-title-fix header button:hover{
    background-color: #f5f5f5;
}

.cld-global-content .loader-warper {
    margin: 1rem 30% 0;
}

.cld-global-content .loader-warper > div{
    display: none;
}
.cld-open-modal.delete{
    display: flex;
    font-size: 14px;
    align-items: center;
    color: #f26161;
    font-weight: 100;
}
.cld-open-modal.delete svg{
    margin-left: 7px;
}
#cmpAdd{
        position: relative;
}
#cmpAdd .cld-m-ft-fix {
    display: flex;
    padding: .2rem;
    gap: .4rem;
    border-radius: 10px;
    background-color: #f1f3f4;
    border: 1px solid #e8eced;
    width: 100%;

}
#cmpAdd .cld-m-ft-fix button {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: transparent;
        flex-direction: column;
}

#cmpAdd .cld-m-ft-fix button span{
    font-size: 12px;
    color:rgb(var(--secondary));
    font-weight: 400;
    margin-top: 5px;
    text-transform: math-auto;
}
#cmpAdd .cld-m-ft-fix button.active {
    background-color: #fff;
    border-color: #e2e7e9;
}
#cmpAdd .cld-m-ft-fix button:hover {
    background-color: #e4e4e4;
}
#cmpAdd .cld-m-ft-fix button svg {
    width: 24px;
    height: 24px;
}
#cmpAdd .cld-m-ft-fix button svg path{
    fill:rgb(var(--secondary));
}
#cmpAdd .dynamik-content {
    padding: 0rem 1rem 2rem;
}

#cmpAdd .cld-global-content > div {
    display: none;
}
#cmpAdd .cld-global-content > .contenu1 {
    display: block;
}

#cmpAdd .portal-copy{
    position: absolute;
    top: 5rem;
    right: 22px;
    display: flex;
    margin-top: auto;
    background-color: rgba(var(--primary), 1.0);
    color: #fff;
    border-radius: 8px;
    padding: .6rem 1.5rem;
    cursor: pointer;
    flex-wrap: wrap;
}
 
#cmpAdd .portal-copy svg {
    width: 24px;
    height: 24px;
    margin-right: .5rem;
}


#cmpAdd .preview-html {
    padding: 40px;
    font-weight: 100;
    font-size: 13px;
    line-height: 23px;
    background: #2b2b2b;
    display: block;
    color: #fff;
}

#cmpAdd .preview-html, 
#cmpAdd .dynamik-content 
{      user-select: none; /* Empêche la sélection */
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */

}

/* Style pour .bolo avec des rectangles gris sur les <span> */
.bolo {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.bolo span {
    display: inline-block;
    height: 10px;
    background-color: #e8eced;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: .5rem;
    vertical-align: middle;
}

.bolo span:nth-child(1) {
    width: 24%;
}

.bolo span:nth-child(2) {
    width: 30%;
}

.bolo span:nth-child(3) {
    width: 16%;
}
.bolo > div{
    margin-bottom: 20px;
}

#cmpAdd .send-by-email{
    padding: 2rem;
}



.apps .stats .content-content{
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .apps .stats .content-content table {
      width: 60%;
      border-collapse: collapse;
      margin: 4rem 0;
      box-shadow: 0px 5px 20px 0px rgb(44 54 59 / 17%);
      border-radius: 8px; /* Arrondi des coins du tableau */
      overflow: hidden; /* Pour que l'ombre et les coins arrondis ne débordent pas */
    }
    .apps .stats .content-content th, 
    .apps .stats .content-content td {
      padding: 12px 18px;
      text-align: left;
      border: 1px solid #e5e7eb;
    }
    .apps .stats .content-content th {
        background-color: rgb(var(--primary));
        color: white;
        font-weight: 500;
    }
    .apps .stats .content-content tr:nth-child(even) { background-color: #fafafa; }
    .apps .stats .content-content tr:hover {background-color: #eff6ff; }
    .apps .stats .content-content td { }
    .apps .stats .content-content td:last-child { }



    /* Dashboard */
    .apps .dashboard .info {
        display: flex;
        margin: 0 auto;
        padding: .5rem 1rem;
        margin: 0rem 0 2rem;
        font-weight: 100;
        font-size: 14px;
        border-radius: 6px;
        width: fit-content;
        margin: 0 auto 2rem;
        justify-content: flex-start;
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: rgb(var(--secondary));
    }
    .apps .dashboard .check-list {
        display: flex;
        justify-content: center;
        /* border: 1px dashed #e5e7eb; */
        width: fit-content;
        margin: 0 auto;
        border-radius: 6px;
        box-shadow: 0px 5px 20px 0px rgb(44 54 59 / 10%);
    }
    .apps .dashboard .check-list > div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        border-right: 1px dashed #e5e7eb;
        padding: 1rem 3rem;
    }
    .apps .dashboard .check-list > div:last-child {
        border-right: 0;
    }
    .apps .dashboard .title {
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 18px;
        padding-bottom: .75rem;
        margin-top: 1rem;
        border-bottom: 1px dashed #e5e7eb;
    }
    .apps .dashboard .title svg{
        margin-right: 0.5rem;
    }
    .apps .dashboard .res svg{
        width: 40px;
        height: 40px;
    }
    .apps .dashboard .res {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        margin: 2rem 0;
        border-radius: 60px;
    }
    .apps .dashboard .res.good{
            background: rgb(var(--greenFront));
    }
    .apps .dashboard .res.no-good {
        background: #f26161;
    }
    .apps .dashboard .res.wait{
        background: #c9d2d1;
    }
    .apps .dashboard .res svg{
         width: 40px;height: 40px;
    }
    .apps .dashboard .res svg.good {
        fill: #fff;
    }
    .apps .dashboard .res svg.no-good {
        fill: #fff;
    }
    .apps .dashboard .res svg.wait {
        fill: #fff;
    }
    .apps .dashboard .res svg.bi-rocket-takeoff{
        width: 30px;height: 30px;
    }
    .apps .dashboard .cta a:first-child {
        color: rgba(var(--primary), 1);
        font-weight: 100;
        font-size: 14px;
        border: 1px dashed rgba(var(--primary), .2);
        padding: .25rem 1rem;
        border-radius: 6px;
    }
    .apps .dashboard .cta a:first-child:hover {
        border: 1px dashed rgba(var(--primary), 1);
    }
    .apps .dashboard .cta{
        margin-bottom: 1rem;
    }
    .apps .dashboard .cta a:last-child {
        padding: .25rem 1rem;
        margin: 0;
        border: 1px solid rgba(var(--primary), 1);
        font-size: 14px;
        font-weight: 100;
        line-height: normal;
        padding-left: .75rem;
        padding-right: .75rem;
        margin-left: .25rem;
    }
    .apps .dashboard  .count {
        margin: 0 0 1rem;
        font-size: 18px;
        min-height: 30px;
        font-weight: 600;
    }



    /* Account */

    .apps .team.account .list-content {
        display: flex;
        flex-direction: column;
        height: 100%; /* nécessaire pour que le flex remplisse la hauteur */
    }
    .apps .team.account .list-content a:last-child {
        margin-top: auto; /* pousse le dernier lien en bas */
        border-bottom:1px solid transparent;
    }
    .apps .team.account .list-content > a {
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem;
        font-size: 14px;
        font-weight: 100;
        border-radius: 6px;
        margin: .15rem 0;
        color: rgb(var(--secondary));
        display: flex;
        align-items: center;
    }
    .apps .team.account .list-content > a svg{
        margin-right: .25rem;
    }
    .apps .team.account .list-content > a.skip-tab{
        align-items: center;
        justify-content: center;
    }

    .apps .team.account .list-content > a.curent{
        background: #f9f9f9;
        border-bottom: 1px solid rgb(var(--primary));
    }
    .apps .team.account .list-content > a:hover{
        background: #f9f9f9;
    }
    .apps .team.account .content-form > div {
        display: none;
        margin: 2rem 6rem;
        min-width: 460px;
    }
    .apps .team.account .content-form > div.curent {
        display: block; 
    }

    .apps .team.account .form form > div{
        width: 100%;
    }
    .apps .team.account .form form > div.floatLeft {
        width: 49%;
    }
    .apps .team.account .content-form .form form{
        display: block;
    }



    .apps .team.account .email-mode {
        border-bottom: 2px solid rgb(var(--secondary), .05);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: .75rem;
        margin-top: 2rem;
    }

    .apps .team.account .email-mode  > span {
        display: block;
        width: 49%;
        text-align: center;
        font-size: 14px;
        vertical-align: middle;
        font-weight: 100;
            min-height: 50px;
                margin-bottom: -2px;
        /* border: 1px solid green; */
        box-shadow: inset 0px 0px 0 0px rgba(var(--primary), 1);
    }
    .apps .team.account .email-mode  > span em{
        font-size: 12px;display: block;
        opacity: .5;
    }

    .apps .team.account .email-mode  > span:hover{
        cursor: pointer;
    }
    .apps .team.account .email-mode  > span:hover:not(.active) {
        color: rgba(var(--primary), 1);
    /*    box-shadow: inset 0px -2px 0 0px  rgba(var(--primary), 1);*/
    }
    .apps .team.account .email-mode  > span.active{
        color: rgba(var(--primary), 1);
        box-shadow: inset 0px -2px 0 0px rgba(var(--primary), 1);
    }
     .apps .team.account .email-mode  > span.active em{
        color:rgba(var(--secondary), 1);
    }



    .apps .lang-item {
        background-image: url(../img/languages.svg?v=2025);
        background-repeat: no-repeat;
        background-size: auto 24px;
        display: inline-block;
        overflow: visible;
        width: 32px;
        height: 22px;
        border-radius: 4px;
        margin: 0 12px 0 0;
    }
    .apps .lang-item.lang-item-fr-FR {
        background-position: -288px 0;
    }
    .apps .lang-item.lang-item-en-US {
        background-position: -192px 0;
    }
    .lang-item.lang-item-en-GB {
        background-position: -160px 0;
    }

    .apps .languages .dropdown svg.arrow {
        stroke: rgb(var(--secondary));
        transform: rotate(90deg);
        margin-left: .75rem;
    }

    .apps .languages .dropdown > a{
        display: flex;
        align-items: center;
        color: rgb(var(--secondary));
    }
    .apps .languages {
            min-height: 150px;
    }
    .apps .languages > div{
        position: relative;
        margin: 2rem 0;
    }
    .apps .languages .dropdown-menu {
        left: -4px;
        top: 40px;
        border-radius: 6px;
        padding: 0;
        min-width: 170px;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    }
    .apps .languages .dropdown-menu li a {
        color: #626C73;
        height: 33px;
        line-height: 14px;
        display: flex;
        width: 100%;
        align-items: center;
    }

    .apps #domaineListe{
        display: flex;
        flex-direction: column;
    }
    .apps #domaineListe > div {
        display: flex;
        border-bottom: 1px dashed #e5e7eb;
        min-height: 100px;    max-width: 500px;
        align-items: center;
    }
    .apps #domaineListe > div:last-child {
        border-bottom: none;
    }
    .apps #domaineListe > div > div{
        min-width: 150px;
        display: flex;
        justify-content: center;
    }
    .apps #domaineListe > div > div a{
        display: block;
    }
    .apps #domaineListe > div > div:last-child {
        text-align: right;
    }
    .apps #domaineListe .iconCheck {
        text-align: center;
            border-left: 1px dashed #e5e7eb;
            border-right: 1px dashed #e5e7eb;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
    }
    .apps #domaineListe .iconCheck a {
        font-size: 12px;
        color: rgba(var(--primary), 1);
    }
    .apps #domaineListe a.btn.btnNext {
        padding: .05rem .75rem !important;
        font-size: 14px;
    }

    .apps #dns-record{
        border-collapse: collapse;
        font-family: monospace;
        font-size: 14px;
        background: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
        margin: 1.5rem auto;
    }
    .apps #deliverabilityDns .cld-global-content > div {
        padding: 2rem;
    }
    .apps #deliverabilityDns .cld-global-content > div a{
        font-size: 14px;
        color: rgba(var(--primary), 1);
        font-weight: 300;
    }
    .apps #domaineListe .iconCheck > span{
        display: none;
        width: 44px;
        height: 44px;
    }
    .apps #domaineListe .iconCheck span img{
        width: 34px;
        height: 34px;
    }
    .apps #domaineListe .iconCheck .good{
        background: rgb(var(--greenFront));
        color: #fff;
        border: none;
    }
    .apps #domaineListe .iconCheck .no-good{
        background: #f26161;
           color: #fff;
        border: none;
    }
    .apps #domaineListe .iconCheck .withLoading{
        background: rgba(var(--primary), 1);
        border: none;
    }
    .apps #domaineListe .iconCheck .withLoading > span{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin: 0;
    }
     .apps #domaineListe .iconCheck .withLoading > span img{
        margin: 0;
     }
    .apps #domaineListe .iconCheck.loading .withLoading,
    .apps #domaineListe .iconCheck.valid .good,
    .apps #domaineListe .iconCheck.error .no-good{
        display: flex;
        border-radius: 50px;
        justify-content: center;
        align-items: center;
    }
 

    .apps .account .info{
            display: inline-block;
        padding: 0 1rem;
        border-radius: 6px;
        font-weight: 100;
    font-size: 14px;
    }
    .apps .account .litleDoc{
            font-size: 14px;
        font-weight: 300;
            max-width: 450px;
    }
    .apps .account .litleDoc strong{
        font-weight: 600;
    }
    
    .apps .team.account .content-content .content-form {
        padding: 2rem;
        flex: 1;
        overflow-y: auto;
    }