﻿/* fallback /_content/ShControlPanel */

:root {
    --back-shform: url("/_content/ShControlPanel/Images/BGForAll.png");
    --back-botton-close: url('/_content/ShControlPanel/Images/actions/Close_d_32x32.png');
    --back-botton-save: url('/_content/ShControlPanel/Images/actions/Save_d_32x32.png');
    --back-login: url('/_content/ShControlPanel/Images/login.png');
    --back-button-ok: url('/_content/ShControlPanel/Images/actions/Apply_i_32x32.png');
    --back-button-add: url('/_content/ShControlPanel/Images/actions/Add_o_32x32.png');
    --back-button-edit: url('/_content/ShControlPanel/Images/actions/Edit_d_32x32.png');
    --back-button-delete: url('/_content/ShControlPanel/Images/actions/Delete_d_32x32.png');
    --back-button-deleteall: url('/_content/ShControlPanel/Images/actions/Deletelist2_i_32x32.png');
    --back-edit-hankash: url('/_content/ShControlPanel/Images/arrows/next_g_16x16.png');
    --back-addimage: url('/_content/ShControlPanel/Images/content/Image_i_32x32.png');
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v164/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
     
}


body {
    background-color: var(--main-background);
    border-color: #ccc;
}

.shform {
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-image: var(--back-shform);
    background-repeat: no-repeat;
    background-size: cover;
}

    .shform > .header {
        width: 100%;
        max-width: 100%;
        flex-basis: var(--ribbon-hight);
        max-height: var(--ribbon-hight);
        border: 1px solid lightblue;
    }

    .shform > .table-toolbar {
        width: 100%;
        max-width: 100%;
        flex-basis: 24px;
        max-height: 24px;
        border: 1px solid lightblue;
    }

    .shform > .content {
        width: 100%;
        max-width: 100%;
        flex-grow: 1;
        border: 1px solid lightblue;
    }

    .shform > .footer {
        width: 100%;
        max-width: 100%;
        flex-basis: var(--footer-height);
        height: var(--footer-height);
        max-height: var(--footer-height);
        border: 1px solid #19a2b2;
        background: linear-gradient(to bottom, #ffffff 0%,rgb(216,211,210) 100%);
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4x;
    }



.shazili-editor {
    box-sizing: border-box;
    margin: 0;
    outline: none;
    line-height: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: transparent;
    border: 1px solid #cdc7c7;
    border-radius: 4px;
    width: auto;
}

    .shazili-editor.grid-mode {
        position: absolute;
        border: solid 2px darkblue
    }

        .shazili-editor.grid-mode:focus {
            border: solid 1px #7695ef;
        }

    .shazili-editor:focus {
        border: solid 1px #7695ef;
        border-collapse: separate;
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
    }

    .shazili-editor .box {
        line-height: inherit;
        flex-basis: 100%;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        min-height: 24px;
        height: 100%;
        border: none;
        display: inline;
        box-sizing: border-box;
        text-align: start;
    }

    .shazili-editor .grid-editor {
        line-height: inherit;
        margin: 0px;
        border: none;
        outline: none;
        width: 100%;
    }

        .shazili-editor .grid-editor:focus {
            border: none;
            outline: none;
        }

        .shazili-editor .grid-editor > input {
            border: none;
            outline: none;
        }

    .shazili-editor .box.box-number {
    }

    .shazili-editor .box.box-checkbox {
        text-align: start;
    }

    .shazili-editor .box-date {
        /*max-width: calc(100% - var(--drop-down-width));*/
    }

    .shazili-editor .box-datetime {
    }

    .shazili-editor .box-string {
    }

    .shazili-editor .box-combo {
    }

    .shazili-editor .box-lookup {
    }

    .shazili-editor .box-memo {
    }



/*
input,select{
    border:1px solid #b7e9fa;

}
    input[type="text"]:focus,
    input[type="number"]:focus,
    input[type="date"]:focus,
    input[type="datetime"]:focus,
    select:focus {
        border: solid;
        border-width: 1.0px;
        border-color: Highlight;
        border-collapse: separate;
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
        outline: none;
    }*/

.drop-down-hankoshah {
    color: black;
    margin: 0;
    padding: 0;
    cursor: default;
    user-select: none;
    text-align: center;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 3px;
    box-sizing: border-box;
    flex-basis: var(--drop-down-width);
}

    .drop-down-hankoshah:hover {
        background-color: Highlight;
        color: white;
        /* orange;*/
    }

.tip-value {
    position: fixed;
    background-color: #ffffdd;
    border: 1px solid #ada0a0;
    width: auto;
    height: auto;
    padding: 3px;
    z-index: 3;
    line-height: 1;
    margin: 0;
    height: 30px;
}

.context-menu-hankoshah {
    position: fixed;
    background-color: #fff;
    background-color: orange;
    border: none;
    width: 30px;
    height: auto;
    padding: 3px;
    z-index: 3;
    line-height: 1;
    margin: 0;
    height: 30px;
    border-radius: 4px;
}





/*-----------------------------------shlayout*/
.shlayout {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

    .shlayout .layout-group {
        padding: 8px;
        border-width: 0.5px;
        border-style: solid;
        height: -moz-fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        /*background-color:yellow;*/
    }

        .shlayout .layout-group table {
            width: 100%;
            height: 100%;
            table-layout: fixed;
        }

        .shlayout .layout-group .leyout-item {
            display: flex;
            flex-direction: row;
            /*padding-block: 4px;*/
            margin-bottom: 8px;
            align-items: center;
            border: dotted 1px transparent;
            /*background-color:white;*/
        }

            .shlayout .layout-group .leyout-item:focus-within {
                border: solid 1px #ccc;
                border-top-left-radius: 2px;
                border-bottom-left-radius: 2px;
            }

        .shlayout .layout-group .cell-caption {
            flex-basis: 33.3333%;
            user-select: none;
            overflow: hidden;
            /*word-break: keep-all;*/
            white-space: nowrap;
            height: 100%;
            padding-left: 2px;
        }

        .shlayout .layout-group .cell-control {
            flex-basis: 66.6666%;
            user-select: none;
        }

.page-layout {
}

.page-layout-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-layout-header {
    display: none;
}

.page-layout-footer {
    display: none;
}


.page-edit-unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.page-edit-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .page-edit-grid .header {
        flex-basis: 1px;
    }

    .page-edit-grid .grid-container {
        flex-basis: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }





.view-cover {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: transparent; /* rgba(223, 223, 223, 0.18);*/
}

/*shtab-control*/
.shtab-control {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
}

    .shtab-control .main-header {
        max-width: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
        background-color: var(--main-background);
        flex-basis: 30px;
    }

        .shtab-control .main-header .left-scroll, .right-scroll, .drop-down-tabs {
            flex-basis: 15px;
            width: 15px;
            max-width: 15px;
            line-height: 25px;
            height: 30px;
            text-align: center;
            /*visibility: hidden;*/
            z-index: 3;
            background-color: inherit;
            cursor: default;
            position: absolute;
            user-select: none;
        }

        .shtab-control .main-header .right-scroll {
            right: 16px;
        }

        .shtab-control .main-header .drop-down-tabs {
            right: 0px;
        }


        .shtab-control .main-header .left-scroll:hover, .right-scroll:hover, .drop-down-tabs:hover {
            background-color: orange;
        }

        .shtab-control .main-header .header {
            position: absolute;
            left: 16px;
            top: 0px;
            border: 1px solid #DFDFDF;
            border-bottom: none;
            margin: 0;
            line-height: 1rem;
            user-select: none;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow: visible;
            z-index: 1;
            transition: 0.5s;
        }





            .shtab-control .main-header .header .item {
                height: 30px;
                line-height: 30px;
                padding-left: 4px;
                padding-right: 4px;
                border: 1px solid transparent;
                cursor: default;
                border-bottom: 3px solid #DFDFDF;
                cursor: pointer;
                font-size: 12px;
                position: relative;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                overflow: hidden;
            }

                .shtab-control .main-header .header .item span {
                    display: block;
                    white-space: pre;
                    flex-basis: auto;
                    margin-right: 16px;
                }

                .shtab-control .main-header .header .item img {
                    width: 16px;
                    margin-right: 10px;
                    align-self: center;
                }



                .shtab-control .main-header .header .item .close {
                    height: 16px;
                    width: 12px;
                    visibility: hidden;
                    text-align: center;
                    line-height: 12px;
                    z-index: 2;
                    font-weight: 900;
                    position: absolute;
                    right: 0px;
                    top: 0px;
                }

                .shtab-control .main-header .header .item:hover {
                    background-color: lightblue;
                }

                .shtab-control .main-header .header .item.active {
                    /*background-color: #e5e57c;
                    background-position-x: 100px;
                    background-repeat:no-repeat;
                    color: white;*/
                    /*color: #dfbc7d;*/
                    background: var(--active-shee);
                    border-bottom: 3px solid #176d7a;
                }






    .shtab-control .content {
        flex-grow: 1;
        /*        flex-basis: calc( 100% - 30px );
        max-height: calc( 100% - 30px );
*/
    }

        .shtab-control .content .item {
            height: 100%;
            display: flex;
            flex-direction: column;
        }























/*shreibbon-control*/
.shreibbon-control {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
}

    .shreibbon-control .header {
        display: flex;
        flex-direction: row;
        flex-basis: 25px;
        height: 25px;
        min-height: 25px;
        border: 1px solid #DFDFDF;
        border-bottom: none;
        margin: 0;
        line-height: 1rem;
        background-color: var(--main-background);
        user-select: none;
        position: relative;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

        .shreibbon-control .header .item {
            padding-left: 4px;
            padding-right: 12px;
            height: 25px;
            line-height: 25px;
            border: 1px solid transparent;
            cursor: default;
            font-size: 12px;
            white-space: pre;
        }


            .shreibbon-control .header .item:hover {
                background-color: #3bc8d2;
            }

            .shreibbon-control .header .item.active {
                background-color: white;
            }

    .shreibbon-control .content {
        flex-basis: var(--ribbon-hight);
        max-height: var(--ribbon-hight);
        background-color: white;
        overflow: hidden;
    }

        .shreibbon-control .content .page {
            display: flex;
            flex-direction: row;
            height: 100%;
            width: 100%;
            padding-top: 10px;
            justify-content: flex-start;
        }



            .shreibbon-control .content .page .ribbon-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-items: center;
                font-size: 12px;
                text-align: center;
                padding-left: 8px;
                padding-right: 8px;
                cursor: pointer;
                user-select: none;
                border: 1px dotted transparent;
                transition: 0.5s;
                border-bottom-color: transparent;
                padding-left: 12px;
            }

                .shreibbon-control .content .page .ribbon-item:hover {
                    border-top-left-radius: 8px;
                    border-top-right-radius: 8px;
                    /*                    border-bottom-left-radius: 8px;
                    border-bottom-right-radius: 8px;
*/ border: 1px solid #3bc8d2;
                    box-shadow: 4px 4px 4px 2px rgb(130 130 130 / 35%)
                }


.ribbon-page-shortcut {
    position: absolute;
    width: 12px;
    left: 0;
    top: -5px;
    border: solid 1px #ccc;
    z-index: 10;
    height: 12px;
    width: 12px;
    font-size: 10px;
    text-align: start;
}

.page-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
}





.shdialog {
    display: flex;
    flex-direction: column;
    position: fixed;
    max-height: 100vh;
    max-width: 100vw;
    border: 1px solid rgb(216,211,210);
    box-shadow: 5px 6px 20px -6px rgba(0,0,0,0.73);
    -webkit-box-shadow: 5px 6px 20px -6px rgba(0,0,0,0.73);
    -moz-box-shadow: 5px 6px 20px -6px rgba(0,0,0,0.73);
    width: 300px;
    z-index: 1;
    background-color: #f4ecec;
    box-sizing: border-box;
    border-radius: 15px;
    min-width: 200px;
    min-height: 200px;
    direction: ltr;
    height: fit-content;
    /*
    resize:both;
    overflow:auto;
    border-bottom-right-radius:0px;
    padding-bottom:8px;
    padding-right:8px;

    */
}

    .shdialog .title {
        height: 30px;
        flex-basis: 30px;
        line-height: 30px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding-left: 10px;
        user-select: none;
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
        padding-bottom: 1px;
        padding-top: 1px;
    }

        .shdialog .title.active {
            background: var(--active-shee);
        }

        .shdialog .title.deactive {
            background: rgb(216,211,210);
            /*background: linear-gradient(to top, #ffffff 0%,gray 100%);*/
        }

        .shdialog .title .caption {
            flex-grow: 1;
        }

        .shdialog .title .close, .max, .min {
            height: 28px;
            line-height: 28px;
            flex-basis: 40px;
            border: none;
            outline: none;
            background: inherit;
        }

            .shdialog .title .max:hover, .min:hover {
                background: rgb(216,211,210);
            }


            .shdialog .title .close:hover {
                background: red;
                color: white;
            }

    .shdialog > .content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        overflow: auto;
    }

    .shdialog .footer {
        flex-basis: 45px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding-left: 8px;
    }

        .shdialog .footer > * {
            margin-left: 6px;
        }

