﻿/* Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Roboto */
/* @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'); */

/* VARIABLES */
:root {
    --font_family: 'Poppins', sans-serif;
    --font_size: 18px;
    --font_weight: 400;
    --bg_container: #ced3ff;
    --accent_color: #563eeb;
    --clr_primary: #624888;
    --clr_divider: rgba(22,22,22,0.15);
    --clr_medium-gray: #686868;
    --clr_dark-gray: #161616;
    --clr_background: #e4e2df;
    --clr_foreground: #f1f0ee;
    --box-shadow: 0 2px 4px rgba(22,22,22,0.1);
    --box-shadow2: 0 .375rem .875rem 0 rgba(0,0,0,.13),0 .0625rem .25rem 0 rgba(0,0,0,.11);
    --header-content-height: 220.83px;
    --view-content-mt: 32px;
    --header: calc(var(--header-content-height) + var(--view-content-mt));
    --min-vHeight: calc(100vh - var(--header));
}

textarea {
    /* appearance: none; */
    border: 1px solid #0e0e275c;
    outline: none;
    /* outline: 3px solid hsl(234 100% 89% / 1); */
    padding: .5rem .5rem;
    margin: .5rem 0;
    border-radius: .25rem;
    color: hsl(234deg 7.31% 42.12%);
    font-size: 1.2rem;
    font-family: var(--font_family);
}

ul {
    list-style: none;
    list-style-type: none;
}

    ul li a {
        text-decoration:none;
    }

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body > * {
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: var(--font_weight);
    -webkit-font-smoothing: antialiased;
}

/*.container {
    background-color: var(--bg_container);
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: var(--header-content-height) 100%;
}*/

.container {
    background-color: var(--bg_container);
    /* display: block; */
    /* grid-template-columns: 100%; */
    min-height: 100vh;
    max-width: 100vw;
    /* overflow-y: auto; */
}

/*.vw-container {
    max-width: 100%;
    z-index: 1;
    overflow-y: clip;
    outline: 5px solid green;
    outline-offset: -3px;
    min-height: 100vh;
    padding-bottom: 1.5rem;
}*/

.vw-container {
    /* outline: 5px solid green; */
    /* outline-offset: -3px; */
    /* overflow: scroll; */
    /* max-width: calc(100vw - 2rem); */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    /* display: grid; */
}

    .vw-container:has(.vw-booking) {
        overflow:clip;
    }

.vw-container {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    margin-inline: 8px;
    padding-bottom: 1.25rem;
}

.vw-dashboard .ibody {
    /* padding: 1rem 1rem 2rem 0; */
    opacity: 1;
    transition: all 0.25s;
    /* overflow: clip; */
    background-color: var(--bg_container);
}

/*.view-content-wrapper {
    scrollbar-gutter: both-edges;
    min-width: 100%;
    z-index: 1;
}*/

.view-content-wrapper {
    min-height: calc(100vh - var(--header));
    min-width: 100%;
    z-index: 1;
}

