/* ---------------------------- */
/* S---------- Basic ---------- */
/* ---------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'iranyekan';
    user-select: none;
}
img {
    display: inline-block;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    height: auto;
}
span {
    display: flex
}
a {
    display: flex;
    text-decoration: none;
    color: inherit;
    outline: none;
}
ul {
    list-style-type: none;
    list-style-position: inside;
}
input, button, textarea, select {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-align: inherit;
    outline: none;
}
textarea {
    resize: none;
}
input[type="file"]::file-selector-button {
    cursor: pointer !important;
}
table {
    width: 100%;
}
/* ---------------------------- */
/* ---------- Basic ----------E */
/* ---------------------------- */




/* ---------------------------- */
/* S-------- Libraries -------- */
/* ---------------------------- */
.scroll-y {
    overflow-y: auto !important;
    scrollbar-width: thin;
}
.scroll-x {
    overflow-x: auto !important;
    scrollbar-width: thin;
}
.scroll-all {
    overflow: auto !important;
    scrollbar-width: thin;
}
.hide-scroll {
    scrollbar-width: none;
}
.hide-scroll::-webkit-scrollbar {
    display: none;
}


/* --- deactive feature */
.deactive-feature {
    position: relative;
    cursor: not-allowed !important;
}
.deactive-feature * {
    cursor: not-allowed !important;
}
.deactive-feature::after {
    content: attr(data-phrase);
    position: absolute;
    font-size: 0.55rem;
    background: #fac0c0;
    color: #ff0000;
    box-shadow: 0 0 1px #ff0000;
    padding: 0.55em 0.65em;
    border-radius: 4px;
    font-weight: bolder;
    bottom: 55%;
    margin: 0 65%;
    opacity: 0.85;
    display: none;

    z-index: 40;
}
.deactive-feature:hover::after {
    display: block;
}

/* --- -------------- */

/* --- loader */
.loader {
    display: block !important;
    position: absolute !important;
    border: 16px solid #f3f3f3 !important;
    border-radius: 50% !important;
    border-top: 16px solid var(--main-color) !important;
    width: 60px !important;
    height: 60px !important;
    animation: spin 2s linear infinite;
    top: min(45%, 250px) !important;
    transform: translateY(-50%);
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    z-index: 100 !important;
}
.loading {
    filter: blur(0.5px) grayscale(0.5) !important;
    pointer-events: none !important;
}
.loading--main {
    filter: blur(0.5px) grayscale(0.5) !important;
    cursor: wait !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- loading reflect  */
.loading-reflect {
    position: relative;
    overflow: hidden;
}
.loading-reflect::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 200%;
    background-image: linear-gradient(250deg, #000000 0%, #000000 40%, #1c1c1c 50%, #000000 60%, #000000 100%);
    background-repeat: no-repeat;
    cursor: wait !important;
    opacity: 0.5;
    z-index: 500;
    animation: reflect 1s linear infinite;
}
.loading-reflect > * {
    filter: blur(1.5px);
    pointer-events: none;
}

@keyframes reflect {
    0% {
        left: -100%;
    }
    100% {
        left: 0%;
    }
    
}

/* --- loading skeleton  */
.loading-skeleton,
.loading-skeleton-box,
.loading-skeleton-image,
.loading-skeleton-text {
    overflow: hidden;
    position: relative;
    opacity: 0.95;
    animation: skeleton 2s linear infinite alternate;
}
.loading-skeleton::before,
.loading-skeleton-box::before,
.loading-skeleton-image::before,
.loading-skeleton-text::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 200%;
    background-image: linear-gradient(250deg, #3b3b3b77  0%, #3b3b3b77  40%, #81818177  50%, #3b3b3b77  60%, #3b3b3b77  100%);
    background-repeat: no-repeat;
    cursor: wait !important;
    opacity: 0.5;
    z-index: 500;
    animation: reflect 2s linear infinite alternate;
}
.loading-skeleton-box {
    border-radius: 4px;
    width: 100%;
    height: 3em;
    margin-block: 0.5em;
}
.loading-skeleton-image {
    width: 3em;
    height: 3em;
    max-width: 3em;
    min-height: 3em;
    border-radius: 50%;
}
.loading-skeleton-text {
    width: 100%;
    height: 0.4em;
    margin-bottom: 0.3em;
    border-radius: 3px;
}
.loading-skeleton-text:last-child {
    width: 70%;
}

@keyframes skeleton {
    0% {
        background-color: #ebebeb;
    }
    100% {
        background-color: #ffffff;
    }
    
}

/* --- loading bar - circular */
.loader-circular {
    position: relative;
    margin-inline: auto;
}
.loader-circular > svg {
    width: 100%;
    height: 100%;
}
.loader-circular > svg > path.bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}
.loader-circular > svg > path.progress {
    fill: none;
    stroke: var(--main-color);
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    /* stroke-dashoffset: 0; */
    transition: 0.2s;
}
.loader-circular > svg > text.percentage {
  fill: var(--main-color);
  font-size: 0.7em;
  font-weight: bold;
  text-anchor: middle;
}


/* --- -------------- */

/* --- -------------- */
/* --- contextmenu */
.contextmenu-container {
    position: absolute;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 1px #d9d9d9;
    font-size: 0.8rem;
    color: #01020e;
    max-width: 260px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}
.contextmenu-container.active {
    z-index: 47;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s;
}
.contextmenu-container.loading,
.contextmenu-container.confirm-loading {
    display: none;
}
.contextmenu-container > ul {
    border-bottom: 1px solid #cfcfcf;
}
.contextmenu-container ul {
    padding: 0.4em;
}
.contextmenu-container ul:empty {
    display: none;
}
.contextmenu-container ul:last-child {
    border-bottom: none;
}
.contextmenu-container ul li {
    padding: 0.6em;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
}
.contextmenu-container ul li:hover {
    background-color: #f1f1f1;
    transition: 0.3s;
}

.contextmenu-container ul li > p:first-child {
    min-width: 150px;
    word-spacing: -0.5px;
    max-width: 60%;
}
.contextmenu-container ul li > p:first-child span:first-child {
    color: #1a1a1a;
}
.contextmenu-container ul li > p:last-child {
    color: #a6a6a4;
    font-size: smaller;
    white-space: nowrap;
}
.contextmenu-container ul li > p.expand {
    transform: scaleX(-1);
}
.contextmenu-container > ul > li > ul {
    position: absolute;
    border: 1px solid #cfcfcf !important;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 2px #d9d9d9;
    inset-inline-start: 98%;
    top: -20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 48;
}
.contextmenu-container > ul > li > ul.flip {
    inset-inline-start: unset;
    inset-inline-end: 98%;
}
.contextmenu-container > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s;
}
/* --- -------------- */

/* --- drop-down feature */
.drop-down-menu {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    position: absolute;
    top: 100%;
    z-index: 20;
    visibility: hidden;
    transition: 0.2s;
}
.drop-down-menu > * {
    overflow: hidden;
}

.drop-down-menu--show {
    grid-template-rows: 1fr;
    visibility: visible;
    transition: 0.3s;
}

/* --- -------------- */

/* --- messgae feature */
.message-item.message-success {
    border-top: 5px solid #00d544;

}
.message-item.message-success .message__icon,
.message-item.message-success .message__text h5 {
    color: #00d544;
}
.message-item.message-success .message__text h6 a {
    border: 1px solid #00d544;
   background: #00d544;
}
.message-item.message-success .message__text h6 a:hover {
    color: #00d544;
}

.message-item.message-error {
    border-top: 5px solid #ea3131;
}
.message-item.message-error .message__icon,
.message-item.message-error .message__text h5 {
    color: #ea3131;
}
.message-item.message-error .message__text h6 a {
    border: 1px solid #ea3131;
   background: #ea3131;
}
.message-item.message-error .message__text h6 a:hover {
    color: #ea3131;
}

.message-item.message-warn {
    border-top: 5px solid #dad715;
}
.message-item.message-warn .message__icon,
.message-item.message-warn .message__text h5 {
    color: #dad715;
}
.message-item.message-warn .message__text h6 a {
    border: 1px solid #dad715;
   background: #dad715;
}
.message-item.message-warn .message__text h6 a:hover {
    color: #dad715;
}