.shdialog-guest {
    height: 100% !important;
}

.shdialog-buttons {
    width: 100%;
    height: 100%;
    display: flex;
}

    .shdialog-buttons > div {
        padding-inline: 10px;
    }

.shbutton {
    background-size: 24px;
    border-radius: 4px;
    height: 30px;
    border: 1px solid rgb(216,211,210);
    outline: none;
    /*background: linear-gradient(to bottom, #ffffff 0%,rgb(0,211,210) 100%);*/
    background-repeat: no-repeat;
    background-size: 28px;
    background-position-x: 4px;
    margin: auto;
    cursor: pointer;
    /*min-width: 75px;*/
}

    .shbutton:hover {
        border-color: #7695ef;
    }

    .shbutton:focus {
        border: 1px solid blue;
    }

    .shbutton.close {
        padding-left: 34px;
        background-image: var(--back-botton-close)
    }

    .shbutton.save {
        padding-left: 34px;
        background-image: var(--back-botton-save);
    }

    .shbutton.ok {
        padding-left: 34px;
        background-image: var(--back-button-ok);
    }

    .shbutton.add {
        padding-left: 34px;
        background-image: var(--back-button-add);
    }

    .shbutton.edit {
        padding-left: 34px;
        background-image: var(--back-button-edit);
    }

    .shbutton.delete {
        padding-left: 34px;
        background-image: var(--back-button-delete);
    }

    .shbutton.deleteall {
        padding-left: 34px;
        background-image: var(--back-button-deleteall);
    }

    .shbutton.login {
        padding-left: 34px;
        background-image: var(--back-login);
        background-size: 22px;
        background-position-y: 4px;
        background-position-x: 10px;
    }

    .shbutton.addimage {
        padding-left: 34px;
        background-image: var(--back-addimage);
        background-size: 22px;
        background-position-y: 4px;
        background-position-x: 10px;
    }

    .shbutton.movedown {
        padding: 0;
        background-image: var(--back-movedown);
        background-size: 16px;
        background-position-y: 8px;
        *
        background-position-x: -1px;
        width: 24px;
    }



