﻿/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    /*transition: all 0.4s ease;*/
}


/* ===== Colours ===== */
/*:root {
    --body-color: #FFFFFF;
    --nav-color: white;
    --side-nav: #010718;
    --text-color: grey;
    --search-bar: #F2F2F2;
    --search-text: #010718;
}*/

body {
    height: 100vh;
}

/*body.dark {
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
}
*/
nav {
    
    left: 0;
    height: 70px;
    width: 100%;
    /*width:auto;*/
    z-index: 100;
    color: #979797;
}


    nav .nav-bar {
        position: relative;
        height: 100%;
        width: 60%;
        margin: auto;
        align-items: center;
        justify-content: left;
        color: #979797;
        display: flex;
        /* display:flow;
    padding-left:18%;*/
    }

/*nav .nav-bar .sidebarOpen {
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}
*/
nav .nav-bar .logo a {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.menu .logo-toggle {
    display: none;
}

.nav-bar .nav-links {
    display: flex;
    align-items: center;
    text-wrap: balance;
}

.nav-bar .nav-links li {
    margin: 0 25px;
    list-style: none;
    text-decoration: none;
}

.nav-links li a {
    position: relative;
    color: #979797;
    text-decoration: none;
    /*padding: 10px;*/
    font-size: 24px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    height: 1px;
    width: 150px;
    border-radius: 10%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
    color: blue;
}

.search-field input {
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}

body.dark .search-field input {
    color: var(--text-color);
}

.search-field i {
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

body.dark .search-field i {
    color: var(--text-color);
}
/*
@media (max-width: 790px) {*/
   /* nav .nav-bar .sidebarOpen {
        display: block;
    }*/

.menu {
    /*position: fixed;
        height: 100%;
        width: 320px;*/
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--side-nav);
    z-index: 100;
    transition: all 0.4s ease;
}

nav.active .menu {
    left: -0%;
}

nav.active .nav-bar .navLogo a {
    opacity: 0;
    transition: all 0.3s ease;
}

/*.menu .logo-toggle {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-toggle .siderbarClose {
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}*/

/*  .nav-bar .nav-links {
    flex-direction: column;
    padding-top: 30px;
}

.nav-links li a {
    display: block;
    margin-top: 20px;
}*/
/*}*/




/*
Custom --- STRAT----
*/
/*.NDOTMainHeader {
    background-color: #E4E9F7;
}*/

#MidContent {
    margin-top: 100px;
}

/*.leftnavigation {
    background-color: #000000;
    margin: 200px;
}*/

/* side nav*/


.sidenav {
    height: 100%;
    width: 320px;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #4183DF; /* Blue background */
    padding-top: 100px;
}

/*.sidenav a {
    padding: 15px 15px 10px 30px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;*/ /* White font color */
    /*display: block;
    font-weight: 600;
    justify-content: center
}

.sidenav a:hover {
    background-color: white;*/ /* Darker blue on hover */
    /*color: #4183DF;
    font-weight: bold;
}*/

.content {
    display: flex;
    width: 100%;
    height: 100%;
}

#MidContent {
    flex: 1;
    display: block;
    position: relative;
}

.child-container {
    grid-column: 2/3;
    grid-row: 3;
}

.openprocument-container {
    box-shadow: 0px 5px 15px 0px #00000026;
    padding: 10px;
    width: auto;
    font-family: 'Poppins';
    letter-spacing: 0em;
    margin: 8px;
    height: auto;
    overflow-x: scroll;
}

.openprocument_header {
    font-family: 'Poppins';
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    color: #15428B;    
    padding-bottom:25px;
}

.openprocument_desc {
    font-size: 16px;
    text-align: left;
    font-weight: 400;
}