.mobile-logo{
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
}
.login-logo-inline{
    position: absolute;
    top: 16px;
    right: 20px;
    width: 96px;
    z-index: 3;
}
.login-logo-inline img{
    width: 100%;
    height: auto;
    display: block;
}
.sidebar-logo-lg{
    max-width: 132px;
    width: 100%;
    padding: 12px !important;
}
.sidebar-logo-sm{
    object-fit: contain;
    padding: 15px !important;
}
.profile-menu{
    position: relative;
    margin-left: 10px;
}
.profile-menu-toggle{
    border: 0;
    background: transparent;
    padding: 0;
}
.profile-menu-avatar{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #28529a;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.profile-menu-avatar.large{
    width: 48px;
    height: 48px;
    font-size: 16px;
}
.profile-menu-dropdown{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, .12);
    display: none;
    z-index: 1200;
    overflow: hidden;
}
.profile-menu-dropdown.is-open{
    display: block;
}
.profile-menu-head{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.profile-menu-user{
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.profile-menu-user strong{
    font-size: 15px;
    color: #1f344d;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-menu-user small{
    color: #5f6f82;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-menu-links,
.profile-menu-foot{
    padding: 10px 0;
}
.profile-menu-links a,
.profile-menu-foot a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #283c50;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.profile-menu-links a:hover,
.profile-menu-foot a:hover{
    background: #f7f9fc;
}
.profile-menu-links i,
.profile-menu-foot i{
    width: 22px;
    text-align: center;
    font-size: 18px;
}
.profile-menu-foot{
    border-top: 1px solid #e5e7eb;
}
.demo-badge-header{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 992px){
    .demo-badge-header{
        display: none;
    }
}
.swal2-popup .swal2-actions .swal2-confirm,
.swal2-popup .swal2-actions .swal2-cancel {
    border-radius: 8px !important;
    font-weight: 700 !important;
    padding: 10px 14px !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}
.swal2-popup .swal2-actions .swal2-confirm {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
}
.swal2-popup .swal2-actions .swal2-confirm:hover {
    background: #234a8d !important;
    border-color: #234a8d !important;
}
.swal2-popup .swal2-actions .swal2-cancel {
    background: #fff !important;
    border-color: #cfd8e6 !important;
    color: var(--main-color) !important;
}
.swal2-popup .swal2-actions .swal2-cancel:hover {
    background: #f7f9fc !important;
    border-color: #bfcde0 !important;
}
.error{
    border-color: var(--bs-red);
    color: var(--bs-red);
}
label.error{
    display: block;
    width: 100%;
    text-align: right;
}
.text-ellipsis-300{
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 300px;
}
.filter-counter{
    position: absolute;
    width: 100%!important;
    height: 100%!important;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background-color: var(--bg-white)!important;
    font-size: 1.5rem;
}
#install{
    display: none;
}
.nxl-header.mobile{
    min-height: 60px;
}
.nxl-header.mobile .header-wrapper .nxl-h-item{
    min-height: 59px;
}
.pt-navbar{
    padding-top: 65px;
}
.password-icon{
    position: absolute;
    right: 15px;
    top: calc(50% - -2px);
    transform: translateY(-50%);
    cursor: pointer;
    padding: 1rem 0 1rem 1rem;
    z-index: 5;
}
/*LOADER*/
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #28529a;
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*END LOADER*/
.text-right{
    text-align: right!important;
}
.no-events{
    pointer-events: none;
    opacity: .5;
}
.creative-card-wrapper{
    max-width: 500px!important;
    width: 95%!important;
}
[id^="uploads_"] {
    padding: 0 0 2px 6px;
    border: var(--main-color) 1px solid;
    min-height: 100px;
    border-radius: 3px;
    position: relative;
}
[id^="uploaded_"] {
    width: 80%;
    height: 100%;
    min-height: 98px;
    display: inline-block;
    overflow-x: hidden;
    font-size: 0;
    margin-top: 6px;
    margin-bottom: -6px;
}
[id^="uploaded_"] .file-wrapper {
    height: 46px;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    border: var(--main-color) 1px dotted;
    position: relative;
    vertical-align: middle;
}
#uploaded_foto .file-wrapper {
    height: 100px;
    width: auto;
}
[id^="uploaded_"] .file-wrapper .filename {
    display: inline-block;
    font-size: 1rem;
    width: calc(100% - 60px);
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 6px;
    white-space: nowrap;
    direction: rtl;
}
[id^="upload-area_"].ivo-upload {
    background: var(--txt-color10);
    width: 20%;
    font-size: .8em;
    text-align: center;
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
}
.fs-upload-target{
    font-size: 12px;
    height: 100%;
    padding: 10px;
}
[id^="uploaded_"] .file-wrapper .handler.icon {
    width: 320px;
    background-color: var(--txt-color05);
    height: 46px;
}
#uploaded_foto .file-wrapper .handler.icon {
    width: auto;
    height: 98px;
}
#uploaded_foto .file-wrapper .handler.icon img {
    height: 100%;
}
[id^="uploaded_"] .file-wrapper .ivo_icn_elimina-neg {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 15px;
    color: var(--alert-color);
}
@media only screen and (max-width:465px){
    [id^="uploads_"] {
        padding: 0;
    }
    [id^="uploaded_"] {
        width: 100%;
        padding: 0 5px;
    }
    [id^="upload-area_"].ivo-upload {
        width: 100%;
        position: static;
        margin-top: 2px;
    }
    #uploaded_file .file-wrapper {
        display: block;
        width: auto;
    }
    #uploaded_file .file-wrapper .handler.icon {
        width: 100%;
    }
}
#uploaded_file .file-wrapper .handler.icon span {
    font-size: 35px;
    display: inline-block;
    height: 44px;
    color: var(--main-color);
    margin: 0 5px;
}
form .card{
    background-color: var(--bg-white);
}
.details-btn .feather{
    transition: all .33s linear;
}
.nxl-navigation .nxl-link:hover .nxl-micon i{
    color: #1f344d !important;
}
#menu-mini-button i,
#menu-expend-button i{
    color: #1f344d !important;
}
.rotate .feather{
    transform: rotateX(180deg);
}
.details-head-info{
    border: 1px solid var(--grey-border);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 0;
}
.custom-list{
    margin: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--grey-border);
    border-left: 1px solid var(--grey-border);
}
.custom-list li{
    border-bottom: 1px solid var(--grey-border);
    display: flex;
}
.custom-list li .list-cell{
    margin: 0;
    border-right: 1px solid var(--grey-border);
    height: 50px;
    line-height: 50px;
}
.list-cell.index{
    width: 40px;
    text-align: center;
}
.list-cell.descr{
    flex-grow: 1;
    padding: 0 15px;
}
.list-cell.actions{
    padding: 0 10px;
    display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: center;
}
.extractAll{
    background: none;
    border-radius: 5px;
    border: 1px solid var(--grey-border);
    padding: 5px 15px;
    display: block;
    margin-left: auto;
    margin-bottom: 10px;
}
.autoextracter{
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 20px;
    text-align: center;
    box-shadow:0 0 .625em #d9d9d9;
    z-index: 9999;
    border-radius: 5px;
}

