
/* INICIO: Animaciones base estilo 2025 */


.textiamin{
    font-size:1em !important;
}
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes smoothFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInOnly {
    0% {
        opacity: 0;
        scale: 0.8;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideFadeInpopover {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
/* FIN: Animaciones base estilo 2025 */

/* ==== MODAL ==== */
.modal.fade.show .modal-dialog {
    animation: zoomFade 0.35s ease-out;
    will-change: transform, opacity;
}

.modal-backdrop.show {
    opacity: 0.35 !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal .modal-content {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
}

.modal .modal-header {
    padding: 20px 24px !important;
    border-bottom: 1px solid var(--border-color, rgba(0,0,0,0.06)) !important;
    background: var(--white-color, #fff) !important;
}

.modal .modal-header .btn-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    opacity: 0.5;
    transition: all 0.15s;
}
.modal .modal-header .btn-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

/* ==== TOOLTIPS ==== */
/*.tooltip {*/
/*    animation: smoothFadeUp 0.3s ease-out;*/
/*    will-change: transform, opacity;*/
/*}*/

/* ==== POPOVERS ==== */
.popover.show {
    animation: slideFadeInpopover 0.9s ease;
}
.popover-header{
    animation:none !important;
    transition:none !important;
    color:var(--text-color);
}

/* ==== DROPDOWN MENU (sin salto ni desplazamiento) ==== */
.dropdown-menu.show,.filter-wrapper.is-visible,.showanim,.global-login__inner {
    animation: fadeInOnly 0.3s ease-out;
    will-change: transform, opacity;
}
/*.filter-wrapper.is-visible{*/
/*    animation: smoothFadeUp 0.3s ease-out;*/
/*    will-change: transform, opacity;*/
/*}*/
.menu--select.is-visible{
    animation: fadeInOnly 0.3s ease-out;
    will-change: transform, opacity;
}

/* ==== TOASTS ==== */
.toast.show {
    animation: zoomFade 0.5s ease-out;
    will-change: transform, opacity;
    margin: 0.5rem;
}

/* ==== CARDS ==== */
h1,h2,h3,h4,h5,.table-list, .card,#akiwhatshap > div {
    animation: smoothFadeUp 0.5s ease-out;
    will-change: transform, opacity;
}

#akichatWHATBOTscrollmensajes > div, .global-login__body div {
    animation: slideFadeIn 0.5s ease-out;
    will-change: transform, opacity;
}

/* ==== ANIMACIÓN OPCIONAL PARA ELEMENTOS GENÉRICOS ==== */
.animated-fade-in {
    animation: fadeInOnly 0.5s ease-out;
    will-change: opacity;
}

.animated-slide-fade {
    animation: slideFadeIn 0.5s ease-out;
    will-change: transform, opacity;
}

/* FIN Animaciones base 2025-style */


/* CSS */

    .video-fondo {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        z-index: -1;
        object-fit: cover;
        }
    .siri-btn {
        /* Ajusta el tamaño y estilo del botón */
        padding: 1rem 2rem;
        font-size: 1rem;
        border: none;
        border-radius: 9999px; /* Forma de píldora */
        color: #fff;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
        outline: none;
        transition: all 1s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);

        /* Gradiente con múltiples colores y tamaño mayor al normal
           para dar efecto de movimiento al animarse */
        background: linear-gradient(
          45deg,
          #4B0CE8,
          #0070FF,
          #34C759,
          #FE2C55,
          #FF9F00,
          #4B0CE8
        );
        background-size: 600% 600%;

        /* Añade la animación */
        animation: siriOrb 8s ease-in-out infinite;
      }

      @keyframes siriOrb {
        0% {
          background-position: 0% 50%;
        }
        25% {
          background-position: 50% 100%;
        }
        50% {
          background-position: 100% 50%;
        }
        75% {
          background-position: 50% 0%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      /* Efecto hover opcional para resaltar aún más el botón */
      .siri-btn:hover {
          color:#fff;
        transform: scale(1.02);
      }


.modal-open.tox-dialog__disable-scroll .modal-backdrop{
    display:none !important;
}
.fg-emoji-picker {
position:absolute !important;
}
#main-wrapper {
    min-height: calc(100vh - 80px);
}
.d-inline-flex{
    display:inline-flex;
}

.modal-open.tox-dialog__disable-scroll .tox {
    position:fixed !important;
}
.modal-open.tox-dialog__disable-scroll .modal.show {
    position:fixed !important;
    display: none !important;
}
.cursor-default{
    cursor:default;
}

.chat-editor-area{
    width:100%;
  }
#whathsaptext{
    width:100%;
  }
#whathsaptext:disabled{
    background: transparent !important;
    cursor: not-allowed !important;
}
.akicaracteresmaxcomwhats{
    position:absolute;
    right:10px;
    margin-top:-40px;
}
.akifootercomwhats{
    padding-top:5px;
    font-size:13px;
    opacity:0.9;
    padding-bottom:5px;
}
.textodeltemplatequevoyaenviar{
    cursor:default;
}
.scrollbar {
    /* Si quieres forzar un ancho/alto fijo y permitir el scroll, asegúrate de tener overflow */
    overflow-y: auto;
  }

  /* Estilos del scrollbar en navegadores basados en WebKit */
  .scrollbar::-webkit-scrollbar {
    width: 9px;             /* Ancho del scrollbar */
    height: 9px;             /* Ancho del scrollbar */
  }
  .scrollbar::-webkit-scrollbar-track {
    background: transparent;    /* Fondo del track o "canal" del scrollbar */
  }
  .scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Color de la barra de desplazamiento */
    border-radius: 0.75rem;        /* Redondeado para que se vea más elegante */
  }
  .marcnowrap4{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  }
