
/*---------------------------------------------------------------------------------------------------------
GENERIC
------------------------------------------------------------------------------------------------------------*/

body {
    font-family: 'Mulish', sans-serif !important;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5{
    font-family: 'Mulish', sans-serif;
}

html,
body{
    scroll-behavior: smooth;
}

.mobile{
    display: none;
}





 .sticky{
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.toc{
    border: 1px solid #B1B4B6;
    padding: 20px;
}

.lg-sticky{
    margin-bottom: 20px;
}

.lg-sticky .inner.stuck{
    background: #fff;
    z-index: 999;
    width: 300px;
}

.search{
    margin-bottom: 50px;
}

.back-to-top{
    position: fixed;
    bottom: 10px;
    right: 20px;
    display: none;
    opacity: 0;
    transition: all ease .8s;
}


.back-to-top.scrolled{
    display: block;
    opacity: 1;
    transition: all ease .8s;
}

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

/* FONTS */

.lg-body{
    font-size: 18px;
}
.lg-body-s{
    font-size: 16px;
}

.back-to-top{
    padding: 8px 15px;
}

.screen-reader-only {
    position: absolute;
    width: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
  }

.cookie-consent{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background: #7871BF;
    color: #fff;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    border-top: #000 2px solid;
}
.cookie-consent a{
    color: #fff;
}
.cookie-consent button{
    margin: 0 20px;
    color: #000000!important;
    background: #b0f1cf !important;
    border: none;
    width: auto;
    padding: 5px 20px;
    font-weight: 600;
}

#myTable tr {
    left: -100vw;
}


.container-fluid{
    padding: 0 30px !important;
}

.white{
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px !important;
}

.table-responsive table td{
    padding: 4px;
}


#myTable{
    white-space: nowrap;
}
#myTable .form-select {
    font-size: 14px;
    line-height: 1.3;
}

/* MAIN LAYOUT RESPONSIVNESS */
@media(max-width: 1200px){

    .lg-sticky .inner.stuck{
        width: 210px;
    }
    body,html{
        overflow-x: hidden;
    }
    .mobile{
        display: block;
    }
}
@media(max-width: 991px){
    img{
        max-width: 100%;
    }
    .sticky{
        position: static;
    }
    .cookie-consent{
        flex-direction: column;
    }
    .cookie-consent button{
        margin-top: 20px;
    }
    .dropdown-menu.show{
        position: absolute;
        inset: auto auto 0px 0px;
        margin: 0px;
        transform: translate3d(-40px, 0px, 0px) !important;
    }
}

/*---------------------------------------------------------------------------------------------------------
BUTTONS
------------------------------------------------------------------------------------------------------------*/


.btn-main{
    margin: 0 20px;
    color: #fff !important;
    background: #9891E3!important;
    border: none;
    width: auto;
    padding: 5px 20px;
    font-weight: 700 !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all ease .3s;
}

.btn-main:hover{
    color: #000000!important;
    background: #b0f1cf !important;
    transition: all ease .3s;

}

.btn-alt{
    margin: 0 20px;
    color: #000000!important;
    background: #b0f1cf !important;
    border: none;
    width: auto;
    padding: 5px 20px;
    font-weight: 700 !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all ease .3s;
}

.btn-alt:hover{
    color: #b0f1cf !important;
    background: #9891E3!important;
    transition: all ease .3s;
}

/*---------------------------------------------------------------------------------------------------------
NAV
------------------------------------------------------------------------------------------------------------*/

#nav {
    box-shadow: 0 2px 0 0 rgb(0 0 0 / 5%);
    background: #fff !important;
    padding: 5px 0;
}
#nav img {
    width: 30px;
}
#nav .navbar-brand {
    margin-right: 2rem;
}

#navProfile{
    display: flex;
}
#navProfile .dropdown .btn-main{
    margin: 0 auto;
    width: 90% !important;
    display: block;
    text-align: center;
}

@media(max-width: 991px){
    .navbar-collapse .btn-main {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
    .navbar-nav li{
        text-align: center;
    }
    #nav .navbar-toggler {
        color: #000;
        border-color: rgba(0,0,0,0);
    }
}

/*---------------------------------------------------------------------------------------------------------
FOOTER
------------------------------------------------------------------------------------------------------------*/
footer {
    background: #7871BF;
    padding-top: 20px;
    color: #fff;
}
footer .footer-bottom {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}
footer .footer-bottom p {
    margin-bottom: 0;
}
footer .footer-bottom p a {
    color: #fff;
}
footer img{
    width: 200px;
}




/*---------------------------------------------------------------------------------------------------------
ADMIN
------------------------------------------------------------------------------------------------------------*/
#adminNav {
    background: #eee;
    padding: 10px 0;
    margin: 0;
}
#adminNav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}
#adminNav ul li {
    padding: 0 10px;
    margin: 0 5px;
}
#adminNav ul li a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}


