/*variables */
/* https://m2.material.io/inline-tools/color/ */
:root {
    --orange: #FFC107;
    --orange500: #FFC107;
    --orange100: #ffecb3;
    --orange200: #ffe082;
    --orange300: #ffd54f;
    --darkBlue: #3e416d;
    --lightBlue: #f0f5fd;
    --indigo500: #3F51B5;
    --indigo500: #3D5AFE;
    --indigoA700: #304FFE;
    --purpleA700: #AA00FF;
    --pinkA200: #E040FB;
    --blue400: #42A5F5;
    --teal500: #009688;
    --grey50: #fdfdfd;
    --grey100: #fafafa;
    --grey200: #EEEEEE;
    --grey300: #E0E0E0;
    --grey400: #bdbdbd;
    --grey500: #9E9E9E;
    --grey600: #757575;
    --grey700: #616161;
    --grey800: #424242;
    --grey900: #212121;
    --green500: #4CAF50;
    --green700: #2e7d32;
    --lightGreen: #e8f5e9;
    --red50: #ffebee;
    --red100: #ffcdd2;
    --red200: #ef9a9a;
    --red300: #e57373;
    --red500: #f44336;
    --lightRed: #ffebee;
    --deepPurple400: #7E57C2;
    --modalBg: rgba(0, 0, 0, 0.25);
    --modalBg2: rgba(255, 255, 255, 0.5);
    --boxShadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --boxShadow2: 0 4px 8px rgba(60, 64, 67, 0.15), 0 1px 3px rgba(60, 64, 67, 0.3), 0 6px 11px rgba(128, 134, 139, 0.06), 0 -3px 11px rgba(128, 134, 139, 0.09);

    /*dark mode*/
    --dm1: #090f13;
    --dm2: #333333;
    --dm3: #222838;
    --dm4: #1A1A2E;
    --dm5: #181826;
}

::-webkit-scrollbar {
    /* display: none; */
    width: 5px;
    height: 2px;
    background-color: transparent;
    box-sizing: border-box;
    /* scrollbar-gutter: auto; */
}

::-webkit-scrollbar-thumb {
    background-color: var(--grey400);
    border-radius: 3px;
    background-clip: padding-box;
    box-sizing: border-box;
}

::-webkit-scrollbar:horizontal {
    width: 2px;
    height: 5px;
    background-color: transparent;
    box-sizing: border-box;
    /* scrollbar-gutter: auto; */
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: var(--grey400);
    border-radius: 3px;
    background-clip: padding-box;
    box-sizing: border-box;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

html,
body {
    display: block;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1.2px;
    font-weight: 500;
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    min-width: 100vw;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    user-select: none;
}

* {
    box-sizing: border-box;
}

input {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
}

input:focus {
    border: none;
    outline: none;
    background: none;
}

input:disabled {
    pointer-events: none;
}

input[readonly="true"] {
    pointer-events: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=file]::file-selector-button {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid var(--indigo500); */
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    border-radius: 4px;
    color: var(--grey50);
    background-color: var(--indigo500);
    box-shadow: var(--boxShadow);
    margin-bottom: 0.4rem;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1.2px;
    font-weight: 500;
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}

input[type=file]::file-selector-button:hover {
    background-color: transparent;
    color: var(--indigo500);
    box-shadow: none;
    /* border: transparent; */
    /* border: 1px solid var(--indigo500); */
}

/* input[type=file]:invalid {
    background-color: var(--lightBlue);
    border: 1px solid var(--indigo500);
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
} */

textarea {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
    /*font-family: 'Quicksand', sans-serif;*/
    letter-spacing: 1px;
    font-weight: 400;
    resize: none;
}

textarea:focus {
    border: none;
    outline: none;
    background: none;
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1.2px;
    font-weight: 400;
    font-size: 0.65rem;
}

option {
    appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
}

button {
    color: inherit;
    border: none;
    padding: 0;
    font-family: inherit;
    font-weight: inherit;
    cursor: pointer;
    /* outline: inherit;     */
    letter-spacing: inherit;
    transition: background-color 0.2s linear, color 0.2s linear;
}

button:focus {
    outline: none;
    border: none;
    background-color: var(--green500);
}

button:hover {
    cursor: pointer;
    background-color: var(--green500);
}

/* button:disabled,
button[disabled] {
    cursor: default;
    color: var(--grey600);
    background-color: transparent;
}

button:disabled:hover,
button[disabled]:hover {
    cursor: default;
} */

.material-symbols outlined {
    font-weight: 400;
    line-height: 0;
}

.material-symbols outlined-round {
    font-weight: 400;
    line-height: 0;
}

.material-symbols rounded {
    font-weight: 400;
    line-height: 0;
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

#content-area {
    grid-area: content;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0rem;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    background-color: var(--lightBlue);
}

/* login elements */
#login-frame {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-self: center;
    overflow: hidden;
    box-sizing: border-box;
    /* background-color: #1A1A2E; */
    background-color: #181826;
    background-image: url("https://images.unsplash.com/photo-1623219298185-dd88ef07820e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2576&q=80");
    /* background-image: url("https://images.unsplash.com/photo-1548555851-4eff635e1107?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2671&q=80"), url("https://images.unsplash.com/photo-1669155011865-3a8f0510af93?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); */
    /* background-repeat: no-repeat, no-repeat; */
    /* background-size: 50% 100%, 50% 100%; */
    /* background-position: center left, center right; */
    /* object-fit: contain; */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

#login-form {
    display: grid;
    grid-template-areas:
        "title"
        "email"
        "password"
        "buttons"
        "version";
    grid-template-rows: 0fr 0fr 0fr 0fr;
    justify-content: center;
    align-items: center;
    row-gap: 0.8rem;
    background-color: var(--lightBlue);
    background-color: #222838;
    border-radius: 6px;
    padding: 1.2rem;
    width: fit-content;
    margin: auto;
    box-shadow: var(--boxShadow2);
    /*border: 1px solid var(--indigo500);*/
}