@keyframes animacionwowdatalyse2022 {
    0%   {opacity:0;transform:scale(0.99)}
    25%  {opacity:0.2}
    50%  {opacity:0.5}
    75%  {opacity:0.8;}
    100% {opacity:1;transform:scale(1)}
  }


    .conanimacionwowdatalyse2022 {
    animation-name: animacionwowdatalyse2022;
    animation-duration: 500ms;
  animation-iteration-count: revert;
  }

  button:disabled, input:disabled{
    cursor: not-allowed;
    opacity:0.5;
  }


.botonvolvernew{

    float: left;
}
.float-left{
    float:left;
}
.float-right{
    float:right;
}

.justify-center{
    justify-content: center;
}
.border-none{
    border:0px;
}
.bg-none{
    background: none !important;
}
.hover-none:Hover{
    background: inherit;
}
.user-select-none{
    user-select: none;
}
.u-hidden{
display:none !important;
}
.mtcheckbox{
padding-top:10%;
}
.spanacuantos {
    right: unset;
    position: absolute;
    margin-top:5px;
    margin-left:5px;
    padding: 12px;
}
.spanacuantos:empty{
    display:none !important
}
.multiline{
    white-space: pre-wrap;
}

.datachatfloat_base:not(.active){
    display:none !important;
}
.js-toast-container{
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99050;
    display: flex;
    flex-direction: column;
    gap: .75rem;            /* separación entre toasts */
}

.toast{
    margin-bottom:10px;
}
.notisv2022divpermiso {
    z-index:1000 !important;
    left: 10px;
    bottom:10px;
    position:fixed;
}
.u-hidden1px{
    position:absolute !important;
    visibility: hidden !important;
    opacity:0 !important;
    max-height:1px !important;
    max-width:1px !important;
    overflow:hidden !important;
}

/* CHOICES Y SELECT2 */
.choices__inner {

    background-color: var(--falcon-input-bg);
    background-clip: padding-box;

    border: 1px solid var(--border-strong-color) !important;
    border-radius: 0.75rem !important;
    line-height: 1.5;
    min-height: 38px;
    box-sizing: border-box;
    font-size: var(--font-size-2);
    box-shadow: none;
    transition: border-color 0.2s;

}
.choices.is-open .choices__inner,
.choices.is-focused .choices__inner {
    border-color: var(--brand-color) !important;
    box-shadow: 0 0 0 3px rgba(93, 135, 255, 0.1);
}
.choices__input{
    font-size: var(--font-size-2) !important;
    font-family: inherit;
    color: var(--text-color) !important;
    background: transparent !important;
    padding: 2px 4px !important;
    margin-bottom: 0 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    font-size: var(--font-size-2);
    font-weight: 400;
    line-height: 1.5;
    min-height: 38px;
    box-sizing: border-box;
    padding: 4px 8px !important;
    background-color: var(--falcon-input-bg);
    background-clip: padding-box;
    box-shadow: none;
    border: 1px solid var(--border-strong-color) !important;
    border-radius: 0.75rem !important;
    transition: border-color 0.2s;
}
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--brand-color) !important;
    box-shadow: 0 0 0 3px rgba(93, 135, 255, 0.1);
}
#akicontenidonormal .menu-wrapper.is-select{
    background-color: var(--falcon-input-bg);
    background-clip: padding-box;
    border: 1px solid var(--border-strong-color) !important;
    border-radius: 0.75rem !important;
    box-shadow: none;
    transition: border-color 0.2s;
    padding: 7px 12px !important;
    min-height: 38px;
    box-sizing: border-box;
    font-size: var(--font-size-2);
}
.menu-wrapper.is-select button svg{
    margin-top:3px;
}
.choices{

    border: 0px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 2px 8px !important;
    font-size: 13px !important;
    border: 0;
    background-color: var(--hover-color);
    border-radius: 0.5rem;
    margin-bottom: 0 !important;
    margin-top: 5px !important;
    color: var(--text-color);
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {

    border: 0px !important;
}



.select2-dropdown--above,.select2-dropdown--below{
    background-color: var(--white-color) !important;
    border: 1px solid var(--border-strong-color) !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.select2-search--dropdown .select2-search__field {
    border: 1px solid var(--border-strong-color) !important;
    border-radius: 0.5rem !important;
    background-color: var(--falcon-input-bg) !important;
    color: var(--text-color) !important;
    padding: 6px 10px;
    outline: none;
    transition: border-color 0.2s;
}
.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--brand-color) !important;
}
.select2-results__option {
    padding: 6px 10px;
    border-radius: 0.5rem;
    margin: 2px 4px;
    transition: background 0.15s;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--hover-color) !important;
    color: var(--text-color) !important;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--hover-color) !important;
    color: var(--brand-color) !important;
}
.select2-results__options::-webkit-scrollbar{
    width: 14px;
    height:14px;
}
.select2-results__options::-webkit-scrollbar-thumb{
    background: var(--scrolldark-color);
}

    .select2-container{
        display: block !important;
        z-index: 99997;
    }

    .modal .select2-container{
        display: block !important;
        /*z-index: 9999999 !important;*/
        z-index: 99997;
    }