::-webkit-scrollbar {
    /*width: 10px;*/
    /*height: 10px;*/
    scrollbar-width: thin;
    background-color: #9a9aff85;
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(182deg, #606eccd1, #4841c08a);
    border-radius: .5rem;
    cursor: pointer;
}

/*::-webkit-scrollbar-thumb:hover {
    background-color: #3f446c;
}*/

/*::-webkit-scrollbar-track {
     background-color: #ced3ff; 
}*/

.scroll-fade {
    /*overflow: auto;*/
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: all 0.75s ease;
}

.scroll-fade:hover {
    scrollbar-color: #10094266 #4841c066;
}
/***********************************************************/
/* MAIN                                                    */
/***********************************************************/
.main-content {
    position: relative;
    background-color: var(--bg_container);
    z-index: 1;
    margin: 2rem 0 0 0;
    min-height: calc(100vh - var(--header));
}

/*.main-content::before {
    display: none;
    position: absolute;
    content: '';
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    background-color: blue;
    z-index: 2;
}*/

.main-content::before {
    /*position: absolute;
    content: '';
    width: 36px;
    height: 106%;
    top: 0;
    right: 0;
    background-color: #fff;
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    background: linear-gradient(0deg, #FCFCFC, #FCFCFC), #D0D2FA;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.16);*/
}

    .main-content::after {
    /* position: absolute;
    content: '';
    width: 48px;
    height: 48px;
    top: 48px;
    background-color: #e50e0e; */
    }

/***********************************************************/
/* FOOTER                                                   */
/***********************************************************/
footer {
    font-size: .88rem;
    font-weight: 400;
    padding: 8px;
    text-align: center;
    background-color: #ffffffbd;
    color: #00000085;
}
/***********************************************************/
/* NAVBAR                                                  */
/***********************************************************/
header.navbar {
    padding: 12px 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    gap: 8px;
    padding-top: 36px;
}

.header-content {
    position: relative;
    /* background-color: #3c509770; */
    background: linear-gradient(0deg, rgb(99 203 255), rgb(184 182 255)), url(digital.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* mix-blend-mode: exclusion; */
    /* margin-bottom: 26px; */
    border-bottom-left-radius: 1.75rem;
    border-bottom-right-radius: 3.5rem;
    z-index: 2;
    /*border: 3px solid red;*/
}

    .header-content::before {
    /*position: absolute;
    content: '';
    width: 100%;
    height: 32px;
    background-color: yellow;
    bottom:0;
    z-index: -1; */
    }

    .header-content::after {
    /* position: absolute;
    content: '';
    width: 48px;
    height: 48px;
    bottom: 0;
    left: 24px;
    background-color: green;
    z-index: 4; */
    }

/*.curved-bottom {
    position: absolute;
    width: 100%;
    height: 26px;
    background-color: transparent;
    border-bottom-left-radius: 3.5rem;
    border-bottom-right-radius: 3.5rem;
    z-index: 5;
}*/

/*.curved-bottom.inner {
    width: 100%;
    height: 26px;
    background-color: transparent;
    border-bottom-left-radius: 3.5rem;
    border-bottom-right-radius: 3.5rem;
    z-index: 4;
}*/

.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    text-align: center;
    justify-self: end;
    font-size: .85rem;
}

.nav-item {
    position: relative;
    flex: 0 1 auto;
    padding: 6px 8px;
    cursor: pointer;
    background-color: inherit;
    border-radius: 4px;
    min-width: max-content;
    box-sizing: border-box;
    transition: background-color .25s ease-in-out;
    /* background-color: #f9fdff; */
    align-content: center;
}

    /*.nav-item:hover {
        background-color: rgb(216 216 216);
    }*/

    .nav-item:hover {
        background-color: var(--bg_row-hover);
    }

    .nav-item.active {
        /* background-color: #ffffff45; */
    }

    .nav-item i {
        padding: 4px;
        height: 100%;
        opacity: 0;
        transition: opacity .2s ease-in-out;
    }

    .nav-item:hover i {
        opacity: 1;
    }

    /* .nav-item:active i {
    opacity: 1;
} */

    .nav-item:hover .nav-text {
        color: #fff;
    }

.nav-text {
    display: block;
    /*color: #161616;*/
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;
}

.nav-menu {
    display: none;
    position: absolute;
    left: 0;
    bottom: -182px;
    z-index: 20;
    background-color: #fff;
    user-select: none;
    /* border-radius: 0px 4px 4px 4px; */
    border-radius: 0 .5rem .5rem .5rem;
    overflow: hidden;
    box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 25%);
    padding: 0;
}

    .nav-menu:hover {
        display: block;
    }

/*.menu-item {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: center;
    text-wrap: nowrap;
    padding: 6px;
    gap: 4px;
    cursor: pointer;
    background-color: #fff;
}*/