.login-frame-title {
    grid-area: title;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--grey50);
    font-size: 0.85rem;
    font-weight: 400;
}

.login-frame-version {
    grid-area: version;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--grey50);
    font-size: 0.65rem;
}

/*.login-email-row,
.login-password-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 0.8rem;
    color: var(--grey50);
    background-color: var(--lightBlue);
    border-radius: 4px;
    padding: 0.6rem 0.6rem;
    height: fit-content;
    margin: 0rem;
    transition: 0.2s linear box-shadow, 0.2s linear background-color, 0.2s linear color, 0.2s border;
}*/

.login-email-icon,
.login-password-icon {
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey900);
}

#login-email {
    width: 18rem;
    grid-area: email;
    outline: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.8rem;
    background-color: var(--lightBlue);
    border: 1px solid var(--lightBlue);
    border-radius: 4px;
    padding: 0.6rem 0.6rem;
    height: fit-content;
    margin: auto;
    transition: 0.2s linear box-shadow, 0.2s linear background-color, 0.2s linear color, 0.2s linear border;
}

#login-password {
    width: 18rem;
    grid-area: password;
    outline: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.8rem;
    background-color: var(--lightBlue);
    border: 1px solid var(--lightBlue);
    border-radius: 4px;
    padding: 0.6rem 0.6rem;
    height: fit-content;
    margin: auto;
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}

#login-email:focus,
#login-password:focus {
    border: 1px solid var(--indigo500);
}

.login-frame-buttons {
    grid-area: buttons;
    display: flex;
    flex-direction: column;
    column-gap: 0.4rem;
    row-gap: 0.4rem;
}

#login-btn {
    grid-area: button;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: fit-content;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.5rem 2rem;
    color: var(--grey50);
    margin: auto;
    background-color: var(--indigo500);
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}

#login-btn:hover {
    background-color: var(--green500);
    box-shadow: none;
    cursor: pointer;
}

.login-btn {
    grid-area: button;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: fit-content;
    width: fit-content;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.5rem 2rem;
    color: var(--grey50);
    margin: auto;
    background-color: var(--indigo500);
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}

.login-btn:hover {
    background-color: var(--green500);
    box-shadow: none;
    cursor: pointer;
}

.admin-console-LoginLoad-modal {
    display: flex;
}

.admin-console-LoginLoad-bar {
    display: flex;
    height: 0.3rem;
    width: 50%;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    /*border: 1px solid var(--grey200);*/
    background-color: var(--grey200);
    /*box-shadow: var(--boxShadow);*/
}

.admin-console-LoginLoad-bar:before {
    content: '';
    border-radius: 10px;
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
}

.admin-console-LoginLoad-bar-fill {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: var(--indigoA700);
    width: 0;
}

.admin-console-LoginLoad-modal[show=false] {
    animation: none;
    visibility: hidden;
}

.admin-console-LoginLoad-modal[show=true] .admin-console-LoginLoad-bar-fill {
    animation: infiniteLoad 1.5s linear infinite;
}

/* console elements */

#admin-console {
    display: none;
    background-color: var(--lightBlue);
    overflow-x: hidden;
    overflow-y: hidden;
    grid-template-areas:
        "menubar topbar right"
        "menubar content right";
    grid-template-columns: 0fr 1fr auto;
    grid-template-rows: 0fr 1fr;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.admin-console-cursor {
    height: 100%;
    width: 1px;
    position: absolute;
    background-color: var(--grey50);
    /*opacity: 0.8;
    transform: translate(0, 0);*/
    pointer-events: none;
}