.annoying-button {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 120px;
    height: 50px;
    display: none;
}

    .annoying-button > .header {
        display: none;
    }

    .annoying-button > .content {
        padding: 6px;
        background-color: yellow;
    }

    .annoying-button > .content {
        width: 100%;
        border: none;
    }

    .annoying-button > .footer {
        display: none;
    }

.file-dialog-content {
    display: flex;
    flex-direction: column;
    align-content: center;
}



.page-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

    .page-view .content {
        width: 75%;
        height: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .page-view .goto {
        width: 25%;
        height: 1px;
        background-color: var(--main-background);
        overflow: auto;
        min-height: 100%;
    }

        .page-view .goto .header {
            height: 30px;
            background: linear-gradient(to bottom, #ffffff 0%,rgb(216,211,210) 100%);
            text-align: center;
            line-height: 30px;
            margin-bottom: 6px;
            position: sticky;
            top: 0px;
        }

        .page-view .goto .item {
            padding-left: 6px;
            height: 30px;
            line-height: 30px;
            margin-bottom: 6px;
            display: flex;
            flex-direction: row;
            cursor: pointer;
            border: 1px solid rgb(216,211,210);
            border-right: 6px solid transparent;
            user-select: none;
        }

            .page-view .goto .item img {
                margin-right: 6px;
            }

            .page-view .goto .item span {
                border: 1px solid transparent;
            }

            .page-view .goto .item:hover {
                border-right-color: olivedrab;
                color: olivedrab;
            }


.load-status {
    width: auto;
    float: right;
    background-color: #b74141;
    color: white;
    padding-left: 3px;
    padding-right: 6px;
    height: 100%;
    line-height: 100%;
}

.shmenu-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    flex-basis: 28px;
    /*    height: 28px;
    min-height: 28px;
*/
    font-size: 12px;
    line-height: 28px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    background-color: var(--main-background);
    cursor: default;
    padding-left: 8px;
}

    .shmenu-strip .head-item {
        white-space: pre;
        text-align: left;
        background-color: var(--main-background);
        padding-left: 8px;
        padding-right: 8px;
    }

        .shmenu-strip .head-item:hover {
            background-color: rgba(163, 184, 246, 0.52);
        }

        .shmenu-strip .head-item::first-letter {
            text-decoration: underline;
        }

    .shmenu-strip .drop-down-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        background-color: var(--main-background);
        box-shadow: 3px 3px 3px 0px gray;
        min-width: 120px;
        border: 1px solid rgb(216,211,210);
        background-color: white;
    }

    .shmenu-strip .menu-item {
        color: black;
        padding: 2px 8px;
        user-select: none;
    }

        .shmenu-strip .menu-item:hover {
            background-color: rgba(163, 184, 246, 0.52);
        }