/*---------------------------------------------------------------------------------------------------------
BREADCRUMBS
------------------------------------------------------------------------------------------------------------*/
#breadcrumbs{
    padding: 0 0;
    margin-bottom: 20px;
}
#breadcrumbs ul {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
}
#breadcrumbs ul li {
    margin-right: 10px;
}
#breadcrumbs ul li::before {
    content: '>';
}
#breadcrumbs ul li a {
    color: #000;
    font-weight: 500;
}
#breadcrumbs ul li:first-child::before {
    display: none;
}



/*---------------------------------------------------------------------------------------------------------
SIDEBAR
------------------------------------------------------------------------------------------------------------*/

#sidebar {
    position: relative;
}
#sidebar .inner {
    background: #1A1A1A;
    height: 100vh;
    position: fixed;
    width: 300px;
    z-index: 2;
    transition: all ease .3s;
}
#content {
    width: 100%;
    padding-left: 300px;
    display: block;
    background: #F6F8FA;
    min-height: 100vh;
    transition: all ease .3s;
}
#sidebar .inner.small {
    width: 50px;
    transition: all ease .3s;
}
#content.small{
    padding-left: 50px;
    transition: all ease .3s;
}
#sidebar .inner.small li a{
    font-size: 0px;
    padding: 20px 0;
}
#sidebar .inner.small .middle ul li::before{
    top: 10px;
    transform: translatex(-50%);
    left: 50%;
    font-size: 20px;
    z-index: 1;
}
#sidebar .inner.small .navbar-brand {
    display: none;
}
#sidebar .inner.small .top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 60px;
}


#sidebar img {
    height: 25px;
}
#sidebar .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 60px;
}
#sidebar .top #toggle-button {
    cursor: pointer;
}
#sidebar .top #toggle-button i {
    font-size: 25px;
    color: #C5F0D0;
    margin-top: 10px;
}
#sidebar .middle ul {
    list-style: none;
    padding: 0;
}
#sidebar .middle ul li{
    position: relative;
    color: #C5F0D0;
}
#sidebar .middle ul li::before{
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 20px;
    font-size: 20px;
    z-index: 1;
}
#sidebar .middle ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #fff;
    padding: 10px 15px;
    position: relative;
    z-index: 2;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid #FFFFFF99;
    transition: all ease .3s;
}
#sidebar .middle ul li:hover{
    background: #9891E3;
    transition: all ease .3s;
}

#sidebar .dashboard a{
    border-top: 1px solid #FFFFFF99;
}

#sidebar .dashboard::before {
    font: var(--fa-font-solid);
    content: "\f624";
}
#sidebar .account::before {
    font: var(--fa-font-solid);
    content: "\f007";
}
#sidebar .leads::before {
    font: var(--fa-font-solid);
    content: "\f46d";
}
#sidebar .admin::before {
    font: var(--fa-font-solid);
    content: "\f023";
}
#sidebar .admin-users::before {
    font: var(--fa-font-solid);
    content: "\f0c0";
}
#sidebar .admin-companies::before {
    font: var(--fa-font-solid);
    content: "\f1ad";
}
#sidebar .admin-leads::before {
    font: var(--fa-font-solid);
    content: "\f46d";
}


/* #sidebar .middle ul li.admin{
    background: #C5F0D0;
    color: #1A1A1A;
}
#sidebar .middle ul li.admin a{
    color: #1A1A1A ;
    font-weight: 700;
} */
#sidebar .middle ul li.disabled{
    text-align: center;
    background: #C5F0D0;
    color: #1A1A1A;
    font-weight: 700;
    padding: 10px 0;
}
table{
    font-size: 15px;
}



/*---------------------------------------------------------------------------------------------------------
PAGINATION
------------------------------------------------------------------------------------------------------------*/

.pagination > nav > div:nth-child(1){
    display: none;
}
.pagination > nav > div:nth-child(2) > div:nth-child(1){
    display: none;
}
.pagination > nav {
    width: 100%;
    margin-top: 20px;
}
.pagination > nav > div:nth-child(2) > div:nth-child(2) > span{
    
    display: flex;
    justify-content: center;
    width: 100%;
}
.pagination > nav > div:nth-child(2) > div:nth-child(2) > span a{
    border: 1px solid #A1A1A1;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    margin: 0 2px;
}
.pagination > nav > div:nth-child(2) > div:nth-child(2) > span a:hover{
    background: #ECECEC;
}

.pagination span[aria-current="page"]{
     border: 1px solid #ECECEC;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    margin: 0 2px;
     background: #ECECEC;
}