.admin-console-snackbar {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    margin: 1rem;
    background-color: var(--indigo500);
    color: var(--grey50);
    box-shadow: var(--boxShadow);
    white-space: nowrap;
    position: fixed;
    bottom: 0;
    left: 40%;
    z-index: 5;
    transition: opacity 0.2s linear;
}


@keyframes snackbarin {
    from {
        bottom: -100%;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes snackbarout {
    from {
        bottom: 0;
        opacity: 1;
    }

    to {
        bottom: -100%;
        opacity: 0;
    }
}

.admin-console-snackbar[show=true] {
    visibility: visible !important;
    animation: snackbarin 0.5s, snackbarout 1s 2.5s;
}

.admin-console-fsLoadModal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--modalBg);
    z-index: 200;
    height: 100%;
    width: 100%;
}

.admin-console-fsLoadModal[show=false] {
    display: none;
}

.admin-console-fsLoadModal-frame {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey600);
    background-color: var(--grey50);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    width: 12rem;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.admin-console-fsLoadModal-bar {
    display: flex;
    height: 0.3rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    /*border: 1px solid var(--grey200);*/
    background-color: var(--grey200);
    /*box-shadow: var(--boxShadow);*/
}

.admin-console-fsLoadModal-bar:before {
    content: '';
    border-radius: 10px;
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
}

.admin-console-fsLoadModal-bar-fill {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: var(--indigoA700);
    width: 0;
}

.admin-console-fsLoadModal[show=true] .admin-console-fsLoadModal-bar-fill {
    animation: infiniteLoad 1.5s linear infinite;
}


.admin-console-loader-frame {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey600);
    background-color: var(--grey50);
    /* border-radius: 6px; */
    /* box-shadow: var(--boxShadow); */
    width: 100%;
    /* padding: 0.4rem; */
    position: relative;
    overflow: hidden;
    display: none;
}

.admin-console-loader-frame-bar {
    display: flex;
    height: 0.3rem;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    /*border: 1px solid var(--grey200);*/
    background-color: var(--grey200);
    /*box-shadow: var(--boxShadow);*/
}

.admin-console-loader-frame-bar:before {
    content: '';
    border-radius: 10px;
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
}

.admin-console-loader-frame-bar-fill {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: var(--indigoA700);
    width: 0;
}

.admin-console-loader-frame[show=true] {
    display: flex;
}

.admin-console-loader-frame[show=true] .admin-console-loader-frame-bar-fill {
    animation: infiniteLoad 1.5s linear infinite;
}

.admin-console-modal-background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--modalBg);
    z-index: 3;
    height: 100%;
    width: 100%;
}

.admin-console-modal-background[show=false] {
    display: none;
}

.admin-console-modal-frame {
    display: grid;
    grid-template-areas:
        "header"
        "center"
        "footer";
    grid-template-columns: 1fr;
    grid-template-rows: 0fr 1fr 0fr;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    font-size: 0.75rem;
    background-color: var(--grey50);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    position: absolute;
    font-weight: 400;
    font-size: 0.7rem;
    z-index: 75;
    overflow: hidden;
}

.admin-console-modal-frame[result=true] {
    width: 50%;
    left: 25%;
    height: fit-content;
    top: 30%;
}

.admin-console-modal-header {
    grid-area: header;
    display: grid;
    grid-template-areas:
        'title actions closeBtn';
    grid-template-columns: 1fr auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: 0.8rem;
    padding: 0.8rem;
    /* height: 3rem; */
    width: 100%;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey800);
    background-color: var(--grey100);
    border-bottom: 1px solid var(--grey200);
}

/* .draggable {
    cursor: grab;
}

.draggable:active {
    cursor: grabbing;
} */

.admin-console-modal-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    border: 0px;
    cursor: pointer;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
    width: fit-content;
    /* margin-left: auto; */
}

.admin-console-modal-header-btn:hover {
    color: var(--indigo500);
    background-color: transparent;
    box-shadow: none;
}

.admin-console-modal-header-closeBtn {
    grid-area: closeBtn;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    cursor: pointer;
    transition: background-color 0.2s linear;
}

.admin-console-modal-header-closeBtn:hover {
    color: var(--indigo500);
    background-color: transparent;
    box-shadow: none;
}

.admin-console-modal-header-actions {
    grid-area: actions;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0.4rem;
}

.admin-console-modal-center {
    grid-area: center;
    display: flex;
    width: 100%;
    /*overflow-y: auto;*/
    overflow-y: hidden;
}

