:root {
    --bg: #f5f5fc;
    --font: "Gilroy", sans-serif;
    --main-color: #3765e6;
    --base-color: #191b2a;
    --light-text: #a2a5b9;
    --soft-text: #64687e;
    --main-text: #40445c;
    --base-text: #282c3f;
    --white: #fff;
    --danger: #f56a6a;
    --warning: #f59e3a;
    --primary: #6a7bf5;
    --success: #57c781;
    --light: #5f728a;
}

/* -------------------------- Main -------------------------- */

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #575a6d;
    font-family: var(--font);
    background-color: var(--bg);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

body.noscroll {
    overflow: hidden;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

:active,
:focus {
    outline: 0;
}

button {
    background: transparent;
    border: none;
}

/* -------------------------- General Styling -------------------------- */
.cl-white {
    color: #fff;
}

.cl-black {
    color: #000;
}

.cl-main {
    color: var(--main-color);
}

.cl-soft {
    color: var(--soft-text);
}
.text-main {
    color: var(--main-text);
}
.text-base {
    color: var(--base-text);
}
.bg-white {
    color: #fff;
}

.text-success {
    color: var(--success);
}
.text-danger {
    color: var(--danger);
}
.text-warning {
    color: var(--warning);
}
.text-primary {
    color: var(--primary);
}
.text-light {
    color: var(--light);
}

.bg-black {
    color: #000;
}

.bg-main {
    color: var(--main-color);
}

.bg-soft {
    color: var(--soft-text);
}
/* Animation */
[data-ani="start"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
[data-ani="end"] {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
[data-ani-type="down"] {
    transform: translateY(-20px);
}
[data-ani-type="left"] {
    transform: translateX(-20px);
}
[data-ani-type="right"] {
    transform: translateX(20px);
}
[data-ani-type="up"] {
    transform: translateY(20px);
}
[data-ani="run"]:is([data-ani-type="down"], [data-ani-type="left"], [data-ani-type="right"], [data-ani-type="up"]) {
    transform: translate(0px, 0px);
    position: relative;
}
[data-ani="end"] {
    transform: none;
}

.container {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.br-4 {
    border-radius: 4px !important;
}

.br-6 {
    border-radius: 6px !important;
}

.br-12 {
    border-radius: 12px !important;
}

.br-30 {
    border-radius: 30px !important;
}

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

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

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.c-pointer {
    cursor: pointer;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-grid {
    display: -ms-grid !important;
    display: grid !important;
}

.grid-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-30-auto {
    grid-template-columns: 30% auto;
}

.grid-auto-30 {
    grid-template-columns: auto 30%;
}

.grid-auto-40 {
    grid-template-columns: auto 40%;
}

.grid-40-auto {
    grid-template-columns: 40% auto;
}

.grid-auto {
    -ms-grid-columns: auto !important;
    grid-template-columns: auto !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.grid-cg-0 {
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
}

.grid-cg-1 {
    -webkit-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
}

.grid-cg-2 {
    -webkit-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
}

.grid-cg-3 {
    -webkit-column-gap: 1rem !important;
    column-gap: 1rem !important;
}

.grid-rg-0 {
    row-gap: 0 !important;
}

.grid-rg-1 {
    row-gap: 0.25rem !important;
}

.grid-rg-2 {
    row-gap: 0.5rem !important;
}

.grid-rg-3 {
    row-gap: 1rem !important;
}

.grid-w100 {
    grid-column: 1 / -1;
}

.well {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.well [class^="ww"] {
    padding: 0 10px;
}

.well.form {
    margin: 0 -6px;
}

.well.form [class^="ww"] {
    padding: 0 6px;
}

.well .ww-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.well .ww-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.well .ww-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.well .ww-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
}

.well .ww-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.well .ww-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
}

.well .ww-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
}

.well .ww-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.well .ww-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
}

.well .ww-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}

.w-100 {
    width: 100% !important;
}

.miw-100 {
    min-width: 100% !important;
}

.maw-100 {
    max-width: 100% !important;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-100 {
    height: 100%;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.m-auto {
    margin: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.br0 {
    border-radius: 0 !important;
}

.br2 {
    border-radius: 2px !important;
}

.br5 {
    border-radius: 5px !important;
}

.br8 {
    border-radius: 8px !important;
}

.br10 {
    border-radius: 10px !important;
}

.br12 {
    border-radius: 12px !important;
}

.br15 {
    border-radius: 15px !important;
}

.br25 {
    border-radius: 25px !important;
}
.fs12 {
    font-size: 12px !important;
}
.fs13 {
    font-size: 13px !important;
}
.fs14 {
    font-size: 14px !important;
}
.fs15 {
    font-size: 15px !important;
}
.fs16 {
    font-size: 16px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs20 {
    font-size: 20px !important;
}

.butto,
.badge {
    color: #fff;
    border: none;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    padding: 8px 15px;
    text-decoration: none !important;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.4s;
    display: inline-block;
}

.butto:hover,
.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

[class*="butto-outline"],
[class*="badge-outline"] {
    padding: 7px 15px;
}

.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.butto-xxs,
.badge-xxs {
    padding: 2px 10px;
    font-size: 12px;
}

[class*="butto-outline"].butto-xxs,
[class*="badge-outline"].badge-xxs {
    padding: 1px 10px !important;
}

.butto-xs,
.badge-xs {
    padding: 3px 12px;
    font-size: 14px;
}

[class*="butto-outline"].butto-xs,
[class*="badge-outline"].badge-xs {
    padding: 2px 12px !important;
}

.butto-sm,
.badge-sm {
    padding: 6px 12px;
    font-size: 14px;
}

[class*="butto-outline"].butto-sm,
[class*="badge-outline"].badge-sm {
    padding: 5px 12px !important;
}

.butto-lg,
.badge-lg {
    padding: 10px 20px !important;
    font-size: 16px;
}

[class*="butto-outline"].butto-lg,
[class*="badge-outline"].badge-lg {
    padding: 9px 20px !important;
}

.butto-xlg,
.badge-xlg {
    padding: 15px 25px !important;
    font-size: 18px;
}

[class*="butto-outline"].butto-xlg,
[class*="badge-outline"].badge-xlg {
    padding: 14px 25px !important;
}

.butto-primary,
.badge-primary {
    color: #fff !important;
    background: var(--primary);
    font-weight: 500;
}
.border-primary {
    border-color: var(--primary) !important;
}
.badge-outline-primary,
.butto-outline-primary {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-primary:hover,
.butto-outline-primary:hover {
    color: #fff !important;
    background: var(--primary);
}

.butto-main,
.badge-main {
    color: #fff !important;
    background: var(--main-color);
    font-weight: 500;
}
.badge-outline-main,
.butto-outline-main {
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-main:hover,
.butto-outline-main:hover {
    color: #fff !important;
    background: var(--main-color);
}

.butto-success,
.badge-success {
    color: #fff !important;
    background: var(--success);
    font-weight: 500;
}
.border-success {
    border-color: var(--success) !important;
}
.badge-outline-success,
.butto-outline-success {
    color: var(--success) !important;
    border: 1px solid var(--success);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-success:hover,
.butto-outline-success:hover {
    color: #fff !important;
    background: var(--success);
}

.butto-warning,
.badge-warning {
    color: #fff !important;
    background: var(--warning);
    font-weight: 500;
}
.border-warning {
    border-color: var(--warning) !important;
}
.badge-outline-warning,
.butto-outline-warning {
    color: var(--warning) !important;
    border: 1px solid var(--warning);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-warning:hover,
.butto-outline-warning:hover {
    color: #fff !important;
    background: var(--warning);
}

.butto-danger,
.badge-danger {
    color: #fff !important;
    background: var(--danger) !important;
    font-weight: 500;
}
.border-danger {
    border-color: var(--danger) !important;
}
.badge-outline-danger,
.butto-outline-danger {
    color: var(--danger) !important;
    border: 1px solid var(--danger);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-danger:hover,
.butto-outline-danger:hover {
    color: #fff !important;
    background: var(--danger);
}

.butto-light,
.badge-light {
    color: var(--white);
    background: var(--light);
    font-weight: 500;
}

.badge-outline-light,
.butto-outline-light {
    color: var(--light) !important;
    border: 1px solid #95a1b1;
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-light:hover,
.butto-outline-light:hover {
    color: var(--white) !important;
    background: var(--light) !important;
    border-color: var(--light) !important;
}

.butto-base,
.badge-base {
    color: var(--white);
    background: var(--base-color);
}

.badge-outline-base,
.butto-outline-base {
    color: var(--base-color) !important;
    border: 1px solid var(--base-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-primary {
    background: #bfcaff;
    color: #1b3a76;
}

.alert-danger {
    background: #febdbe;
    color: #8f2630;
}

.alert-warning {
    background: #ffddb0;
    color: #72602e;
}

.alert-success {
    background: #acedc3;
    color: #155724;
}

.alert-light {
    background: #e7e9f3;
    color: #565b74;
}

.btnAnimated {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btnAnimated::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #ffffff10;
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
    z-index: -1;
}

.btnAnimated:hover:before {
    left: -20%;
}
.tabsArea .tabHead {
    padding: 5px;
    background: #ececf5;
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 2px !important;
}
.tabsArea .tabHead.soft {
    background: #f2f4f8;
}
.tabsArea .tabHead .item {
    border-radius: 12px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #63687b;
    margin-right: 5px;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabsArea .tabHead.small .item {
    padding: 7px 20px;
}
.tabsArea .tabHead .item i {
    font-size: 14px;
    margin-right: 5px;
}
.tabsArea .tabHead .item:last-child {
    margin-right: 0;
}
.tabsArea .tabHead .item.active {
    background: #fff !important;
    box-shadow: 0 3px 6px #00000008;
}
.tabsArea .tabHead .item:hover {
    background: #00000005;
}
.tabContent .tabitem {
    display: none;
}
.tabContent .tabitem.show {
    display: block;
}
.card {
    background: #fff;
    border-radius: 4px;
}

.card .card-header {
    color: var(--soft-main);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 25px;
    border-bottom: 1px solid var(--bg);
}

.card .card-header.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card .card-footer {
    color: var(--main-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid var(--bg);
}

.checkbox,
.radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[type="checkbox"],
[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background: #f8f9fc;
    border: 1px solid #e6e8ed;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 6px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

[type="checkbox"]:checked,
[type="radio"]:checked {
    position: relative;
    background: var(--main-color);
    border: transparent;
}

[type="checkbox"]:checked::before,
[type="radio"]:checked::before {
    content: "\eae3";
    font-family: eg;
    position: absolute;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.checkbox label,
.radio label {
    font-size: 16px;
    color: var(--soft-text);
    cursor: pointer;
}

.switch {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.switch > span {
    width: 34px;
    height: 20px;
    display: block;
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.switch > span::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: var(--main-color);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.switch > label {
    margin-left: 5px;
}

.switch.active > span {
    background: var(--main-color);
}

.switch.active > span::before {
    left: calc(100% - 17px);
    background: #fff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 11;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.modal .modal-content {
    position: relative;
    left: 50%;
    top: 50vh;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 750px;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    padding: 15px;
    padding-bottom: 75px;
}

.modal .modal-content.modal-md {
    max-width: 600px;
}

.modal .modal-content.modal-lg {
    max-width: 1100px;
}

.modal .modal-content .modalArea {
    background: #fff;
    border-radius: 12px;
    position: relative;
}

.modal .modal-content .modalArea .modal-close {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 18px;
    height: 34px;
    width: 34px;
    color: #fff;
    background: var(--main-color);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    overflow: auto;
    background-color: #00000090;
}

.modal.show .modal-content {
    top: 6vh;
    opacity: 1;
}

.modalHead h6 {
    font-size: 18px;
}

.modalHead {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg);
    color: var(--main-text-color);
    font-size: 16px;
    font-weight: 600;
}

.modalFoot {
    border-top: 1px solid var(--bg);
}

/* -------------------------- AllCodes ---------------------------*/

/* -- Side - Nav -- */
.wrap-side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--base-color);
    display: flex;
    flex-direction: column;
    z-index: 9;
}

.wrap-side .wrap-head {
    padding: 15px;
    border-bottom: 1px solid #ffffff10;
}

.wrap-side .wrap-head .logo {
    display: flex;
    align-items: center;
}

.wrap-side .wrap-head .logo img {
    display: block;
}

.wrap-side .wrap-head .logo .icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    transition: 0.2s;
}

.wrap-side .wrap-navbar {
    min-width: 250px;
    max-width: 250px;
    height: 100%;
    transition: 0.2s;
    transition-delay: 0s;
}
.wrap-side .wrap-navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wrap-side .wrap-navbar ul li a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    border-bottom: 1px solid #ffffff10;
    transition: 0.2s;
}

.wrap-side .wrap-navbar ul li a .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff10;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}

.wrap-side .wrap-navbar ul > li.active a .icon {
    background-color: var(--main-color);
}

.wrap-side .wrap-navbar ul li a .text {
    font-weight: 500;
    color: #fff;
    min-width: fit-content;
    display: block;
    transition: 0.2s;
    margin-right: auto;
    transition-delay: 0.2s;
}

.wrap-side .wrap-navbar ul li a:hover {
    background: #ffffff07;
}

.wrap-side .wrap-navbar ul li:last-child a {
    border: none;
}

.wrap-side li.hideShow {
    margin-top: auto;
}

.wrap-side li.hideShow .navShow {
    display: none;
}

body.hidemenu .wrap-side .wrap-head .logo .text {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0s;
    margin-left: -20px;
}

body.hidemenu .wrap-side .wrap-navbar ul li a .badge {
    display: none;
}

body.hidemenu .wrap-side .wrap-navbar ul li a .text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: 0s;
    transition-delay: 0s;
    margin-left: -20px;
    transition: 0s;
}

body.hidemenu .wrap-side .wrap-navbar {
    min-width: 70px;
    max-width: 70px;
    transition-delay: 0.2s;
}

body.hidemenu .wrap-side .wrap-head .logo .icon {
    min-width: 40px;
    max-width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
}

.wrap-side .wrap-head .logo .icon img {
    width: 100%;
    transition: 0.2s;
}

.wrap-side .wrap-head .logo .text {
    transition: 0.2s;
    transition-delay: 0.2s;
}

.wrap-side .wrap-navbar ul li ul.subDrop {
    display: none;
    background: #232532;
    height: fit-content;
}

.wrap-side .wrap-navbar ul li.drop > a::after {
    content: "\e997";
    font-family: "eg";
    font-size: 22px;
    color: #fff;
    transition: 0.2s;
}

.wrap-side .wrap-navbar ul li.drop.show > a::after {
    transform: rotate(90deg);
}

body.hidemenu .wrap-side .wrap-navbar ul li.drop > a::after {
    display: none;
}

.wrap-side .wrap-navbar ul li ul.subDrop a .icon {
    width: auto;
    min-width: auto;
    height: auto;
    font-size: 16px;
    color: #c6c8d3;
    background: transparent;
}

.wrap-side .wrap-navbar ul li ul.subDrop li > a {
    padding: 12px 20px;
    gap: 10px;
    border-right: 3px solid transparent;
}

.wrap-side .wrap-navbar ul li ul.subDrop a .text {
    font-size: 14px;
    font-weight: 500;
    color: #8d8f9b;
}

.wrap-side .wrap-navbar ul li ul.subDrop li > a.active {
    border-right: 3px solid var(--main-color);
}

.wrap-side .wrap-navbar ul li ul.subDrop li > a.active .text {
    color: #fff;
}

.wrap-side .wrap-navbar ul li ul.subDrop li > a.active::before {
    color: #fff;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop {
    position: absolute;
    left: 80px;
    top: 0;
    border-radius: 8px;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop a .text {
    opacity: 1;
    visibility: visible;
    position: relative;
    margin-left: 0;
    min-width: max-content;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop a {
    flex-direction: row;
    padding: 15px;
    padding-right: 25px;
    justify-content: flex-start;
}

.wrap-side .wrap-navbar ul li {
    position: relative;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop::before {
    content: "";
    position: absolute;
    right: 100%;
    display: block;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-right-color: #272937;
    top: 24px;
    margin-top: 0;
}

body.hidemenu .wrap-side .wrap-navbar > ul li:after {
    content: attr(data-menutip);
    font-size: 15px !important;
    font-weight: 400 !important;
    text-align: center;
    position: absolute;
    width: max-content;
    max-width: 239px;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: #232532d9;
    padding: 5px 15px;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    pointer-events: none;
}

body.hidemenu .wrap-side .wrap-navbar > ul li:hover:after {
    opacity: 1;
    visibility: visible;
    left: 75px;
    transition: 0.1s;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop {
    padding-top: 46px;
}

body.hidemenu .wrap-side .wrap-navbar ul li.show:after {
    opacity: 1;
    visibility: visible;
    left: 86px;
    text-transform: uppercase;
    font-weight: 600 !important;
    top: calc(50% - 7px);
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop li:first-child {
    border-top: 1px solid #ffffff10;
}

body.hidemenu .wrap-side .wrap-navbar ul li ul.subDrop li::after {
    display: none;
}

body.hidemenu .wrap-side .wrap-navbar ul li.show {
    background: #232532;
}

body.hidemenu .wrap-side .wrap-navbar ul li.transparent ul.subDrop {
    opacity: 0.15;
    transition: 0.2s;
}

body.hidemenu .wrap-side .wrap-navbar ul li.show.transparent:after {
    transition: 0s;
    background: transparent;
}

.wrap-view-head {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.wrap-view-head .wrap-view-title {
    position: relative;
}

.wrap-view-head .wrap-view-title h1 {
    font-size: 22px;
    color: var(--main-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wrap-view-head .wrap-view-action {
    margin-left: auto;
}

.wrap-view-head .wrap-view-action .nav-action .item .icon {
    border-color: #a2a5b93d;
    color: var(--light-text);
    transition: 0.2s;
}

.wrap-view-head .wrap-view-action .nav-action .item:hover .icon {
    background: #191b2a10;
}

.wrap-view-head .wrap-view-title i {
    font-size: 26px;
    color: var(--main-color);
}

.nav-action ul.list.user li a {
    gap: 8px;
    padding: 12px;
}

.nav-action ul.list.user li a .ico {
    color: var(--soft-text);
    font-size: 16px;
    display: flex;
    align-items: center;
}

.nav-action .item.show .icon {
    background: var(--main-color) !important;
    color: #fff !important;
}
.nav-action {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-action .icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff10;
    background: #ffffff05;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.wrap-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    transition: 0.2s;
    transition-delay: 0s;
}

body.hidemenu .wrap-container {
    max-width: 1800px;
    transition-delay: 0.2s;
}

.wrap-container .wrap-page-content {
    padding: 0 20px;
}

.nav-action ul.list {
    position: absolute;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 16px #0000000d;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-top: -10px;
    transition: 0.2s;
    border-radius: 8px;
    z-index: 9;
}

.nav-action ul.list.notify {
    width: 20rem;
}

.nav-action ul.list.user {
    width: 12rem;
}

.nav-action .item {
    position: relative;
}

.nav-action .item.show ul.list {
    opacity: 1;
    margin-top: 5px;
    pointer-events: all;
    visibility: visible;
}

.nav-action ul.list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
}

.nav-action ul.list.notify li a .ico {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--soft-text);
    border-radius: 7px;
    font-size: 17px;
}

.nav-action ul.list li {
    border-bottom: 1px solid var(--bg);
    transition: 0.2s;
}

.nav-action ul.list li:hover {
    background: #191b2a05;
}

.nav-action ul.list li:last-child {
    border: none;
}

.nav-action ul.list li a .text {
    font-size: 15px;
    color: var(--soft-text);
    font-weight: 500;
}

.nav-action ul.list li a .text .time {
    font-size: 12px;
    color: #aab1cb;
}
/* -- Side - Nav END -- */

/* -- Theme General -- */
.wbox {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
}

.wbox .wbox-head {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-bottom: 1px solid #34334c0a;
}

.wbox .wbox-head span {
    display: block;
    font-weight: 400;
    color: var(--soft-text);
    font-size: 14px;
}

.wbox .wbox-body {
    padding: 20px;
    color: var(--main-text);
}

.wbox .wbox-foot {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-top: 1px solid #34334c0a;
    display: flex;
    align-items: center;
    gap: 5px;
}
.wrap-inner-content {
    padding-top: 20px;
}

.dash-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.dash-header .pi-avatar {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: var(--soft-text);
    color: #fff;
    font-size: 23px;
}

.dash-header .pi-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
}

.dash-header .pi-avatar i {
    display: flex;
    width: 21px;
}

.dash-header .action {
    margin-left: auto;
}

.dash-header > .text p {
    color: var(--light-text);
}

.dash-header > .text h3 {
    display: block;
    color: var(--main-text);
    font-weight: 600;
    font-size: 1.25rem;
}

.dash-main-area {
    display: grid;
    grid-template-columns: 70% auto;
    margin-top: 25px;
    gap: 20px;
}

.dash-main-content {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    height: fit-content;
}

.statistics-main {
    background: #fff;
    border-radius: 4px;
}

.statistics-main .head {
    padding: 15px;
    font-weight: 600;
    color: var(--main-text);
    border-bottom: 1px solid #34334c0a;
}

.statistics-main .head span {
    display: block;
    font-weight: 400;
    color: var(--soft-text);
    font-size: 14px;
}

.statistics-main .item {
    padding: 17px 15px;
    border-bottom: 1px solid #34334c0a;
}

.statistics-main.small .item {
    padding: 12px 15px;
}

.statistics-main .item .top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.statistics-main .item .top .icon {
    background: var(--bg);
    color: var(--light);
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 4px;
}

.statistics-main .item .top .text {
    font-size: 15px;
    color: var(--soft-text);
}

.statistics-main .item .top .text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-text);
}

.statistics-main .item:last-child {
    border: none;
}

.statistics-main .item .top .icon.ico1 {
    background: #e6e1ef;
    color: #8167b1;
}

.statistics-main .item .top .icon.ico2 {
    color: #0398e2;
    background: #cdeefe;
}
.statistics-main .item .top .icon.ico3 {
    color: #80c576;
    background: #e9f9e7;
}

.statistics-main .item .top .icon.ico4 {
    color: #db7a7a;
    background: #ffe6e6;
}

.statistics-main .item .top .icon.ico5 {
    color: #ffb18c;
    background: #ffeee6;
}

.statistics-main .item .top .icon.ico6 {
    color: #707aac;
    background: #e3e6f1;
}

.statistics-main .item .progress {
    height: 8px;
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.statistics-main .item.subs .progress .proBar {
    height: 100%;
    background: #8167b1;
    width: 0%;
    transition: 0.8s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(0.02, 0.1, 0, 1);
}

.statistics-main .item.tenure .progress .proBar {
    height: 100%;
    background: #1698e2;
    width: 0%;
    transition: 0.8s;
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(0.02, 0.1, 0, 1);
}

.statistics-main .item .top .action {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.connect-user-data {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
    height: fit-content;
    padding: 15px;
}

.connect-user-data .top {
    display: flex;
    gap: 10px;
}

.connect-user-data .top .text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.connect-user-data .top .text .name {
    font-weight: 600;
    color: var(--main-text);
}

.connect-user-data .top .text .job {
    color: var(--soft-text);
    font-size: 15px;
}

.connect-user-data .top .text .comp {
    color: var(--main-color);
    font-size: 15px;
}

.connect-user-data .bottom {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #34334c1a;
}

.connect-user-data .bottom .item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.connect-user-data .bottom .item .icon {
    width: 27px;
    height: 27px;
    min-width: 27px;
    background: var(--bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--light-text);
}

.connect-user-data .bottom .item:last-child {
    margin-top: 10px;
}

.connect-user-data .bottom .item .text {
    font-size: 15px;
    color: var(--soft-text);
}

.connect-user-data .top .avatar {
    width: 45px;
    min-width: 45px;
    height: 45px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg);
    font-size: 20px;
    color: var(--soft-text);
}

.main-notify-list {
    margin-top: 20px;
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
    height: fit-content;
}

.main-notify-list .head {
    padding: 15px;
    border-bottom: 1px solid #34334c1a;
    font-weight: 600;
}

.main-notify-list .item {
    border-bottom: 1px solid #34334c1a;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-notify-list .item:last-child {
    border: none;
}

.main-notify-list .item .icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    background: var(--bg);
    border-radius: 7px;
}

.main-notify-list .item .text span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--main-text);
}

.main-notify-list .item .text p {
    font-size: 15px;
    color: var(--soft-text);
}

.page-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 7px;
}

.page-content-head .title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-content-head .title::before {
    content: "\e93c";
    font-family: "eg";
    color: var(--main-color);
    font-size: 20px;
}

.page-content-head .title h2 {
    font-size: 1.3rem;
    color: var(--main-text);
    font-weight: 600;
}

.page-content-head .action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-content-head .search {
    position: relative;
}

.page-content-head .search .search-control {
    width: 100%;
    color: var(--main-text);
    background: #ededf3;
    border: 1px solid #3a38520d;
    height: 44px;
    padding: 15px;
    font: var(--font);
    border-radius: 10px;
}

.page-content-head .search .search-control::placeholder {
    color: #b0b0c5;
}

.page-content-head .search .butto {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.page-content-head .action .butto {
    width: max-content;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

/* Drop */

.dropList {
    position: relative;
}
.dropList.mb10 {
    margin-bottom: 10px;
}
.dropListTable {
    display: none;
    border-top: 0;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 2;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    overflow: hidden;
    box-shadow: 0 10px 15px #acacbd7d;
    max-height: 320px;
    overflow: auto;
}
.dropListTable::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}
.dropListTable::-webkit-scrollbar-thumb {
    background-color: var(--soft-text);
}
.dropListTable .item {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f4fb;
    font-size: 16px;
    color: var(--soft-text);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropList.check .dropListTable .item {
    justify-content: flex-start;
}

.dropList.light,
.dropList.selected {
    border-radius: 5px;
}

.dropList.light .dropListTitle,
.dropList.selected .dropListTitle {
    background-color: #f8f9fc;
    align-items: center;
}
.dropListTable .search {
    padding: 10px;
    border-bottom: 1px solid #f5f4fb;
    position: relative;
}

.dropListTable .search .butto {
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
}
.dropListTable .search .butto.show {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.dropListTable .item.active {
    background: #fafafb;
}
.dropListTable .item .text {
    color: #9699ad;
}
.dropListTable .item .text span {
    color: #565b74;
    display: block;
    margin-bottom: 2px;
}
.dropListTable .item.active .icon {
    opacity: 1;
}
.dropListTable .item:last-child {
    border: none;
}
.dropListTable .item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}
.dropListTable .item span span {
    font-weight: 400;
}
.dropListTable .item:hover {
    background: #fbfbfd;
}
.dropListTitle {
    position: relative;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e5f5;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--soft-text);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    transition-delay: 0.2s;
    height: 50px;
}
.dropListTitle.border-0 {
    border: 0 !important;
}
.dropListTitle .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 29px;
    color: var(--color-text-light);
}
.dropList.show .dropListTitle {
    background: #f5f6f9;
    transition: 0s;
    border-radius: 4px 4px 0 0;
}
.dropListTable .item .icon {
    display: flex;
    font-size: 22px;
    opacity: 0.2;
}
.dropListTitle::after {
    content: "\e96f";
    font-family: "eg";
    color: var(--light-text);
    position: absolute;
    right: 15px;
    font-size: 25px;
    display: flex;
    transform: rotateX(180deg);
    transition: 0.2s;
}
.dropListTitle.nodrop::after {
    content: "";
}
.dropList.show .dropListTitle::after {
    transform: rotateX(0deg);
}
.dropListTitle label.title {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    padding: 0.85rem 1rem;
    font-weight: 500;
    font-size: 16px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition:
        opacity 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        transform 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
}

.dropList.selected .dropListTitle label.title {
    opacity: 0.6;
    transform: scale(0.8) translateY(-0.27rem) translateX(0.2rem);
}
.dropList.selected .dropListTitle .dlabName {
    padding-top: 1.4rem;
    padding-bottom: 0.625rem;
}
/* Drop */

.form-control {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    color: var(--soft-text);
    background: #fff;
    border: 1px solid #e5e5f5;
    padding: 0.8rem 1rem;
    height: 50px;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    transition: 0.2s;
}

.form-control:disabled {
    color: var(--light-text);
    background: #f4f5f7 !important;
}

.form-control::placeholder {
    color: var(--light-text);
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--light-text) !important;
}

.form-floating {
    position: relative;
    margin-bottom: 12px;
}

.form-floating .form-control {
    padding-top: 27px;
}
.form-floating textarea {
    min-height: 70px;
}

.form-floating > label {
    color: var(--light-text);
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    padding: 1rem 1rem;
    font-size: 15px;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition:
        opacity 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        transform 0.1s ease-in-out;
    transition:
        opacity 0.1s ease-in-out,
        transform 0.1s ease-in-out,
        -webkit-transform 0.1s ease-in-out;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.8) translateY(-0.27rem) translateX(0.25rem);
}

.form-floating > .form-control::placeholder {
    color: transparent;
}

.invoice-customer-info {
    border: 1px solid #34334c1a;
    border-radius: 12px;
    background: #f5f5fc3d;
    display: none;
    margin-top: 10px;
}

.invoice-customer-info .head {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #34334c1a;
    font-size: 15px;
}

.invoice-customer-info .well {
    padding: 13px;
}

.invoice-customer-info .head .text {
    font-weight: 600;
    color: var(--main-text);
    line-height: 18px;
}

.invoice-customer-info .head .text span {
    display: block;
    font-weight: 400;
    color: var(--light-text);
}

.invoice-customer-info .form-control {
    border-radius: 7px;
}

.form-floating.customer-list {
    position: relative;
    margin-bottom: 0;
}

.form-floating.customer-list .addcustomer-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.form-floating.customer-list .addcustomer-btn.show {
    display: block;
}

.customer-list ul.customer-drop-list,
.product-list ul.product-drop-list {
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 2;
    border-radius: 10px;
    border-top: 0;
    overflow: hidden;
    box-shadow: 0 10px 15px #acacbd7d;
    max-height: 320px;
    overflow: auto;
    top: 50px;
    display: none;
    z-index: 9;
}

.product-list ul.product-drop-list {
    max-height: 160px !important;
}

.customer-list ul.customer-drop-list li.item,
.product-list ul.product-drop-list li.item {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f4fb;
    font-size: 16px;
    color: var(--soft-text);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    font-weight: 500;
}

.product-list ul.product-drop-list li.item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-list ul.product-drop-list li.item span.price {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-text);
}

.customer-list ul.customer-drop-list li.item:hover,
.product-list ul.product-drop-list li.item:hover {
    background: #fbfbfd;
}

.customer-list ul.customer-drop-list li.item:last-child,
.product-list ul.product-drop-list li.item:last-child {
    margin: 0;
    border-bottom: none;
}

[save-product-check] {
    display: none;
}

.merchant-info-head {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    gap: 10px;
}

.merchant-info-head .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--light);
}

.merchant-info-head .text {
    display: flex;
    flex-direction: column;
    color: var(--soft-text);
}

.merchant-info-head .text span.title {
    font-weight: bold;
    font-size: 18px;
    padding-left: 4px;
}

.merchant-info-head .text .sub {
    margin-bottom: 5px;
    font-size: 15px;
    margin-top: -1px;
    padding-left: 5px;
}

.merchant-info-head .action {
    margin-left: auto;
}

section#logre {
    background: linear-gradient(to top left, var(--base-color), #1b1f38);
    overflow: hidden;
    clip-path: ellipse(120% 100% at top center);
    position: relative;
}

section#logreCont {
    position: relative;
    transform: translateY(-100px);
}

.logreArea {
    max-width: 400px;
    margin: 0 auto;
}

.logreArea.reg {
    max-width: 450px;
}

.loreBox {
    background: #fff;
    border-radius: 15px;
}

.loreBox .head {
    padding: 30px;
    border-bottom: 1px solid var(--bg);
}

.loreBox .body {
    padding: 30px 25px;
    padding-bottom: 10px;
}

.loreBox .bottom {
    padding: 0 25px 30px;
}

.loreBox .bottom .butto {
    padding: 17px !important;
    font-size: 17px;
}

.logreArea .tabHead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logreArea .tabHead .item {
    padding: 10px 20px;
    border: 1px solid #ffffff25;
    background: transparent;
    color: #fff;
    transition: 0.2s;
    border-radius: 2px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.logreArea .tabHead .item:hover {
    background: #ffffff30;
}

.logreArea .tabHead .item.active {
    background: #ffffff15;
    border: 1px solid #ffffff35;
}

section#logre .logHead {
    text-align: center;
    padding-top: 50px;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 130px;
}

section#logre .logHead h1 {
    font-size: 26px;
    margin-bottom: 5px;
}

section#logre .logHead p {
    color: #c7cadb;
}

.logreBottom .butto-forgotPass {
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-top: 15px;
    border: 1px solid #575b722e;
    border-radius: 2px;
    padding: 12px;
    text-align: center;
    color: #9497a9;
    transition: 0.2s;
}

.logreBottom .butto-forgotPass:hover {
    background: #575b720d;
}

.logreBottom .logreRegister {
    margin-top: 20px;
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--light-text);
}
.nav-active-users {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-active-users > span {
    display: block;
    position: relative;
}
.nav-active-users > span img {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-active-users > span .online {
    position: absolute;
    right: -1px;
    top: -3px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background-color: var(--success);
    border: 2px solid var(--bg);
}

.nav-active-users > span .online.user-mola {
    background-color: var(--warning);
}

.nav-active-users > span .online.user-admin {
    background-color: var(--success);
}

.notice-card {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.notice-card .avatar {
    width: 32px;
    min-width: 32px;
    height: 32px;
    position: sticky;
    top: 8px;
    margin-top: 10px;
}
.notice-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.notice-card .notice-area {
    width: 100%;
    background: white;
    border-radius: 4px;
    padding: 15px;
}

.notice-card .notice-head {
    display: flex;
    align-items: center;
}

.notice-card .notice-head .notice-user {
    font-weight: 600;
    color: var(--base-text);
}

.notice-card .notice-head .notice-when {
    margin-left: auto;
    font-size: 13px;
    color: var(--light-text);
    margin-right: 10px;
}

.notice-card .notice-head .notice-category {
    color: var(--c);
    padding: 6px 10px;
    margin-right: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.notice-card .notice-head .notice-pin {
    display: flex;
    align-items: center;
    gap: 4px;
    background: -webkit-linear-gradient(360deg, #e91e63, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 28px;
    padding: 4px 12px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.notice-card .notice-head .notice-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    background: var(--c);
    opacity: 0.1;
    z-index: -1;
}

.notice-card .notice-head .notice-category i {
    display: flex;
    font-size: 15px;
}

.notice-card .notice-head .notice-pin::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    z-index: -1;
    background: linear-gradient(to right, #e91e63, #ff5722);
    opacity: 0.1;
}

.notice-card .notice-area .notice-content span {
    font-size: 18px;
    font-weight: 600;
    color: var(--base-text);
    margin-bottom: 4px;
    display: block;
}

.notice-card .notice-area .notice-content p {
    color: var(--light);
    font-size: 16px;
    line-height: 20px;
}

.notice-card .notice-area .notice-content b {
    color: var(--base-text);
    font-weight: 600;
}

.notice-card .notice-area .notice-content a {
    color: var(--main-color);
    font-weight: 600;
}

.notice-card .notice-area .notice-bottom {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notice-card .notice-area .notice-content {
    padding: 10px 0 15px;
}

.notice-card .notice-area .notice-bottom .like-btn {
    min-width: 46px;
    height: 28px;
    background: #3765e614;
    border: 1px solid #3765e614;
    border-radius: 4px;
    transition: 0.2s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    cursor: pointer;
}

.notice-card .notice-area .notice-bottom .like-btn:hover {
    border: 1px solid #3765e630;
}

.notice-card .notice-area .notice-bottom .like-btn.liked {
    background: var(--main-color);
    color: #fff;
}

.notice-card .notice-area .notice-bottom .like-btn.liked i::before {
    content: "\f323";
}

.notice-card .notice-area .notice-bottom .likers {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: auto;
    margin-left: 2px;
}

.notice-card .notice-area .notice-bottom .likers img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -10px;
    border: 2px solid #fff;
}
.notice-categories {
    padding-bottom: 4px;
}

.notice-categories ul li {
    position: relative;
}

.notice-categories ul li a {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--bg);
    font-weight: 500;
    color: var(--light);
    border-left: 2px solid transparent;
}

.notice-categories ul li.active a {
    border-left-color: var(--p);
    color: var(--p);
}

.notice-categories ul li:last-child a {
    border-bottom: 0;
}

.notice-categories ul li a span {
    margin-left: auto;
    font-size: 12px;
    background: var(--bg);
    min-width: 24px;
    padding: 2px 10px;
    text-align: center;
    border-radius: 10px;
    color: var(--light);
}

.notice-categories ul li.active a span {
    background: var(--p);
    color: #fff;
}

.spin {
    display: inline-block;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.notices--head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.notices--head .butto {
    min-width: fit-content;
    height: 40px;
}

.cats--featured ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cats--featured ul li a {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #9898db2e;
    font-weight: 500;
    height: 40px;
    color: var(--light);
    border-radius: 4px;
}

.cats--featured ul li a .badge {
    margin-left: 6px !important;
    font-size: 12px;
    min-width: 24px;
    padding: 2px 10px;
    text-align: center;
    background: #5f728a24;
    color: var(--light);
}

.cats--featured ul li.active a {
    border-color: var(--p);
    background: var(--p);
    color: #fff;
}

.cats--featured ul li.active a .badge {
    background: #ffffff30;
    color: #fff;
}

.stickers--area {
    display: grid;
    grid-template-columns: auto;
    gap: 12px;
}

#stickers-area-follow.stickers--area .sticker {
    aspect-ratio: auto;
}

#stickers-area-follow.stickers--area .sticker .sticker-content {
    text-align: left;
    padding: 5px 0px;
}

.stickers--area .sticker {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.stickers--area .sticker .sticker-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg);
}

.stickers--area .sticker .sticker-head .avatar {
    width: 32px;
    height: 32px;
}

.stickers--area .sticker .sticker-head .avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.stickers--area .sticker .sticker-head .text {
    font-size: 13px;
    color: var(--light);
    line-height: 15px;
}

.stickers--area .sticker .sticker-head .text span.name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--main-text);
}

.stickers--area .sticker .sticker-head .status {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stickers--area .sticker .sticker-head .status .badge {
    display: flex;
}

.stickers--area .sticker .sticker-head .status .eg-pushpin-line {
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    background: #3765e629;
    border-radius: 4px;
}

.stickers--area .sticker .sticker-head .status .butto {
    color: var(--success);
    background: #57c78136;
    font-size: 14px;
    padding: 5px 10px;
    transition: 0.2s;
    height: 28px;
    display: inline-flex;
    align-items: center;
}

.stickers--area .sticker .sticker-head .status .butto.pin {
    color: white;
    background: var(--main-color) !important;
}

.stickers--area .sticker .sticker-head .status .butto:hover {
    background: #57c78156;
}

.stickers--area .sticker.closed .sticker-head .status .butto {
    color: var(--light);
    background: var(--bg);
}

.stickers--area .sticker.closed .sticker-head .status .butto:hover {
    background: #d3d3e3;
}

.stickers--area .sticker.closed .sticker-content {
    text-decoration: line-through;
    opacity: 0.7;
}

.stickers--area .sticker .sticker-content {
    margin: auto 0;
    color: var(--light);
    font-size: 17px;
    overflow: auto;
    overflow-wrap: break-word;
}

.stickers--area .sticker .sticker-content a {
    color: var(--main-color);
    font-weight: 500;
    transition: 0.2s;
}

.stickers--area .sticker .sticker-content a:hover {
    color: #8390ff;
}

.stickers--area .sticker .sticker-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 4px;
}

.stickers--area .sticker .sticker-actions :is(.sticker-edit-btn, .sticker-pin-btn, .sticker-remove-btn) {
    background: var(--bg);
    color: #a6adb5;
    display: flex;
    font-size: 15px;
    padding: 6px 10px;
    transition: 0.2s;
}

.stickers--area .sticker .sticker-actions .sticker-edit-btn:hover {
    background: var(--primary);
    color: #fff !important;
}

.stickers--area .sticker .sticker-actions .sticker-edit-btn.pinned {
    background: var(--success);
    color: #fff !important;
}

.stickers--area .sticker .sticker-actions .sticker-remove-btn:hover {
    background: var(--danger);
    color: #fff;
}

.stickers--type {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stickers--type .type-button {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--light);
    opacity: 0.7;
    transition: 0.2s;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.stickers--type .type-button.active {
    background: #5f728a14;
    border-color: #5f728a4d;
    opacity: 1;
}

.stickers--type .type-button:hover {
    opacity: 1;
}

.stickers--type .type-button span {
    background: #5f728a36;
    padding: 2px 10px;
    margin-left: 4px;
    border-radius: 10px;
    font-size: 12px;
    transition: 0.2s;
}

.stickers--type .type-button.active span {
    background: var(--light);
    color: #fff;
}

.card-bank .card-header .icon img {
    border-radius: 4px;
    width: 38px;
    height: 38px;
    object-fit: cover;
    display: block;
}

.card-bank .card-header .icon {
    position: relative;
}

.card-bank .bank-detail {
    padding: 15px;
    border-bottom: 1px solid var(--bg);
    position: relative;
}

.card-bank .bank-detail:last-child {
    border: 0;
}

.card-bank .bank-detail .iban {
    margin-top: 2px;
}

.card-bank .bank-detail .iban span {
    font-size: 17px;
    font-weight: 500;
}

.card-bank .bank-detail .iban .copy {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg);
    border-radius: 4px;
    cursor: pointer;
    color: var(--light);
    transition: 0.2s;
}

.card-bank .bank-detail .iban .copy.copied {
    background-color: #57c78218;
    color: var(--success);
}

.card-bank .bank-detail .iban .copy:hover {
    background: #00000008;
}

.message-content {
    padding: 20px;
    color: var(--light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.message-content.show-more {
    max-height: none;
}

.message-content p {
    margin-bottom: 8px;
}

.message-content p:last-child {
    margin: 0;
}

.message-content ul {
    margin-bottom: 10px;
}

.message-content ul li {
    margin-bottom: 6px;
}

.message-content .message-show-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    bottom: 10px;
}

.progress {
    width: 100%;
    height: 8px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #00000010;
}

.progress #progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
}

#provider-filter {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    max-width: 186px;
    height: 34px !important;
    padding: 0 10px;
    border-radius: 2px !important;
}

.user-name-shorter {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.select-reaction {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.select-reaction input {
    display: none;
}

.select-reaction .item {
    display: flex;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    padding: 3px;
    transition: 0.2s;
}

.select-reaction .item.selected {
    border-color: var(--light);
}

.select-reaction .item:hover {
    border-color: var(--light);
}
e-users .user-reaction-badge img {
    width: 100%;
    height: 100%;
}

.nav-active-users .user-reaction-badge {
    position: absolute;
    bottom: -10px;
    width: 22px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-active-users .user-reaction-badge img {
    width: 100%;
    height: 100%;
}

/* -- Theme General END -- */

.accordion > .item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion .item:last-child {
    border: 0 !important;
}

.accordion .item.show .head .icon {
    color: var(--main-color);
    transform: rotate(45deg);
}

.accordion .item .head {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.accordion .item .head .icon {
    color: #c4cad9;
    transition: 0.2s;
}

.accordion .item .head .icon i {
    display: flex;
    font-size: 17px;
}

.accordion .item .body {
    padding: 15px;
    border-top: 1px solid var(--bg);
    font-size: 17px;
    line-height: 25px;
    color: var(--soft-text);
    font-weight: 400;
    display: none;
}

#providersBox.accordion .item .body {
    font-size: 13px;
    line-height: normal;
    color: var(--light);
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover {
    position: relative;
    z-index: 1;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    font-size: 14px !important;
    font-weight: 400 !important;
    text-align: center;
    position: absolute;
    width: max-content;
    max-width: 239px;
    top: calc(90% + 5px);
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background-color: #1a1e36af;
    padding: 4px 15px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
}
[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

[data-tooltip]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(90% + 1px);
    transform: translateX(-50%);
    border-color: transparent transparent #1a1e36af transparent;
    border-style: solid;
    border-width: 0px 4px 4px 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 1px);
}

/* Flex Table */
.tabro {
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.tabro.head [class*="tb-"] {
    font-size: 14px;
    color: var(--light-text);
}

.tabro [class*="tb-"] {
    min-height: 35px;
    display: flex;
    align-items: center;
    -webkit-box-flex: 0;
    padding: 0 15px;
    color: var(--soft-text);
    font-size: 15px;
    border-left: 1px solid var(--bg);
}
.tabro [class*="tb-"]:first-child,
.tabro [class*="tb-"]:last-child {
    border-left: none;
}

.tabro .tb-check {
    flex: 0 0 50px !important;
}

.tabro .tb-id {
    flex: 0 0 95px !important;
}

.tabro .tb-text {
    flex: 1;
}

.tabro .tb-text.short {
    flex: 0 0 130px;
}
.tabro .tb-text.medium {
    flex: 0 0 180px;
}
.tabro .tb-text.end {
    flex: 0 0 170px;
    justify-content: flex-end;
}

.tabro .task-users {
    display: flex;
    align-items: center;
}
.tabro .task-users img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-right: -6px;
}

.tablist .item {
    background: #fff;
    border: 1px solid #34334c1a;
    border-radius: 4px;
    padding: 10px 0;
    margin-bottom: 5px;
}

.tabro [class*="tb-"] span {
    font-weight: 600;
}
.tabro [class*="tb-"] span.badge {
    font-weight: 500;
}

.tabro .tb-text.double {
    flex-direction: column;
    align-items: flex-start;
}

.tabro .tb-text.last {
    justify-content: flex-end;
}
.tabro .tabro-badge {
    user-select: none;
}

.task--notices {
    padding: 12px;
    padding-bottom: 0;
    display: none;
}

.tb-text.long.double.double-link a {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 194px;
}

.tb-text.long.double.double-link {
    max-width: 200px;
}

.task--notices .notice-form {
    display: grid;
    grid-template-columns: auto 100px;
    gap: 8px;
}

.task--notices .notice--list {
    margin-top: 10px;
}

.task--notices .notice--list .notice {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.task--notices .notice--list .notice .avatar {
    width: 30px;
    height: 30px;
}

.task--notices .notice--list .notice .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.task--notices .notice--list .notice .message {
    background: #f5f5fc8f;
    border: 1px solid var(--bg);
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    color: var(--light);
    font-size: 15px;
}

.task--notices .notice--list .notice:last-child {
    margin: 0;
}
/* Flex Table */

.task-check-list {
    margin-top: 12px;
    border-top: 1px solid var(--bg);
    padding: 12px 15px;
    padding-bottom: 6px;
    display: none;
}

.task-check-list > .checkbox {
    margin-bottom: 6px;
}

.task-check-list > .checkbox:last-child {
    margin: 0;
}

.task-elements .form-floating {
    position: relative;
}

.task-elements .form-floating .remove-element {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.create-task-area {
    display: none;
}

/* Pagination */
.pagination {
    padding: 0 5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination ul.pageNumbers {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pagination ul.pageNumbers li a {
    background: #fff;
    padding: 4px 7px;
    font-size: 14px;
    min-width: 30px;
    display: block;
    text-align: center;
    border-radius: 5px;
    color: var(--soft-text);
    font-weight: 500;
    transition: 0.2s;
    border: 1px solid transparent;
}

.pagination ul.pageNumbers li a.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color) !important;
}

.pagination ul.pageNumbers li a:hover {
    border-color: #ccccdd;
}

.pagination .pageArrows {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination .pageArrows > a {
    width: 35px;
    padding: 5px;
    border-radius: 7px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccccdd5c;
    color: var(--soft-text);
    transition: 0.2s;
}

.pagination .pageArrows > a:hover {
    border-color: #ccccdd;
}
/* Pagination */

.invoice-template-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.invoice-template-list .item {
    border: 1px solid #34334c1a;
    position: relative;
    padding: 10px;
    border-radius: 12px;
    transition: 0.4s;
}

.invoice-template-list .item .text {
    padding: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--light-text);
    letter-spacing: 3px;
}

.invoice-template-list .item img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 7px;
    border: 2px solid var(--bg);
}

.invoice-template-list .item .action {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    padding-top: 10px;
}

.invoice-template-list .item .action .butto {
    width: 100%;
}

.invoice-template-list .item:hover {
    background: #f6f6f8;
}

.merchant-top {
    display: grid;
    grid-template-columns: 70% auto;
    gap: 15px;
}

.merchant-logo-content {
    position: relative;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    border-radius: 8px;
}

.merchant-logo-content label {
    color: var(--light-text);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    cursor: pointer;
}

.merchant-logo-content .text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--light-text);
    z-index: 3;
    background: #f5f5fcd9;
    transition: 0.2s;
}

.merchant-logo-content .image {
    display: none;
    z-index: 1;
}

.merchant-logo-content .image img {
    height: 100%;
    max-height: 60px;
    object-fit: cover;
    max-width: 100%;
    display: block;
    z-index: -1;
}

.merchant-logo-content .remove {
    color: var(--soft-text);
    position: absolute;
    right: 6px;
    top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 5;
    transition: 0.2s;
    cursor: pointer;
}
.merchant-logo-content .remove:hover {
    color: #db5454;
}

.ani-breath {
    animation: ani-breath 2s infinite ease;
    opacity: 0;
}

.shift-grid {
    display: grid;
    gap: 1px;
    background-color: #dee2e638;
    border: 1px solid transparent;
    border-radius: 4px;
}

.shift-header {
    display: contents;
}

.shift-row {
    display: contents;
}

.shift-cell {
    background-color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: none;
}

.shift-date-header {
    font-weight: bold;
    text-align: center;
}

.shift-user-header {
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 100;
    align-self: start;
}

.shift-date-cell {
    font-weight: bold;
    flex-direction: column;
    align-items: flex-start;
}

.date-main {
    font-size: 1rem;
    margin-bottom: 2px;
}

.date-day {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: capitalize;
}

.shift-data-cell {
    text-align: center;
    font-size: 16px;
    position: relative;
    font-weight: 500;
    color: var(--light);
}

.shift-data-cell .badge {
    padding: 8px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.shift-data-cell .badge.empty {
    color: var(--light);
}

.shift-data-cell .badge-success {
    background: #57c78121;
    color: var(--success) !important;
}

/* Günlük checkbox grid */
.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.day-item {
    border: 1px solid #e6e8ed;
    border-radius: 8px;
    padding: 10px;
    background: #f8f9fc;
    transition: all 0.2s;
}

.day-item:hover {
    background: #f0f2f7;
    border-color: var(--main-color);
}

.day-checkbox:checked + label {
    color: var(--main-color);
    font-weight: 600;
}

.day-checkbox:checked ~ .day-item {
    background: var(--main-color);
    color: white;
}

.day-item:has(.day-checkbox:checked) {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.day-item:has(.day-checkbox:checked) label {
    color: white;
}

.day-date {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.day-name {
    font-size: 12px;
    opacity: 0.8;
}

.shift-cell.shift-date-header.type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    font-weight: 500;
    gap: 3px;
    color: var(--light);
}

.shift-cell.shift-date-header.type div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shift-cell.shift-date-header.type div span {
    width: 8px;
    height: 8px;
    border-radius: 10px;
}

.shift-cell.shift-date-header.type div span.gray {
    background: var(--light);
}

.shift-cell.shift-date-header.type div span.yellow {
    background: var(--warning);
}

/* Kullanıcı bilgileri */
.shift-grid .user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.shift-grid .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--main-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.shift-grid .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.shift-grid .avatar-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.shift-grid .user-name {
    font-weight: bold;
    font-size: 15;
}

.shift-grid .edit-user-btn {
    background: transparent;
    border: none;
    color: var(--soft-text);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.shift-grid .edit-user-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--main-color);
}

.shift-grid .edit-user-btn i {
    font-size: 14px;
}

.team-card {
    background: #fff;
    border-radius: 4px;
    height: fit-content;
}

.team-card .head {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--bg);
}

.team-card .head .image {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.team-card .head .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.team-card .head .text .full-name {
    font-weight: bold;
}

.team-card .head .butto {
    margin-left: auto;
}

.team-card .detail .item {
    position: relative;
    padding: 10px 20px;
    border-bottom: 1px solid var(--bg);
}

.team-card .detail .item .label {
    font-size: 14px;
    font-weight: 400;
    color: var(--soft-text);
}

.team-card .detail .item .value {
    font-weight: 600;
}

.team-card .detail .item .more--inf {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--soft-text);
}

.team-card .detail .more--details {
    display: none;
}

.team-card .user-files .file {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--bg);
}

.team-card .user-files .file .file-icon {
    min-width: 34px;
    height: 34px;
    width: 34px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-text);
    border-radius: 2px;
    font-size: 15px;
}

.team-card .user-files .file .file-name {
    font-weight: 600;
    color: var(--light);
}

.team-card .user-files .file .butto {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-card .show-more {
    display: flex;
    justify-content: center;
}

.team-card .show-more .butto {
    background: transparent;
    color: var(--soft-text);
    width: 100%;
    border-radius: 0 !important;
    padding: 12px;
}

.team-card .user-files {
    display: none;
}

small.team--line {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding-left: 10px;
    border-left: 2px solid var(--main-color);
}

.team-card.disabled {
    opacity: 0.5;
    transition: 0.2s;
}

.team-card.disabled:hover {
    opacity: 1;
}

.month-separator {
    grid-column: 1 / -1;
    padding: 10px 15px;
    background: #f5f5fc;
    color: var(--main-color);
    border-left: 3px solid var(--main-color);
    text-transform: uppercase;
    font-weight: 600;
    min-height: 40px;
    justify-content: flex-start;
    font-size: 14px;
}

.month-separator small {
    display: flex;
    align-items: center;
    gap: 5px;
}

.month-separator small i {
    display: flex;
    height: 12px;
    font-size: 14px;
}

/* -------------------------- Keyframes -------------------------- */

@keyframes rotateOpacity {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ani-breath {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* -------------------------- Navbar Media -------------------------- */
@media (min-width: 1024px) {
    .wrap-response-head {
        display: none !important;
    }
    body.hidemenu .wrap-view-content {
        width: calc(100% - 70px);
        margin-inline-start: 70px;
        transition: 0.2s;
        transition-delay: 0.2s;
    }

    .wrap-view-content {
        position: relative;
        height: 100%;
        min-height: 100vh;
        width: calc(100% - 250px);
        padding: 0 0 60px;
        margin-inline-start: 250px;
        transition: 0.2s;
        transition-delay: 0s;
    }
}
@media (max-width: 1024px) {
    .wrap-side .wrap-head {
        display: none;
    }
    .wrap-response-head {
        background: var(--base-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        padding: 0 15px;
        border-bottom: 1px solid #ffffff10;
        z-index: 9;
        position: sticky;
        top: 0;
    }

    .wrap-response-head .response-nav-lines {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        position: relative;
    }

    .wrap-response-head .response-nav-lines .line {
        height: 2px;
        width: 100%;
        background: #fff;
        transition: 0.2s;
    }

    .wrap-response-head .response-nav-lines .line:nth-child(2) {
        width: 70%;
    }

    .wrap-response-head .nav-active-users > span .online {
        border-color: #191b2a;
    }
    .wrap-response-head .nav-active-users > span img {
        border: 1px solid #ffffff10;
    }
    .wrap-side {
        transition: 0.2s;
        top: 70px;
        left: -100%;
    }

    .wrap-side li.hideShow {
        display: none;
    }

    body.menuShow .wrap-side {
        left: 0%;
    }
    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(2) {
        display: none;
    }

    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
        position: absolute;
    }

    body.menuShow .wrap-response-head .response-nav-lines .line:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
        position: absolute;
    }
    .wrap-view-head .wrap-view-action {
        display: none;
    }
    .stickers--area .sticker {
        aspect-ratio: inherit;
    }
}
@media (max-width: 400px) {
    .nav-action .item {
        position: inherit;
    }
    .nav-action ul.list.notify {
        width: calc(100% - 30px);
        left: 15px;
    }
    .nav-action ul.list.user {
        right: 15px;
    }
    .response-nav-logo a img {
        display: block;
        height: 41px;
    }
}

/* -------------------------- General Media -------------------------- */

@media (max-width: 1400px) {
    .dash-main-area {
        grid-template-columns: 66% auto;
    }
    .notices--head .butto {
        padding: 10px 14px !important;
        font-size: 15px;
    }
    .cats--featured ul li a {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .lg-d-none {
        display: none !important;
    }
    .lg-w-100 {
        width: 100% !important;
    }
    .lg-miw-100 {
        min-width: 100% !important;
    }
    .lg-maw-100 {
        max-width: 100% !important;
    }
    .lg-h-100 {
        height: 100% !important;
    }
    .lg-m-0 {
        margin: 0 !important;
    }
    .lg-d-grid {
        display: -ms-grid !important;
        display: grid !important;
    }
    .lg-gap-0 {
        gap: 0 !important;
    }
    .lg-gap-1 {
        gap: 0.25rem !important;
    }
    .lg-gap-2 {
        gap: 0.5rem !important;
    }
    .lg-gap-3 {
        gap: 1rem !important;
    }
    .lg-gap-4 {
        gap: 1.5rem !important;
    }
    .lg-gap-5 {
        gap: 3rem !important;
    }
    .lg-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .lg-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .lg-grid-3 {
        -ms-grid-columns: 1fr 1fr 1fr !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    .lg-grid-w100 {
        grid-column: 1 / -1;
    }
    .lg-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .lg-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .lg-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .lg-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .lg-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .lg-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .lg-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .lg-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .lg-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .lg-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .lg-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .dash-main-content {
        grid-template-columns: auto;
    }
    .dash-main-area {
        grid-template-columns: 60% auto;
    }
    .tablist.tasks .tabro {
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 720px;
    }
    .md-w-100 {
        width: 100% !important;
    }
    .md-miw-100 {
        min-width: 100% !important;
    }
    .md-maw-100 {
        max-width: 100% !important;
    }
    .md-h-100 {
        height: 100% !important;
    }
    .md-d-none {
        display: none !important;
    }
    .md-gap-0 {
        gap: 0 !important;
    }
    .md-gap-1 {
        gap: 0.25rem !important;
    }
    .md-gap-2 {
        gap: 0.5rem !important;
    }
    .md-gap-3 {
        gap: 1rem !important;
    }
    .md-gap-4 {
        gap: 1.5rem !important;
    }
    .md-gap-5 {
        gap: 3rem !important;
    }
    .md-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .md-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .md-grid-w100 {
        grid-column: 1 / -1;
    }
    .md-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well .md-ww-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .well .md-ww-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .well .md-ww-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .well .md-ww-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .well .md-ww-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .well .md-ww-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .well .md-ww-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .well .md-ww-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .well .md-ww-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .well .md-ww-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .tablist.sell .tabro {
        flex-wrap: wrap;
    }

    .tablist.sell .tabro .tb-text.one-line {
        min-width: calc(100% - 100px);
    }

    .tablist.sell .tabro .tb-text.short {
        margin: 10px 0;
        border-top: 1px solid var(--bg);
        border-bottom: 1px solid var(--bg);
        min-width: 50%;
        height: 52px;
    }

    .tablist.sell .tabro .tb-text[data-title]::before {
        content: attr(data-title);
        font-weight: 400;
        color: var(--light-text);
    }

    .tablist.sell .tabro .tb-text[data-title] {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        font-weight: 500;
    }

    .tablist.sell .tabro .tb-text.last {
        max-width: 100%;
    }

    .tablist.sell .tb-text.short:nth-child(3) {
        border-left: none;
    }

    .tabro.head {
        display: none;
    }
}
@media (max-width: 870px) {
    .dash-main-area {
        grid-template-columns: 55% auto;
    }
    .cats--featured ul li a > span.text {
        display: none;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
    }
    .sm-d-none {
        display: none !important;
    }
    .sm-d-block {
        display: block !important;
    }
    .sm-w-100 {
        width: 100% !important;
    }
    .sm-miw-100 {
        min-width: 100% !important;
    }
    .sm-maw-100 {
        max-width: 100% !important;
    }
    .sm-h-100 {
        height: 100% !important;
    }
    .sm-gap-0 {
        gap: 0 !important;
    }
    .sm-gap-1 {
        gap: 0.25rem !important;
    }
    .sm-gap-2 {
        gap: 0.5rem !important;
    }
    .sm-gap-3 {
        gap: 1rem !important;
    }
    .sm-gap-4 {
        gap: 1.5rem !important;
    }
    .sm-gap-5 {
        gap: 3rem !important;
    }
    .sm-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .sm-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .sm-grid-w100 {
        grid-column: 1 / -1;
    }
    .sm-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .dash-main-area {
        display: flex;
        flex-direction: column;
    }
    .tablist.tasks .tabro {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tablist.tasks .tabro .tb-text.full {
        order: 0;
        min-width: 100%;
    }

    .tablist.tasks .tabro .tb-text.tb-id {
        order: 1;
    }

    .tablist.tasks .tabro .tb-text.end {
        order: 2;
        flex: 1;
        width: calc(100% - 115px);
    }

    .tablist.tasks .tabro .tb-text.end .butto {
        width: 100%;
        justify-content: center;
        height: 28px;
    }

    .tablist.tasks .tabro .tb-text.medium:nth-child(5) {
        min-width: 100%;
    }

    .tablist.tasks .tabro .tb-text.medium:nth-child(5) .badge {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .dash-header .action {
        margin-left: 0;
        width: 100%;
        margin-top: 5px;
        margin-bottom: -5px;
    }
    .sticker--create .select-time {
        width: 100%;
        justify-content: center;
        background: var(--bg);
        padding: 10px;
        border-radius: 4px;
        margin-top: -10px;
    }

    .sticker--create .submit-ticket {
        margin-left: auto;
    }
    .notices--head .butto span {
        display: none;
    }
    .notices--head .butto {
        font-size: 18px;
    }

    .dash-header .action .d-flex {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-header .action .d-flex :is(.butto, .badge) {
        width: 100%;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }
}
@media (max-width: 600px) {
    .xs-gap-0 {
        gap: 0 !important;
    }
    .xs-gap-1 {
        gap: 0.25rem !important;
    }
    .xs-gap-2 {
        gap: 0.5rem !important;
    }
    .xs-gap-3 {
        gap: 1rem !important;
    }
    .xs-gap-3 {
        gap: 1.5rem !important;
    }
    .xs-gap-5 {
        gap: 3rem !important;
    }
    .xs-grid-auto {
        -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
    }
    .xs-grid-2 {
        -ms-grid-columns: 1fr 1fr !important;
        grid-template-columns: 1fr 1fr !important;
    }
    .xs-flex-d-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .well [class^="ww"] {
        width: 100%;
    }
    .page-content-head.double {
        flex-direction: column;
    }

    .page-content-head.double .action {
        width: 100%;
    }

    .page-content-head.double .action .butto {
        width: 100%;
        justify-content: center;
    }
    .notice-card .notice-head .notice-category span {
        display: none;
    }
}
@media (max-width: 500px) {
    .wrap-side {
        width: 100%;
    }

    .wrap-side .wrap-navbar {
        min-width: 100%;
        max-width: 100%;
    }
    .stickers--type .type-button {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: center;
    }
}