.message-item.message-info {
    border-top: 5px solid #3186ea;
}
.message-item.message-info .message__icon,
.message-item.message-info .message__text h5 {
    color: #3186ea;
}
.message-item.message-info .message__text h6 a {
    border: 1px solid #006fe6;
   background: #3186ea;
}
.message-item.message-info .message__text h6 a:hover {
    color: #3186ea;
}

.message-container {
    position: absolute;
    top: 1.5vh;
    top: 1.5dvh;
    left: 0;
    right: 0;
    padding: 0 !important;
    margin: 0 auto;
    width: clamp(300px, 30%, 500px);
    max-height: 97vh;
    max-height: 97dvh;
    overflow-y: scroll;
    z-index: 40;
}

.message-item {
    position: relative;
    left: 0;
    right: 0;
    padding: 0.7em !important;
    margin: 0 auto;
    margin-bottom: 0.2em;
    display: flex;
    justify-content: space-between;
    gap: 0.8em;
    width: 90%;
    border-radius: 1px;
    background: #fffffffd;
    box-shadow: 0px 0px 3px #7c7c7c;
}

.message-container .message__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}
.message-container .message__close {
    color: #5f5f5f;
    padding: 0.3em;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.message-container .message__close:hover {
    color: #fc2d2d;
   background: #eee;

    transition: .2s;
}

.message-container .message__text {
    flex-grow: 1;
    
}
.message-container .message__text h5 {
    padding-bottom: 0.4em;
}
.message-container .message__text p {
    font-size: 0.8rem;
    word-spacing: -1px;
    padding-bottom: 0.3em;
    text-align: justify;
}
.message-container .message__text h6 {
    border-top: 1px solid #c8c8c8;
    margin-top: 0.5em;
    padding-top: 0.7em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.message-container .message__text h6 a {
    padding: 0.4em 0.9em;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
}
.message-container .message__text h6 a:hover {
   background: #fff;

    transition: .3s;
}

.message-container .message__time-line {
    position: absolute;
    bottom: 0;
    width: 0;
    margin: 0px -0.7em;
    height: 0.34em;
   background: #e6e6e6;

}

.animate-show {
    animation: show_animate 1s ease forwards;
}
.animate-hide {
    animation: hide_animate 1s ease forwards;
}
  
@keyframes show_animate {
  0%{
    transform: translateX(5%);
  }
  40%{
    transform: translateX(-5%);
  }
  100%{
    transform: translateX(0%);
  }
}
@keyframes hide_animate {
  0%{
    transform: translateX(0%);
  }
  60%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(150%);
  }
}

@media screen and (max-width: 600px) {
    .message-container {
        position: fixed;
        top: 0;
    }
    .message-container {
        width: 100%;
    }
    .message-item {
        width: 100%;
        margin-bottom: 0;
    }
    
}

/* --- -------------- */



/* --- confirm feature */
.confirm-container.confirm-info {
    border-top: 5px solid #3186ea;
}
.confirm-container.confirm-info .confirm__icon {
    color: #3186ea;
}

.confirm-container.confirm-success {
    border-top: 5px solid #00d544;
}
.confirm-container.confirm-success .confirm__icon {
    color: #00d544;
}

.confirm-container.confirm-error {
    border-top: 5px solid #ea3131;
}
.confirm-container.confirm-error .confirm__icon {
    color: #ea3131;
}

.confirm-container.confirm-warn {
    border-top: 5px solid #dad715;
}
.confirm-container.confirm-warn .confirm__icon {
    color: #dad715;
}

.confirm-container.confirm-delete {
    border-top: 5px solid #ea3131;
}
.confirm-container.confirm-delete .confirm__icon {
    color: #ea3131;
}


.confirm-container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 1.2em;

    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    margin: 0 auto;
   background: #fff;
    border-radius: 3px;

    padding: 1em 2.5em !important;
    width: clamp(300px, 25%, 500px);
    box-shadow: 0px 0px 3px #7c7c7c;

    z-index: 50;
}

.confirm-container .confirm__icon {
    font-size: 4rem;

}
.confirm-container .confirm__icon span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm-container .confirm__text {
    display: flex;
    flex-flow: column;
    gap: 0.5em;
    text-align: center;
    margin-bottom: 0.5em;
}
.confirm-container .confirm__text h5 {
    font-size: 1rem;
    
}
.confirm-container .confirm__text p {
    font-weight: lighter;
    font-size: 0.75rem;
    text-align: justify;
    word-spacing: -1px;
}
.confirm-container .confirm__action {
    font-size: 0.8rem;
    display: flex;
    flex-flow: column;
    gap: 0.5em;
    min-width: 50%;
    text-align: center;
}
.confirm-container .confirm__action button {
    padding: 0.5em 0.9em;
    border-radius: 3px;
    cursor: pointer;
}

.confirm-container .confirm__action__accept {
   background: #03060a;
    border: 1px solid #03060a;
    color: #fff;
}
.confirm-container .confirm__action__accept:hover {
   background: #fff;
    color: #03060a;
    font-weight: bolder;

    transition: .3s;
}

.confirm-container .confirm__action__decline {
    border: none;
   background: unset;
}
.confirm-container .confirm__action__decline:hover {
    color: #320202;
    /* font-weight: bolder; */
    box-shadow: 0 0 3px #e4c7c7;

    transition: .2s;
}
.confirm-loading {
    filter: blur(1px) grayscale(0.8) !important;
    pointer-events: none !important;
}
/* --- -------------- */

/* --- print container */


.print-container {
    display: none;
}
@media print {
    @page {
        margin: 0 !important;
    }
    body {
        width: unset !important;
        height: unset !important;
        margin: 0 !important;
    }
    .base-container {
        height: fit-content !important;
    }
    .message-container {
        display: none !important;
    }
    .not-shown-print {
        display: none !important;
    }

    
}
/* --- -------------- */

/* --- Dispaly Limit Controll */

/* @media screen and (max-height: 500px) and (orientation: landscape) {
    body > * {
        background-image: url("../asset/image/background/no_rotate.png") !important;
        background-color: #eee !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        position: relative !important;

        height: 100vh !important;
        height: 100dvh !important;
    }
    body > * > * {
        display: none !important;
    }
} */

/* --- -------------- */


/* --- general tools */
.cursor-pointer {
    cursor: pointer !important;
}
.cursor-wait {
    cursor: wait !important;
}
.text-nowrap {
    text-wrap: nowrap;
}
.text-center {
    text-align: center;
}

.display-none {
    display: none !important;
}
.display-block {
    display: block !important;
}