.admin-console-modal-center-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.8rem;
    font-weight: 400;
    font-size: 0.7rem;
}

.admin-console-modal-footer {
    grid-area: footer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0.8rem;
    padding: 0.8rem;
    /* height: 3rem; */
    height: fit-content;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey800);
    background-color: var(--grey100);
    border-top: 1px solid var(--grey200);
}

.admin-console-modal-footer-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 500;
}

.admin-console-modal-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    width: fit-content;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    cursor: pointer;
    transition: background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, border 0.2s linear;
}

.admin-console-modal-action-btn:hover {
    color: var(--indigo500);
    background-color: transparent;
    box-shadow: none;
}

.admin-console-modal-action-btn[active=false] {
    pointer-events: none;
    background-color: var(--grey200);
    color: var(--grey500);
    box-shadow: none;
    cursor: default;
}

.admin-console-modal-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    border: 0px;
    cursor: pointer;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
    width: fit-content;
}

.admin-console-modal-footer-btn:hover {
    color: var(--indigo500);
    background-color: transparent;
    box-shadow: none;
}

.admin-console-modal-footer-btn[active=false] {
    pointer-events: none;
    background-color: var(--grey200);
    color: var(--grey500);
    box-shadow: none;
    cursor: default;
}

.admin-console-modal-footer-btn[action='cancel'] {
    background-color: transparent;
    color: var(--grey500);
    box-shadow: none;
}

.admin-console-modal-footer-btn[action='cancel']:hover {
    color: var(--grey800);
}

.admin-console-fsmodal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--modalBg);
    z-index: 3;
    height: 100%;
    width: 100%;
}

.admin-console-fsmodal[show=false] {
    display: none;
}


[animation="slideinvert"] {
    animation: slideinvertbottom 0.2s forwards;
}

.fsmodal-content {
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey600);
    background-color: var(--grey50);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    position: relative;
    overflow: hidden;
}

.fsmodal-frame {
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey600);
    background-color: var(--grey50);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    position: relative;
    overflow: hidden;
    max-height: 90%;
    /*padding: 1.2rem;*/
}

.fsmodal-frame-header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    height: 3rem;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey800);
    background-color: var(--grey100);
    border-bottom: 1px solid var(--grey200);
}

.fsmodal-frame-subheader {
    grid-area: subheader;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.75rem;
    color: var(--grey700);
    font-weight: 500;
    padding-top: 0.2rem;
}

.fsmodal-frame-content {
    grid-area: content;
    height: 100%;
}

.fsmodal-frame-footer {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    height: 3rem;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey800);
    background-color: var(--grey100);
    border-top: 1px solid var(--grey200);
}

.modal-input {
    font-family: 'Quicksand';
    padding: 0.6rem;
    font-size: 0.65rem;
    font-weight: 400;
    border: 1px solid var(--grey200);
    border-radius: 4px;
    background-color: var(--grey50);
    /* width: 20rem; */
    transition: background-color 0.2s linear, border 0.2s linear;
}

.modal-input:focus {
    border: 1px solid var(--indigo500);
    background-color: var(--lightBlue);
}

.modal-input:hover {
    border: 1px solid var(--indigo500);
    /* background-color: var(--lightBlue); */
}

/*modal inputs*/
.modal-field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 0.6rem;
    row-gap: 0.4rem;
}

.modal-field-title {
    color: var(--grey900);
    font-size: 0.75rem;
    font-weight: 500;
}

.modal-field-description {
    color: var(--grey900);
    font-size: 0.65rem;
    font-weight: 400;
    font-style: italic;
}

.modal-field-input {
    font-family: 'Quicksand';
    padding: 0.6rem;
    font-size: 0.65rem;
    font-weight: 400;
    border: 1px solid var(--grey200);
    border-radius: 4px;
    background-color: var(--grey50);
    width: 20rem;
    transition: background-color 0.2s linear, border 0.2s linear, color 0.2s linear;
}

.modal-field-input:hover {
    border: 1px solid var(--indigo500);
    /* background-color: var(--lightBlue); */
}

.modal-field-input:focus {
    border: 1px solid var(--indigo500);
    background-color: var(--lightBlue);
}

/* .modal-field[required=true] .modal-field-title::after {
    content: '*';
    font-family: 'Quicksand';
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red200);
    margin-left: 0.2rem;
} */

.admin-console-menubar {
    grid-area: menubar;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0.4rem;
    height: 100%;
    width: 0.4rem;
    color: var(--grey50);
    background-color: var(--dm3);
    box-shadow: var(--boxShadow);
}

.admin-console-menubar:hover {
    cursor: pointer;
}

