﻿@charset "UTF-8";

* {
    font-family: "Proxima Nova Rg", "Humanist 521 Multilingual W", Arial, "Helvetica Neue", Helvetica, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a, select, input[type="checkbox"], input[type="file"] {
    cursor: pointer; 
}

body {
    background-color: #fbfbfb;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

header {
    background-color: #040a47;
   /* display: flex;
    flex-basis: 50px;*/
    border-bottom: 2px solid #1456f1;
}

main.admin-layout {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 50px);
}

.main-content {
    order: 2;
    padding: 15px;
    flex: 1 1 auto;
    overflow: auto;
    height: calc(100vh - 40px); 
}

    .main-content p {
        margin-bottom: 15px;
    }

.primary-nav,
.secondary-nav,
.profile-nav {
    display: flex;
}

.secondary-nav {
    flex-direction: column;
}

.sidebar-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 200px;
    order: 1;
    border-right: 1px solid black;
    height: calc(100vh - 40px);
}

.settings {
    margin-top: auto;
}

.primary-nav {
    flex-flow: wrap;
}

    .primary-nav a,
    .secondary-nav a,
    .profile-nav a,
    .settings a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        text-decoration: none;
    }

    .primary-nav a,
    .profile-nav a {
        margin: 0 3px;
        color: #fff;
    }

.secondary-nav a,
.settings a {
    margin: 2px 0;
    color: #000;
}

.settings a {
    margin-bottom: 0;
}

a.active {
    background-color: #1456f1;
    color: #fff;
}

a:hover {
    background-color: #1456f1;
    color: #fff;
}

.profile-nav {
    margin-left: auto;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    color: #fff;
}

.svg-logo {
    width: 175px;
    color: #fff;
    fill: currentColor;
}