.left-sidebar .scroll-sidebar {
    height: calc(100vh - 75px);
}

/* .fs-4{
    font-size:36px !important
} */
.notisv2022divpermisocuadro{
    box-shadow: rgba(9, 139, 234, 0.2) 0px 2px 11px;
    background: rgba(0, 5, 10, 0.82);
    color: #fff;
}
.dark-logo,.light-logo{
    max-height:30px;
    align-items: center;
    text-align:center;
}
.logoresponsive{
max-height:26px;
}
#spanacuantoscomunications{
    display: none !important;
}

/* @media (max-width: 1300px) {
    html[data-layout="horizontal"] .body-wrapper{
        padding-top: 70px !important;
    }
    }
    @media (min-width: 1301px) {
    html[data-layout="horizontal"] .body-wrapper{
        padding-top: 0px !important;
    }
    } */
.hover-actions-trigger{
    cursor:pointer;
}
.marcnowrap{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow:hidden;
}
.u-hiddenimportant{
  display:none !important;
}

.marcnowrap2{
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.tabdeWhats{
    font-size: 13px;
    font-weight: 400;
}
.tabdeWhats.active{
    font-size: 13px;
    border-radius:7px;
    color: var(--bs-primary) !important;
    font-weight: 700;
}
.notismarc{
    padding: 10px 15px;
    display:flex;
    font-size:17px;
}
.notismarctitle{
    color:var(--brand-color);
    font-size:1rem !important;
}
.notismarcensection{
    flex-direction: column;
}
.notismarc-unread:Hover{
    background: var(--bs-primary-bg-subtle)!important;
}
.notismarc-textsecondary{
    font-size:14px !important;
}
.notismarc-unread{
    background: var(--hover-color)!important;
}
.left-sidebar{
    z-index:1000;
}
.textia {
    background: linear-gradient(to right, #6495ED, #DA70D6, #FF69B4);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2em;
    font-weight: bold;
}
.modal__header-title,.modal-header-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color, #1a1a2e);
    background: none;
    -webkit-background-clip: unset;
    letter-spacing: -0.01em;
}
.logo-img{
    display:flex;
    justify-content: space-around;
}
#akicontenidonormal{
    margin-top:2px;
}
.dropdown-item{
    BACKGROUND: var(--white-color);
}

.dropdown-item.active{
    background-color: var(--hover-color) !important;
    color: var(--text-color) !important;
}
.cursor-pointer{
cursor:pointer;
}

.boxdraggable{
    box-shadow: 0 0 0 1px rgba(43, 45, 80, 0.1), 0 2px 5px 0 rgba(43, 45, 80, 0.08), 0 1px 1.5px 0 rgba(0, 0, 0, 0.07), 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    border-radius:.25rem;
    background-color: var(--hover-color) !important;
    padding-bottom: 9px !important;
padding-left: 11px !important;
padding-right: 16px !important;
padding-top: 7px !important;
}