.admin-console-menu {
    grid-area: menu;
    display: none;
    width: 100%;
    height: 100%;
    /* padding: 1rem 0.4rem; */
    background-color: var(--modalBg);
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: hidden;
    overflow-x: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    /* transition: opacity 0.2s linear; */
    animation: menu-fade 0.2s ease-in;
}

.admin-console-menu-list {
    /* padding-top: 3rem; */
    /* width: 20rem; */
    min-width: 20rem;
    width: fit-content;
    padding: 1rem 0rem;
    height: 100%;
    box-sizing: border-box;
    color: var(--grey50);
    background-color: var(--dm3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    position: absolute;
    /* row-gap: 0.2rem; */
    left: 0;
    top: 0;
    /* animation: menu-swipe-right 0.2s ease-out forwards; */
    box-shadow: var(--boxShadow);
    z-index: 100;
    padding: 0.6rem;
    border-radius: 12px;
}

.admin-console-menu-label {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    letter-spacing: 2px;
    background-color: var(--green500);
    border-radius: 4px;
    margin: 0.5rem;
    margin-left: auto;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
}

.admin-console-menu-item {
    width: 100%;
    display: grid;
    grid-template-areas:
        "icon title"
        "icon subtitle";
    row-gap: 0.1rem;
    column-gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 0.5rem 1rem 0.5rem 1rem;
    color: var(--grey50);
    border-radius: 4px;
    box-shadow: none;
    transition: border 0.2s linear, background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
    white-space: nowrap;
}

.admin-console-menu-item:hover {
    cursor: pointer;
    color: var(--indigo500);
    background-color: var(--lightBlue);
    box-shadow: var(--boxShadow);
}

.admin-console-menu-item-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.admin-console-menu-item-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.admin-console-menu-item-icon {
    grid-area: icon;
    font-size: 1.4rem;
}

.admin-console-appUserDiv {
    display: grid;
    grid-template-areas:
        "ref photo"
        "region photo"
        "logout photo";
    grid-template-columns: 1fr 0fr;
    grid-template-rows: 0fr 0fr 0fr;
    row-gap: 0.2rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 400;
    margin-top: auto;
    padding: 0.6rem;
    /* border-top: 1px solid var(--grey50); */
    white-space: nowrap;
    width: 100%;
}

.admin-console-appUserDiv-ref {
    grid-area: ref;
    letter-spacing: 2px;
}

.admin-console-appUserDiv-region {
    grid-area: region;
    font-weight: 500;
}

.admin-console-appUserDiv-photo {
    grid-area: photo;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    background-color: var(--grey200);
    box-shadow: var(--boxShadow);
}

.admin-console-appUserDiv-logout {
    grid-area: logout;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0.8rem;
    width: fit-content;
    background-color: var(--indigo500);
    border-radius: 4px;
    font-weight: 500;
    box-shadow: var(--boxShadow);
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
}

.admin-console-appUserDiv-logout:hover {
    cursor: pointer;
    box-shadow: none;
    background-color: var(--green500);
}

.admin-console-topbar {
    grid-area: topbar;
    display: grid;
    grid-template-areas:
        "breadcrumb context inbox admin";
    grid-template-columns: 0fr 1fr 0fr 0fr;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1rem;
    min-height: 1rem;
    /*height: 2.6rem;*/
    padding: 0.2rem 1rem;
    width: 100%;
    color: var(--grey50);
    background-color: var(--dm3);
    box-shadow: var(--boxShadow);
    z-index: 75;
    font-size: 0.65rem;
    white-space: nowrap;
    display: none;
}

.admin-console-topbar-breadcrumb {
    grid-area: breadcrumb;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0.6rem;
    color: var(--grey50);
    font-weight: 600;
}

.admin-console-topbar-inboxIcon {
    grid-area: inbox;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'material symbols outlined';
    font-size: 1.4rem;
    color: var(--grey50);
    position: relative;
    transition: color 0.2s linear;
}

.admin-console-topbar-inboxIcon:hover {
    cursor: pointer;
    color: var(--indigo500);
}

.admin-console-topbar-adminlabel {
    grid-area: admin;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0.6rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    font-weight: 600;
}

.admin-console-background {
    display: none;
    width: 100%;
    height: 100%;
    background-color: var(--modalBg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: hidden;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
    animation: menu-fade 0.2s ease-in;
}

.admin-console-background[show=true] {
    display: flex;
}

/*.admin-console-background::after {
    content: 'Click here to close';
    position: absolute;
    top: 50%;
    left: 40%;
    font-weight: 500;
    color: var(--grey50);
    text-shadow: var(--boxShadow);
    transition: color 0.2s linear;
}*/

.admin-console-content {
    grid-area: content;
    display: flex;
    justify-content: center;
    width: 100%;
    height: inherit;
    box-sizing: border-box;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 1rem;
    background-color: #1A1A2E;
    background-color: #181826;
    transition: padding 0.2s ease-out;
}

/* fab menu */
.admin-console-fab {
    display: grid;
    grid-template-areas:
        "menu"
        "button";
    row-gap: 0.6rem;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2.4rem;
    /* left: 1.4rem; */
    z-index: 2;
}

.admin-console-fab-button {
    grid-area: button;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    padding: 0.6rem;
    background-color: var(--darkBlue);
    color: var(--grey50);
    box-shadow: var(--boxShadow);
    border-radius: 50%;
    opacity: 0.6;
    margin-right: auto;
    width: 3rem;
    height: 3rem;
    transition: opacity 0.2s linear, background-color 0.2s linear;
}

.admin-console-fab-button:hover {
    cursor: pointer;
    opacity: 1;
}

.admin-console-fab[active=true] .admin-console-fab-button {
    opacity: 1;
}

/* action bar */
.admin-console-actionbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 2rem;
    background-color: var(--darkBlue);
    color: var(--grey50);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.6rem 1.6rem 0.6rem 1.2rem;
    min-height: 2.5rem;
    height: fit-content;
    width: fit-content;
    z-index: 2;
    bottom: 4rem;
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    box-shadow: var(--boxShadow2);
    pointer-events: initial;
    white-space: nowrap;
    animation: slideinvertbottom 0.2s forwards;
    transition: opacity 0.2s linear;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    /* transform: translate(0, 0); */
    opacity: 0.8;
}

.admin-console-actionbar[show=false] {
    visibility: hidden;
}

.admin-console-actionbar:hover {
    opacity: 1;
}

.admin-console-actionbar-close {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: color 0.2s linear;
}

.admin-console-actionbar-close:hover {
    cursor: pointer;
    color: var(--grey400);
}

.admin-console-actionbar-ref {
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-console-actionbar-action {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-content: flex-start;
    align-items: center;
    column-gap: 0.4rem;
    transition: color 0.2s linear;
}

.admin-console-actionbar-action::before {
    content: attr(icon);
    font-family: 'material symbols outlined round';
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.admin-console-actionbar-action:hover {
    cursor: pointer;
    color: var(--grey400);
}

/* float elements */
.float {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.65rem;
    /*background-color: var(--darkBlue);*/
    background-color: var(--grey900);
    color: var(--grey50);
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    position: absolute;
    z-index: 200;
    overflow-y: hidden;
    white-space: nowrap;
    width: fit-content;
    max-width: 40rem;
    height: fit-content;
    padding: 0.6rem;
    row-gap: 0.4rem;
    pointer-events: none;
    text-wrap: wrap;
}

.float[show=true] {
    display: grid;
    animation: float-fadein 1.5s forwards;
}

.float[show=false] {
    background-color: tomato;
}

.modal-float {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.65rem;
    /*background-color: var(--darkBlue);*/
    background-color: var(--grey900);
    color: var(--grey50);
    border-radius: 4px;
    box-shadow: var(--boxShadow);
    position: absolute;
    z-index: 20;
    overflow-y: hidden;
    white-space: nowrap;
    width: fit-content;
    max-width: 40rem;
    height: fit-content;
    padding: 0.6rem;
    row-gap: 0.4rem;
    pointer-events: none;
    text-wrap: wrap;
}

.modal-float[show=true] {
    display: grid;
    animation: float-fadein 1.5s forwards;
}

.modal-float[show=false] {
    background-color: tomato;
}

.modal-float-info-el {}

/*contextmenu*/
.contextmenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    min-width: 10rem;
    width: fit-content;
    border-radius: 4px;
    padding: 0rem 0rem;
    background-color: var(--grey50);
    color: var(--indigo500);
    box-shadow: var(--boxShadow);
    /*max-height: 50rem;*/
    overflow: hidden;
}

.contextmenu[show=true] {
    visibility: visible;
    /*max-height: 20rem;*/
    /*animation: menu-vert 0.2s forwards;*/
    z-index: 50;
}

.contextmenu[show=false] {
    visibility: hidden;
}

.contextmenu-btn {
    display: grid;
    justify-content: flex-start;
    align-items: center;
    grid-template-columns: 0fr 1fr 0fr;
    font-size: 0.65rem;
    font-weight: 500;
    border-right: 4px solid transparent;
    padding: 0.6rem 2rem 0.6rem 0.6rem;
    transition: background-color 0.2s linear, color 0.2s linear, border-right 0.2s linear;
}

.contextmenu-btn::before {
    content: attr(icon);
    font-family: 'material symbols outlined';
    font-weight: 400;
    font-size: 1.2rem;
    padding-right: 1rem;
}

.contextmenu-btn:hover {
    cursor: pointer;
    background-color: var(--lightBlue);
    border-right: 4px solid var(--indigo500);
}

.contextmenu-btn[ref="delete"] {
    color: var(--red500);
}

/*buttons*/
.header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    transition: background-color 0.2s linear;
}

.header-button:hover {
    cursor: pointer;
}

/* selector menu formatting */
.admin-console-selector {
    grid-area: selector;
    display: flex;
    justify-content: space-between;
    column-gap: 0.6rem;
    align-items: center;
    position: relative;
    width: fit-content;
    height: fit-content;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    color: var(--grey50);
    background-color: var(--indigo500);
    transition: background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}

.admin-console-selector::after {
    content: 'expand_more';
    font-family: 'material symbols rounded';
    font-size: 1rem;
    font-weight: 400;
}

.admin-console-selector:hover {
    cursor: pointer;
    color: var(--indigo500);
    background-color: var(--lightBlue);
}

.admin-console-selector-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    min-width: 10rem;
    width: fit-content;
    border-radius: 4px;
    padding: 0rem 0rem;
    background-color: var(--grey50);
    color: var(--indigo500);
    box-shadow: var(--boxShadow);
    /*max-height: 50rem;*/
    overflow: hidden;
    /* top: 0; */
    right: 0;
    transition: max-height 0.2s linear;
    z-index: 400;
}

