#asi-wp-header{
    min-height: 70px;
    display: flex;
    align-items: center;
    background-color: #393f4c;        

    .asi-wp-logo{
        max-height: 1.5rem;
    }
    .wp-logo {
        max-height: 2.5rem;
    }
    .user-name {
        text-transform: capitalize;
        color: #fff;
    }
    .navbar {
        background-color: transparent;
        padding: 0;

        .btnNavToggle {
            &:focus {
                outline: none !important;
                box-shadow: none !important;
                border: none !important;
            }
        }

        .navbar-brand {
            line-height: 0;
        }

        .navbar-collapse {
            flex-basis: auto;
        }

        .nav-item {
            margin: 0px;
            padding: 0px;
            color: #fff;

            &.active {
                a.nav-link {
                    font-weight: bold;
                    color: rgba(13, 110, 253, 1) !important;
                    position: relative;

                    &:after {
                        width: 100%;
                    }
                }
            }
        }

        .dropdown-menu {
            margin: 0;
            padding: 10px;
            position: absolute ;
            left: 0;
            top: 100%;
            min-width: 180px;

            .dropdown-item {
                padding: .25rem .5rem;
                color: #212529;
                font-size: 14px;

                &::after {
                    display: none;
                }

                &:hover,
                &:active {
                   
                    color: #0d6efd;
                    background-color: transparent;
                    box-shadow: none;
                    text-shadow: none;
                    outline: none;
                }
            }
        }

        .dropdown-toggle {
            &::before {
                right: -15px;
                position: absolute;
                top: 0;
                font-size: 10px;
            }
        }

        .dropdown-item.active,
        .dropdown-item:hover,
        .dropdown-item:active {
            

            color: #0d6efd;
            a {
                color: #fff ;
            }
        }

        a.nav-link {
            font-weight: 500;
            font-size: 14px;
            padding: 0;
            margin: 0 11px;
            line-height: 70px;
            transition: 0.3s;
            text-transform: capitalize;
            position: relative;
            transition: all 0.6s;
            color: #fff;

            &::after {
                position: absolute;
                content: "";
                width: 0;
                height: 3px;
                left: 0px;
                bottom: 0;
                background: #c4cefe;
                border: 0;
                margin: 0;
                transition: all 0.6s;
            }

            &:hover {
                color: #0d6efd;
                &::after {
                    width: 32px;
                }
            }

            &:focus {
                outline: none !important;
                box-shadow: none !important;
                border: none !important;
            }
        }
        ul.rightNavbar {

            .notification-dropdown-menu {
                position: absolute;
                left: initial ;
                right: 0 ;
                top: 100% ;
                z-index: 100;
            }

            .dropdown {
                position: relative;
                .btn-notify {
                    width: 30px;
                    height: 30px;
                    padding: 0;
                    margin: 0;
                    background-color: transparent;
                    margin-top: 4px;

                    @media (max-width: 576px) {
                        width: 20px;
                        height: 20px;
                    }

                    &.btn-profile {
                        width: auto;
                        height: auto;
                        display: flex;
                        align-items: center;
                        color: #ffffff;
                        border: none !important;
                        > img {
                            width: 35px;
                            height: 35px;
                            object-fit: cover;
                            object-position: center;
                            border-radius: 100%;
                        }
                        > span {
                            font-style: normal;
                            font-weight: 500;
                            font-size: 16px;
                            line-height: 19px;
                            color: #ffffff;
                            display: inline-block;
                            
                            @media (max-width: 576px) {
                                display: none !important;
                            }
                        }
                    }
                    &:active,
                    &:focus {
                        outline: none !important;
                        box-shadow: none !important;
                        border: none !important;
                    }
                }
            }

            li {
                + li {
                    margin-left: 15px;
                    @media (max-width: 576px) {
                        margin-left: 8px;
                    }
                }
            }
        }
        ul.responsiveMenu.navbar-nav {

            @media (max-width: 1200px) {

                position: fixed;
                width: 250px;
                height: 100vh;
                top: 0;
                left: 0;
                z-index: 100;
                background-color: #393f4c;
                transform: translateX(-100%);
                transition: all 0.3s linear;
                padding: 20px;

                &.is-vissible {
                    transform: translateX(0);
                }

                li.nav-item {
                    .nav-link {
                        line-height: 20px ;
                        padding: 7px 0 ;
                        display: block;
                        margin: 0;

                        i.fa {
                            margin-right: 0;
                            float: right;
                        }
                    }

                    &.active {
                        .nav-link {
                            &:after {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
    .asi-wp-admin-breadcrumbs {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
        background: #fff;
        padding: 15px 30px;
        /*border: solid 1px #ebebeb;*/
        border-radius: .375rem;

        .asi-wp-admin-breadcrumbs__title {
            h1 {
                font-weight: normal;
                line-height: 22px;
                color: #2d405a;
            }

            span {
                margin: 0 5px;
            }

            a,
            span {
                line-height: 15px;
                color: #0d6efd;

                &:hover {
                    text-decoration: none;
                }
            }
        }

        .asi-wp-admin-breadcrumbs__back-button {
            color: #0d6efd;
            display: inline-block;

            &:hover {
                text-decoration: none;
            }

            span {
                color: #0d6efd;
                font-size: 24px;
                margin-right: 10px;
                position: relative;
                top: 5px;
            }
        }

        #wpcontent & a {
            color: #0d6efd;
        } 
    }
}
#tabs {
    border:0!important;
    padding:0;
    margin-top:20px;
}

.asi-admin-tabs .asi-admin-tabs-nav {
    margin: 0;
    padding: 0!important;
    background:0!important;
    border:0;
    /* float:left; */
    /* width:200px; */
}

.asi-admin-tabs .asi-admin-tabs-nav  .asi-admin-tabs-tab{
    /* float: left; */
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    white-space: nowrap;
    display:block;
    width:100%;   
    border-right:1px solid #e7ecf1;
    text-decoration: none;    
    padding: .5em 1em;
    color: #000;
}

.asi-admin-tabs .asi-admin-tabs-panel {
    /* float:right; */
    padding:0 20px;
    /* width:calc(100% - 260px); */
}

.asi-admin-tabs .asi-admin-tabs-nav .asi-admin-tabs-tab.active {
    border-right:0;
    border-left:1px solid #e7ecf1;
    border-top:1px solid #e7ecf1;
    border-bottom:1px solid #e7ecf1;
}
.filetype-list{
    min-height: 50px;
    max-height: 200px;
    overflow-y: auto;
}
.remove-filetype{
    margin-left: 10px;
    cursor: pointer;
}
.auto-complete-filetype{
    position: relative;
    width: 100%;
}
.auto-complete-filetype .select-filetype{
    display: inline-block;
    cursor: pointer;
    overflow: visible;
    margin: 0;
    padding: 2px;
    padding-right: 14px;
    border-radius: 3px;
    color: black;
    font-size: 14px;
    width: 100%;
}
.select-filetype::placeholder{
    color: black;
}
.ui-autocomplete{
    max-height: 200px;
    overflow-y: auto;
    max-width: 50% !important;
}
.ui-menu-item{
    padding: 5px;
}
.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: #e9ecef !important;
    font-weight: bold !important;
    color: #000 !important;
    border: none !important;
} 
.auto-complete-filetype .dropdown-toggle {
    position: absolute;
    top: 2px;
    left: auto;
    bottom: 1px;
    right: 10px;
    pointer-events: none;
}
.auto-complete-filetype .dropdown-toggle::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%230F58C5" d="M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41 1.41 0z"/></svg>');
    border: none;
    width: 10px;
    height: auto;
    margin-left: 0.4rem;
    vertical-align: middle;
}
.asi-wp-v1x{    
    background: #ecf0f3;    
    font-family: Arial, sans-serif;
}
.asi-wp-v1x.wp-heading-inline {
    border-bottom: 1px solid #dee2e6;
    width: 100%;
    position: relative;
    min-height: 1.875rem;
    color: #000;
    padding-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.header-breadcrumbs{
    margin: auto;
    padding: 1em;    
    width: 100%;
}
.asi-wp-admin-breadcrumbs{
    align-items: center;
    justify-content: space-between;  
    margin-top: 1em;
    margin-bottom: 0;
    padding: 1em;
    background-color: #fff;    
    border-radius: 4px; 
    padding-right: 0;
}
.asi-wp-admin-breadcrumbs .asi-wp-admin-breadcrumbs__title span {
    margin: 0 .3125rem;
}
.asi-wp-admin-breadcrumbs a{
    text-decoration: none;
}
.asi-wp-v1x #wpbody-content .container-fluid{
    background-color: #fff;
    border-radius: 5px;
}
.asi-wp-v1x #wpfooter{
    margin: 0;
    padding: 2em;
}
.asi-wp-v1x .wrap{
    padding: 1em;
    padding-bottom: 65px;
}
b, strong {
font-weight: 600;
}
.asi-wp-v1x #screen-meta-links .show-settings {
    border: 1px solid #dee2e6;
    margin-top: 2px;
}
#asi-wp-header .navbar a.nav-link {
    font-weight: 500;
    font-size: .875rem;
    padding: 0;
    margin: 0 .6875rem;
    line-height: 4.375rem;
    transition: .3s;
    text-transform: capitalize;
    position: relative;
    transition: all .6s;
}
#asi-wp-header .navbar .nav-item.active a.nav-link {    
    color: #c4cefe !important;
    position: relative;
  }
  #asi-wp-header .navbar a.nav-link:focus {
    box-shadow: none;
    outline: none;
  }
  #asi-wp-header .navbar a.nav-link:hover {
    color: #c4cefe;
  }
  .asi-wp-v1x #wpcontent a:hover {
    text-decoration: none;
  }
  .nav-item a.nav-link i.fa {
    color: #f8f9fa !important;
    margin-right: 2px;
    margin-left: 6px;
  }
