﻿/* ===== 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', sans-serif !important;
}


[class*="Rad"] .p-icon,
[class*="rddl"] .p-icon,
.p-icon {
    font-family: "WebComponentsIcons", monospace !important;
}

.t-icon {
    font-family: "WebComponentsIcons", monospace !important;
}

.k-icon {
    font-family: "WebComponentsIcons", monospace !important;
}


body {
    height: 100vh;
}

nav {
    left: 0;
    height: 70px;
    width: 100%;
    z-index: 100;
    color: #979797;
}


    nav .nav-bar {
        position: relative;
        height: 100%;
        width: 100%;
        margin: auto;
        align-items: center;
        justify-content: center;
        color: #979797;
        display: flex;
    }

        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;
    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);
}

.menu {
    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;
}


/* side nav*/


.sidenav {
    height: 100%;
    width: 320px;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #4183DF; /* Blue background */
    padding-top: 100px;
}


.content {
    display: flex;
    width: 100%;
    height: 100%;
}

#MidContent {
    flex: 1;
    display: block;
    position: relative;
    margin-top: 100px;
}

.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', sans-serif;
    letter-spacing: 0em;
    margin: 8px;
    height: auto;
    overflow-x: scroll;
}

.openprocument_header {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0em;
    color: #15428B;
    padding-bottom: 25px;
}

.openprocument_desc * {
    font-size: 16px !important;
}

.openprocument_desc {
    text-align: left;
    font-weight: 400;
}