.admin-console-selector-menu[show=false] {
    max-height: 0rem;
}

.admin-console-selector-menu[show=true] {
    max-height: 40rem;
}

.admin-console-selector-menu[x-align=left] {
    left: 0;
}

.admin-console-selector-menu[x-align=right] {
    right: 0;
}

.admin-console-selector-menu[y-align=top] {
    top: 0;
}

.admin-console-selector-menu[y-align=bottom] {
    bottom: 0;
}

.admin-console-selector-menu-el {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    color: var(--indigo500);
    transition: background-color 0.2s linear, color 0.2s linear;
}

.admin-console-selector-menu-el:hover {
    background-color: var(--lightBlue);
}

/* form elements */
.form-field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 0.6rem;
    row-gap: 0.2rem;
    font-size: 0.65rem;
}

/* .form-field[required=true]>.form-field-title::after {
    content: '*';
    font-family: 'Quicksand';
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red200);
    margin-left: 0.2rem;
} */

.form-field-title {
    color: var(--grey900);
    font-size: 0.65rem;
    font-weight: 500;
}

.form-field-subtitle {
    color: var(--grey900);
    font-size: 0.65rem;
    font-weight: 400;
}

.form-field-hint {}

.form-field-input {
    font-family: 'Quicksand';
    padding: 0.6rem;
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid var(--grey200);
    border-radius: 4px;
    background-color: var(--grey50);
    width: 20rem;
    transition: background-color 0.2s linear, border 0.2s linear;
}

