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

:root {
    --black: #1A1A1A;
    --light-blue: #9891E3;
    --green: #C5F0D0;
    --grey: #f8f9fa;
    --hover-grey: #303030;
}

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: 5px;
    padding: 30px 20px !important;
}

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


#myTable{
    white-space: nowrap;
}
#myTable .form-select {
    font-size: 14px;
    line-height: 1.3;
}
table{
    font-size: 15px;
}
/* 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: var(--black)!important;
    background: var(--grey) !important;
    border: 1px solid rgba(0,0,0,.125) !important;
    width: auto;
    padding: 5px 20px;
    font-weight: 700 !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all ease .3s;
}

.btn-main:hover{
    color: #fff !important;
    background: var(--black)!important;
    transition: all ease .3s;
}

.btn-alt{
    margin: 0 20px;
    color: var(--black)!important;
    background: var(--grey) !important;
    border: 1px solid rgba(0,0,0,.125) !important;
    width: auto;
    padding: 5px 20px;
    font-weight: 700 !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all ease .3s;
}

.btn-alt:hover{
    color: #fff !important;
    background: var(--black)!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::after {
    width: 18px;
    height: 18px;
    top: 0px;
    right: -18px;
    position: absolute;
    border-top-left-radius: 20%;
    content: "";
    box-shadow: var(--black) -9px -1px 0px 0px;
    pointer-events: none;
    z-index: 2;
}
#sidebar .inner {
    background: var(--black);
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 40px;
    width: 240px;
    z-index: 2;
    padding: 0 10px;
    transition: all ease .3s;
}
#sidebar .inner.small {
    width: 50px;
    padding: 0;
    transition: all ease .3s;
}
#content.small{
    padding-left: 50px;
    transition: all ease .3s;
}
#sidebar .inner.small li a{
    font-size: 0px;
    padding: 18px 0;
}
#sidebar .inner.small .middle ul li a::before{
    font-size: 13px;
    z-index: 1;
}
#sidebar .inner.small .navbar-brand {
    display: none;
}
#sidebar .inner.small .top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0 10px;
}

#sidebar .top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 20px 10px;
}
#sidebar .top #toggle-button {
    cursor: pointer;
}
#sidebar .top #toggle-button i {
    font-size: 25px;
    color: var(--grey);
    margin-top: 10px;
}
#sidebar .middle ul {
    list-style: none;
    padding: 0;
}
#sidebar .middle ul li{
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 20px;
    margin: 10px 0;
    border-radius: 5px;
}
#sidebar .small .middle ul li{
    border-radius: 0;
}
#sidebar .small .middle ul li a{
    padding: 15px 0;
}
#sidebar .middle ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 2;
    text-decoration: none;
    text-align: left;
    transition: all ease .3s;
}
#sidebar .middle a::before{
    margin-right: 10px;
}
#sidebar .middle ul li:hover{
    background: var(--hover-grey)!important;
    transition: all ease .3s;
}
#sidebar .dashboard a::before {
    font: var(--fa-font-solid);
    content: "\f624";
}
#sidebar .account a::before {
    font: var(--fa-font-solid);
    content: "\f007";
}
#sidebar .leads a::before {
    font: var(--fa-font-solid);
    content: "\f46d";
}
#sidebar .deals a::before {
    font: var(--fa-font-solid);
    content: "\f0ae";
}
#sidebar .admin a::before {
    font: var(--fa-font-solid);
    content: "\f023";
}
#sidebar .admin-users a::before {
    font: var(--fa-font-solid);
    content: "\f0c0";
}
#sidebar .admin-companies a::before {
    font: var(--fa-font-solid);
    content: "\f1ad";
}
#sidebar .admin-leads a::before {
    font: var(--fa-font-solid);
    content: "\f46d";
}
#sidebar .middle ul li.disabled{
    text-align: center;
    font-size: 14px;
    background: var(--hover-grey);
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
}
#sidebar .inner.small .middle ul li.disabled{
    padding: 2px 0;
    border-radius: 0;
}
#sidebar .admin-menu{
    margin-top: 50px;
}


#content {
    width: 100%;
    padding-left: 240px;
    display: block;
    background: #F6F8FA;
    min-height: 100vh;
    padding-top: 40px;
    transition: all ease .3s;
}
/*=======================================================================
TOPBAR
==========================================================================*/
#topbar{
    background: var(--black);
    padding: 5px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left:0;
}
#topbar .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#topbar .left img {
    height: 25px;
}
#topbar .left a {
   padding: 0;
    margin: 0;
}
#topbar .right {
    padding: 0;
    display: flex;
    justify-content: flex-end;
}
#topbar .right .dropdown-toggle {
    color: #fff;
    font-size: 14px;
    position: relative;
    top: 0px;
    padding: 0 20px;
}
#topbar .right .dropdown-toggle:hover{
    color: var(--black);
    transition: all ease .3s;
}
#topbar .right .dropdown-menu {
    padding: 15px;
}

#topbar .nav-item a{
    text-decoration: none;
    display: block;
    padding: 3px;
    font-size: 14px;
    color: var(--black);
}
#topbar .nav-item a:hover{
    background: #eee;
    transition: all ease .3s;
}
#topbar .right .btn-main {
    margin: 0;
    width: 100%;
    display: block;
    border-radius: 0;
    text-align: center;
    padding: 3px 0;
    color: #fff;
}
/*---------------------------------------------------------------------------------------------------------
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 rgba(0,0,0,.125);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    margin: 0 2px;
}
.pagination > nav > div:nth-child(2) > div:nth-child(2) > span a:hover{
    background: var(--black);
    color: #fff;
}

.pagination span[aria-current="page"]{
    border: 1px solid rgba(0,0,0,.125);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    margin: 0 2px;
    background: var(--grey);
}