.menu-item {
    /* display: grid; */
    /* grid-template-columns: auto 1fr; */
    text-align: left;
    /* align-items: center; */
    text-wrap: nowrap;
    padding: .75rem;
    /* gap: 4px; */
    cursor: pointer;
    background-color: #fff;
}

    /*.menu-item input {
        display: none;
    }*/

    /*.menu-item label {
        cursor: pointer;
        padding: 4px;
        font-size: .88rem;
        color: #000000d9;
    }*/

    .menu-item a {
        text-decoration: none;
        padding: 4px;
        font-size: .88rem;
        color: #000000d9;
    }

    .menu-item:hover {
        /* background-color: #2196F3; */
        background-color: #dcdbff;
    }

        /*.menu-item:hover label {
            color: #fff !important;
        }*/

        .menu-item:hover a {
            /* color: #fff !important; */
            color: #673AB7;
        }

/* .nav-menu:has(.nav-item.active) {
    display: block;
} */

.nav-item .nav-menu {
    display: none;
}

.nav-item.active .nav-menu {
    display: block;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #f9f9fb;
}

.avatar {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: end;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
}

    .avatar .user-image {
        width: 64px;
        height: 64px;
        border-radius: 100%;
        z-index: 100;
        box-shadow: var(--box-shadow);
    }

    /*.avatar .user-name {
        color: #161616;
        font-weight: 500;
    }*/

    .avatar .user-name {
        color: #ffffff;
        font-weight: 500;
    }