.form-field-input:focus {
    border: 1px solid var(--indigo500);
    background-color: var(--lightBlue);
}

.form-field-input:hover {
    border: 1px solid var(--indigo500);
    /* background-color: var(--lightBlue); */
}

[required=true] div:first-child::after {
    content: '*';
    font-family: 'Quicksand';
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red200);
    margin-left: 0.2rem;
}

.form-field-select {
    font-family: 'Quicksand';
    padding: 0.6rem;
    font-size: 0.65rem;
    font-weight: 500;
    border: 1px solid var(--grey200);
    border-radius: 4px;
    background-color: var(--grey50);
    width: 20rem;
    transition: background-color 0.2s linear, border 0.2s linear;
}

.form-field-select:hover {
    border: 1px solid var(--indigo500);
    /* background-color: var(--lightBlue); */
}

.form-field-select-option {}



/* animations */
@keyframes menu-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes menu-vert {
    from {
        max-height: 0rem;
    }

    to {
        max-height: 20rem;
    }
}

@keyframes menu-swipe-right {
    from {
        max-width: 0rem;
    }

    to {
        max-width: fit-content;
    }
}

@keyframes menu-swipe-right-half {
    from {
        max-width: 0rem;
    }

    to {
        max-width: 100%;
    }
}

@keyframes msgdivshow {
    0% {
        max-height: 0;
        opacity: 0;
    }

    50% {
        max-height: 10rem;
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float-fadein {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0.95;
    }
}

@keyframes dropdown {
    from {
        visibility: hidden;
        max-height: 0rem;
    }

    to {
        visibility: visible;
        max-height: 20rem;
    }
}

@keyframes slideinvert {
    from {
        top: 0;
    }

    to {
        /* top: -10%; */
    }
}

@keyframes slideinvertbottom {
    from {
        bottom: 0;
    }

    to {}
}

@keyframes slideinhoriz {
    from {
        left: -4rem;
        opacity: 0;
    }

    to {
        width: auto;
    }
}

@keyframes flash {
    50% {
        opacity: 0;
    }
}

@keyframes border-flash {
    50% {
        border: 2px solid var(--grey50);
    }
}

@keyframes infiniteLoad {
    0% {
        left: 0%;
        right: 100%;
        width: 0%;
    }

    10% {
        left: 0%;
        right: 75%;
        width: 25%;
    }

    90% {
        right: 0%;
        left: 75%;
        width: 25%;
    }

    100% {
        left: 100%;
        right: 0%;
        width: 0%;
    }
}

@keyframes barFillVert {
    from {
        max-height: 0%;
    }

    to {
        max-height: 100%;
    }
}

@keyframes barFillHoriz {
    from {
        max-width: 0%;
    }

    to {
        max-width: 100%;
    }
}

/* frame toolbar */
.admin-frame-toolbar {
    grid-area: toolbar;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 0.4rem;
    row-gap: 0.2rem;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--grey50);
    padding: 0.2rem;
}

