﻿@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 4rem;
    --nav-width: 100px;
    --first-color: #443C96;
    --second-color: #17a2b8;
    --third-color: #5D8699;
    --first-color-light: #DDEFFD;
    --white-color: #45CEFF;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*, ::before, ::after {
    box-sizing: border-box
}

.form-inline label{
    justify-content: left
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}

a {
    text-decoration: none
}

.bck_img {
    border-radius: 50%;
    background-color: white;
    /*padding: 5px;*/
}

.dropdown-item{
    color: white;
}
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--first-color);
    color: white;
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    color: var(--second-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

    .header_img img {
        width: 75px
    }

.bg_secondColor {
    background-color: var(--second-color);
    color: white;
}

button.bg_secondColor, a.bg_secondColor {
    background-color: var(--third-color);
}

button.bg_secondColor:hover, a.bg_secondColor:hover {
    color: white;
    background-color: var(--second-color);
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav_logo, .nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: #FFFE4E;
}

.nav_logo-name {
    color: #B04AE0;
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    transition: .3s
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.show1 {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

    .active::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 32px;
        background-color: var(--white-color)
    }

.height-100 {
    height: 90vh
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }

    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }

    .header_img {
        width: 75px;
        height: 75px
    }

        .header_img img {
            width: 75px
        }

    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }

    .show1 {
        width: calc(var(--nav-width) + 156px)
    }

    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }

    .hide-when-small {
        display: none
    }
}

@media (max-width: 1200px) {
    .auto-overflow {
        overflow-y: scroll;
    }

    .hide-when-small {
        display: none
    }
}

@media (max-width: 1000px) {
    table {
        width: 1000px;
    }

    .hide-when-small {
        display: none
    }

    .table-long {
        width: 1200px
    }

    .width150 {
        width: 150px;
    }
}

.width200 {
    min-width: 200px;
}

.height40 {
    max-height: 40px
}

.damed {
    background-color: #e9ecef;
    padding: 2px;
}

.card_image_size {
    width: 40px;
    height: 40px;
}

.table-long {
    width: 1200px
}

.width150{
    width: 150px;
}

