@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: inherit;
    font-family: 'Roboto', sans-serif;
}

:root {
    --color: #333;
    --header-height: 60px;
    --nav-side-width: 200px;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

a {
    /*text-decoration: none;*/
    color: #333;
}

/* App */
.app-wrapper {
    position: relative;
}

/* Header */
.app-header {
    height: var(--header-height);
    padding: 0;
    background: #fff;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.logo {
    display: block;
    margin: auto;
    text-align: center;
    width: 146px;
}


a.nav-btn {
    padding: 18px 24px;
    display: inline-block;
    border-right: 1px solid #e1e5f1;
    cursor: pointer;
}

    a.nav-btn:hover {
        background: #f5f5f5;
    }

/* End Header */

.app-container {
    position: relative;
    margin-top: var(--header-height);
    padding: 0;
    height: calc(100vh - var(--header-height));
    overflow: auto;
    background: #f5f5f5;
}

/* Sidebar */
.app-side {
    width: var(--nav-side-width);
    margin-top: var(--header-height);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: calc(-1 * var(--nav-side-width));
    bottom: 0;
    background: #152441;
    z-index: 1000;
    /*transition: all 0.3s ease-in-out;*/
    padding: 0 0.275rem;
}

.side-nav .nav-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem 0 0 0;
    margin: 0;
}

    .side-nav .nav-menu .nav-item {
        list-style: none;
        margin: 0 0 0.275rem 0;
        padding: 0;
    }

        .side-nav .nav-menu .nav-item a {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
            outline-width: 0;
        }

            .side-nav .nav-menu .nav-item a .nav-icon {
                margin: 0.75rem 1rem;
                font-size: 1rem;
            }

            .side-nav .nav-menu .nav-item a .nav-title {
                padding: 0.75rem 0 0.75rem 0;
                font-size: 1rem;
                font-weight: 400;
            }

            .side-nav .nav-menu .nav-item a:hover {
                background: #0e172b;
                border-radius: 0.75rem;
            }

.nav-active {
    background: #0e172b;
    border-radius: 0.75rem;
}

.has-sub-menu::after {
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-width: 2px 0 0 2px;
    border-style: solid;
    right: 1.5rem;
    transform: rotate(225deg);
}

/* End Sidebar */

/* Content */
.app-side.active {
    left: 0;
}

.app-main {
    /*transition: all 0.3s ease-in-out;*/
}

    .app-main.show-side {
        margin-left: var(--nav-side-width);
    }

/* EndContent */
/* Picker  */
.picker hr {
    margin-bottom: 5px;
}

.picker .button__text {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin: 3px;
    border: 1px solid transparent;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.picker .button__add {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    white-space: normal;
    text-transform: none;
}

.picker .button__delete, .picker .button__update {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    white-space: normal;
    text-transform: none;
}

.picker .button__show-all {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    white-space: normal;
    text-transform: none;
}

.picker .block__buttons__add {
    margin-top: 4px;
}

.picker .search-title {
    color: gray;
    font-size: 12px;
}

/* End Picker */