.msg-box {
}

    .msg-box .msg {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0;
    }


.tab-boundaries {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 1px;
    border: none;
    outline: none;
    background-color: transparent;
}

    .tab-boundaries:focus {
        border: none;
        outline: none;
    }



.shresizer {
    border-color: blue;
    border-width: 1px;
    background-color: transparent;
    position: absolute;
    border: none;
    border-radius: 1px;
    user-select: none;
}

    .shresizer:hover {
        background-color: rgba(100,100,100,0.1)
        /*background: var(--active-shee)*/
    }

    .shresizer.top {
        height: 9px;
        border-bottom: none;
        cursor: n-resize;
    }

    .shresizer.bottom {
        height: 9px;
        border-top: none;
        cursor: s-resize;
    }

    .shresizer.left {
        width: 9px;
        border-right: none;
        cursor: e-resize;
    }
    /* .shresizer.left:hover, .shresizer.right:hover {
            background: linear-gradient(to left, #ffffff 0%,#dfbc7d 100%);
        }*/
    .shresizer.right {
        width: 9px;
        border-left: none;
        cursor: w-resize;
    }

    .shresizer.top.left {
        border-radius: 50%;
        cursor: nw-resize;
    }

        .shresizer.top.left:hover {
        }

    .shresizer.top.right {
        border-radius: 50%;
        cursor: ne-resize;
    }

        .shresizer.top.right:hover {
        }

    .shresizer.bottom.right {
        border-radius: 50%;
        cursor: se-resize;
    }

        .shresizer.bottom.right:hover {
        }

    .shresizer.bottom.left {
        border-radius: 50%;
        cursor: sw-resize;
    }

        .shresizer.bottom.left:hover {
        }

.shsplitter {
    position: static;
    border: 1px solid #ccc;
    background-color: var(--kamek)
}

    .shsplitter.bottom {
        height: 6px;
        min-height: 6px;
        cursor: s-resize;
    }

    .shsplitter.right {
        width: 6px;
        min-width: 6px;
        cursor: w-resize;
    }

.dialg-wait {
    position: fixed;
    width: 20vw;
    height: 14vh;
    left: 40vw;
    top: 39vh;
    padding-bottom: 3px;
    /*-webkit-box-shadow: 5px 5px 15px 5px gray;*/
    box-shadow: 1px 1px 10px 3px rgb(150,150,150);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    border-radius: 8px;
    background: rgb(238,238,238);
}

    .dialg-wait p {
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: rgb(50,50,50);
    }