.admin-frame-toolbar-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'material symbols rounded';
    font-size: 1.2rem;
    color: var(--grey50);
    background-color: transparent;
    opacity: 1.0;
    transition: color 0.2s linear, opacity 0.2s linear, background-color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
}

.admin-frame-toolbar-btn:hover {
    cursor: pointer;
    opacity: 0.5;
    background-color: transparent;
    /* color: var(--indigo500); */
}

/* start modal */
.admin-console-start-modal-background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--modalBg);
    z-index: 101;
    height: 100%;
    width: 100%;
}

.admin-console-start-modal-background[show=false] {
    display: none;
}

.admin-console-start-modal {}

.admin-console-start-modal-frame {
    display: grid;
    grid-template-areas:
        "header"
        "center"
        "footer";
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 50%;
    height: 40%;
    top: 25%;
    left: 25%;
    font-size: 0.75rem;
    background-color: var(--grey50);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    position: absolute;
    z-index: 75;
    overflow: hidden;
}

.admin-console-start-modal-header {
    grid-area: header;
    display: grid;
    grid-template-areas:
        'title actions closeBtn';
    grid-template-columns: 1fr auto auto;
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: 0.8rem;
    padding: 0.8rem;
    min-height: 3rem;
    height: fit-content;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey800);
    background-color: var(--grey100);
    border-bottom: 1px solid var(--grey200);
}

.admin-console-start-modal-header-closeBtn {
    grid-area: closeBtn;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    cursor: pointer;
    transition: background-color 0.2s linear;
}

.admin-console-start-modal-header-closeBtn:hover {
    color: var(--indigo500);
    background-color: transparent;
    box-shadow: none;
}

.admin-console-start-modal-center {
    grid-area: center;
    /*overflow-y: auto;*/
    overflow-y: hidden;
}

.admin-console-start-modal-center-text {
    display: flex;
    /* padding: 0.8rem */
}

.admin-console-start-modal-center-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.8rem;
    row-gap: 0.8rem;
    column-gap: 0.8rem;
}

.admin-console-start-modal-center-options-optionDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.4rem;
    padding: 0.6rem;
    color: var(--grey50);
    background-color: var(--indigo500);
    border-radius: 6px;
    box-shadow: var(--boxShadow);
    border: 1px solid var(--indigo500);
    font-weight: 400;
    font-size: 0.65rem;
    min-width: 8rem;
    min-height: 6rem;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear, box-shadow 0.2s linear;
    cursor: pointer;
}

/* .admin-console-start-modal-center-options-optionDiv::before {
    content: attr(icon);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "material symbols rounded";
    font-weight: 200;
    font-size: 1.3rem;
    color: var(--grey600);
    /* line-height: 1; */
/* color: var(--grey50); */
/* } */

.admin-console-start-modal-center-options-optionDiv:hover {
    box-shadow: none;
    color: var(--indigo500);
    background-color: var(--lightBlue);
}

.admin-console-start-modal-center-options-optionDiv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "material symbols rounded";
    font-weight: 200;
    font-size: 1.3rem;
    color: var(--grey600);
    line-height: 1;
    color: var(--grey50);
}

.admin-console-start-modal-center-options-optionDiv-title {}

.admin-console-start-modal-center-options-optionDiv-description {}


.admin-console-start-modal-footer {
    grid-area: footer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0.8rem;
    padding: 0.8rem;
    /* height: 3rem; */
    height: fit-content;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey800);
    background-color: var(--grey100);
    border-top: 1px solid var(--grey200);
}