/* Dashboard-layout gebaseerd op de huidige partneromgeving. */

html,
body.dashboard-page {
    min-height: 100%;
}

body.dashboard-page {
    margin: 0;
    padding: 0;
    background: #fff !important;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.dashboard-page *,
.dashboard-page *:before,
.dashboard-page *:after {
    box-sizing: border-box;
}

.dashboard-container {
    width: 1170px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.dashboard-header {
    background: #f3f3f3;
}

.dashboard-header-inner {
    padding: 0;
}

.dashboard-header-inner:after {
    content: "";
    display: block;
    clear: both;
}

.dashboard-brand-lockup {
    float: left;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7px;
}

.dashboard-brand-link {
    display: block;
    line-height: 0;
}

.dashboard-logo {
    display: block;
    margin: 0;
    padding: 18px 0;
    height: 100px;
    width: auto;
}

.dashboard-brand-subtitle {
    display: block;
    margin-top: -7px;
    color: #0a5f94;
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.dashboard-dev-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #9b0000;
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0;
    vertical-align: 1px;
}

.dashboard-account {
    float: right;
    margin-bottom: 6px;
    text-align: right;
    font-size: 14px;
    line-height: 20px;
}

.dashboard-account-link,
.dashboard-account-link:visited {
    color: #0a5f94;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.dashboard-account-link:hover,
.dashboard-account-link:focus {
    color: #0a5f94;
    text-decoration: none;
}

.dashboard-account-link b {
    font-weight: 700;
}

.dashboard-account svg,
.dashboard-logout svg {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
    fill: currentColor;
}

.dashboard-logout,
.dashboard-logout:visited {
    color: #999 !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.dashboard-logout:hover,
.dashboard-logout:focus {
    color: #666 !important;
    text-decoration: none !important;
}

.dashboard-navbar {
    height: 50px;
    margin: 0 0 36px;
    background: #6f2c91;
    box-shadow: 0 8px 6px -6px #999;
}

.dashboard-navbar-inner {
    height: 50px;
}

.dashboard-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    min-height: 620px;
}

.dashboard-sidebar {
    flex: 0 0 220px;
    width: 220px;
    padding: 0 0 30px;
}

.dashboard-sidebar .menu a {
    display: block;
}

.dashboard-content {
    min-width: 0;
    flex: 1 1 auto;
    padding: 0 0 40px;
    overflow-x: auto;
}

.dashboard-content > .main {
    min-width: 0;
}

.dashboard-footer {
    position: static !important;
    bottom: auto !important;
    clear: both;
    width: 100%;
    margin-top: 10px;
    padding: 24px 0 30px;
    border-top: 3px solid #6f2c91;
    background: #f5f5f5;
    color: #999;
    font-size: 12px;
    line-height: 18px;
}

@media (max-width: 1199px) {
    .dashboard-container {
        width: 970px;
    }
}

@media (max-width: 991px) {
    .dashboard-container {
        width: 750px;
    }

    .dashboard-layout {
        gap: 20px;
    }

    .dashboard-sidebar {
        flex-basis: 200px;
        width: 200px;
    }
}

@media (max-width: 767px) {
    .dashboard-container {
        width: auto;
    }

    .dashboard-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }

    .dashboard-header-inner:after {
        display: none;
    }

    .dashboard-brand-lockup,
    .dashboard-account {
        float: none;
    }

    .dashboard-brand-lockup {
        margin-bottom: 0;
    }

    .dashboard-logo {
        height: auto;
        width: 190px;
        padding: 0;
    }

    .dashboard-brand-subtitle {
        margin-top: -4px;
    }

    .dashboard-account {
        margin: 0;
    }

    .dashboard-account br,
    .dashboard-account-link {
        display: none;
    }

    .dashboard-navbar {
        height: 44px;
        margin-bottom: 24px;
    }

    .dashboard-navbar-inner {
        height: 44px;
    }

    .dashboard-layout {
        display: block;
    }

    .dashboard-sidebar {
        width: 100%;
        padding-bottom: 24px;
    }

    .dashboard-content {
        width: 100%;
    }
}
