/* ---------------------------- */
/* 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;
}
.scroll-x {
    overflow-x: auto !important;
}
.scroll-all {
    overflow: auto !important;
}
.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-------- Home-Page -------- */
/* ---------------------------- */
.base-container.home-page {
    display: block;
}

.home-page > .cover-segment {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.home-page .cover-segment__main {
    /* position: relative; */
    height: 85%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.home-page .cover-segment__main .cover-segment__main__image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.home-page .cover-segment__main .cover-segment__main__slide__text__item {
    display: none;
    justify-content: space-between;
    backdrop-filter: blur(8px) contrast(0.8) brightness(0.4);
    border: 1px solid #eee;
    max-width: 430px;
    padding: 1.1em;
    color: #ffffff;
    border-radius: 5px;
    margin-inline: 2em;
}
.home-page .cover-segment__main .cover-segment__main__slide__text__item.active {
    display: flex;
}

.home-page .cover-segment__main .cover-segment__main__slide__text__item h3 {
    font-size: 1rem;
    padding-bottom: 1.5em;
    color: #fd9b01;
}
.home-page .cover-segment__main .cover-segment__main__slide__text__item p {
    font-size: 0.7rem;
    text-align: justify;
    
}


.home-page .cover-segment__main .cover-segment__main__slide__nav {
    width: 100%;
    padding: 1.5em 2em;
    align-items: end;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav > div {
    width: calc(50% - 0.5em);
    align-items: end;
}
@media screen and (max-width: 800px) {
    .home-page .cover-segment__main .cover-segment__main__slide__nav {
        padding: 1.5em 0.7em;
    }
    .home-page .cover-segment__main .cover-segment__main__slide__nav > div {
        display: contents;
    }
    .home-page .cover-segment__main .cover-segment__main__slide__text {
        padding-top: 1em;
        align-items: start;
        visibility: hidden;
    }
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item {
    background: #fff;
    box-shadow: 0 0 2px #525252;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #816557;
    height: 175px;
    flex-basis: 170px;
    min-width: 160px;
    justify-content: space-between;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item:hover {
    border-color: #ffe6d9;
    transition: 0.2s;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item.active {
    background: #f9c02e;
    border: 2px solid #cf9e22;
    height: 220px;
    pointer-events: none;
    
    transition: .5s;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__image {
    height: 45%;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__image > img {
    height: 100%;
    border-bottom: 3px solid #816557;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__image > img:first-child {
    border-inline-end: 3px solid #816557;
    border-end-end-radius: 10px;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__image > img:last-child {
    border-inline-start: 3px solid #816557;
    border-end-start-radius: 10px;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info {
    padding-bottom: 0.7em;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info h3 {
    padding-block: 1em;
    font-size: 0.85rem;
    text-align: center;
    padding-inline: 0.6em;
    color: #333;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info > p {
    display: none;
    text-align: center;
    font-size: 0.5rem;
    padding: 0.4em;
    background: #ffdb7d;
    border: 1px solid #fd9b01;
    border-radius: 3px;
    font-weight: bold;
    color: #895401;
    width: 20%;
    margin: 0 auto;
    margin-top: 0.7em;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item.active .cover-segment__main__slide__nav__item__info p {
    display: block;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info div {
    padding-inline: 0.5em;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info div p {
    font-size: 0.75rem;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info div p span:first-child {
    font-size: smaller;
    color: #646464;
    padding-bottom: 0.3em;
}
.home-page .cover-segment__main .cover-segment__main__slide__nav__item__info div p span:last-child {
    font-size: 0.7rem;
}



.home-page .cover-segment__nav {
    height: calc(15% + 25px);
    backdrop-filter: blur(8px) contrast(0.9) brightness(0.4);
    /* backdrop-filter: blur(8px) contrast(0.4) brightness(0.9); */
    margin-top: -25px;
    padding-top: 25px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.home-page .cover-segment__nav > .cover-segment__nav__logo {
    padding-inline: 1.5em;
}
@media screen and (max-width: 700px) {
    .home-page .cover-segment__nav > .cover-segment__nav__logo {
        padding-inline: 0;
    }
}
.home-page .cover-segment__nav > .cover-segment__nav__logo h1 {
    font-size: 1.4rem;
    color: #fd9b01;
}
@media screen and (max-width: 500px) {
    .home-page .cover-segment__nav > .cover-segment__nav__logo h1 {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .home-page .cover-segment__nav > .cover-segment__nav__menu {
        justify-content: space-evenly;
        gap: 0.3em
    }
}
.home-page .cover-segment__nav > .cover-segment__nav__menu a {
    font-size: 1.4rem;
    padding: 0.5em;
    color: #ede9e6;

    overflow: hidden;
    max-width: 43px;
}
.home-page .cover-segment__nav > .cover-segment__nav__menu a:hover {
    color: #a59c93;
    max-width: 110px;
    transition: 0.7s;
}
.home-page .cover-segment__nav > .cover-segment__nav__menu a:last-child {
    display: none;
}

@media screen and (max-width: 700px) {
    .home-page .cover-segment__nav > .cover-segment__nav__menu a:hover {
        color: #a59c93;
        max-width: 43px;
        transition: 0.7s;
    }
    .home-page .cover-segment__nav > .cover-segment__nav__menu a:last-child {
        display: flex;
    }
}


.home-page .cover-segment__nav > .cover-segment__nav__menu a span:first-child {
    display: block;
}
.home-page .cover-segment__nav > .cover-segment__nav__menu a span:last-child {
    font-size: 0.8rem;
    text-wrap: nowrap;
}



.home-page .cover-segment__nav > .cover-segment__nav__login {
    font-size: 0.8rem;
    height: 45%;
    align-self: center;
    background: #1c1c1c82;
    border-radius: 5px;
    margin-inline-end: 1.5em;
    border: 1px solid #6b6b6b;
}
.home-page .cover-segment__nav > .cover-segment__nav__login:hover {
    border: 1px solid #f0f0f0;
    transition: .2s;

}
@media screen and (max-width: 700px) {
    .home-page .cover-segment__nav > .cover-segment__nav__login {
        display: none;
    }
}
.home-page .cover-segment__nav > .cover-segment__nav__login a {
    width: 100%;
    height: 100%;
    padding-inline: 1.5em;
}
.home-page .cover-segment__nav > .cover-segment__nav__login p {
    line-height: 1px;
}



/* ---------------------------- */
/* ------- Home-Page --------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-- Automation-Container --- */
/* ---------------------------- */
.base-container.automation-container {
    flex-direction: row;
}

.automation-container .main-segment {
    width: calc(100% - 250px);
}
.automation-container .automation-segment {
    position: relative;
    height: 90vh;
    height: 90dvh;
    padding: 1.5em;
}
@media screen and (max-width: 800px) {
    .automation-container .main-segment {
        width: 100%;
    }
    .automation-container .automation-segment  {
        height: 80vh;
        height: 80dvh;
        padding: 0.5em;
    }
}

/* S- Automation-Container--Sidebar - */
.automation-container .sidebar-segment {
    background: #fff;
    z-index: 25;
}

.automation-container .sidebar-segment .sidebar-logo  {
    box-shadow: 1px 1px 4px #dddddd;
    filter: grayscale(0.1);
    padding: 1em;
}

.automation-container .sidebar-segment .sidebar-menu  {
    padding: 1em 0;
}
.automation-container .sidebar-segment .sidebar-items-group {
    margin-bottom: 1em;
}

.automation-container .sidebar-segment .sidebar-items-group > h3 {
    font-size: 0.7rem;
    color: #6e768e;
    padding: 0px 1.1em;
    padding-bottom: 0.3em;
}

.automation-container .sidebar-segment .sidebar--selected {
    position: relative;
    font-size: 0.85rem;
}
.automation-container .sidebar-item {
    position: relative;
    font-size: 0.85rem;
}

.automation-container .sidebar-segment .sidebar-item > a {
    gap: 0.9em;
    padding: 0.6em 1.3em;
    position: relative;
    color: #383d4a;
}
.automation-container .sidebar-segment .sidebar-item > a.sidebar--selected {
    color: #1b8dfe;
}
.automation-container .sidebar-segment .sidebar-item > a:hover {
   background: #fafafa;
}
.automation-container .sidebar-segment .sidebar-item:hover > a {
    color: #3b99f8;
    transition: .2s;
}

.automation-container .sidebar-segment .sidebar-item > a .sidebar-item_icon {
    font-size: 0.95rem;
    background: #f2f2f2;
    width: 30px;
    height: 30px;
    border-radius: 5px;
}
.automation-container .sidebar-segment .sidebar-item > a .sidebar-item_expand {
    font-size: 0.7rem;
}

.automation-container .sidebar-segment .sidebar-item .drop-down-menu {
    position: relative !important;
}

.automation-container .sidebar-segment .sidebar-item ul {
    background: #f8f8f8;
}
.automation-container .sidebar-segment .sidebar-item ul li:first-child {
    border-top: 1px solid #eee;
}

.automation-container .sidebar-segment .sidebar-item ul li a {
    padding: 0.55em 1.5em;
    font-size: 0.75rem;
    color: #707070;
}
.automation-container .sidebar-segment .sidebar-item ul li a:hover {
    color: #157be1;
    transition: .1s;
}
.automation-container .sidebar-segment .sidebar-item ul li a:hover span:last-child {
    transform: translateX(-2px);
    transition: .3s;
}
.automation-container .sidebar-segment .sidebar-item ul li a span:first-child {
    width: 15px;
    height: 15px;
}
@media screen and (max-width: 800px) {
    .automation-container .sidebar-segment  {
        position: absolute;
        margin: 0 -100%;
        height: 90vh;
        height: 90dvh;
        transition: .3s;
    }
    .automation-container .sidebar-segment.sidebar-moblie--show {
        margin: 0 0% !important;
        transition: .3s;
    }

    .automation-container .sidebar-segment .sidebar-logo {
        padding-top: 8vh;
        padding-top: 8dvh;
        box-shadow: unset !important;
    }
    .automation-container .sidebar-segment .sidebar-logo > img {
        display: none;
    }
}

/* - Automation-Container--Sidebar -E */



/* S- Automation-Container--headbar - */
.automation-container .headbar-segment {
    background: #edf0f3;
    box-shadow: 0 2px 1px #e0e0e0;
    height: 10vh;
    height: 10dvh;
    position: sticky;
    top: 0;
    z-index: 30;
}
.automation-container .headbar-segment .headbar-profile {
    position: relative;
    margin: 0 1.5em;
    min-width: 250px;
}
.automation-container .headbar-segment .headbar-profile_overview {
    padding: 1em 0;
    font-size: 0.78rem;
    color: #6c757d;
    font-weight: bolder;
    position: relative;
}
.automation-container .headbar-segment .headbar-profile_overview::after {
    content: attr(data-count);
    display: flex;
    justify-content: center;
    line-height: 20px;
    font-weight: bolder;
    position: absolute;
    font-size: 0.65rem;
    background: #ebe0e2;
    color: #f30000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    left: -30px;
    opacity: 0.85;
    animation: icon_rotate_scale--mini 1s infinite;
}
.automation-container .headbar-segment .headbar-profile_overview[data-count = '']::after,
.automation-container .headbar-segment .headbar-profile_overview[data-count = '۰']::after,
.automation-container .headbar-segment .headbar-profile_overview[data-count = '0']::after {
    display: none !important;
}
.automation-container .headbar-segment .headbar-profile_overview img {
    opacity: 0.9;
}
.automation-container .headbar-segment .headbar-profile_overview > span {
    font-size: 0.7rem;
}
.automation-container .headbar-segment .headbar-profile_todo {
    position: absolute !important;
    top: 100%;
    max-height: 500px;
}
.automation-container .headbar-segment .headbar-profile_todo .loader {
    transform: scale(0.8);
}
.automation-container .headbar-segment .headbar-profile_todo ul {
    background: #fff;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    height: fit-content;
}
.automation-container .headbar-segment .headbar-profile_todo.drop-down-menu--show ul {
    box-shadow: 0 1px 3px #dae1ea;
    margin-top: 4px;
}
.automation-container .headbar-segment .headbar-profile_todo ul li {
    border-right: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
    align-items: flex-start;
    padding: 0.75em;
    font-size: 0.7rem;
    color: #303030;
    border-bottom: 1px solid #eee;
}
.automation-container .headbar-segment .headbar-profile_todo ul li:first-child {
    border: 1px solid #b3b3b3  !important;
    padding: 0 !important;
}
.automation-container .headbar-segment .headbar-profile_todo ul li:last-child {
    padding: 0 !important;
    gap: 0 !important;
    align-items: flex-start !important;
    border: none !important;
}
.automation-container .headbar-segment .headbar-profile_todo ul li.todo-empty {
    justify-content: center;
    font-size: 0.7rem;
    color: #5b5b5b;
    background: #f8f8f8;
}
.automation-container .headbar-segment .headbar-profile_todo li h3 {
    flex-grow: 1;
    text-align: center;
    background: #e0e0e0;
    color: #646464;
    padding: 0.4em;
    font-size: 0.85rem;
}
.automation-container .headbar-segment .headbar-profile_todo li input[type='checkbox'] {
    width: 14px;
    height: 14px;
    accent-color: #fff;
    cursor: pointer;
}
.automation-container .headbar-segment .headbar-profile_todo li p {
    text-align: justify;
    flex-grow: 1;
}
.automation-container .headbar-segment .headbar-profile_todo li span:last-child {
    padding: .4em;
    cursor: pointer;
}
.automation-container .headbar-segment .headbar-profile_todo li span:last-child i.fa-badge-check {
    display: none;
}
.automation-container .headbar-segment .headbar-profile_todo li.todo-item--finished span:last-child i.fa-trash-can {
    display: none;
}
.automation-container .headbar-segment .headbar-profile_todo li.todo-item--finished span:last-child i.fa-badge-check {
    display: initial;
}


.automation-container .headbar-segment .headbar-profile_todo li.todo-item--finished span:last-child {
    font-size: 0.75rem;
    color: #047808;
}
.automation-container .headbar-segment .headbar-profile_todo li span:last-child:hover {
    color: #ff0505;
    background: #ffdede;
    border-radius: 3px;
    transition: .3s;
}
.automation-container .headbar-segment .headbar-profile_todo li.todo-item--finished span:last-child:hover {
    color: #047808;
    background: #d5ffcc;
    border-radius: 3px;
    transition: .3s;
}
.automation-container .headbar-segment .todo-item--finished p {
    text-decoration: line-through;
    color: #818181;
}
.automation-container .headbar-segment .todo-item--delay {
    background: #fff0f0;
    color: #d50101 !important;
}
.todo-item--finished span:last-child {
    color: #818181;
}
.automation-container .headbar-segment .headbar-profile_todo li input {
    color: #000;
    flex-grow: 1;
    height: 33px;
    font-size: 0.7rem;
    padding: 0.3em 0.7em;
    border: 1.5px solid #b3b3b3  ;
    font-weight: bolder;
}
.automation-container .headbar-segment .headbar-profile_todo li input::placeholder {
    color: #757575;
    font-weight: normal;
}
.automation-container .headbar-segment .headbar-profile_todo li button {
    height: 33px;
    background: #b3b3b3  ;
    color: #464646;
    padding: 0 0.9em;
    border: none;
    cursor: pointer;
}
.automation-container .headbar-segment .headbar-profile_todo li button:hover {
    color: #000000;
    background: #b0b0b0;
    transition: .3s;
}
.automation-container .headbar-segment .headbar-profile_logo {
    display: none;
    filter: grayscale(0.5);
}
.automation-container .headbar-segment .headbar-toolbox {
    gap: 2.5em;
    font-size: 1.1rem;
    flex-grow: 1;
    padding: 0 2em;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item > *:first-child {
    border-radius: 3px;
    font-size: 1.1rem;
    color: #fff;
    color: #232323; 
    padding: 0.25em;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item > *:first-child:hover {
    transform: scale(1.1);
    color: #232323; 
    background: #d8d8d8;
    transition: .3s;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--mobile {
    display: none;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert {
    position: relative;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert > span::after {
    content: attr(data-alerts);
    display: flex;
    justify-content: center;
    line-height: 20px;
    font-weight: bolder;
    position: absolute;
    font-size: 0.65rem;
    background: #0b79ac;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    bottom: 52%;
    right: 60%;
    opacity: 0.85;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert > span[data-alerts = '']::after,
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert > span[data-alerts = '۰']::after,
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert > span[data-alerts = '0']::after {
    display: none !important;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list {
    width: 250px;
    max-height: 300px;
    border-radius: 1px;
    box-shadow: 0 0 2px #c9ced2;
    height: fit-content;
    top: 50px;
    right: -110px;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list.drop-down-menu--show ul {
    padding: .3em;
    background: #d8d8d8;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list ul {
    height: fit-content;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list li {
    font-size: .7rem;
    text-align: justify;
    background: #fff;
    border-radius: 5px;
    padding: 0.75em;
    color: #303030;
    margin-bottom: .5em;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list li:last-child {
    margin-bottom: 0 !important;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list li > span {
    color: #717171;
}

.automation-container .headbar-segment .headbar-toolbox .toolbox-item--logout > *:first-child {
    color: #cf0033 !important;
}
.automation-container .headbar-segment .headbar-toolbox .toolbox-item--logout > *:first-child:hover {
    background: #ffc4c4 !important;
    transition: .3s;
}

@media screen and (max-width: 800px) {
    .automation-container .headbar-segment {
        justify-content: center !important;
    }
    .automation-container .headbar-segment .headbar-profile {
        justify-content: space-around !important;
        margin: 0.5em !important;
        width: 100%;
    }
    .automation-container .headbar-segment .headbar-profile_overview {
        padding: 0;
    }
    .automation-container .headbar-segment .headbar-profile_logo {
        display: flex;
    }

    .automation-container .headbar-segment .headbar-toolbox {
        width: 100%;
        position: fixed;
        bottom: 0;
        gap: 1.3em !important;
        justify-content: space-between !important;
        background: #383838;
        height: 10vh;
        height: 10dvh;
        padding: 0 1.2em !important;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item > *:first-child {
        color: #fff !important;
        font-size: 1.3rem !important;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item > *:first-child:hover {
        color: #313131 !important;
        transition: .3s;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item--logout > *:first-child:hover {
        color: #cf0033 !important;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item--mobile {
        display: block;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list {
        top: unset !important;
        bottom: 50px;
    }
    .automation-container .headbar-segment .headbar-toolbox .toolbox-item--alert .toolbox_alert-list.drop-down-menu--show ul {
        background: #222222;
    }
}

/* - Automation-Container--headbar -E */

/* ---------------------------- */
/* -- Automation-Container ---E */
/* ---------------------------- */


/* ---------------------------- */
/* S--- Automation-Page --- */
/* ---------------------------- */
.automation-page .automation-segment {
    display: flex;
    padding: 0 !important;
}
.automation-page .automation-segment > div {
    height: 100%;
}
.automation-page .automation-dashboard {
    /* border-end-end-radius: 12px;
    border-start-end-radius: 12px; */
    background: #ebeff2;
    position: relative;
    box-shadow: -1px 0 3px #3b3b3b;
    padding: 1.5em;
    z-index: 2;
}
.automation-page .automation-dashboard > div {
    margin-bottom: 2em;
}

.automation-page .automation-dashboard_overview > .automation_overview_card {
    display: block;
    background: #fff;
    padding: 0.7em;
    border-radius: 3px;
    min-width: 230px;
    box-shadow: 0 0 3px #dbdbdb;
    font-size: 0.85rem;
}
.automation-page .automation-dashboard_overview > .automation_overview_card:hover {
    box-shadow: 0 0 5px #505050;
    transition: .2s;
}

.automation-page .automation-dashboard_overview > .automation_overview_card div:first-child > span {
    width: 3.5em;
    height: 3.3em;
    border-radius: 2px;
    color: #fff;
    font-size: 1rem;
}
.automation-page .automation-dashboard_overview > .automation_overview_card div:first-child p span:first-child {
    font-weight: bolder;
    font-size: 1.3rem;
    color: #fff;
}
.automation-page .automation-dashboard_overview > .automation_overview_card div:first-child p span:last-child {
    font-size: 0.65rem;
    color: #d3d3d3;
    font-weight: bolder;
}

.automation-page .automation-dashboard_overview > .automation_overview_card div:last-child h3 {
    font-size: 0.75rem;
    padding: 0.8em 0.5em 0.3em;
    color: #e3e3e3;
    font-weight: normal;
}

.automation-page .automation-dashboard_overview .automation_overview_card--payment {
    background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%,rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%),linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%,rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%),linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%,rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%),linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%,rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%),linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%,rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%),linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%,rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%),linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%,rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%),linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%,rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%),linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%,rgba(210, 210, 210, 0.04) 5%, rgba(210, 210, 210, 0.04) 100%),linear-gradient(90deg, rgb(26, 118, 64),rgb(32, 207, 121),rgb(78, 196, 128));
}
.automation-page .automation-dashboard_overview .automation_overview_card--request {
    background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%,rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%),linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%,rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%),linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%,rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%),linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%,rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%),linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%,rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%),linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%,rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%),linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%,rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%),linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%,rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%),linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%,rgba(210, 210, 210, 0.04) 5%, rgba(210, 210, 210, 0.04) 100%),linear-gradient(90deg, rgb(26,92,118),rgb(32,183,207),rgb(78,159,196));
}
.automation-page .automation-dashboard_overview .automation_overview_card--approval {
    background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%,rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%),linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%,rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%),linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%,rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%),linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%,rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%),linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%,rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%),linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%,rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%),linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%,rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%),linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%,rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%),linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%,rgba(210, 210, 210, 0.04) 5%, rgba(210, 210, 210, 0.04) 100%),linear-gradient(90deg, rgb(111,118,26),rgb(176,207,32),rgb(169,196,78));
}


.automation-page .automation-dashboard_info {
    background: #fff;
    font-size: 0.85rem;
    border-radius: 3px;
    box-shadow: 0 0 2px #d1d1d1;
}
.automation-page .automation-dashboard_info .automation_info_item {
    padding: 0.8em;
    border-inline-end: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}
.automation-page .automation-dashboard_info .automation_info_item:last-child {
    border-inline-end: none;
}

.automation-page .automation-dashboard_info .automation_info_item > span {
    color: #b66dff;
}
.automation-page .automation-dashboard_info .automation_info_item > div p:first-child {
    color: #858585ee;
    font-size: 0.9em;
    padding-bottom: 0.4em;
}
.automation-page .automation-dashboard_info .automation_info_item > div p:last-child {
    font-weight: bolder;
}



.automation-page .automation-dashboard_transaction-chart {
    background: #fff;
    padding: 0.7em;
    font-size: 0.8rem;
}

.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction {
    flex-grow: 12;
    width: max(65%, 200px);
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title {
    padding-bottom: 1em;
    font-size: 0.8rem;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title h3 {
    color: #242424;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child {
    border: 1px solid #9b9b9b;
    border-radius: 4px;
    font-size: .65rem;
    color: #6c6c6c;
    box-shadow: 0 0 1px #cdcdcd;
    position: relative;
    min-width: 85px;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child:hover {
    background: #eee;
    transition: .2s;
}

.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child p {
    padding: 0.3em 0.7em;
    
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child .drop-down-menu ul  {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child .drop-down-menu ul li  {
    background: #dfdfdf;
    padding: 0.3em;
    text-align: center;
    cursor: pointer;
    border: 1px solid #d3d1d1;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child .drop-down-menu ul li:first-child  {
    margin-top: 0.1em;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_transaction .automation_chart_title > div:last-child .drop-down-menu ul li:hover {
    background: #eee;
    transition: .2s;
}



.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_balance {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background: #e5e5e5;
    padding: 0.8em;
    border-radius: 5px;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_balance .automation_chart_title {
    width: 100%;
    color: #176433;
    font-size: 0.8rem;
    margin-bottom: 1em;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_balance .automation_chart_title p:first-child {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 5px;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_balance .automation_chart_title p:last-child {
    font-weight: bolder;
    color: #2e2e2e;
}
.automation-page .automation-dashboard_transaction-chart .automation_transactoin-chart_balance .automation_chart_container {
    border-radius: 5px;
    overflow: hidden;
    width: 200px;
    height: 150px;
}


.automation-page .automation-dashboard_payment {
    background: #fff;
    padding: 0.8em 0.8em;
    font-size: 0.8rem;
}
.automation-page .automation-dashboard_payment > h2 {
    font-size: 0.95rem;
    padding-bottom: 1em;
    color: #242424;
}

.automation-page .automation-dashboard_payment > table tr {
    border-bottom: 1px solid #ebedf2;
    color: #222222;
    font-size: 0.75rem;
}
.automation-page .automation-dashboard_payment > table tbody tr:hover {
    background: #fafafa;
    color: #000000;

    transition: .2s;
}
.automation-page .automation-dashboard_payment > table tbody tr:last-child {
    border-bottom: none;
}
.automation-page .automation-dashboard_payment > table th,
.automation-page .automation-dashboard_payment > table td {
    padding: 1em 0.8em;
}
.automation-page .automation-dashboard_payment > table th {
    color: #9f9f9f;
    font-size: 0.7rem;
    background: #eee;
}

.automation-page .automation-dashboard_payment > table td.state {
    padding: 0.5em;
}
.automation-page .automation-dashboard_payment > table td.state span {
    border-radius: 3px;
    width: 85%;
    margin: 0 auto;
    padding: 0.4em;
    font-size: 0.65rem;
}
.automation-page .automation-dashboard_payment > table td.state span.finished {
    border: 1px solid #00d25b;
    color: #00a748;
    background: #e6ffec;
}
.automation-page .automation-dashboard_payment > table td.state span.inprogress {
    border: 1px solid #d2c200;
    color: #b17200;
    background: #fff9e6;
}
.automation-page .automation-dashboard_payment > table td.state span.canceled {
    border: 1px solid #d20000;
    color: #a70000;
    background: #ffe6e6;
}

/* ---------------------------- */
/* ----- Automation-Page -----E */
/* ---------------------------- */



/* ---------------------------- */
/* S----- Order-Container ----- */
/* ---------------------------- */
/* .base-container.order-page {
    display: block;
} */
.order-page .automation-segment {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1em;
}

.order-page .order-header {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 4px #cbcbcb;
    overflow: hidden;
    padding: 0.3em;
    min-height: fit-content;
}
.order-page .order-header > span {
    width: 1px;
    background: #e7e7e7;
    border-radius: 5px;
}
.order-page .order-header .header__item {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.order-page .order-header .header__item > .item__title {
    font-size: 0.6rem;
    color: #999999;
    padding-block: 0.3em 0.8em;
    align-self: start;
    padding-inline-start: 0.5em;
}
.order-page .order-header .header__item > .item__body {
    padding-bottom: 0.3em;
}

.order-page .order-header .header__item > .item__body > span,
.order-page .order-header .header__item > .item__body > p {
    font-size: 0.85rem;
    color: #363636;
    font-weight: bold;
}
.order-page .order-header .header__item.order--no {
    flex-grow: 1;
}
.order-page .order-header .header__item.order--no p {
    padding: 0.5em;
    font-weight: bold;
    background: #181d2a;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    height: 100%;
    align-self: start;
    width: 85%;
}
.order-page .order-header .header__item .item__body {
    border-radius: 3px;
    outline-color: #d9d9d9;
    padding-inline: 0.7em 1.5em;
    padding-bottom: 0.2em;
}
.order-page .order-header .header__item.order--s-date .item__body {
    padding-inline: 0.7em 1.5em;
    /* border: 1px solid #d9d9d9; */
    outline-color: #d9d9d9;
    border-radius: 3px;
    box-shadow: 0 0 2px #fbfbfb;
    cursor: pointer;
    position: relative;
    width: fit-content;
    padding-bottom: 0em;
    margin-bottom: 0.2em;
}
.order-page .order-header .header__item.order--s-date .item__body span:first-child  {
    padding-inline-end: 0.3em;
    color: #414142;
}
.order-page .order-header .header__item.order--s-date .item__body input,
.order-page .order-header .header__item.order--s-date .item__body select {
    min-width: 8px;
    field-sizing: content;
    height: 24px;
    font-size: 0.75rem;
    text-align: center;
    font-weight: bold;
    border: none;
    color: #414142;
    cursor: pointer;
    background: unset;
}
.order-page .order-header .header__item.order--s-date .item__body select {
    appearance: none;
    -webkit-appearance: none;
}
.order-page .order-header .header__item.order--s-date .item__body span:last-child {
    display: none;
    position: absolute;
    left: 3px;
    top: 3px;
    font-size: 0.7rem;
    color: #585858;
}
.order-page .order-header .header__item.order--s-date .item__body span:last-child i:last-child {
    display: none;
}


.order-page .order-header .header__item.order--s-date .item__body.edit,
.order-page .order-header .header__item.order--s-date .item__body.edit input,
.order-page .order-header .header__item.order--s-date .item__body.edit input {
    cursor: auto;
}
.order-page .order-header .header__item.order--s-date .item__body:hover,
.order-page .order-header .header__item.order--sales-user .item__body:hover,
.order-page .order-header .header__item.order--status .item__body:hover {
    outline: 1px solid #d9d9d9;
    box-shadow: 0 0 2px #d1d1d1;
    transition: 0.3s;
}
.order-page .order-header .header__item.order--s-date .item__body:hover input,
.order-page .order-header .header__item.order--s-date .item__body:hover select {
    color: #141414;
    transition: 0.3s;
}
.order-page .order-header .header__item.order--s-date .item__body:hover span:last-child {
    display: flex;
}

.order-page .order-header .header__item.order--s-date .item__body.edit span:last-child i:first-child {
    display: none;
}
.order-page .order-header .header__item.order--s-date .item__body.edit span:last-child i:last-child {
    display: flex;
}

.order-page .order-header .header__item.order--l-date .item__title {
    width: 100%;
}

@media screen and (max-width: 900px) {
    .order-page .order-header .header__item.order--no {
        box-shadow: unset;
        flex-basis: 100%;

    }
    .order-page .order-header .header__item.order--no p {
        width: 100%;
    }
    .order-page .order-header > span {
        display: none;
    }
    
    .order-page .order-header .header__item {
        box-shadow: 0 0 3px #dfdfdf;
        border-radius: 5px;
        padding-inline: 0.5em;
    }
    .order-page .order-header .header__item .item__title,
    .order-page .order-header .header__item .item__title > p {
        align-self: center;
        width: 100%;
        text-align: center;
    }
    .order-page .order-header .header__item.order--status {
        flex-basis: 100%;
    }
}



.order-page .order-body {
    min-height: 100px;
}

.order-page .order-info {
    background: #f6f7f9;
    padding: 0.3em;
    border-radius: 5px;
    box-shadow: 0 0 4px #cbcbcb;
    flex-basis: calc(30% - 1em);
}
.order-page .order-info .info__header {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 0.7em;
    padding: 0.4em;
}
.order-page .order-info .info__header select {
    appearance: none;
    -webkit-appearance: none;
    field-sizing: content;
    background: none;
    border: none;
    font-weight: bold;
    color: #0a0b0f;
    font-size: 0.85rem;
    padding-inline: 0.3em;
}
.order-page .order-info .info__header select option {
    font-size: smaller;
}
.order-page .order-info .info__header > p {
    font-weight: bold;
    color: #878787;
    font-size: 0.8rem;
}
.order-page .order-info .info__header > p:hover {
    color: #04165d;
    transition: 0.3s;
}
.order-page .order-info .info__header > p span:last-child i {
    display: none;
}
.order-page .order-info .info__header > p.edit span:last-child i:first-child {
    display: flex;
}
.order-page .order-info .info__header > p.confirm span:last-child i:last-child {
    display: flex;
}

.order-page .order-info .info__body {
    padding-top: 0.7em;
}
.order-page .order-info .info__body > div {
    padding-inline: 0.2em;
}
.order-page .order-info .order__customer .customer__group {
    padding: 0.5em;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 0 3px #cbcbcb;
    margin-bottom: 0.7em;
}
.order-page .order-info .order__customer .customer__group h4 {
    font-size: 0.75rem;
    font-weight: normal;
    color: #737373;
}
.order-page .order-info .order__customer .customer__group h4 span:last-child {
    transition: 0.3s;
}
.order-page .order-info .order__customer .customer__group h4 span:last-child.rotate {
    transform: rotate(180deg);
    transition: 0.5s;
}

.order-page .order-info .order__customer .customer__group > div {
    padding-inline-start: 0.5em;
    position: relative;
}

.order-page .order-info .order__customer .customer__field {
    padding-top: 0.5em;
    font-size: 0.8rem;
    
    border: 1px solid #eee;
    padding: 0.3em 0.5em;
    border-radius: 3px;
    background: #fbfbfb;
}
.order-page .order-info .order__customer .customer__field:first-child {
    margin-top: 0.8em;
}
.order-page .order-info .order__customer .customer__field > h5 {
    color: #6f6f6f;
}
/* .order-page .order-info .order__customer .customer__field > h5 span:last-child {
    display: none;
} */
.order-page .order-info .order__customer .customer__field input,
.order-page .order-info .order__customer .customer__field select {
    border: none;
    background: none;
    field-sizing: content;
    text-align: center;
    /* min-width: 50px; */
    padding: 0.1em;
    pointer-events: none;
    font-size: 0.75rem;
    
}
.order-page .order-info .order__customer .customer__field select {
    appearance: none;
    -webkit-appearance: none;
}
.order-page .order-info .order__customer .customer__field input::placeholder {
    color: #d3d3d3;
    font-size: 0.7rem;
}

.order-page .order-info .order__customer.edit .customer__field {
    background: unset;
}
.order-page .order-info .order__customer.edit .customer__field input,
.order-page .order-info .order__customer.edit .customer__field select {
    pointer-events: auto;
    flex-grow: 1;
}
.order-page .order-info .order__customer.edit .customer__field input {
    border-bottom: 1px dotted #797979;
}

.order-page .order-info .order__customer .customer__field.full {
    flex-basis: 100%;
}
.order-page .order-info .order__customer .customer__field.half {
    flex-basis: calc(50% - 0.5em);
}




.order-page .order-factor {
    padding: 0.7em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 4px #cbcbcb;
    flex-basis: 70%;
}

.order-page .order-factor .factor__header {
    border-bottom: 1px solid #e3e5ea;
    padding-bottom: 0.7em;
}
.order-page .order-factor .factor__header .factor__header__info__item {
    padding: 0.7em 1em;
    border-radius: 5px;
    font-size: 0.75rem;
    
    background: #e8eaef;
    color: #4e5157;
}

.order-page .order-factor .factor__header .factor__header__info__item.pannel--select {
    color: #fff;
    font-weight: bold;
    padding: 0;
    min-width: 100px;
}
.order-page .order-factor .factor__header .factor__header__info__item.pannel--select.items {
    background: #e74711;
    box-shadow: 0 0 1px #d54c1e;
    outline: 1px solid #e74711;
}
.order-page .order-factor .factor__header .factor__header__info__item.pannel--select.items:hover {
    background: #fff;
    color: #e74711;
    transition: 0.3s;
}
.order-page .order-factor .factor__header .factor__header__info__item.pannel--select.account {
    background: #758cfd;
    box-shadow: 0 0 1px #374fc9;
    outline: 1px solid #758cfd;
}
.order-page .order-factor .factor__header .factor__header__info__item.pannel--select.account:hover {
    background: #fff;
    color: #758cfd;
    transition: 0.3s;
}
.order-page .order-factor .factor__header .factor__header__info__item.pannel--select select {
    appearance: none;
    -webkit-appearance: none;
    field-sizing: content;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 0.7em 1em;
}

.order-page .order-factor .factor__header .factor__header__info__item.pannel--select select option {
    color: #333;
    text-align: start;
    font-size: smaller;
    font-weight: bold;
}
.order-page .order-factor .factor__header .factor__header__action button {
    background: unset;
    border: none;
    padding: 0.3em 0.65em;
    color: #5e5e5e;
    border-radius: 3px;
    font-size: 0.95rem;
}
.order-page .order-factor .factor__header .factor__header__action button:hover {
    filter: drop-shadow(0 0 2px #eee);
    transition: 0.3s;
}
.order-page .order-factor .factor__header .factor__header__action button.print:hover {
    color: #3e59cd;
}
.order-page .order-factor .factor__header .factor__header__action button.build:hover {
    color: #c83ecd;
}
.order-page .order-factor .factor__header .factor__header__action button.add:hover {
    color: #3ecd62;
}


@media screen and (max-width: 1000px) {
    .order-page .automation-segment {
        overflow-y: scroll;
        /* flex-wrap: wrap; */
        scrollbar-width: none;
    }
    .order-page .automation-segment::-webkit-scrollbar  {
        display: none;
    }
    .order-page .order-body {
        flex-wrap: wrap;
    }

    .order-page .order-info,
    .order-page .order-factor {
        flex-basis: 100%
    }
}


@media screen and (max-width: 500px) {
    .order-page .order-factor .factor__header .factor__header__info__item.value,
    .order-page .order-factor .factor__header .factor__header__info__item.count {
        display: none;
    }
}



.order-page .order-factor .factor__items .factor__item {
    border: 1px dotted #a6a7ac;
    padding-block: 1em;
    padding-inline: 0.5em;
    border-radius: 3px;
    
    margin-bottom: 0.5em;
    background: #f7f7f7;
}
.order-page .order-factor .factor__items .factor__item:hover {
    background: #f9f9f9;
    box-shadow: 0 0 3px #c0c0c0;
    transition: 0.3s;
}

.order-page .order-factor .factor__items .factor__item .item__header {
    padding-bottom: 1em;
}
.order-page .order-factor .factor__items .factor__item .item__header .item__header__title p:first-child {
    font-weight: bold;
    padding: 0.2em 0.5em;
    border-radius: 2px;
    
    background: #f3f3f3;
    box-shadow: 0 0 2px #8b8b8b;
    color: #a9a9a9;
}
.order-page .order-factor .factor__items .factor__item[data-category="anti-theft"] .item__header .item__header__title p:first-child {
    background: #dcffec;
    box-shadow: 0 0 2px #7dc7a1;
    color: #196d0b;
}
.order-page .order-factor .factor__items .factor__item .item__header .item__header__title p:first-child span:first-child{
    font-size: 1.2rem;
}
.order-page .order-factor .factor__items .factor__item .item__header .item__header__title p:first-child span:last-child{
    font-size: 0.75rem;
}

.order-page .order-factor .factor__items .factor__item .item__header .item__header__title p:last-child {
    color: #24282d;
    font-size: 0.8rem;
    word-spacing: -0.5px;
}
.order-page .order-factor .factor__items .factor__item .item__header .item__header__title p:last-child span:last-child {
    font-weight: bold;
    font-size: 0.7rem;
    color: #c1c1c1;
}

.order-page .order-factor .factor__items .factor__item .item__header .item__header__action button {
    cursor: pointer;
    background: unset;
    border: none;
    color: #8b8b8b;
    border-radius: 3px;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.1em 0.5em;
}
.order-page .order-factor .factor__items .factor__item .item__header .item__header__action button:hover {
    background: #f7f7f7;
    color: #181818;
    transition: 0.3s;
    box-shadow: 0 0 3px #646464;
}



.order-page .order-factor .factor__items .factor__item .item__footer {
    padding-top: 1em;
}
.order-page .order-factor .factor__items .factor__item .item__footer .item__footer__quick p {
    font-size: 0.7rem;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
    background: #ffffff;
    color: #5c5c5c;
    padding: 0.3em;
    min-width: 75px;
    box-shadow: 0 0 2px #d3d3d3;
}
.order-page .order-factor .factor__items .factor__item .item__footer .item__footer__quick p.count {
    background: #23526f;
    color: #fff;
    border: 1px solid #133958;
}
.order-page .order-factor .factor__items .factor__item .item__footer .item__footer__price p:first-child {
    color: #8f8f8f;
    font-weight: bold;
    font-size: 0.7rem;
    gap: 0.3em;
}
.order-page .order-factor .factor__items .factor__item .item__footer .item__footer__price p:last-child {
    color: #465cb3;
    font-weight: bold;
    font-size: 0.9rem;
}


.order-page .order-factor .factor__items .factor__item .item__body {
    font-size: 0.8rem;
    padding-top: 15px;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step {
    position: relative;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__bar {
    width: 100%;
    height: 7px;
    background: #e5e5e5;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__bar {
    background: #0e7de2;
    transition: 0.5s;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step:first-child  .progress__step__bar {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step:last-child .progress__step__bar {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info {
    padding-inline: 0.2em;
    padding-bottom: 1.5em;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__date {
    display: none;
    position: absolute;
    top: -20px;
    inset-inline-end: -4px;
    font-size: 0.7rem;
    font-weight: bold;
    color: #818181;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__info > .info__date {
    display: flex;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content {
    margin-top: 0.7em;
    background: #efefef;
    width: fit-content;
    padding: 0.6em;
    border-radius: 3px;
    box-shadow: 0 0 2px #9fa7ad;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__info > .info__content {
    background: #e1edf7;
    box-shadow: 0 0 2px #5592c1;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.on .progress__step__info > .info__content {
    background: #feffc7;
    box-shadow: 0 0 2px #9f9b1d;
}
    
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content h5 {
    color: #505050;
    padding-bottom: 0.5em;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content h5 span:first-child {
    background: #d7d7d7;
    border-radius: 50%;
    font-size: 0.5rem;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__info > .info__content h5 {
    color: #0a579d;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__info > .info__content h5 span:first-child {
    background: #abcef3;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.on .progress__step__info > .info__content h5 {
    color: #8d8a0c;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.on .progress__step__info > .info__content h5 span:first-child {
    background: #d9d536;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content h6 {
    font-weight: normal;
    font-size: 0.6rem;
    padding-bottom: 0.5em;
    color: #545e66;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content p {
    font-size: 0.7rem;
    word-spacing: -1px;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content p:first-of-type {
    padding-bottom: 0.5em;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content p.operator {
    color: #7e1caf;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content p.supervisor {
    color: #0a5a2b;
    display: none;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step .progress__step__info > .info__content p.state {
    display: none;
    color: #938f00;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.on .progress__step__info > .info__content p.state {
    display: flex;
}
.order-page .order-factor .factor__items .item__body .body__progress .progress__step.done .progress__step__info > .info__content p.supervisor {
    display: flex;
}

/* ---------------------------- */
/* ----- Order-Container -----E */
/* ---------------------------- */






/* ---------------------------- */
/* S----- Product-Page ----- */
/* ---------------------------- */
/* .base-container.product-page {
    display: block;
} */
.product-page .automation-segment {
    display: block;
    position: relative;
}

.product-page .automation-segment > div {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px #d6d6d6;
    overflow: hidden;
    padding: 1em;
    width: 100%;
    height: 100%;
}


.product-page .product-section.view input,
.product-page .product-section.view textarea,
.product-page .product-section.view select {
    pointer-events: none;
}

.product-page .product-section .product-action {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 1em;
    box-shadow: 0 2px 4px -4px #b1b1b1;
}

.product-page .product-section .product-action > h2 {
    color: #206dae;
    font-size: 1rem;
    flex-grow: 1;
}
@media screen and (max-width: 500px) {
.product-page .product-section .product-action > h2 {
    flex-grow: unset;
}
}
.product-page .product-section .product-action > h2 input {
    min-width: 100px;
    font-weight: bold;
    font-size: 1rem;
    field-sizing: content;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    height: 35px;
    border-radius: 2px;
    padding-inline: 0.7em;
    color: #206dae;
    background: unset;
    position: relative;
    z-index: 1;
}
.product-page .product-section.view .product-action > h2 input {
    border: none;
    width: unset;
    min-width: unset;
    padding-inline: 0;
    pointer-events: none;
}
.product-page .product-section .product-action > h2 input::placeholder {
    font-size: 0.8rem;
    font-weight: normal;
}

.product-page .product-section .product-action > h2 span:last-child {
    font-size: smaller;
    color: #9eb2c3;
    letter-spacing: 0.5px;
}

.product-page .product-section .product-action > div:last-child button {
    padding: 0.8em;
    font-size: 0.75rem;
    border-radius: 5px;
    word-spacing: -1px;
    cursor: pointer;
    min-width: 100px;
    height: 100%;
    transition: 0.2s;
    display: none;
}
.product-page .product-section .product-action > div:last-child button.edit,
.product-page .product-section .product-action > div:last-child button.accept {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.product-page .product-section .product-action > div:last-child button.edit:hover,
.product-page .product-section .product-action > div:last-child button.accept:hover {
    border: 1px solid #061840;
    background: #061840;
    min-width: 150px;
    transition: 0.3s;
}
.product-page .product-section .product-action > div:last-child button.decline {
    border: 1px solid #edeff0;
    background: #fff;
    color: #666b72;
}
.product-page  .product-section .product-action > div:last-child button.decline:hover {
    border: 1px solid #ffc0c0;
    background: #fff6f6;
    color: #be0000;
    transition: 0.3s;
}

.product-page .product-section.view .product-action > div:last-child button.product_action--edit {
    display: none;
}
.product-page .product-section.view .product-action > div:last-child button.product_action--view {
    display: flex;
}
.product-page .product-section.edit .product-action > div:last-child button.product_action--edit {
    display: flex;
}
.product-page .product-section.edit .product-action > div:last-child button.product_action--view {
    display: none;
}


.product-page .product-section .product-info .info__devider {
    padding-block: 1em;
}
.product-page .product-section .product-info .info__devider:first-child {
    flex-basis: 50%;
}
.product-page .product-section .product-info .info__devider:last-child {
    flex-basis: 15%;
}
.product-page .product-section .product-info .info__section {
    background: #f9f9f9;
    padding: 0.7em;
    border-radius: 6px;
    box-shadow: 0 0 1px #dddddd;
    border: 1px solid #ebebeb;
    flex-basis: calc(50% - 1em);
}
.product-page .product-section .product-info .info__section > h3 {
    color: #898989;
    font-size: 0.8rem;
    padding-bottom: 0.8em;
}
.product-page .product-section .product-info .info__section__item {
    min-width: 80px;
}
.product-page .product-section .product-info .info__section__item.full {
    flex-basis: 100%;
}
.product-page .product-section .product-info .info__section__item.half {
    flex-basis: calc(50% - 0.5em);
}
.product-page .product-section .product-info .info__section__item.third {
    flex-basis: 20%;
}
.product-page .product-section .product-info .info__section__item.fourth {
    flex-basis: 10%;
}
.product-page .product-section .product-info .info__section__item > h4 {
    color: #191f2f;
    font-weight: normal;
    font-size: 0.7rem;
    word-spacing: -1px;
    padding-bottom: 0.8em;
}
.product-page .product-section .product-info .info__section__item > .info__section__item__body {
    position: relative;
}

.product-page .product-section .product-info .info__section__item > .info__section__item__body input,
.product-page .product-section .product-info .info__section__item > .info__section__item__body select,
.product-page .product-section .product-info .info__section__item > .info__section__item__body textarea {
    width: 100%;
    padding: 0.3em 0.8em;
    background: #efefef;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #585858;
}
.product-page .product-section .product-info .info__section__item > .info__section__item__body select {
    font-size: 0.8rem;
    padding: 0.4em 0.9em;
}
.product-page .product-section .product-info .info__section__item > .info__section__item__body textarea {
    font-size: smaller;
    word-spacing: -1px;
}
.product-page .product-section .product-info .info__section__item > .info__section__item__body input::placeholder {
    color: #cccccc;
}
.product-page .product-section .product-info .info__section__item.bold > .info__section__item__body input {
    font-weight: bold;
    text-align: center;
    padding-inline-start: 2em;
}



.product-page .product-section .product-info .info__section__item.category > .info__section__item__body {
    background: #efefef;
    padding: 0.1em;
    border-radius: 6px;
    gap: 0.2em;
    border: 1px solid #d3d3d3;
}
.product-page .product-section .product-info .info__section__item.category > .info__section__item__body > p {
    font-size: 0.7rem;
    padding: 0.4em;
    border-radius: 4px;
    color: #747474;
    cursor: pointer;
    text-align: center;
}
.product-page .product-section .product-info .info__section__item.category > .info__section__item__body > p:hover {
    background: #cecece;
    transition: 0.2s;
}
.product-page .product-section .product-info .info__section__item.category > .info__section__item__body > p.selected {
    background: #ffffff;
    color: #030303;
    padding-inline: 1.2em;
    box-shadow: 0 0 3px #898989;
    transition: 0.3s;
}
.product-page .product-section.view .product-info .info__section__item.category > .info__section__item__body {
    pointer-events: none;
}


.product-page .product-section .product-info .info__section.gallery .info__main__image {
    background: #efefef;
    border-radius: 5px;
    position: relative;
}
.product-page .product-section.edit .product-info .info__section.gallery .info__main__image:hover {
    background: #e6e6e6;
    transition: 0.3s;
}
.product-page .product-section .product-info .info__section.gallery .info__main__image img {
    /* width: 100%; */
    /* height: auto; */
}
.product-page .product-section .product-info .info__section.gallery .info__rest__image > div {
    flex-basis: calc(25% - 0.25em);
    background: #f3f3f3;
    border-radius: 7px;
    padding: 0.3em;
    position: relative;
}
.product-page .product-section .product-info .info__section.gallery .info__rest__image > div:last-child {
    border: 2px dashed #d9d9d9;
    color: #a3a3a3;
    background: #fff;
}
.product-page .product-section.edit .product-info .info__section.gallery .info__rest__image > div:hover > * {
    transform: scale(1.1);
    transition: 0.5s;
}

/* .product-page .product-section .product-info .info__section.gallery img {
    width: 100%;
} */
.product-page .product-section .product-info .info__section.gallery .info__rest__image img {
    width: 100%;
    min-width: 35px;
}

.product-page .product-section .product-info .info__section.gallery input[type="file"] {
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: cell;
    opacity: 0;

    display: none;
}

/* ---------------------------- */
/* ----- Product-Page -----E */
/* ---------------------------- */






/* ---------------------------- */
/* S----- Products-Page ----- */
/* ---------------------------- */
/* .base-container.products-page {
    display: block;
} */
.products-page .automation-segment {
    display: block;
    position: relative;
    padding: 1.5em;
}

.products-page .automation-segment > div {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px #d6d6d6;
    overflow: hidden;
    padding: 1em;
    width: 100%;
    height: 100%;
}

.products-page .products-list h2 {
    font-size: 1rem;
    padding-bottom: 1em;
    color: #292929;
}
.products-page .products-list table {
    text-align: center;
    border-collapse: collapse;
    font-size: 0.8rem;
}
  
.products-page .products-list tr,
.products-page .products-list td {
    padding: 0.3em;
}
.products-page .products-list thead tr th {
    font-weight: normal;
    color: #fff;
    background: #000;
    padding: 0.7em 0.4em;
}
.products-page .products-list tbody tr {
    border-bottom: 1px dotted #c5c5c5;
}
.products-page .products-list tbody tr:hover {
    background: #f3f3f3;
    transition: .2s;
}
.products-page .products-list tbody td {
    padding: 0.9em 0.4em;
}
  
.products-page .products-list tbody td.name {
    cursor: pointer;
}
.products-page .products-list tbody td.action {
  cursor: pointer;
  padding: 0;
}
.products-page .products-list tbody td.action > a {
    height: 100%;
    padding: 0.9em 0.4em;
}
.products-page .products-list tbody td.action:hover {
    color: #1c4bc5;
    background: #eee;
    transition: 0.3s;
}

/* ---------------------------- */
/* ----- Products-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 */
/* ---------------------------- */