/***********************************************************/
/* CARD                                                    */
/***********************************************************/
.cards {
    /* background-color: #ffffff17; */
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px 16px 32px 16px;
    padding-bottom: 36px;
}

    .cards :is(p,ul,li,a) {
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

.card {
    flex: 1 1 fit-content;
    /*background-color: #cfcfff;*/
    color: #183153;
    font-weight: 500;
    width: auto;
}

.card-outer {
    padding: .25rem 2rem;
    background: rgb(255 255 255);
    border-radius: 16px;
    box-shadow: 4px 4px 7px rgb(0 0 0 / 10%), -2px -2px 10px 0px rgb(0 0 0 / 2%);
    /* backdrop-filter: blur(10px); */
    /* --webkit-backdrop-filter: blur(20px); */
    /* border: 1px solid rgb(255 255 255 / 3%); */
}

.card-inner {
    /* background-color: transparent; */
    padding: 0;
    padding-bottom: .5rem;
}

.card-rounded {
    border-radius: .75rem;
}

.card-sm {
    width: 500px !important;
    color: red;
}

.card-col-2 {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #130c41;
    padding-top: .5rem !important;
}

.card-description {
    color: #130c41;
    font-weight: 400;
    font-size: .85rem;
}

.card-value {
    font-weight: 300;
    color: #7c6ab7;
    font-size: 2.75rem;
}

.card-value-text-header {
    font-weight: 400;
    font-size: 1.2rem;
    text-wrap: nowrap;
    color: #130c4187;
}

.card-value-text-footer {
    font-weight: 400;
    font-size: 1rem;
    color: #130c41ad;
}
/***********************************************************/
/* TAB                                                     */
/***********************************************************/
.tab-container {
    /* background-color: #d3d1c7; */
    /* border: 2px solid red; */
    /* padding-top: 0px; */
    margin-left: 6px;
    /* position: relative; */
}

.tab-container::before {
    /* content: ''; */
    /* position: absolute; */
}

.tab-container::after {
    /* content: ''; */
    /* position: absolute;  */
}

.tabs {
    display: flex;
    padding-left: 16px;
    background-color: var(--bg_container);
    /* position: relative; */
    /* isolation: isolate; */
}

/* .tabs::before {
    content:'';
    height: 2px;
    background-color: #c6c2c8;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
} */

.tab-item {
    user-select: none;
    position: relative;
    isolation: isolate;
    /* background-color: #412fcf17; */
}

.tab-item input {
    display: none;
}

.tab-item .tab-title {
    display: block;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 400;
}

/***********************************************************/
/* Set tab header color and background-color               */
/***********************************************************/
/* default */
.tab-item:has(:not(input[type="radio"]:checked)) .tab-title {
    /* color: #0f0e168f;  */
    /* color: #6f6b87c9; */
    color: #0e092bc9;
    /* background-color: #412fcf17; */
}

/* selected */
.tab-item:has(input[type="radio"]:checked) .tab-title {
    /* color: #fff;  */
    /* color: #2C2075; */
    color: #110845;
    /* background-color: #5f3bd3; */
}

/***********************************************************/
/* Set bottom underline color    
/***********************************************************/
.tab-title::after {
    content: '';
    height: 3px;
    width: 80%;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-inline: auto;
    transform: translateX(-50%);
}

/* default */
.tab-item:has(:not(input[type="radio"]:checked)) .tab-title::after {
    /* border-bottom: #0f0e168f; */
    background-color: transparent;
}

/* selected */
.tab-item:has(input[type="radio"]:checked) .tab-title::after {
    /* color: #fff; */
    background-color: #8d68d9;
    /* background-color: #5f3bd3; */
}

/***********************************************************/
/* Set color when hovered                                  */
/***********************************************************/
/* default */
.tab-item:has(:not(input[type="radio"]:checked)):hover .tab-title {
    color: #29282f;
}
/* checked */
.tab-item:has(input[type="radio"]:checked):hover .tab-title {
    color: #2c2075db;
}

.tab-contents {
    /* display: grid; */
    /* grid-template-rows: 1fr; */
    /* grid-template-columns: 1fr; */
    position: relative;
    height: 100%;
    /* width: 100%; */
    margin-right: 20px;
    min-height: 420px;
    background-color: #ffffff;
    padding: 16px 8px;
    box-shadow: 0 4px 30px rgb(7 3 22 / 7%);
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(20px);
}

.tab-panel {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    padding: 50px 0 16px 16px;
    margin-top: 36px;
    display: none;
    animation: slide-in .5s forwards;
    overflow: auto;
}

    .tab-panel.active {
        display: block;
    }

@keyframes slide-in {
    from {
        left: 100%;
    }

    to {
        left: 0;
    }
}

.tab-contents .tab-panel:nth-child(1) {
    /* background-color: #eb6d6d; */
}

.tab-contents .tab-panel:nth-child(2) {
    /* background-color: #7de77d; */
}

.tab-contents .tab-panel:nth-child(3) {
    /* background-color: #8185ff; */
}

/***********************************************************/
/* Set each item take full width on small screens          */
/***********************************************************/
@media (max-width: 500px) {
    header.nav-bar {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        border: 1px solid red;
    }

    .nav-item {
        flex: 1 1 100%;
    }
}
/***********************************************************/
/* Modal Dialog                                            */
/***********************************************************/
dialog {
    display: none;
}

    dialog[open] {
        display: block;
    }

        dialog[open]::backdrop {
            display: none;
        }

.modal-dialog {
    min-width: 420px;
    width: 1320px;
    max-height: 1320px;
    background-color: #fff;
    margin-inline: auto;
    margin-block: 16px;
    box-shadow: 0px 0px 8px 2px rgb(0 0 0 / 25%);
    border-radius: 16px;
    overflow: hidden;
}

.modal-body {
    margin: 8px 0 0 0;
    font-size: .75rem;
    color: #000000cf;
}

    .modal-body :is(label, p, input) {
        font-family: var(--font_family);
        font-size: 1rem;
    }

.modal-header {
    padding: 16px;
    display: flex;
    gap: 16px;
}

.modal-title {
    flex-grow: 1;
}

p.modal-title {
    font-weight: 600;
    font-size: 1.2rem;
    text-wrap: nowrap;
}

.modal-close-button {
    flex-grow: 0;
    border: none;
    outline: none;
    background-color: inherit;
    cursor: pointer;
}

.modal-contents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 4px;
    grid-column-gap: 16px;
    max-height: 720px;
    overflow-y: auto;
    padding: 0 20px;
}

.form-input-group {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr min-content;
    flex: 1 0 350px;
    align-items: end;
    gap: 4px;
}

.modal-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 20px;
}

.modal-overlay {
    display: none;
}

.error-text {
    font-size: 1rem;
    line-height: 1rem;
    display: block;
}

    .error-text.invalid {
        color: #ff00008a;
    }

/* INPUT */
input {
    /* appearance: none; */
    border: 1px solid #0e0e275c;
    outline: none;
    /* outline: 3px solid hsl(234 100% 89% / 1); */
    padding: .5rem .5rem;
    margin: .5rem 0;
    border-radius: .25rem;
    color: hsl(234deg 7.31% 42.12%);
    font-size: 1.2rem;
    font-family: var(--font_family);
}

    input::placeholder {
        color: rgb(156, 156, 156);
    }

