/* ---------------------- Main content CSS - START ---------------------- */

/* Add font */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Poppins:100,300,400,500,600,700,800,900');

/*Reminder*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set image width and height */
img {
    max-width: 100%;
    height: auto;
}

.main-content {
    width: 100%;
    background: #f3f8fb;
}

.main-content-container {
    padding: 20px 20px 50px 20px;
    float:left;
    width:100%;
    background-color: #f3f8fb;
    margin-bottom: 20px;
}

.main-footer {
    text-align: center;
    margin-top: 20px;
}

.header-grid-container {
    display: grid;
    grid-template-columns: 130px 1fr;
    grid-template-rows: 70px 59px;
    grid-template-areas:    "logo top-header top-header"
                            "logo bottom-header-left bottom-header-right";
    background-color: white;
}

.header-logo {
    grid-area: logo;
    border-right: 1px solid #d8e3e7;
    padding: 10px;
}

.header-top-header {
    grid-area: top-header;
    padding: 10px;
    border-bottom: 1px solid #d8e3e7;
    align-self: center;
}

.header-bottom-header-left {
    grid-area: bottom-header-left;
    padding: 7px 10px 10px 10px;
    align-self: center;
    text-align: left;
}

.header-bottom-header-right {
    grid-area: bottom-header-right;
    padding: 7px 10px 10px 10px;
    align-self: center;
    text-align: right;
}

.header-bottom-header {
    grid-area: bottom-header;
    padding: 7px 10px 10px 10px;
    align-self: center;
}

/* ---------------------- Main content CSS - END ---------------------- */

/* ---------------------- Custom CSS - START ---------------------- */

/* Set a blue line before the page-title */
:root {
    --primary-color:#08475b;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
}

.loader{
    margin: auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: relative;
}

.loader:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    animation: popin 1.5s linear infinite 0s;
}

.loader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    animation: popin 1.5s linear infinite 0.5s;
}

/*Reminder*/
@keyframes popin{
    0%{
        opacity: 0;
        transform: scale(0);
    }
    1%{
        opacity: 0.1;
        transform: scale(0);
    }
    99%{
        opacity: 0;
        transform: scale(2);
    }
    100%{
        opacity: 0;
        transform: scale(0);
    }
}

/* ---------------------- Custom CSS - END ---------------------- */

/* ---------------------- Sidebar Menu - START ---------------------- */

.sidebar-menu {
    /*position: fixed;*/
    left: 0;
    top: 0;
    z-index: 99;
    /*height: 100vh;*/
    /*width: 280px;*/
    overflow: hidden;
    background: #f3f8fb;
    box-shadow: 2px 0 32px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.sbar_collapsed .sidebar-menu {
    left: -280px;
}

.sbar_collapsed .organisatie-view {
    left: 280px;
    height: 1000px !important;
}

.organisatie-view {
    left: 0;
}

.main-menu {
    /*height: calc(100% - 100px);*/
    overflow: hidden;
    /*padding: 20px 0px 0 0;*/
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.menu-inner {
    overflow-y: scroll;
    height: 100%;
}

.slimScrollBar {
    background: #fff!important;
    opacity: 0.1!important;
}

.sidebar-header {
    padding: 19px 32px 20px;
    background: #f3f8fb;
    border-bottom: 1px solid #08475b;
}
.sidebar-menu .logo{
    text-align: center;
}
.logo a {
    display: inline-block;
    max-width: 91px;
}

.metismenu >li >a {
    padding-left: 32px!important;
}
.metismenu li a {
    position: relative;
    display: block;
    color: #08475b;
    font-size: 15px;
    text-transform: capitalize;
    padding: 15px 15px;
    letter-spacing: 0;
    font-weight: 400;
}

.metismenu li a i {
    color: #08475b;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.metismenu li a:after {
    position: absolute;
    content: '\f107';
    font-family: fontawesome;
    right: 15px;
    top: 12px;
    color: #8d97ad;
    font-size: 20px;
}

.metismenu li.active>a:after {
    content: '\f106';
}

.metismenu li a:only-child:after {
    content: '';
}

.metismenu li a span {
    margin-left: 10px;
}

.metismenu li.active>a,
.metismenu li:hover>a {
    color: #fff;
}

.metismenu li li a {
    padding: 8px 20px;
}

.metismenu li ul {
    padding-left: 37px;
}

.metismenu >li:hover>a,
.metismenu >li.active>a {
    color: #fff;
    background: #08475b;
}

.metismenu li:hover>a,
.metismenu li.active>a {
    color: #FFF;
    background:#08475b;
}

.metismenu li:hover>a i,
.metismenu li.active>a i {
    color: #fff;
}

.metismenu li li a:after {
    top: 6px;
}

/* ---------------------- Sidebar Menu - END ---------------------- */


.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

.dropdown {
    position: relative;
    display: inline-block;
    color: black !important;
}

.dropdown-content {
    display: none;
    top: 60px;
    position: absolute;
    right: 0px;
    text-align: right;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.show {
    display: block;
}

.openCompanyDetails {
    width: 300px;
}


/* START - Navigation menu */
.navigation a {
    float: left;
    display: block;
    text-align: center;
    padding: 0px 14px 0px 14px;
    text-decoration: none;
    font-size: 15px;
    color: black;
    margin: 0 3px 0 3px;
}

.navigation div {
    float: left;
}

.navigation a:hover, .navigation a:focus {
    text-decoration: none;
    background: #ddd;
    color: black;
    border-radius: 10px;
}

.dropdown-menu > li > a {
    width:100%;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: #ddd;
}

#actions-i span {
    position: absolute;
    top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    color: #fff;
    background: #08475b;
    height: 23px;
    width: 23px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
}
/* END - Navigation menu */

/* START - Notification */
.notify {
    padding: 8px;
}

.notify a {
    color: black;
}

.notify a:hover{
    color: #08475b;
    background-color: transparent;
}

.notify span {
    position: absolute;
    right: -10px;
    top: -10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.55em;
    font-weight: 600;
    color: #fff;
    background: #08475b;
    height: 23px;
    width: 23px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    padding-left: 1px;
}
/* END - Notification */

.profile {
    margin-right: -10px;
    background: -webkit-linear-gradient(to right,#ffffff 0%, #08475b 100%);
    background:linear-gradient(to right,#ffffff 0%, #08475b 100%);
    padding: 10px 15px;
    position: relative;
    color: white !important;
}

.profile a, .profile a:hover{
    text-decoration: none;
}

.profile img.avatar {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 12px;
    margin-left: 12px;
}

.profile h4 {
    margin: 6px 0px 1px 0px;
}

td a svg {
    margin:0 2px;
}

tbody tr:hover {
    background-color: #e6ecef !important;
}

.navigation .active {
    background-color: #ddd;
    border-radius: 10px;
}