html.darkmode body{
    background: #0f172a;
    color: #dbe6f5;
}
html.darkmode .nxl-header,
html.darkmode .nxl-navigation .m-header,
html.darkmode .nxl-navigation .navbar-content,
html.darkmode .card,
html.darkmode .profile-menu-dropdown,
html.darkmode .profile-menu-head{
    background: #111c2f !important;
    color: #dbe6f5 !important;
    border-color: #253650 !important;
}
html.darkmode .page-header,
html.darkmode .nxl-content .page-header{
    background: #111c2f !important;
    border-color: #253650 !important;
}
html.darkmode .nxl-header .nxl-head-link,
html.darkmode .nxl-navigation .nxl-link,
html.darkmode .profile-menu-links a,
html.darkmode .profile-menu-foot a{
    color: #dbe6f5 !important;
}
html.darkmode .nxl-navigation .nxl-link:hover,
html.darkmode .profile-menu-links a:hover,
html.darkmode .profile-menu-foot a:hover{
    background: #1a2a44 !important;
}
html.darkmode .nxl-navigation .nxl-link{
    color: #dbe6f5 !important;
}
html.darkmode .nxl-navigation .nxl-link .nxl-micon i{
    color: #ffffff !important;
}
html.darkmode .nxl-navigation .nxl-link:hover{
    background: #1b2b45 !important;
    color: #ffffff !important;
}
html.darkmode .nxl-navigation .nxl-link:hover .nxl-micon i,
html.darkmode .nxl-navigation .nxl-item.active .nxl-link .nxl-micon i,
html.darkmode .nxl-navigation .nxl-link.active .nxl-micon i{
    color: #ffffff !important;
}
html.darkmode .nxl-navigation .nxl-item.active .nxl-link,
html.darkmode .nxl-navigation .nxl-link.active{
    background: #243859 !important;
    color: #ffffff !important;
}
html.darkmode #menu-mini-button i,
html.darkmode #menu-expend-button i,
html.darkmode .nxl-header .nxl-navigation-toggle i{
    color: #ffffff !important;
}
html.darkmode .form-control,
html.darkmode .swal2-popup,
html.darkmode .swal2-input,
html.darkmode .swal2-textarea{
    background: #0f172a !important;
    color: #dbe6f5 !important;
    border-color: #314766 !important;
}
html.darkmode .text-muted,
html.darkmode small{
    color: #8fa3bf !important;
}
html.darkmode .profile-menu-user strong{
    color: #ffffff !important;
}
html.darkmode .btn,
html.darkmode button{
    background: #243b63 !important;
    border-color: #35507f !important;
    color: #e9f1ff !important;
}
html.darkmode .btn:hover,
html.darkmode button:hover{
    background: #2d4a7a !important;
    border-color: #46639a !important;
    color: #ffffff !important;
}
html.darkmode .btn.btn-outline-primary,
html.darkmode .btn-outline-primary{
    background: transparent !important;
    border-color: #4a6593 !important;
    color: #d7e5ff !important;
}
html.darkmode .btn.btn-outline-primary:hover,
html.darkmode .btn-outline-primary:hover{
    background: #1b2b45 !important;
    color: #ffffff !important;
}
html.darkmode .table,
html.darkmode .table thead,
html.darkmode .table tbody,
html.darkmode .table tr,
html.darkmode .table td,
html.darkmode .table th{
    background: #111c2f !important;
    color: #dbe6f5 !important;
    border-color: #2a3d5e !important;
}
html.darkmode .table thead th{
    background: #16253d !important;
    color: #eef4ff !important;
}
html.darkmode .page-header h3,
html.darkmode .card-header h5,
html.darkmode .nxl-content h1,
html.darkmode .nxl-content h2,
html.darkmode .nxl-content h3,
html.darkmode .nxl-content h4,
html.darkmode .nxl-content h5,
html.darkmode .nxl-content h6{
    color: #e6eefb !important;
}
html.darkmode .sidebar-logo-lg,
html.darkmode .sidebar-logo-sm,
html.darkmode .login-logo-inline img,
html.darkmode .mobile-logo img{
    filter: invert(1) hue-rotate(180deg) brightness(1.25) contrast(1.05);
}