/* BUTTON */
.inno-button {
    font-family: var(--font_family);
    color: #150c49;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    outline: none;
    background-color: #00000025;
    padding: .75rem 1.5rem;
    cursor: pointer;
    min-width: 10rem;
}

    .inno-button:hover {
        background-color: #4d4d4d25;
    }

    .inno-button:active {
        background-color: #00000029;
    }

.flat {
    border-radius: 0;
}

.semi-round {
    border-radius: .25rem;
}

.round {
    border-radius: 1rem;
}

.primary {
    color: #fff;
    background-color: #563eeb;
}

.inno-button.primary:hover {
    background-color: #6b58d5;
}

.inno-button.primary:active {
    background-color: #513fb5;
}

.secondary {
    color: #fff;
    background-color: #2e2e2e;
}

.inno-button.secondary:hover {
    background-color: #3c2e53db;
}

.inno-button.secondary:active {
    background-color: #271d39;
}

.inno-button.btn-icon {
    font-weight: normal;
    min-width: max-content;
    color: black;
    background-color: transparent;
}

.inno-button.btn-icon i {
    color: black;
    margin-right: .5rem;
}

.inno-button.btn-icon:hover {
    color: #13219c;
    /* background-color: #563eeb; */
    font-weight: normal;
}

.inno-button.btn-icon:hover i {
    color: #13219c;
}

/*.inno-button.btn-icon:hover i {
    color: #fff;
}*/

.inno-button.app-icon {
    background: transparent !important;
    min-width: auto;
    color: #00000090!important;
}

.inno-button.app-icon:hover {
    /*color: red !important;*/
    /*background-color: red !important;*/
}

/***********************************************************/
/* SECTIONS - VIEW */
/***********************************************************/
.page-title {
    /* margin-left: 2.5rem; */
    color: #161616;
    font-size: 2.5rem;
    font-weight: bold;
    margin: .25rem 0;
}

.ref-no {
    font-weight: 500;
    font-size: x-large;
    /* color: hsl(206 37% 16% / 1); */
    color: #565555;
    margin: .5rem 0;
}

.reserved {
    /* font-style: italic; */
    font-size: large;
    font-weight: 300;
    /* color: hsl(206 36% 50% / 1); */
    color: #fff;
    background-color: deepskyblue;
    padding: .25rem 1rem;
    border-radius: 1rem;
}

.group-title {
    position: relative;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: stretch;
    gap: 1rem;
}

.group-title p {
    font-weight: 500;
    font-size: 2rem;
    /* color: hsl(206 36% 50% / 1); */
    color: #161616;
    margin-top: 0;
}

.group-separator {
    /* border: 1px solid hsl(236 25% 66% / 1); */
    /* background-color: #3b3d52; */
    border: 1px solid rgb(22 22 22 / 25%);
}

.hotel-details {
    position:relative;
}

.hotel-details::before {
    position: absolute;
    content: '';
    /*height: 8px;
    width: 100%;
    color: blue;
    inset:0;*/
}

label {
    /* color: #2a4459bd !important; */
    font-weight: 500;
    font-size: 1.2rem;
    color: #565555;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-content {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 2rem;
    margin-top: 2rem;
    /* padding: 1.2rem; */
    /* outline: 1px solid #949dd3bd; */
    border-radius: .25rem;
    max-height: 100%;
    transition: max-height 0.2s ease-out;
}