.mr-2{
    margin-right:.50rem!important
}
.ml-2{
    margin-left:.50rem!important
}
.pt-0{
padding-top:0px !important;
}
.mt-0{
margin-top:0px !important;
}
.display-flex{
    display:flex;
}
/* .badge{
    padding:3px;
    font-size:12px;
} */
.titlesectionglobal{
    padding-left:20px;
    padding-right:1rem;
    padding-top:0px !important;
    margin-top:0px !important;
    height: 37px !important;
    font-size:1.53125rem;
    color: var(--bs-heading-color) !important;
    box-sizing: border-box;

    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

[data-bs-theme=dark] table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>*{
    box-shadow: inset 0 0 0 9999px var(--hover-color) !important;
}

.avatar-xl {
    height: 2rem;
    width: 2rem;
}
.avatar {
    position: relative;
    display: inline-block;
}
.avatar-xl .avatar-name {
    font-size: 0.6666666667rem;
}
.avatar img, .avatar .avatar-name {
    padding:6px;
    width: 100%;
    height: 100%;
}
.avatar .avatar-name {
    background-color: var(--falcon-popover-bg) !important;
    position: absolute;
    text-align: center;
    color: var(--dark-color);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.popover .badge{
    padding: 2px;
    padding-left: 4px;
    padding-right: 4px;
    margin-right: 4px;
    font-size:12px;
}


.sobretodomodulosetup{
    position:fixed;
    z-index:1001 !important;
    left:0;
    top:0;
    width:100%;
    height:100%;
    color: var(--text-color) !important;
    background-color: var(--bs-body-bg);
    opacity:1;
    display:flex;
    overflow:auto;
}
.error_reconectandoFLOTANTE{
    position:fixed;
    z-index:99999999999999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    color: var(--text-color) !important;
    background-color: var(--bs-body-bg);
    opacity:0.97;
    user-select:none;
}
.error_reconectandoFLOTANTEDOS{
    position:fixed;
    z-index:var(--zIndex-5);
    left:0;
    top:0px;
    width:100%;
    height:100%;
    background-color: var(--bs-body-bg);
}
.error_reconectandoFLOTANTETRES{
    position:fixed;
    z-index:var(--zIndex-5);
    left:0;
    top:0px;
    width:100%;
    min-width:100%;
    height:100%;
    min-height:100%;
    background-color: var(--bs-body-bg);
    text-align:center;
}



/*
MENU ICONOS SIDEBAR COLORES
 */
#sidebarnav .sidebar-link.active .ti{
    color: unset !important
}
#sidebarnav .ti{
    color: var(--bs-primary)
}
.table-responsive{
    overflow-y: hidden;
    padding-bottom:20px;
}


/*
CONFIRMATION MODAL
 */
.bootbox.modal {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    height: 100% !important;
    display: flex !important;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.transparent-iframe {
    background: transparent !important;
    background-color: transparent !important;
    border: none; /* Esto es opcional, para eliminar el borde del iframe */
    opacity: 0.5; /* Ajusta este valor según sea necesario */
}
button:disabled,.btn-disabled{
    border:inherit;
    cursor: not-allowed !important;
    pointer-events: all !important;
}
.siri-btn:disabled{
    color:#fff !important
}

.hnsidebarm{
    height:calc(100vh - 75px) !important;
  }
.btn.is-busy {
    position: relative;
    color: transparent !important;
    cursor: progress;
    pointer-events: none;
    user-select: none;
}

.btn.is-busy::after {
    content: "" !important;
    position:absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20px' height='20px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle xmlns='http://www.w3.org/2000/svg' cx='50' cy='50' fill='none' stroke='%23ffffff' stroke-width='10' r='35' stroke-dasharray='164.93361431346415 56.97787143782138' transform='rotate%28276 50 50%29'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    animation: btn-action-busy 1s linear infinite;
}

.btn-action.is-busy {
    position: relative;
    color: transparent !important;
    cursor: progress;
    pointer-events: none;
    user-select: none;
}

.btn-action.is-busy::after {
    content: "";
    position:absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20px' height='20px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle xmlns='http://www.w3.org/2000/svg' cx='50' cy='50' fill='none' stroke='%23ffffff' stroke-width='10' r='35' stroke-dasharray='164.93361431346415 56.97787143782138' transform='rotate%28276 50 50%29'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    animation: btn-action-busy 1s linear infinite;
}

.btn-action--dark.is-busy::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20px' height='20px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Ccircle xmlns='http://www.w3.org/2000/svg' cx='50' cy='50' fill='none' stroke='%23454d5d' stroke-width='10' r='35' stroke-dasharray='164.93361431346415 56.97787143782138' transform='rotate%28276 50 50%29'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}
 #preloaderreconnect{

  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 9999999999;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-content: space-around;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: center;
}
#preloaderreconnect img{
    width: 800px;
    max-width: 90%;
}


.dropzone {
    padding:0px;
    margin:0px;
    border: none !important;
    background: none !important;
}

.dz-message {
    border: 1px dashed var(--bs-primary)!important;
    background: var(--bs-primary-bg-subtle)!important;
    border-radius: 0.75rem;
    padding: 20px;
    margin-top: 15px;
    cursor:pointer;
}

    .dz-message {
        font-size: 1.2em;
        text-align: center;
        margin: 2em 0;
    }

    .tox .tox-tbtn{

        background: var(--bg-color) !important;
    }

    .bootbox-cancel{
        opacity:0.5
    }