.page-login {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 500px;
    box-shadow: inset 3px 3px 3px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: 3px 3px 24px gray;
    border-radius: 8px;
    background-color: #fafafa;
}

    .page-login > img {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    .page-login input:focus:not([type="checkbox"]) {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    .page-login .random-table-container {
        margin-top: 15px;
        margin-bottom: 5px;
        text-align: center;
    }

        .page-login .random-table-container table {
            padding-top: 6px;
            padding-bottom: 6px;
            border-spacing: 10px 0px;
            border-collapse: separate;
            border-bottom: 1px solid #DFDFDF;
            border-radius: 6px;
            margin: 0 auto;
        }

        .page-login .random-table-container .row-random td {
            border: 1px solid #DFDFDF;
            border-radius: 50%;
            height: 25px;
            width: 25px;
            min-width: 25px;
            min-height: 25px;
            text-align: center;
        }

        .page-login .random-table-container .row-number {
            height: 10px;
            font-size: 8px;
        }

            .page-login .random-table-container .row-number td {
                height: 10px;
                font-size: 8px;
                text-align: center;
            }

    .page-login .pnlUserAndPass {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

        .page-login .pnlUserAndPass input {
            display: block;
            width: 200px;
            height: 30px;
            border: 1px solid rgb(216,211,210);
            border-radius: 6px;
            margin-bottom: 10px;
        }


    .page-login .pnlRememberContainer {
        display: flex;
        flex-direction: row;
        margin-top: 6px;
    }

        .page-login .pnlRememberContainer input {
            zoom: 1.6;
            width: 16px;
            min-width: 20px;
            max-width: 20px;
        }

        .page-login .pnlRememberContainer label {
            user-select: none;
        }

    .page-login .pnlOKCancel {
        display: flex;
        flex-direction: row;
        padding: 10px;
        justify-content: space-around;
    }

        .page-login .pnlOKCancel input[type="button"] {
            width: 100px;
            margin-right: 10px;
            border: none;
            border-radius: 4px;
        }

        .page-login .pnlOKCancel input:hover {
            background-color: rgba(102, 175, 233, 0.6);
        }

.random-box-special {
    background-color: deepskyblue;
    color: #fafafa;
}

.prog-secretary {
    background-image: var(--back-shform);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
}

    .prog-secretary img {
        position: absolute;
        width: 100%;
        bottom: 180px;
    }


.land-page-photo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}



.shtoolbar {
    height: 24px;
    border: none;
    outline: none;
    background-color: var(--main-background);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    user-select: none;
}

.toolbar-item {
    height: 16px;
    width: 16px;
    margin-left: 6px;
    margin-right: 6px;
    user-select: none;
}

.toolbar-fasel {
    position: relative;
    width: 32px;
    height: 26px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: rgb(216,211,210);
}

.toolbar-item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.toolbar-item:hover {
    box-shadow: 1px 1px 10px rgba(100,100,100,0.5);
}

.toolbar-item:active {
    transform: translate(1px,1px);
}

.shprogress-bar {
    padding: 1px;
    border: 1px inset #ffffff;
    background-color: var(--main-background);
    position: relative;
    height: 20px;
    min-width: 100px;
}

    .shprogress-bar .frame {
        background-color: darkblue;
        color: white;
        text-align: right;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 1px;
    }


.page-edit-set {
    display: flex;
    flex-wrap: nowrap;
}

    .page-edit-set.horizental {
        flex-direction: row;
    }

    .page-edit-set.vertical {
        flex-direction: column;
    }


.page-chat {
    display: flex;
    flex-direction: row;
    max-height: 100%;
    height: 100%;
    /*background-color: white;*/
    background-color: var(--main-background);
    border-top: solid 4px orange;
}

    .page-chat .item-info {
        background-color: white;
        height: 100%;
        flex: 0 0 30%;
        padding: 6px;
        border-right: solid 4px orange;
    }

        .page-chat .item-info p {
            margin-bottom: 3px;
        }

    .page-chat .chats-container {
        display: flex;
        flex-direction: column;
        height: 1px;
        min-height: 100%;
        max-height: 100%;
        flex: 0 0 70%;
    }

.chats {
    padding: 10px;
    border: solid 1px white;
    height: Calc( 100% - 60px);
    max-height: Calc( 100% - 60px);
    flex: 0 0 auto;
    overflow: auto;
    padding-bottom: 30px;
    max-height: calc(100vh - 230px)
}

.chats-replay {
    background-color: white;
    border: solid 3px gray;
    border-left: solid 5px gray;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    height: auto;
    max-height: 40px;
    overflow: hidden;
}

    .chats-replay .textchat {
    }

    .chats-replay .imagechat {
        height: 40px;
    }

.reply-container {
    display: none;
    overflow: hidden;
    height: 60px;
    max-height: 60px;
    flex-direction: row;
    outline: solid 1px #ccc;
    border-radius: 4px;
    box-shadow: 4px 4px #ccc;
    scale: 0.9;
}

.chats-row {
    color: black;
    margin-bottom: 5px;
    font-size: large;
    border-radius: 4px;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
    width: 90%;
}

    .chats-row.left {
        background-color: white;
        margin-right: 9%;
    }

        .chats-row.left span {
            background-color: darkgray;
            color: white;
        }

    .chats-row.right {
        background-color: #c2d8c4;
        margin-left: 9%;
    }

        .chats-row.right span {
            color: darkgray;
            display: block;
        }

    .chats-row p {
        /* user-select: none;*/
    }

.chat-controls {
    display: flex;
    flex-direction: row;
    height: 30px;
}

    .chat-controls .controls {
        flex: 0 0 100px;
    }

    .chat-controls .textchat {
        flex: 0 0 Calc( 100% - 120px);
        height: 60px;
    }


    .chat-controls .button-image {
        margin-left: 5px;
        margin-top: 5px;
        padding: 2px;
        border: solid 2px orange;
        border-radius: 4px;
    }

        .chat-controls .button-image:after {
            content: ' \27A4';
        }




.pallet-container {
    display: flex;
    flex-direction: row;
    width: 300px;
    height: 300px;
    border: solid 1px #ccc;
}

    .pallet-container .colors {
        flex-basis: 150px;
        width: 150px;
        max-width: 150px;
        height: 100%;
    }

        .pallet-container .colors table {
            border: solid 1px black;
        }

            .pallet-container .colors table tr {
                border: none;
            }

            .pallet-container .colors table td {
                width: 25px;
                height: 25px;
                min-width: 25px;
                /*border: dotted 0.2px rgb(240,240, 240);*/
                margin: 0;
                padding: 0;
                border: solid 4px white;
                border-radius: 4px;
                /*border-right: solid 4px white;*/
            }

    .pallet-container .view-values {
        flex-basis: 140;
        width: 140%;
        max-width: 140%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .pallet-container .view-values .rgb-values {
            flex-basis: 50%;
            width: 100%;
            padding: 5px;
        }

            .pallet-container .view-values .rgb-values input {
                width: calc(100% - 25px);
                -webkit-appearance: none;
                border-radius: 6px;
                height: 16px;
            }

        .pallet-container .view-values .sample {
            flex-basis: 50%;
            width: 100%;
            border: solid 30px white;
            border-left: solid 10px white;
        }



#color-red {
    background: #ff0000;
}

#color-green {
    background: #00ff00;
}

#color-blue {
    background: #0000ff;
}

#color-alpha {
    border: solid 1px #dfdfdf;
}

.pallet-cell-focus {
    outline: dashed 1px black;
}





/*----------------------BOXCOLOR*/
.box-color {
    display: flex;
    flex-direction: row;
    width: 120px;
    max-width: 120px;
    border: solid 1px #fefefe;
}

    .box-color input {
        flex-basis: 50px;
        width: 50px;
    }

    .box-color div {
        flex-basis: 70px;
        width: 70px;
    }



/*---------------------------*/