.flex-only {
    display: flex;
}
.flex-align-c {
    display: flex;
    align-items: center;
}
.flex-c {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-sa {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.flex-se {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.flex-s {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex-e {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flex-c-na {
    display: flex;
    justify-content: center;
}
.flex-sb-na {
    display: flex;
    justify-content: space-between;
}
.flex-sa-na {
    display: flex;
    justify-content: space-around;
}
.flex-se-na {
    display: flex;
    justify-content: space-evenly;
}
.flex-s-na {
    display: flex;
    justify-content: flex-start;
}
.flex-e-na {
    display: flex;
    justify-content: flex-end;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-column-r {
    flex-direction: column-reverse;
}
.flex-row-r {
    flex-direction: row-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-grow > * {
    flex-grow: 1;
}
.no-align {
    align-items: unset;
}
.child-grow {
    flex-grow: 1;
}
.child-grow-2 {
    flex-grow: 2;
}
.child-grow-3 {
    flex-grow: 3;
}
.child-grow-4 {
    flex-grow: 4;
}
.child-grow-5 {
    flex-grow: 5;
}
.gap-4em {
    gap: 4em;
}
.gap-3em {
    gap: 3em;
}
.gap-2em {
    gap: 2em;
}
.gap-15em {
    gap: 1.5em;
}
.gap-1em {
    gap: 1em;
}
.gap-07em {
    gap: 0.7em;
}
.gap-05em {
    gap: 0.5em;
}
.gap-03em {
    gap: 0.3em;
}

.grid-c {
    display: grid;
    place-content: center;
}

.latin-container {
    direction: ltr;
}
.latin-container * {
    direction: ltr;
}
.latin-input,
.latin-label,
.latin-element {
    direction: ltr;
}
.numeric-input,
.count-numeric-input,
.math-numeric-input,
.phone-numeric-input {
    direction: ltr;
}

.arabic-container {
    direction: rtl;
}
.arabic-container * {
    direction: rtl;
}
.arabic-input,
.arabic-label,
.arabic-element {
    direction: rtl;
}

.center-input,
.center-input input {
    text-align: center;
}

.hover-scale-05:hover {
    transform: scale(1.05);
    transition: .2s;
}
.hover-scale-1:hover {
    transform: scale(1.1);
    transition: .3s;
}
/* -------- */

.header-size {
    font-size: clamp(1.2rem, 1.5vw, 2.2rem);
}
.header-size--big {
    font-size: clamp(1.5rem, 1.8vw, 2.4rem);
}

.text-size {
    font-size: clamp(0.8rem, 0.8vw, 1.1rem);
}

.footer-size {
    font-size: clamp(0.6rem, 0.7vw, 0.9rem);

}

.suffixed-label {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5em;
}

.suffixed-label > *:last-child {
    font-size: smaller;
    filter: contrast(0.5);
    word-spacing: -1px;
}

.suffixed-input {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.suffixed-input::after {
    content: attr(data-suffixed);
    position: absolute;
    align-self: flex-end;
    font-size: smaller;
    font-weight: bolder;
    color: #b1b1b1;
    margin: 0 1em;
    pointer-events: none;
    z-index: 2;
}

.suffixed-input > input::placeholder {
    color: #b1b1b1;
}

.general-input {
    border: 1px solid #b9b9b9;
    box-shadow: 0 0 1px #b9b9b9;
    border-radius: 2px;
    text-align: center;
    padding: 0.3em 1.6em;
    font-size: 0.7rem;
    font-weight: bolder;
    height: 100%;
    width: 100%;
}

.general-counter-container {
    position: relative;
}
.general-counter-container input {
    width: 100%;
    height: 100%;
    text-align: center;
}
.general-counter-container span {
    position: absolute;
    top: 9%;
    font-size: 1rem;
    color: #7f7f7f;
    font-weight: bolder;
    padding: 0 0.4em;
    cursor: pointer;
    border: 5px;
}
.general-counter-container span:hover {
    color: #171717;
    background: #f8f8f8;

    transition: .2s;
}
.general-counter-container span:first-child {
    right: 1px;
}
.general-counter-container span:last-child {
    left: 1px;
}

.general-input-mark-container {
    position: relative;
}
.general-input-mark-container > input {
    border: 1px solid #b9b9b9;
    box-shadow: 0 0 1px #b9b9b9;
    border-radius: 2px;
    text-align: center;
    padding: 0.3em 1.6em;
    font-size: 0.7rem;
    font-weight: bolder;
    height: 100%;
    width: 100%;
}
.general-input-mark-container::before {
    content: attr(data-after);
    position: absolute;
    top: 9%;
    right: 0;
    font-size: 1rem;
    color: #7f7f7f;
    font-weight: bolder;
    padding: 0 0.4em;
    cursor: pointer;
    border: 5px;
}

.general-input-mark-container::after {
    content: attr(data-befor);
    position: absolute;
    top: 9%;
    left: 0;
    font-size: 1rem;
    color: #7f7f7f;
    font-weight: bolder;
    padding: 0 0.4em;
    cursor: pointer;
    border: 5px;
}

.general-button {
    text-align: center;
    border: 1px solid #565656;
    padding: 0.4em 0.5em;
    background: #434343;
    color: #fff;
    font-size: 0.75rem;
    height: 100%;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
}
.general-button:hover {
    font-weight: bolder;
    color: #434343;
    background: #fff;
    transition: .3s;
}
.general-button.general-button--light {
    border: 1px solid #565656;
    background: #fff;
    color: #434343;

}
.general-button.general-button--light:hover {
    color: #fff;
    background: #434343;
}

.general-title-show {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: help;
    font-weight: bolder;
    position: relative;
}
.general-title-show:hover > *:last-child {
    display: flex;
    transition: .3s;
}
.general-title-show > *:last-child {
    display: none;
    position: absolute;
    width: 200%;
    top: 100%;
    background: #ffffeb;
    font-weight: normal;
    border-radius: 2px;
    z-index: 3;
    box-shadow: 0 0 3px #ffffeb;
    padding: 0.5em 0.8em;
    text-align: justify;
    font-size: 0.65rem;
    color: #303030;
    border: 1px dotted #858f1c;
}
.general-title-show > *:last-child:empty {
    display: none !important;
}

.general-table {
    border-collapse: collapse;
    text-align: center;
}
.table-null-row {
    background: #fff9f9 !important;
    color: #de0000 !important;
    font-weight: bolder !important;
    padding: 1em !important;
    cursor: not-allowed !important;
}

@media screen and (max-width: 600px) {
    .responsive-table {
        text-align: center;
    }

    .responsive-table tr {
        display: flex;
        flex-flow: row wrap;
    }
    .responsive-table tr th {
        flex-grow: 1;
    }

    .responsive-table tr td {
        flex-grow: 1;
        border: 1px solid #e2e2e2;
    }

    .responsive-table tr td:last-child {
        flex-basis: 100%;
        border-bottom: 2px solid #9e9e9e !important;
    }      
}

/* --- -------------- */

/* ---------------------------- */
/* -------- Libraries --------E */
/* ---------------------------- */


/* ---------------------------- */
/* S--------- COMMON ---------- */
/* ---------------------------- */

.base-container {
    display: flex;  
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #e4e6eb;
    overflow: hidden;
}

/* ---------------------------- */
/* ---------- COMMON ---------E */
/* ---------------------------- */



/* ---------------------------- */
/* S-------- Login-Page -------- */
/* ---------------------------- */
.base-container.login-page {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-page > .cover-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #0d374a; */
    background: #20383e;
    opacity: 0.85;
}
.login-page > .login-segment {
    display: flex;
    width: clamp(700px, 65%, 1135px);
    height: clamp(470px, 73vh, 650px);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 3px #4e4e4e;
    z-index: 1;
}
.login-page .login-segment.deactive .login-signin_form  {
    pointer-events: none;
    filter: blur(1px);
}
.login-segment > .login-intro,
.login-segment > .login-signin {
    padding: 1.5em;
    padding-bottom: 1em;
}




.login-segment .login-intro {
    background: #20373ebd;
    width: 45%;
    color: #fff;
    text-align: center;
}

.login-segment .login-intro_logo {
    width: clamp(90px, 44%, 160px);
    opacity: 0.9;
}
.login-segment .login-intro_logo img {
    width: 100%;
}

.login-segment .login-intro_title h1 {
    padding: 0.6em;
    padding-top: 0;
}
.login-segment .login-intro_title h2 {
    padding: 0.7em;
    font-weight: lighter;
    color: #dddddd;
}

.login-segment .login-intro_change-lang {
    position: relative;
    width: clamp(125px, 45%, 160px);
    font-size: 0.75rem;
    font-weight: bolder;
    color: #0582bb;
}

.login-segment .login-intro_change-lang button {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #ffffff;
    border-radius: 3px;

    cursor: pointer;
    overflow: hidden;
}
.login-segment .login-intro_change-lang:has(.drop-down-menu--show) button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.login-segment .login-intro_change-lang:has(.drop-down-menu--show) .language-container ul {
    border: 1.5px solid #ffffff;
    transition: .3s;
}
.login-segment .login-intro_change-lang button:hover {
    background: #eee;
    border: 1.5px solid #8bc4fc;
    
    transition: .3s;
}
.login-segment .login-intro_change-lang span {
    padding: 0.4em;
}
.login-segment .login-intro_change-lang span:first-child {
    width: 70%;
    justify-content: center;
}
.login-segment .login-intro_change-lang span:last-child {
    width: 30%;
    background: #00759d;
}
.login-segment .language-container ul {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.login-segment .language-container ul li {
    background: #286498;
    border-bottom: 1px solid #828282;
    color: #fff;
    cursor: pointer;
    font-size: 0.7rem;
}
.login-segment .language-container ul li:hover {
    background: #7aa6c9;

    transition: 0.3s;
}
.login-segment .language-container ul li:hover span:last-child {
    background: #4ebeff;

    transition: 0.3s;
}
.login-segment .language-container ul li:last-child {
    border-bottom: none;
}
.login-segment .language-container ul li span:last-child {
    background: #07385f;
}
.login-segment .login-intro_copy-right {
    color: #63aecf;
}



.login-segment .login-signin {
    background: #fff;
    width: 55%;
    min-height: 1px;
}

.login-segment .login-signin_title {
    color: #303c47;
    padding: 2.5em 1em;
    text-align: center;
}

.login-segment .login-signin_form {
    width: min(700px, 100%);
    flex-grow: 1;
    justify-content: center;
}
.login-segment .login-signin_form > div {
    flex-direction: column;
}
.login-segment .login-signin_form > .login-signin_form_phone {
    padding-block: 0.5em;
}
.login-segment .login-signin_form > .login-signin_form_phone > div {
    flex-direction: column;
}

.login-segment .login_form_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    text-align: center;
    width: 65%;
}

.login-segment .login_form_item:last-child {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.login-segment .login-signin_form_phone .login_form_item:last-child {
    margin-top: 1em;
}
.login-segment .login_form_item .show-hide-pass {
    position: absolute;
    top: 31%;
    color: #757575;
    cursor: pointer;
    inset-inline-end: 4%;
}
.login-segment .login_form_item .show-hide-pass:hover {
    color: #4d4d4d;

    transition: .2s;
}

.login-segment .login_form_item .input-icon {
    position: absolute;
    top: 31%;
    color: #757575;
    inset-inline-start: 4%;
}

.login-segment .login-signin_form input[type='text'],
.login-segment .login-signin_form input[type='password'] {
    width: 100%;
    height: 3.5em;
    outline: none;
    background: #eeeeee;
    padding: 0.8em max(12%, 30px);
    color: #00628f;
    border-radius: 2px;
    border: 1px solid #d8d8d8;
    font-size: 0.8rem;
    font-weight: bolder;
    letter-spacing: 0.4px;
}
.login-segment .login_form_item.login_form_item--phone input[type='text']:invalid {
    border: 1px solid #ff8888;
    background: #ffeeee;
}
.login-segment .login_form_item.login_form_item--phone:has(input[type='text']:invalid) span {
    color: #ff0000;
}

.login-segment .login_form_item.login_form_item--sms input[type='text'] {
    min-width: 14%;
    padding: .3em;
    border-radius: 3px;
}
.login-segment .login_form_item.login_form_item--sms input[type='text']:invalid {
    border: 1px solid #068706;
    background: #e8ffe8;
}



.login-segment .login_form_item.login_form_item--sms p {
    width: 100%;
    font-size: 0.75rem;
    padding-bottom: 1.5em;
    color: #5d758b;
}
.login-segment .login_form_item.login_form_item--sms p span.edit-phone {
    padding-inline: .2em;
}

.login-segment .login-signin_form input::placeholder {
    color: #757575;
    text-align: var(--align-point);
}



.login-segment .login-signin_form input[type='button'] {
    background: #30404e;
    padding: 0.6em;
    border: 1px solid #30404e;
    width: max(50%, 110px);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    margin-top: 1em;
    font-size: 0.9rem;
    font-weight: bolder;

    transition: .3s;
}
.login-segment .login-signin_form input[type='button']:hover {
    background: #aad7ff;
    color: #253e51;

}
.login-segment .login_form_item button {
    padding: 0.7em;
    height: 100%;
    background: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #979797;
    width: 100%;
    border: 1px solid #fff;
}
.login-segment .login_form_item button.action-active {
    cursor: pointer;

}
.login-segment .login_form_item button.action-active:hover {
    color: #252525;
    background-color: #fafafa;
    border: 1px solid #f1f1f1;
    transition: .3s;
}
.login-segment .login-signin_form_phone_validate .login_form_item button span {
    min-width: 30px;
}
.login-segment .login-signin_form_phone_validate .login_form_item button span i:last-child {
    display: none;
}
.login-segment .login-signin_form_phone_validate .login_form_item button.resend-active span i:first-child {
    display: none;
}
.login-segment .login-signin_form_phone_validate .login_form_item button.resend-active span i:last-child {
    display: unset;
}


.login-segment .login-signin_install-app {
    border-top: 1px solid #303c47;
    color: #2f3b46;
    font-size: 0.7rem;
    overflow: hidden;
    padding: 1.5em 0.3em;
    font-weight: bolder;
    width: max(65%, 300px);
}

.login-segment .login-signin_install-app button {
    cursor: pointer;
    border: 1px solid #023072;
    outline: none;
    height: 100%;
    background: #fff;
    font-size: 0.65rem;
    padding: 0.7em;
    border-radius: 3px;
    gap: 0.7em;
}
.login-segment .login-signin_install-app button:hover {
    background: #92bfff;
    color: #023072;
    transition: .3s;
}

@media screen and (display-mode: standalone) {
    .login-segment .login-signin_install-app {
        display: none;
    }
    .login-segment .login-signin_form {
        flex-grow: unset;
    }
}

@media screen and (max-width: 1150px) {
    .login-segment .login-signin_form > div .login_form_item {
        width: 80%;
    }
}
@media screen and (max-width: 600px) {
    .login-page > .login-segment {
        width: 100%;
        height: 100%;
        flex-flow: column;
        border-radius: 0;
    }
    .login-segment > .login-intro,
    .login-segment > .login-signin {
        padding: 0.7em;
        width: 100% !important;
        flex-grow: 1;
    }

    .login-segment .login-intro {
        padding-top: 1em !important;
        flex-flow: row wrap;
    }
    
    .login-segment .login-intro_logo {
        width: 30%;
    }
    .login-segment .login-intro_title {
        width: 60%;
    }
    .login-segment .login-intro_title h1 {
        padding-inline: 0.4em;
    }

    .login-segment .login-intro_change-lang {
        order: 2;
    }

    .login-segment .login-signin {
        justify-content: start;
        padding-top: 0.5em !important;
    }

    .login-segment .login-signin_title {
        padding: 0.3em 1em 1.7em 1em;
    }

    .login-segment .login-signin_form {
        justify-content: unset;
    }

    .login-segment .login-signin_form > .login-signin_form_phone {
        padding-block: 0;
    }
    .login-segment .login-signin_form > div .login_form_item {
        width: 90%;
    }

    .login-segment .login-signin_form > div .login_form_item:last-child {
        width: fit-content !important;
    }
    .login-segment .login-signin_install-app {
        padding-block: 1em 0.5em;
    }
}

/* ---------------------------- */
/* ------- Login-Page --------E */
/* ---------------------------- */




/* ---------------------------- */
/* S------- Todo-Page ------- */
/* ---------------------------- */
.todo-page .automation-segment {
    background: #eee;
    position: relative;
    padding: 1.5em;
    padding-bottom: 0;
}


.todo-page .overview-section {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 1em;
}
.todo-page .overview-section .overview__title h2 {
    font-size: 1rem;
    color: #4a4a4a;
}
.todo-page .overview-section .overview__title button {
    border: 1px solid #c5c5c5;
    color: #313131;
    font-size: 0.75rem;
    padding: 0.5em;
    border-radius: 4px;
    min-width: 120px;
    cursor: pointer;
    word-spacing: -1px;
}
@media screen and (max-width: 450px) {
    .todo-page .overview-section .overview__title button {
        min-width: 50px;
    }
    .todo-page .overview-section .overview__title button > span:last-child {
        display: none;
    }
}
.todo-page .overview-section .overview__title button.add {
    background: #0f4763;
    color: #fff;
    border: 1px solid #0b354b;
}
.todo-page .overview-section .overview__title button.add:hover {
    font-weight: bold;
    background: #eee;
    color: #0f4763;
    transition: 0.3s;
}
.todo-page .overview-section .overview__title button.staff:hover {
    background: #e7e7e7;
    font-weight: bold;
    color: #333333;

    transition: 0.3s;
}


.todo-page .overview-section .overview__cards {
    padding: 0.2em 0.5em;
}
.todo-page .overview-section .overview__cards .cards__item {
    /* background: #f5f5f5; */
    background: #eee;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    padding: 0.7em;
    box-shadow: 0 0 3px #dfdfdf;
    min-width: 200px;
}
.todo-page .overview-section .overview__cards .cards__item.active {
    background: #fff;
    box-shadow: 0 0 3px #cfcfcf;
    transform: unset !important;
}

.todo-page .overview-section .overview__cards .cards__item > span {
    width: 42px;
    height: 42px;
    background: #e5e5e5;
    border-radius: 50%;
    font-size: 1.1rem;
}
.todo-page .overview-section .overview__cards .cards__item > p span:first-child {
    font-size: 0.7rem;
    color: #878787;
    word-spacing: -2px;
}
.todo-page .overview-section .overview__cards .cards__item > p span:last-child {
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    width: fit-content;
}
.todo-page .overview-section .overview__cards .cards__item > p span:last-child::after {
    content: attr(data-phrase);
    display: inline-block;
    margin-inline-start: 0.3em;
    font-size: 0.7rem;
    position: absolute;
    bottom: 0;
    left: -20px;
    color: #585858;
}

.todo-page .list-section {
    padding-inline-end: 5px;
    scrollbar-width: thin;
}
.todo-page .list-section .list__header {
    padding-block: 1em;
    border-bottom: 1px solid #d5d5d5;
}
.todo-page .list-section .list__header .header__action > button {
    font-size: 0.9rem;
    padding: 0.3em 0.5em;
    border: 1px solid #c1c1c1;
    color: #4e4c4c;
    word-spacing: -1px;
    cursor: pointer;
}
.todo-page .list-section .list__header .header__action > button:hover {
    background: #ffffff;
    color: #161616;
    transition: 0.3s;
}
.todo-page .list-section .list__header .header__action > button.excel--export {
    border-start-start-radius: 5px;
    border-end-start-radius: 5px;
    border-inline-end: none;
}
.todo-page .list-section .list__header .header__action > button.excel--export span:last-child {
    font-size: 0.8rem;
}
.todo-page .list-section .list__header .header__action > button.print {
    border-end-end-radius: 5px;
    border-start-end-radius: 5px;
    padding-inline: 0.7em;
}


.todo-page .list-section .list__header .header__filter .filter__search {
    position: relative;
    border: 1px solid #c1c1c1;
    background: #ffffff;
    border-radius: 5px;
    padding: 0.3em 0.6em;
    font-size: 0.9rem;
}

.todo-page .list-section .list__header .header__filter .filter__search > span:first-child {
    color: #ababac;
}
.todo-page .list-section .list__header .header__filter .filter__search input {
    background: transparent;
    border: none;
    padding-inline-start: 0.3em;
    padding-inline-end: 20px;
    word-spacing: -1px;
    width: 100%;
    font-size: 0.8rem;
}
.todo-page .list-section .list__header .header__filter .filter__search input::placeholder {
    font-size: smaller;
}
.todo-page .list-section .list__header .header__filter .filter__search > span:last-child {
    display: none;
    color: #e13030;
    padding: 0.3em;
    position: absolute;
    left: 5px;
    border-radius: 4px;
    cursor: pointer;
}
.todo-page .list-section .list__header .header__filter .filter__search > span:last-child:hover {
    background: #ffe3e3;
    transition: 0.3s;
}
.todo-page .list-section .list__header .header__filter .filter__search:has(input:not(:placeholder-shown)) > span:last-child {
    display: flex;
}
.todo-page .list-section .list__header .header__filter .filter__person {
    font-size: 0.9rem;
    word-spacing: -2px;
    border: 1px solid #c9c9c9;
    padding: 0.3em 0.5em;
    border-radius: 5px;
    background: #eee;
    color: #4e4c4c;
}
.todo-page .list-section .list__header .header__filter .filter__person:hover {
    color: #000000;
    transition: 0.3s;
}
.todo-page .list-section .list__header .header__filter .filter__person.active {
    background: #fff;
    transition: 0.3s;
}

@media screen and (max-width: 500px) {
    .todo-page .list-section .list__header .header__action > button.excel--export {
        padding-inline: 0.7em;
    }
    .todo-page .list-section .list__header .header__action > button.excel--export span:last-child {
        display: none;
    }
}

.todo-page .list-section .list__main > div.empty__group {
    text-align: center;
    background: #fffafa;
    color: #cd8585;
    font-size: 0.7rem;
    border: 1px solid #ddd0d0;
    padding: 1em;
    border-radius: 3px;
}

.todo-page .list-section .list__main .main__group {
    border: 1px solid #cdcdcd;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 3px #e1e1e1;
    margin-bottom: 1em;
}
.todo-page .list-section .list__main .main__group .group__header {
    font-size: 0.9rem;
    padding: 0.5em;
    border-bottom: 1px solid #cdcdcd;
    background: #f9f9f9;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--icon {
    background: #f6f5f9;
    border: 1px solid #dad0f7;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    font-size: 0.7rem;
    color: #6a6970;
    cursor: pointer;
}
.todo-page .list-section .list__main .main__group.open .group__header p span.group--icon {
    transform: rotate(180deg);
    transition: 0.3s;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--name {
    word-spacing: -1px;
    font-weight: bold;
    color: #2a2a2c;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--current,
.todo-page .list-section .list__main .main__group .group__header p span.group--delay,
.todo-page .list-section .list__main .main__group .group__header p span.group--await,
.todo-page .list-section .list__main .main__group .group__header p span.group--archive {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: bold;
}

.todo-page .list-section .list__main .main__group .group__header p span.group--current {
    background: #dae9ff96;
    color: #075fad;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--delay {
    background: #ffdada96;
    color: #ad0707;
    margin-inline-start: -5px;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--delay.mini--blink {
    animation: icon_rotate_scale--mini 1s infinite;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--await {
    background: #daf3ce96;
    color: #07ad2c;
    margin-inline-start: -5px;
}
.todo-page .list-section .list__main .main__group .group__header p span.group--archive {
    background: #ddc7f396;
    color: #5a0b81;
}

.todo-page .list-section .list__main .main__group .group__body {
    position: relative;
}

.todo-page .list-section .list__main .main__group .group__body table {
    font-size: 0.8rem;
}
.todo-page .list-section .list__main .main__group .group__body table thead th {
    padding: 0.6em;
    border-bottom: 1px solid #cdcdcd;
    font-weight: normal;
    font-size: 0.7rem;
    color: #555658;
    word-spacing: -1px;

}

.todo-page .list-section .list__main .main__group .group__body table tbody tr {
    border-bottom: 1px dashed #e5e5e5;
    cursor: pointer;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr:last-child {
    border-bottom: none;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr.empty {
    color: #f3c5c5;
    font-weight: bold;
    font-size: smaller;
    background: #fff9f9;
    pointer-events: none;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr[data-state='1']:hover td {
    background: #eff3f7;
    transition: 0.3s;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr[data-state='2']:hover td {
    background: #f0f7ef;
    transition: 0.3s;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr[data-state='3']:hover td {
    background: #f7efef;
    transition: 0.3s;
}
.todo-page .list-section .list__main .main__group .group__body table tbody tr[data-state='5']:hover td {
    background: #f4eff7;
    transition: 0.3s;
}

.todo-page .list-section .list__main .main__group .group__body table tbody td {
    padding: 1em 0.5em;
}
.todo-page .list-section .list__main .main__group .group__body table tbody td.no--padding {
    padding: 0 !important;
}
.todo-page .list-section .list__main .main__group .group__body table tbody td > span {
    margin-inline: auto;
    width: fit-content;
}

.todo-page .list-section .list__main .main__group .group__body table tr td.td--icon span i {
    display: none;
}

.todo-page .list-section .list__main .main__group .group__body table tr[data-state='1'] td.td--icon span i.fa-spinner-third {
    display: initial;
    padding-inline: 1em;
    animation: icon_rotate 2s linear infinite;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='2'] td.td--icon span i.fa-clipboard-check {
    display: initial;
    color: #159f3a;
    padding-inline: 1em;
    animation: icon_rotate_skew 1s infinite;
}

.todo-page .list-section .list__main .main__group .group__body table tr[data-state='3'] td.td--icon span i.fa-brake-warning {
    display: initial;
    padding-inline: 1em;
    animation: icon_rotate_scale 1s infinite;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='5'] td.td--icon span i.fa-box-archive {
    display: initial;
    color: #9b0ed3ff;
    padding-inline: 1em;
}

@keyframes icon_rotate {
    0% {
        filter: drop-shadow(0px 0px 1px #ccdcff);
        color: #23a2ff;
        transform: rotate(0deg);
    }
    100% {
        filter: drop-shadow(0px 0px 5px #0551ff);
        color: #0467b0;
        transform: rotate(360deg);
    } 
}

@keyframes icon_rotate_scale {
    0% {
        filter: drop-shadow(0px 0px 1px #ffcccc);
        color: #ff1c1c;
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0px 0px 7px #ff0505);
        color: #e30000;
        transform: scale(1.1);
    } 
}
@keyframes icon_rotate_scale--mini {
    0% {
        filter: drop-shadow(0px 0px 1px #d95b5b);
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0px 0px 15px #d95b5b);
        transform: scale(1.05);
    } 
}
@keyframes icon_rotate_skew {
    0% {
        color: #004a11;
        transform: scaleX(-1);
    }
    50% {
        transform: scaleX(1);
    }

    100% {
        color: #159f3a;
        transform: scaleX(1);
    } 
}



.todo-page .list-section .list__main .main__group .group__body table tr td.td--user span,
.todo-page .list-section .list__main .main__group .group__body table tr td.td--owner span {
    font-size: smaller;
    color: #7e7e7e;
    font-weight: bold;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--user {
    filter: grayscale(1);
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='2'] td.td--title p {
    text-decoration: line-through;
    color: #7e7e7e;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--date {
    color: #053216;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--deadline {
    position: relative;
    color: #320505;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--deadline > p span:first-child {
    padding-inline: 10px;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--deadline > p span:last-child {
    visibility: hidden;
    color: #8800ff;
    position: absolute;
    left: 0;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-snooz='1'] td.td--deadline > p span:last-child {
    visibility: visible;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--note > span i {
    display: none;
    color: #356640;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--note:not([title]) > span i.fa-regular {
    display: initial;
    cursor: not-allowed;
}
.todo-page .list-section .list__main .main__group .group__body table tr td.td--note[title] > span i.fa-solid {
    display: initial;
    cursor: help;
}

.todo-page .list-section .list__main .main__group .group__body table tr td.td--state span {
    font-weight: bold;
    font-size: 0.6rem;
    padding: 0.5em 0.7em;
    border-radius: 4px;
    width: 80%;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='1'] td.td--state span {
    color: #0571bb;
    border: 1px solid #0571bb;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='2'] td.td--state span {
    color: #159f3a;
    border: 1px solid #159f3a;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='3'] td.td--state span {
    color: #bb0505;
    border: 1px solid #bb0505;
}
.todo-page .list-section .list__main .main__group .group__body table tr[data-state='5'] td.td--state span {
    color: #9b0ed3ff;
    border: 1px solid #9b0ed3ff;
}

@media screen and (max-width: 700px) {
    .todo-page .automation-segment {
        overflow-y: scroll !important;
        scrollbar-width: thin;
    }
    .todo-page .list-section {
        overflow: unset !important;
    }
    .todo-page .list-section .list__main .main__group .group__body table thead tr {
        display: none;
    }
    .todo-page .list-section .list__main .main__group .group__body table tbody tr {
        display: flex;
        flex-direction: column;
        margin: 0.8em;
        padding: 0.5em;
        gap: 0.9em;
        border-radius: 5px;
        box-shadow: 0 0 3px #9f9f9f;
        background: #fbfbfb;
    }
    .todo-page .list-section .list__main .main__group .group__body table tbody tr td.td--user p,
    .todo-page .list-section .list__main .main__group .group__body table tbody tr td.td--owner p {
        justify-content: center;
    }
    .todo-page .list-section .list__main .main__group .group__body table tbody tr td.td--user p {
        transform: scale(0.8);
    }
    .todo-page .list-section .list__main .main__group .group__body table tbody tr td.td--date {
        display: none;
    }
    .todo-page .list-section .list__main .main__group .group__body table tbody tr:hover td {
        background: unset !important;
    }
    
}



@media print {
    .todo-page .list-section .list__main .main__group .group__body table {
        font-size: 0.7rem;
    }
    .todo-page .list-section .list__main .main__group .group__body table tr td.td--state span {
        padding: 0 !important;
        border: none !important;
        font-size: 0.5rem;
        word-spacing: -2px;
    }
    .todo-page .list-section .list__main .main__group .group__body.drop-down-menu {
        grid-template-rows: 1fr !important;
        visibility: visible !important;
    }
}


.todo-page .job-section {
    position: fixed;
    inset-inline-end: 13px;
    top: 12dvh;
    margin-block: auto;
    width: 310px;
    height: 85vh;
    height: 85dvh;
    background: #fff;
    box-shadow: 0 0 4px #686868;
    border-radius: 5px;
    z-index: 22;
    overflow: hidden;
    margin-left: -350px;
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
}
.todo-page .job-section.active {
    z-index: 22;
    pointer-events: auto;
    visibility: visible;
    margin-left: 0;
    transition: margin 0.4s;
}

@media screen and (max-width: 500px) {
    .todo-page .job-section {
        width: 90%;
        height: 75dvh;
        left: 0;
        right: 0;
        margin-inline: auto !important;
    }
}

.todo-page .job-section .job__header {
    padding: 0.4em 0.6em;
}
.todo-page .job-section .job__header h2 span:first-child {
    font-size: 0.9rem;
    color: #040404;
    padding-block: 0.3em;
}
.todo-page .job-section .job__header h2 span:last-child {
    font-size: 0.7rem;
    font-weight: normal;
    color: #383b3d;
    word-spacing: -1px;
}
.todo-page .job-section .job__header > p {
    align-self: start;
    padding: 0.7em 0.4em;
    color: #95989e;
    cursor: pointer;
}
.todo-page .job-section .job__header > p:hover {
    color: #414346;
    transition: 0.3s;
}

.todo-page .job-section .job__body {
    position: relative;
}
.todo-page .job-section .job__body .body__form {
    padding: 0.8em 0.5em;
    align-items: start;
}

.todo-page .job-section .job__body .body__form .form__input {
    padding-bottom: 0.3em;
}
.todo-page .job-section .job__body .body__form .form__input.half {
    flex-basis: 40%;
}
.todo-page .job-section .job__body .body__form .form__input.full {
    flex-basis: 100%;
}
.todo-page .job-section .job__body .body__form .form__input > p {
    padding-bottom: 0.5em;
    padding-inline-start: 0.2em;
    font-size: 0.65rem;
    text-align: start;
}
.todo-page .job-section .job__body .body__form .form__input > div select,
.todo-page .job-section .job__body .body__form .form__input > div input,
.todo-page .job-section .job__body .body__form .form__input > div textarea {
    border: 1px solid #d3d3d3;
    padding: 0.3em 0.8em;
    font-size: 0.7rem;
    font-weight: bolder;
    height: 30px;
    width: 100%;
    text-align: center;
    background: #fff;
}
.todo-page .job-section .job__body .body__form .form__input > div textarea {
    text-align: start;
    color: #0e283b;
    font-weight: normal;
    height: auto;
}
.todo-page .job-section .job__body .body__form .form__input.sdate > div input,
.todo-page .job-section .job__body .body__form .form__input.sdate > div select {
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    color: #626262;
}

.todo-page .job-section .job__body .body__form .form__input.sdate > div select,
.todo-page .job-section .job__body .body__form .form__input.sdate > div input,
.todo-page .job-section .job__body .body__form .form__input.edate > div select,
.todo-page .job-section .job__body .body__form .form__input.edate > div input {
    border: none;
}
.todo-page .job-section .job__body .body__form .form__input.sdate > div,
.todo-page .job-section .job__body .body__form .form__input.edate > div {
    border: 1px solid #d3d3d3;
}
.todo-page .job-section .job__body .body__form .form__action  {
    flex-basis: 100%;
}
.todo-page .job-section .job__body .body__form .form__action > p {
    font-size: 0.75rem;
    padding: 0;
    word-spacing: -0.5px;
    padding-top: 0.3em;
}
.todo-page .job-section .job__body .body__form .form__action > button {
    border: none;
    width: 30px;
    height: 30px;
    font-size: smaller;
    border-radius: 3px;
    cursor: pointer;
}

.todo-page .job-section .job__body .body__form .form__action {
    display: none;
}


.todo-page .job-section[data-state='1'] .job__body .body__form .form__action.done,
.todo-page .job-section[data-state='1'] .job__body .body__form .form__action.delete,
.todo-page .job-section[data-state='3'] .job__body .body__form .form__action.done,
.todo-page .job-section[data-state='3'] .job__body .body__form .form__action.delete {
    display: flex;
}
.todo-page .job-section[data-state='2'] .job__body .body__form .form__action.approve,
.todo-page .job-section[data-state='2'] .job__body .body__form .form__action.cancel {
    display: flex;
}
.todo-page .job-section[data-state='5'] .job__body .body__form .form__action.reopen {
    display: flex;
}
.todo-page .job-section[data-state='5'] .job__body .body__form .form__input > div input,
.todo-page .job-section[data-state='5'] .job__body .body__form .form__input > div textarea,
.todo-page .job-section[data-state='5'] .job__body .body__form .form__input > div select {
    pointer-events: none !important;
    background: #eee !important;
}
.todo-page .job-section[data-state='5'] .job__body .body__form .form__input.sdate > div,
.todo-page .job-section[data-state='5'] .job__body .body__form .form__input.edate > div {
    background: #eee;
}
.todo-page .job-section[data-state='5'] .job__body .body__upload > .upload__input {
    display: none;
}
.todo-page .job-section[data-state='5'] .job__action {
    display: none;
}

.todo-page .job-section[data-access='0'] .job__body .body__form .form__action.approve,
.todo-page .job-section[data-access='0'] .job__body .body__form .form__action.cancel,
.todo-page .job-section[data-access='0'] .job__body .body__form .form__action.reopen,
.todo-page .job-section[data-access='0'] .job__body .body__form .form__action.delete {
    display: none !important;
}

.todo-page .job-section[data-access='0'] .job__body .body__form input,
.todo-page .job-section[data-access='0'] .job__body .body__form select {
    pointer-events: none;
    background: #eee;
}
.todo-page .job-section[data-access='0'] .job__body .body__form .form__input.sdate > div,
.todo-page .job-section[data-access='0'] .job__body .body__form .form__input.edate > div {
    background: #eee;
    
}
.todo-page .job-section[data-access='0'] .job__body .body__form select {
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

.todo-page .job-section .job__body .body__upload {
    padding: 0.8em 0.5em;
    padding-top: 0;
    position: relative;
}
.todo-page .job-section .job__body .body__upload > .upload__input {
    padding: 1em;
    outline: 1px dashed #a9a9a9;
    border-radius: 2px;
    background: #e9e9e954;
    margin-bottom: 0.5em;
    flex-direction: column;
    position: relative;
}
.todo-page .job-section[data-id='0'] .job__body .body__upload > .upload__input {
    pointer-events: none;
    display: none;
}
.todo-page .job-section .job__body .body__upload > .upload__input > input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
}
.todo-page .job-section .job__body .body__upload > .upload__input > span {
    font-size: 1.3rem;
    color: #919191;
}
.todo-page .job-section .job__body .body__upload > .upload__input p {
    font-size: 0.7rem;
    color: #a5a5a5;
    padding-top: 0.7em;
    word-spacing: -1px;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item {
    border-radius: 3px;
    padding: 0.3em;
    margin-bottom: 0.2em;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.done {
    border: 1px solid #b7cbc1;
    background: #ceffd961;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.progress {
    border: 1px solid #797015;
    background: #fff78d7a;
}

.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.empty {
    font-size: 0.7rem;
    text-align: center;
    color: #b3b3b3;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item div:first-child {
    align-items: start;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item div:first-child input {
    background: unset;
    border: none;
    border-bottom: 1px dotted #3d3d3d;
    padding: 0.2em;
    field-sizing: content;
    color: #000000;
    font-size: 0.7rem;
    text-align: start;
    font-weight: bold;
    margin-bottom: 0.5em;
    max-width: 200px;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.done div:first-child input {
    color: #626262;
    border-bottom: none;
    margin-bottom: 0;
    pointer-events: none;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item div:first-child p {
    font-size: 0.7rem;
}

.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:nth-child(2) {
    width: 40px;
    height: 40px;
    filter: grayscale(0.5);
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span {
    display: none;
    color: #9da2a8;
    padding: 0.3em;
    cursor: pointer;
    font-size: 0.8rem;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span:hover {
    color: #000;
    transition: 0.3s;
}


.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.done > div:last-child span.done {
    display: flex;
}
.todo-page .job-section[data-access='0'] .job__body .body__upload > .upload__list .upload__list__item.done > div:last-child span.done.remove {
    display: none !important;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.progress > div:last-child span.progress {
    display: flex;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item.done > div:last-child span.done {
    display: flex;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span.cancel:hover,
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span.remove:hover {
    color: #cb0606;
    transition: 0.3s;
}
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span.upload:hover,
.todo-page .job-section .job__body .body__upload > .upload__list .upload__list__item > div:last-child span.download:hover {
    color: #2ccb06;
    transition: 0.3s;
}


.todo-page .job-section .job__action {
    padding: 0.8em 0.5em;
    width: 100%;
    box-shadow: 0 0 3px #bfbfbf;
}
.todo-page .job-section .job__action button {
    border-radius: 2px;
    flex-basis: 80px;
    width: unset;
    height: 30px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #565656;
    padding: 0.4em 0.5em;
    background: #434343;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
}
.todo-page .job-section .job__action button.cancel {
    color: #434343;
    background: #fff;
}
.todo-page .job-section .job__action button.cancel:hover {
    background: #ffd7d7;
    color: #a30202;
    border: 1px solid #a30202;
    transition: 0.2s;
}
.todo-page .job-section .job__action button.approve {
    flex-grow: 2;
}
.todo-page .job-section .job__action button.approve:hover {
    color: #434343;
    background: #fff;
    transition: 0.3s;
}

.todo-page .automation-segment:has(.job-section.active) {
    overflow: hidden !important;
}
.todo-page .automation-segment:has(.job-section.active) > *:not(.job-section) {
    pointer-events: none;
    filter: blur(1.8px) grayscale(1.5)  !important;
}

.todo-page .group-section {
    position: fixed;
    top: 10vh;
    top: 10dvh;
    bottom: 0;
    margin-block: auto;
    width: min(400px, 90%);
    max-height: calc(60vh - 2.5rem);
    max-height: calc(60dvh - 2.5rem);
    background: #fff;
    box-shadow: 0 0 4px #686868;
    border-radius: 5px;
    margin-inline: auto;
    left: 0;
    right: 0;
    margin-top: -350px;
    z-index: -1;
    pointer-events: none;
    visibility: hidden;
}
.todo-page .group-section.active {
    z-index: 22;
    pointer-events: auto;
    visibility: visible;
    margin-top: auto;
    transition: margin 0.4s;
}
.todo-page .loading {
    filter: blur(1.8px) grayscale(1.5)  !important;
}


.todo-page .group-section .group__header {
    padding: 0.7em;
}
.todo-page .group-section .group__header h2 span:first-child {
    font-size: 0.9rem;
    color: #040404;
    padding-block: 0.3em;
}
.todo-page .group-section .group__header h2 span:last-child {
    font-size: 0.7rem;
    font-weight: normal;
    color: #383b3d;
    word-spacing: -1px;
}
.todo-page .group-section .group__header > p {
    align-self: start;
    padding: 1em 0.7em;
    color: #95989e;
    cursor: pointer;
}
.todo-page .group-section .group__header > p:hover {
    color: #414346;
    transition: 0.3s;
}


/* ---------------------------- */
/* ------- Todo-Page -------E */
/* ---------------------------- */


/* ---------------------------- */
/* S---------- Reprot ---------- */
/* ---------------------------- */
.base-container.report-page {
    padding: 1.5em;
}

@media screen and (max-width: 500px) {
    .base-container.report-page {
        padding: 0.5em;
    }
}

.report-page > .report-sidebar,
.report-page > .report-main {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px #d3d3d3;
    overflow: hidden;
    height: 100%;
    position: relative;
    padding: 1em;
    flex-grow: 1;
}

.report-page > .report-sidebar {
    flex-basis: 22%;
}

.report-page > .report-sidebar .sidebar__header {
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 1em;
    box-shadow: 0 2px 3px -3px #989898;
    margin-bottom: 1em;
    color: #2c2c2c;
}

.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container {
    box-shadow: 0 0 3px -1px #686868;
    border-radius: 3px;
    padding: 0.4em;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container h3 {
    font-size: 0.7rem;
    color: #989898;
    font-weight: normal;
    padding-bottom: 0.7em;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container select {
    width: 100%;
    padding: 0.5em;
    border-radius: 4px;
    border: 1px solid #aeaeae;
    color: #555555;
    font-size: 0.75rem;
    font-weight: bold;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container input {
    border: none;
    background: #f3f3f3;
    font-size: 0.75rem;
    padding: 0.5em;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .radio-select {
    background: #efefef;
    padding: 0.1em;
    border-radius: 6px;
    gap: 0.2em;
    border: 1px solid #d3d3d3;
    display: flex;
    justify-content: space-between;
    gap: 0.3em;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .radio-select > span {
    font-size: 0.7rem;
    padding: 0.4em;
    border-radius: 4px;
    color: #747474;
    cursor: pointer;
    text-align: center;
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .radio-select > span:hover {
    background: #cecece;
    transition: 0.2s;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .radio-select > span.active {
    font-weight: bold;
    background: #ffffff;
    color: #030303;
    padding-inline: 1.2em;
    box-shadow: 0 0 3px #898989;
    transition: 0.3s;
}



.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container.filter--date > div:last-child {
    display: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container.filter--date.s-active > div:last-child {
    display: flex;
}



    
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .date-selector {
    border-radius: 4px;
    border: 1px solid #cbcbcb;
    background: #f3f3f3;
    overflow: hidden;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .date-selector select {
    text-align: center;
    border: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .date-selector input::placeholder {
    font-weight: normal;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .date-selector > span {
    opacity: 0.3;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-button {
    padding-inline: 10px;
    cursor: pointer;
    font-size: 0.7rem;
    color: #626262;
    background: #f5f5f5;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-button:hover {
    background: #e9f7ff;
    transition: 0.2s;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .reset-button {
    display: none;
    padding-inline: 10px;
    cursor: pointer;
    font-size: 0.7rem;
    color: #ff2525;
    background: #ffe7e7;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ffb3b3;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .reset-button:hover {
    background: #ffe9e9;
    transition: 0.2s;
}



.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container > div > div.active input {
    color: #8b8b8b;
    pointer-events: none;
}

.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container > div > div.active .search-button {
    display: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container > div > div.active .reset-button {
    display: flex;
}





.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector {
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid #cbcbcb;
    font-weight: bold;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > select {
    width: 30%;
    color: #000;
    text-align: center;
    border: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > input {
    width: 70%;
    position: absolute;
    inset-inline-start: 0;
    padding-inline: 0.7em;
    font-size: 0.75rem;
    direction: ltr;
    background: #f3f3f3;
    text-align: end;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > input::placeholder {
    padding-inline-start: 1em;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > button {
    position: absolute;
    inset-inline-end: 0;
    padding-top: 1px;
    border: none;
    background: none;
    height: 100%;
    padding-inline: 9px;
    cursor: pointer;
    font-size: 0.9rem;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > button.accept {
    color: #1874ec;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > button.accept:hover {
    background: #e9f7ff;
    transition: 0.2s;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > button.reset {
    display: none;
    color: #db0000;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector > button.reset:hover {
    background: #ffd3d3;
    transition: 0.3s;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector.active > button.reset {
    display: block;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector.active > button.accept {
    display: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__filter > .filter__container .search-selector.name > button {
    display: none !important;
}

.report-page > .report-sidebar .sidebar__body hr {
    margin-top: 0.8em;
    border-top: 1px dashed #9a9a9a;
}

.report-page > .report-sidebar .sidebar__body .sidebar__status .status__chart {
    box-shadow: 0 0 3px -1px #686868;
    border-radius: 3px;
    padding: 0.4em;
    margin-top: 1em;
    max-height: 150px;
    position: relative;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__chart > p {
    position: absolute;
    font-weight: bold;
    font-size: smaller;
    color: #9b640d;
    gap: 0.3em;

}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state {
    box-shadow: 0 0 3px -1px #686868;
    border-radius: 3px;
    padding: 0.9em 0.7em;
    margin-top: 1em;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div p:first-child {
    font-size: 0.75rem;
    font-weight: bold;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div p:last-child {
    font-size: 0.8rem;
}

.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.buy p:first-child {
    color: #008360;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.sale p:first-child {
    color: #830000;
}

.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff {
    border-radius: 3px;
    margin-top: 0.7em;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.5em;
    position: relative;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff.low {
    background: #ffe4e4;
    border: 1px solid #9d0808;
    color: #2f0202;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff.high {
    background: #e4fff8;
    border: 1px solid #089d57;
    color: #022f23;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff > p:first-child span:first-child i {
    display: none;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff.high > p:first-child span:first-child i:first-child {
    display: initial;
}
.report-page > .report-sidebar .sidebar__body .sidebar__status .status__state > div.diff.low > p:first-child span:first-child i:last-child {
    display: initial;
}




.report-page > .report-main {
    flex-basis: 73%;
}

.report-page > .report-main .main__header {
    padding-bottom: 1em;
}
.report-page > .report-main .main__header h2 {
    font-size: 1rem;
}

.report-page > .report-main .main__filter {
    box-shadow: 0 0 3px -1px #6d6d6d;
    padding: 0.2em;
    margin-bottom: 0.4em;
    border-radius: 2px;
    background: #ebebeb;
    outline: 1px solid #d1d1d1;
}
.report-page > .report-main .main__filter > span {
    margin-inline: 0.5em;
    font-size: smaller;
}
.report-page > .report-main .main__filter > div {
    font-weight: bold;
    font-size: 0.6rem;
    border: 1px solid #dbd6d6;
    border-radius: 3px;
    padding: 0.4em;
    flex-basis: 100px;
    text-align: center;
    background: #fafafa;
    color: #7e7e7e;
}




.report-page > .report-main .main__body table {
    text-align: center;
    border-collapse: collapse;
    font-size: 0.75rem;
}
.report-page > .report-main .main__body table thead tr th {
    font-weight: normal;
    color: #fff;
    background: #000;
    padding: 0.7em 0.4em;
}
.report-page > .report-main .main__body table tbody tr {
    border-bottom: 1px dotted #c5c5c5;
}
.report-page > .report-main .main__body table tbody tr:hover {
    background: #f3f3f3;
}
.report-page > .report-main .main__body table tbody tr td {
    padding: 0.5em 0.2em;
}
.report-page > .report-main .main__body table tbody tr td.action {
    font-weight: bold;
}
.report-page > .report-main .main__body table tbody tr td.action.buy {
    color: #04512e;
}
.report-page > .report-main .main__body table tbody tr td.action.sale {
    color: #510404;
}
.report-page > .report-main .main__body table tbody tr td.action p > span:first-child i {
    display: none;
}
.report-page > .report-main .main__body table tbody tr td.action.buy p > span:first-child i.fa-down-to-bracket {
    display: initial;
}
.report-page > .report-main .main__body table tbody tr td.action.buy p  span:first-child i.fa-down-to-bracket {
    display: initial;
}
.report-page > .report-main .main__body table tbody tr td.action.sale p > span:first-child i.fa-up-from-bracket {
    display: initial;
}



.report-page > .report-main .main__body table tbody tr td.operator {
    color:#041c51;
    font-weight: bold;
}
.report-page > .report-main .main__body table tbody tr td.operator > p {
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}
.report-page > .report-main .main__body table tbody tr td.price {
    font-weight: bold;
    color:#232323
}
.report-page > .report-main .main__body table tbody tr td.amount {
    font-weight: bold;
    color:#998a02
}
.report-page > .report-main .main__body table tbody tr td.for {
    color: #a3a3a3;
}
.report-page > .report-main .main__body table tbody tr td.owner {
    font-size: smaller;
    font-weight: bold;
}
.report-page > .report-main .main__body table tbody tr td.empty {
    background: #fff2f2;
    color: #fb9b9b;
    cursor: not-allowed;
    padding: 1em;
    font-weight: bold;
}


@media print {
    .report-page > .report-main .main__body table {
        font-size: 0.5rem;
    }
}









/* ---------------------------- */
/* ---------- Reprot ----------E */
/* ---------------------------- */