.section-content.collapsed {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.button-group {
    /* margin: 1.5rem 0; */
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group > div {
    flex-grow: 1;
    flex-basis: min(420px, 100%);
}

.component-group {
    display: grid;
    align-items: start;
    grid-template-rows: auto max-content;
}

.result-container {
    margin-block: 1rem;
    /* overflow: auto; */
}

.section-bg img {
    width: 200px;
    height: auto;
}
/***********************************************************/
/* SIDEBAR */
/***********************************************************/
.sidebar {
    position: sticky;
    top: 0;
    background-color: var(--clr_foreground);
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    box-shadow: var(--box-shadow);
    width: 0;
    padding: 0;
    transition: width .1s ease;
    overflow: hidden;
    margin-bottom: 2rem;
    z-index: 2;
    height: max-content;
    /*outline: 3px solid green;*/
    /*outline-offset: -3px;*/
    flex-shrink: 1;
}

.sidebar.open {
    position: sticky;
    top: 0;
    width: 230px !important;
    padding: 1.5rem 0px 1.5rem 0;
    height: max-content;
    /* outline: 5px solid green; */
    /* outline-offset: -5px; */
    flex-shrink:0;
}

.sidebar:before {
    content: '';
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -24px;
    background-color: red;
    display:none;
}

.sidebar:after {
    content: '';
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -24px;
    background-color: blue;
    display: none;
}

.sidebar-header {
    color: #00000050;
    font-size: large;
    font-weight: 500;
    padding: 8px;
    text-transform: uppercase;
}

.sidebar-list {
    list-style-type: none;
}

li.sidebar-item {
    position: relative;
    /* display: flex; */
    padding: .25rem .5rem;
    cursor: pointer;
    background-color: var(--clr_foreground);
    /* align-items: center; */
    /* border-left: 4px solid transparent; */
    margin-left: .5rem;
    /* border-top-left-radius: 1.25rem; */
    /* border-bottom-left-radius: 1.25rem; */
    transition: background-color 0.19s ease;
}

    /*li.sidebar-item::before, li.sidebar-item::after {
        --border-radius: 1.5rem;
        --clr_list-hover: #f1f0ee;
        content: '';
        position: absolute;
        width: var(--border-radius);
        height: var(--border-radius);
        right: 1px;
        background-color: var(--clr_foreground);
    }

    li.sidebar-item:hover::before, li.sidebar-item:hover::after {
        --border-radius: 1.5rem;
        content: '';
        position: absolute;
        width: var(--border-radius);
        height: var(--border-radius);
        right: 1px;
        background-color: var(--clr_list-hover);
    }

    li.sidebar-item:hover::before {
        top: calc(var(--border-radius) * -1);
        box-shadow: 8px 8px 2px 6px var(--clr_background);
        border-radius: 0 0 100vw 0;
    }

    li.sidebar-item:hover::after {
        bottom: calc(var(--border-radius) * -1);
        box-shadow: 8px -8px 2px 6px var(--clr_background);
        border-radius: 0 100vw 0 0;
    } */

li.sidebar-item a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    padding: .5rem;
    white-space: nowrap;
    display: block;
}

    li.sidebar-item:hover {
        /*border-top-left-radius: 1.25rem;*/
        /*border-bottom-left-radius: 1.25rem;*/
        background-color: var(--clr_background);
        border-top-left-radius: 2rem;
        border-bottom-left-radius: 2rem;
    }

li.sidebar-item:hover a {
    color: #673AB7;
}

li.sidebar-item:hover a::before {
    color: #673AB7;
}

li.sidebar-item.active {
    background-color: #ced3ff;
    border-left: 4px solid #f1f0ee;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

li.sidebar-item.active a {
    color:#8463e3;
}

li.sidebar-item.active a:before {
    color: #6000ff;
}

.sidebar h4 {
    margin: 0;
}

.sidebar ul {
    margin: 0;
    padding-left: 0;
}

.page-content {
    /* display: grid; */
    /* grid-template-columns: auto 1fr; */
    /* grid-template-rows: 1fr; */
    /* gap: 2rem; */
    /* isolation: isolate; */
    display: flex;
    /* flex-basis: auto; */
    overflow-y: auto;
    /* align-items: flex-start; */
    /* flex-wrap: nowrap; */
    height: calc(100vh - var(--header));
    justify-content: stretch;
    align-items: baseline;
    overflow-x: clip;
}
/***********************************************************/
/* TOOLBAR */
/***********************************************************/
.toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* outline: 1px dashed gray; */
}

.reference-text {
    font-weight: 300;
    font-size: 1.3rem;
    margin-block: 0;
    color: #747474;
}