.asi-signup-form-container{
  
    /* Move label to the top when input is focused or has content */
    select:focus + label,
    select:not([value=""]) + label,
    input:focus + label,
    input:not(:placeholder-shown) + label {
        top: -20px;
        left: 5px;
        font-size: 12px;
        /* color: #555; */
    }
    .form-control-error {   
        border-color: #dc3545 !important;
        /* box-shadow: 0 0 0 .05rem rgba(0, 0, 0, 0.15) !important ; */
    }
    .iti{
        border: none;
        z-index: 3;
        width: 100%;
    }
    .iti .form-control{
        padding: 1rem .75rem;
        width: 100%;
        height: calc(3.5rem + calc(var(--bs-border-width)* 2));
        min-height: calc(3.5rem + calc(var(--bs-border-width)* 2));
        line-height: 1.25;    
        /* border: 1px solid  #d2d2d2; */
        border-radius: 0.5rem;
    }
    .form-floating.form-phone
    .label-phone{
        z-index: 3;
        left: 12px;
        position: absolute;
        font-size: 16px;    
        background-color: white;
        transform: translateY(-50%);
        padding: 0 4px;    
        height: fit-content;
    }
    input {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px !important;
        outline: none;
    }
    .form-control:focus {   
        border-color:#0f58c5 !important;
        box-shadow: 0 0 0 .05rem rgba(13, 110, 253, .25) !important ;
    }
    .form-floating label {
        left: 10px;
        color: #aaa;
    }
    #role{
        max-width: 100% !important;
    }
    #country{
        max-width: 100% !important;
    }
}
input.asi-admin-custom-search-input{
    line-height: normal;
}
.asi-odoo-status-file{
    cursor: pointer;
}
#fileModal .modal-body{
    max-height: 70vh;
    overflow-y: auto;
}
#fileContent{
    width: 100%;
    overflow: auto;
    white-space: nowrap;
}
#fileContent table{
    width: 100%;
    border-collapse: collapse;
}
#fileContent td{
    word-wrap: break-word;
    white-space: normal;
}
.asi-wp-clients .notice-dismiss{
    padding: 0;
    height: 100%;
}
#wrap{
    background: #ecf0f3;
    padding: 0 !important;
    height: auto;
    min-height: 100%;
    width: 100%;
    position: relative;
}
#admincontent{
    height: 100%;    
    display: flex;
    flex-direction: column;
}
#table-clients_wrapper{
    width: 100%;
}
.dt-layout-full{
    overflow: auto;
}
.table-status{
    /* table-layout: fixed; */
    border: 1px solid #c3c4c7;
    /* max-width: 100%; */
    width: 100%;
    clear: both;
    margin: 0;
    caption-side: bottom;
    border-collapse: collapse;
}
.table-status thead{    
    border-bottom: 1px solid #c3c4c7;
}
.asi-wp-admin-frontend-dashboard{    
    margin: auto;
    padding: 1em;
    width: 100%;
}
.admin-status-container{
    background-color: white;
    padding-bottom: 65px;
    /* float: left; */
    width: 100%;
    overflow: visible;
}
.table-status .check-column {
    width: 2.2em;
    padding: 6px 0 25px;
    vertical-align: top;
}
.table-status thead td.check-column {
    /* padding-top: 4px; */
    vertical-align: middle;
    padding: 4px 0 0 3px;
}
.table-status td {
    font-size: 13px;
    line-height: 1.5em;
    vertical-align: top;
}
.table-status td, .table-status th {
    padding: 8px 10px;
}
/* .table-status * {
    word-wrap: break-word;
} */
.table-status tbody th.check-column{
    padding: 11px 0 0 3px;
}
.table-status > tbody > :nth-child(2n+1), ul.striped > :nth-child(2n+1) {
background-color: #f6f7f7;
}
/*Client*/
.table-status .span-action{
    cursor: pointer;
}

.hide{
    display: none !important;
}