.form-conditional {
    display: flex;
    flex-direction: column;
}

    .form-conditional .header {
        flex-basis: 60px;
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .form-conditional .grid-container {
        flex-basis: 100%;
        width: 100%;
    }


/*-----------------------------*/

.waiting-server {
    position: fixed;
    height: 40px;
    width: 25vw;
}

    .waiting-server p {
        width: 100%;
        height: 100%;
        line-height: 40px;
        text-align: center;
        background-color: #f8f2c6;
    }




@keyframes carsoulonan {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}




/*----------------------car*/
.shcarsoule {
    height: 500px;
    min-width: 100vw;
    border: solid;
    position: relative;
}

    .shcarsoule .shcar-inner {
        width: auto;
        height: 100%;
        position: absolute;
        left: 15px;
        overflow: hidden;
        border: solid;
        background-color: lightblue;
    }

    .shcarsoule .inner > div {
        height: 100%;
        min-height: 100%;
        text-align: center;
        border: solid;
        font-size: 40px;
        /*position: absolute;*/
    }


@keyframes my-animation {
    from {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

















/*Shazili Text Dialog Design   Your Time, Our Priority*/

.edit-mode-bar {
    width: 100%;
    max-width: 100%;
    height: 50px;
    max-height: 70px;
    position: sticky;
    background-color: #3C3C3B;
    top: 0;
    left: 0;
    font-family: roboto;
}

.edit-mode-bar-content {
    width: 90%;
    max-width: 95%;
    display: flex;
    flex-direction: row;
    /*background-color: red;*/
    margin: auto;
    align-items: center;
    justify-content: space-between;
}

.edit-mode-left-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    /*width: 20%;*/
}

.edit-mode-title {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.7px;
    font-family: Roboto;
    font-weight: 400;
    margin: 0;
    margin-top: 5px;
}

.edit-mode-main-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

    .edit-mode-main-title .text {
        position: relative;
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .edit-mode-main-title .first-text {
        color: #fff;
    }

.text.sec-text {
    /*color: #4070F4;*/
    /*color: #0752b4;*/
    color: #1a73e8;
}

    .text.sec-text::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #3C3C3B;
        border-left: 3px solid #4070F4;
        animation: animateScroll 4s steps(12) infinite;
    }

.edit-mode-new-lang {
    padding: 9px;
    border: none;
    border-radius: 10px;
    letter-spacing: 0.5px;
    background-color: #3498db;
    color: #fff;
}
/*.edit.edit-mode-new-lang:hover {
    background-color: #3cb0fd;
    color: #000;*/
/*background-color: linear-gradient(to bottom, #3cb0fd, #3498db)*/
/*}*/

@keyframes animateScroll {
    40%, 60% {
        left: 100%;
    }

    100% {
        left: 0%;
    }
}

/*.edit-mode-new-lang:hover {
    background-color: #0752b4;*/
/*/*#3E5A7D*/
/*}*/
/*Shazili dialog*/



.sh-table {
    /*width: 100%;*/
    table-layout: fixed;
}

    .sh-table th {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        height: 30px;
        max-height: 30px;
        min-height: 30px;
        line-height: 1;
        overflow: hidden;
        box-sizing: border-box;
        font-weight: 500;
        width: 100%;
        color: white;
        text-align: center;
    }

    .sh-table td {
        display: table-cell;
        text-align: left;
        border-bottom: solid 0.3px #DFDFDF !important;
        border-right: 0.3px solid #DFDFDF;
        border-left: 0.3px solid #DFDFDF;
        border-top: none;
        border-top-width: 0px;
        overflow: hidden;
        vertical-align: middle;
        cursor: default;
        width: 100%;
        text-align: center;
        cursor: revert;
    }

        .sh-table td input {
            width: 100%;
        }

        .sh-table td textarea {
            width: 100%;
            height: 100%;
        }


.cp-shdialog {
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-direction: column;
    border-radius: 15px;
    background-color: rgba(38, 38, 38, 0.9);
    /*box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;*/
    overflow: auto;
    border: solid 0.1px #EBBCBC;
    height: 100%;
}

    .cp-shdialog .tbl-container {
        height: 100%;
    }

        .cp-shdialog .tbl-container table {
            height: 100%;
        }

.sh-langs-title {
    font-family: roboto;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 100;
    width: 150px;
}

.edit-dialog-textarea {
    resize: both;
    width: 100%;
    background-color: #f8f8f8;
}

.dl-btns {
    display: flex;
    flex-direction: row;
    width: 50%;
    max-width: 50%;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
    margin-inline: auto;
    margin-top: 30px;
    height: 50px;
    flex-basis: 50px;
}

.dlo-save-btn,
.dl-cansel-btn,
.dl-open-btn {
    color: #fff;
    border: none;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    font-family: roboto;
    letter-spacing: 1px;
    font-weight: 200;
    /*margin-inline: auto;*/
}

.dlo-save-btn {
    /*background-color: #3E7D50;*/
    background-color: #316B57;
}

    .dlo-save-btn:hover {
        background-color: #1e5c47;
    }

.dl-cansel-btn {
    background-color: #7D3E3E;
}

    .dl-cansel-btn:hover {
        background-color: #5a2929;
    }

.dl-open-btn {
    background-color: #2980b9;
}

    .dl-open-btn:hover {
        background-color: #3cb0fd;
    }
/*Shazili Image Dialog Design*/

.sh-edit-dialog {
    color: #fff;
}

.sh-edit-img-input {
    border: solid 0.5px #1a1414;
    width: 300px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.sh-edit-img-container {
    background-color: rgb(128, 128, 128, 0.4);
    max-width: 70px;
    max-height: 70px;
    border: solid 1px rgb(128, 128, 128, 0.8);
    border-radius: 10px;
    margin-top: 10px;
    cursor: not-allowed;
}






.fast-grid {
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border: solid;
    overflow: scroll;
}

    .fast-grid table {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        overflow: scroll;
    }

        .fast-grid table th {
            border: solid 1px gray;
            background-color: lightblue;
        }

        .fast-grid table td {
            border: solid 1px #ccc;
            background-color: white;
        }

    .fast-grid .controls {
        width: 100%;
        height: 50px;
        flex-basis: 50px;
        max-width: 100%;
        max-height: 50px;
    }






.label-of-file {
    background: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
    background-image: -moz-linear-gradient(top, #3498db, #2980b9);
    background-image: -ms-linear-gradient(top, #3498db, #2980b9);
    background-image: -o-linear-gradient(top, #3498db, #2980b9);
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    /*edit-mode-new-lang*/
    -webkit-border-radius: 10;
    -moz-border-radius: 10;
    border-radius: 10px;
    font-family: Arial;
    color: #ffffff;
    font-size: 16px;
    width: 100px;
    height: 40px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .label-of-file:hover {
        background: #3cb0fd;
        background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
        background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
        background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
        text-decoration: none;
    }

    .label-of-file:focus {
        outline: inset 2px yellow;
    }






.choose-file {
    display: flex;
    align-items: center;
    height: 40px;
    min-height: 40px;
    width: 100px;
}

    .choose-file > * {
        margin-right: 10px;
    }

    .choose-file img {
        height: 40px;
        width: 50px;
    }

.table-edit-banner {
    width: 100%;
}

    .table-edit-banner .caption {
        width: 100px;
    }

    .table-edit-banner td {
        border: solid 1px #ccc;
        height: 40px;
    }

        .table-edit-banner td > * {
            width: 100%;
            height: 100%;
            max-height: 100%;
        }




@keyframes rEffectAnimation {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.25;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}


.tButton-span {
    background-color: white;
    animation: rEffectAnimation 0.30s linear 1;
    animation-iteration-count: 1;
    transform: translate(-50%, -50%) scale(0);
    position: absolute;
    animation-play-state: running;
    pointer-events: none;
    width: 500px;
    height: 500px;
    border-radius: 50%;
}






.wpv {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: relative;
    background-color: white;
    border: solid 1px #ccc;
}

    .wpv .header {
        display: flex;
        height: 40px;
        width: 100%;
        border: solid 1px #ccc;
        padding: 3px;
        gap: 3px;
    }

    .wpv .search {
        display: flex;
        height: 40px;
        width: 100%;
        border: solid 1px #ccc;
        padding: 3px;
        gap: 3px;
    }

    .wpv .header .icon {
        border: solid 0.5px #bbb;
        padding: 2px;
        height: 32px;
        width: 32px;
        max-height: 32px;
        max-width: 32px;
        cursor: pointer;
    }

        .wpv .header .icon:hover {
            transform: scale(1.08);
            background-color: #ccc;
        }

    .wpv .grid-container {
        width: 100%;
        height: 100%;
        overflow: scroll;
    }




    .wpv .footer {
        height: 30px;
        width: 100%;
        background-color: darkblue;
        bottom: 0px;
    }


.wpv-table {
    table-layout: fixed;
    width: 100%;
}

    .wpv-table td, .wpv-table th {
        width: 100px;
        border: dotted 0.5px #ccc;
        padding: 3px;
    }

        .wpv-table td:focus-within {
            background-color: darkblue;
            color: white;
        }





.design-time-bar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 32px;
    background-color: #f6f6f6;
    /*background-color: #4b5698;*/
    color: #000;
    border: solid 0.5px #ccc;
    font-weight: 600;
    z-index: 8;
    align-content: space-evenly;
    flex-wrap: wrap;
    gap: 4px;
    border: 1px solid rgb(216,211,210);
    box-shadow: 5px 6px 10px -6px rgba(0,0,0,0.73);
    -webkit-box-shadow: 5px 6px 10px -6px rgba(0,0,0,0.73);
    -moz-box-shadow: 5px 6px 10px -6px rgba(0,0,0,0.73);
}

    .design-time-bar div {
        padding: 4px;
        user-select: none;
    }

        .design-time-bar div img:hover {
            transform: scale(1.2);
            cursor: pointer;
            border: solid 1px #ddd;
        }

#design-time-bar-text {
    cursor: move;
    user-select: none;
}



.img-cover {
    width: 100%;
    object-fit: cover;
}




/*PageProductFrameChoose*/
.product-frame-choose {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

    .product-frame-choose .grid-and-pict {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    .product-frame-choose > .grid-and-pict > .grid-container {
        width: 60%;
        flex-basis: 60%;
        height: 100%;
        background-color: yellow;
    }

    .product-frame-choose .grid-and-pict .pic-container {
        width: 40%;
        height: 100%;
        background-color: rebeccapurple;
    }

    .product-frame-choose .controls {
        width: 100%;
        height: 60px;
        display: flex;
        flex-wrap: nowrap;
        background-color: green;
        justify-content: flex-start;
        gap: 20px;
    }


.daffash {
    width: 200px;
    height: 220px;
    shape-outside: polygon(0% 0%, 100% 50%,0% 100%,70% 50%,0% 0%);
    clip-path: polygon(0% 0%, 100% 50%,0% 100%,70% 50%,0% 0%);
    clip-path: circle(80px);
    shape-outside: circle(80px);
    background-color: yellow;
    shape-margin: 0px;
    float: left;
    visibility: hidden;
}

.madfosh {
    width: 300px;
    height: 220px;
    border: solid 1px #ccc;
    background-color: #ccc;
}

.maael {
    height: 200px;
    height: 200px;
    background-color: lightgray;
    margin-top: 40px;
    border: solid 50px;
    border-left: none;
    border-right: none;
    border-color: red;
}

.custom-zoom-image {
    position: absolute;
    border: 15px solid transparent;
    border-image: linear-gradient(#0003, #000) 50%/50%;
    border-image: conic-gradient(white 0 1) auto fill 0//0 100vw;
    border-image: linear-gradient(0deg, #1095c1 5px, black 0) fill 0//0 100vw;
    shape-outside: polygon(0% 0%, 100% 50%,0% 100%,70% 50%,0% 0%);
    shape-outside: circle(50%);
    /*--c: #CBE86B;*/ /* the main color */
    /*--t: 5px;*/ /* thickness of the outline */
    /*width: 200px;*/ /* the image size */
    /*aspect-ratio: 1;*/ /* only square images, don't change this */
    /*object-fit: cover;
    border-image: linear-gradient(45deg, color-mix(in srgb,var(--c),#000 20%) 50%, color-mix(in srgb,var(--c),#000 40%) 0) fill 0//9999px;
    clip-path: polygon(0 100%,0 0,100% 0, calc(100% + 9999px) 9999px, 9999px calc(100% + 9999px));
    outline: var(--t) solid var(--c);
    outline-offset: calc(-1*var(--t));*/
}




.slant {
    --a: 3deg; /* control the angle (yes it should be small) */
    --c: pink;
    border-image: conic-gradient(var(--c) 0 0) fill 0//9999px;
    clip-path: polygon( -9999px calc(tan(var(--a))*9999px), 9999px calc(tan(var(--a))*-9999px), calc(100% + 9999px) calc(100% - tan(var(--a))*9999px), calc(100% - 9999px) calc(100% + tan(var(--a))*9999px) );
    margin: 50px max(10px, 50% - 800px/2);
    /* I know the border-iamge looks hacky and the clip-path as well 
     I have a pending (very detailed) article on them to be realeased .. don't know when 
  */
}

    .slant.alt {
        --c: lightblue;
        clip-path: polygon( -9999px calc(100% - tan(var(--a))*9999px), 9999px calc(100% + tan(var(--a))*9999px), calc(100% + 9999px) calc(tan(var(--a))*9999px), calc(100% - 9999px) calc(tan(var(--a))*-9999px) );
    }

/* the below is a fix specific to my case to avoid the overlap with the title
  you may need to consider something else in your real case but sill using z-index
*/
.slant {
    position: relative;
    z-index: -1;
}


/*#region ShAccordion*/
.shaccordion-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    border: inset 2px #ccc;
}

.shaccordion-title {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 2px;
    cursor: pointer;
}

    .shaccordion-title .down-up-container {
        height: 32px;
        width: 32px;
    }

.shaccordion-title-down-up {
    position: absolute;
    right: 15px;
    height: 32px;
    width: 32px;
}

.acr-hankoshah {
    transition: ease-in-out 0.3s;
}

.fatel {
    transform: rotate(180deg);
}

.shaccordion-body {
    width: 100%;
}

.shaccordion-title.theme {
    background-color: yellow;
}




/*#endregion ShAccordion*/



.custom-them {
    background: rgb(244,244,244);
    background: linear-gradient(180deg, rgba(244,244,244,0.2) 27%, rgba(220,220,220,0.2) 100%);
}

.custom-them2 {
    background-color: yellow;
}


/*#region SH TAB*/

.shtabs {
    --head-height: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .shtabs .header {
        height: auto;
        display: flex;
        border-bottom: 1px solid #dee2e6;
        list-style: none;
        margin: auto;
        gap: 4px;
        flex-wrap: wrap;
        overflow-x: auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

        .shtabs .header .item {
            box-sizing: border-box;
            background-color: white;
            cursor: default;
            padding: 4px;
            user-select: none;
            flex-shrink: 1;
            flex-basis: auto;
            white-space: nowrap;
            vertical-align: top;
            font-size: 12px;
            border-bottom: solid 2px transparent;
        }

            .shtabs .header .item.active {
                color: white;
                background-color: #444;
                border-bottom: solid 2px #fff;
                text-align: justify-all;
                border-top-left-radius: 4px;
                padding-top: 6px;
                padding-bottom: 2px;
            }

            .shtabs .header .item:hover {
                border-bottom: solid 2px #0097fc8a;
            }

            .shtabs .header .item.active:hover {
                border-bottom: solid 2px blue;
            }

    .shtabs .content {
        width: 100%;
        border: solid 1px #ccc;
    }

        .shtabs .content .item {
            width: 100%;
        }
/*#endregion SH TAB*/

.box-picture {
    display: flex;
    flex-direction: column;
    background-color: white;
    color: #444;
    width: 100%;
    border: solid 1px #ccc;
}

    .box-picture .sample {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        height: 120px;
        background-size: contain;
        border: solid 1px #ccc;
        resize: vertical;
        overflow: auto;
    }
/*#region Edit Grid*/


.edit-grid {
    display: flex;
    flex-direction: column;
    background-color: white;
    color: #444;
    width: 100%;
    border: solid 1px #ccc;
}



    .edit-grid .row {
        display: flex;
        border-bottom: solid 1px #f5ecec8c;
        margin: 0;
        padding: 0;
    }

    .edit-grid > .row > .e-grid-cell {
        flex-shrink: 1;
        margin: auto;
        padding: 2px;
    }

    .edit-grid > .row > .row-head {
        user-select: none;
        margin: auto;
    }

        .edit-grid > .row > .row-head p {
            margin: auto;
            padding-left: 3px;
        }

    .edit-grid .header {
        display: flex;
    }

        .edit-grid .header .col-head {
            border-bottom: solid 0.5px #ccc;
            border: solid 0.5px #ccc;
            text-align: center;
            background: linear-gradient(180deg, #fff 25%, #CCC 100%);
            padding-block: 4px;
            flex-shrink: 1;
            margin: auto;
        }

            .edit-grid .header .col-head p {
                line-height: 14px;
                font-size: 14px;
                height: 14px;
                color: darkblue;
                user-select: none;
                margin: 0;
            }


    .edit-grid > .row > .e-grid-cell .text-box {
        width: 100%;
        border: solid 1px #ccc;
        outline: none;
        border-radius: 4px;
    }



    .edit-grid > .row > e-grid-cell .text-box:focus {
        outline: solid 2px #3498db;
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    .edit-grid > .row > .e-grid-cell.multi-line textarea {
        width: 100%;
        height: 100%;
        min-height: 100%;
        resize: vertical;
        margin: 0;
    }


    .edit-grid > .row > .e-grid-cell.image {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    .edit-grid > .row .e-grid-cell.image > .sample {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        height: 120px;
        background-size: contain;
        border: solid 1px #ccc;
        resize: vertical;
        overflow: auto;
    }

    .edit-grid > .row > .e-grid-cell.image > .sample-info {
        width: 100%;
        margin: 0;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .edit-grid > .row > .e-grid-cell.image > .change-button {
        margin-top: 5px;
    }

        .edit-grid > .row > .e-grid-cell.image > .change-button:focus {
            border: dotted 2px white;
        }


    .edit-grid > .row > .e-grid-cell.color {
        display: flex;
    }

        .edit-grid > .row > .e-grid-cell.color input {
            width: calc(100% - 24px);
        }

        .edit-grid > .row > .e-grid-cell.color .hankoshah {
            background: none;
            box-shadow: none;
            border-radius: 0px;
            width: 24px;
            height: 24px;
            min-height: 100%;
            border: solid 1px #ccc;
            background-image: var(--back-edit-hankash);
            background-position: center;
        }

.checkbox-label {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
    margin: 6px;
}
/*#endregion Edit Grid*/

/*#region Wizard*/
.wizard-container {
    --controls-height: 45px;
    display: flex;
    flex-direction: column;
}

    .wizard-container .host {
        height: calc(100% - var(--controls-height));
    }

    .wizard-container .controls {
        height: var(--controls-height);
        width: 100%;
        display: flex;
    }


/*#endregion a*/








/*#region A*/
/*#endregion a*/





