/* BUTTONS */
.ui-btn {
    display: inline-flex;
    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--primary-600);
    background: var(--primary-600);
    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--base-white, #FFF);
    /* Text sm/Semibold */
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    outline: none;
    cursor: pointer;
    transition: .2s;
    position: relative;
}

.ui-btn > .--wrap {
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    transition: .1s;
}
.--loader {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    right: 0;
    margin: auto;
    filter: invert(1) grayscale(1) brightness(2.5);
    transition: .1s;
    opacity: 0;
}
.ui-btn.--secondary .--loader {
    filter: none;
}
.--loader span {
    display: block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M30 16C30 17.8385 29.6379 19.659 28.9343 21.3576C28.2308 23.0561 27.1995 24.5995 25.8995 25.8995C24.5995 27.1995 23.0561 28.2307 21.3576 28.9343C19.659 29.6379 17.8385 30 16 30C14.1615 30 12.341 29.6379 10.6424 28.9343C8.94387 28.2307 7.40052 27.1995 6.1005 25.8995C4.80048 24.5995 3.76925 23.0561 3.06569 21.3576C2.36212 19.659 2 17.8385 2 16C2 14.1615 2.36212 12.341 3.06569 10.6424C3.76926 8.94387 4.80049 7.40052 6.10051 6.1005C7.40053 4.80048 8.94388 3.76925 10.6424 3.06568C12.341 2.36212 14.1615 2 16 2C17.8385 2 19.659 2.36212 21.3576 3.06569C23.0561 3.76926 24.5995 4.80049 25.8995 6.10051C27.1995 7.40053 28.2308 8.94388 28.9343 10.6424C29.6379 12.341 30 14.1615 30 16L30 16Z" stroke="transparent" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.10051 6.1005C7.66275 4.53826 9.57255 3.36793 11.6738 2.68521C13.775 2.00248 16.0079 1.82675 18.1901 2.17236C20.3722 2.51798 22.4416 3.37514 24.229 4.67376C26.0164 5.97238 27.4711 7.67559 28.4741 9.64414C29.4771 11.6127 30 13.7907 30 16C30 18.2093 29.4771 20.3873 28.4741 22.3559C27.4711 24.3244 26.0164 26.0276 24.229 27.3262C22.4416 28.6249 20.3722 29.482 18.1901 29.8276" stroke="%230057FF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    animation: rotation .5s linear infinite;
}

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

.ui-btn.--loading > .--wrap {
    opacity: 0;
}

.ui-btn.--loading .--loader {
    opacity: 1;
}
.w-100 {
    width: 100%;
}
.nowrap {
    flex-wrap: nowrap !important;
}
.ui-btn .icon {
    width: 20px;
    height: 20px;
}
.ui-btn:not(.--icon) .icon:last-child {
    margin-right: -5px;
}

.ui-btn:not(.--icon) .icon:first-child {
    margin-left: -5px;
}
.ui-btn:not(.--secondary):not(.--tertiary) .icon .giftey-icon {
    filter: invert(1);
    transition: .1s;
}
.ui-btn.--tertiary .giftey-icon {
    filter: var(--filter-gray-600);
}
.ui-btn:hover {
    border: 1px solid var(--primary-700);
    background: var(--primary-700);
    /* Shadow/xs */
}

.ui-btn:focus {
    box-shadow: 0px 0px 0px 4px var(--primary-100), 0px 1px 2px 0px var(--primary-200);
}

.ui-btn[disabled] {
    border: 1px solid var(--primary-200);
    background: var(--primary-200);
}

.ui-btn.--secondary {
    border: 1px solid var(--gray-300);
    background: var(--base-white, #FFF);
    color: var(--gray-700);
}
.ui-btn.--secondary[disabled] {
    opacity: .5;
}
.ui-btn.--secondary > .icon .giftey-icon {
    filter: none;
}

.ui-btn.--secondary:hover{
    border: 1px solid var(--gray-300);
    background: var(--gray-50);
}

.ui-btn.--secondary.--active {
    border: 1px solid var(--gray-300);
    background: var(--gray-100);
}

.ui-btn.--secondary:focus {
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    /* Shadow/xs focused 4px gray-100 */
    box-shadow: 0px 0px 0px 4px #F2F4F7, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.ui-btn.--secondary.--color {
    border: 1px solid var(--primary-200, #E9D7FE);
    background: var(--primary-50, #F9F5FF);
    color: var(--primary-700, #6941C6);
}

.ui-btn.--secondary.--color > .icon .giftey-icon {
    filter: invert(26%) sepia(42%) saturate(4617%) hue-rotate(249deg) brightness(83%) contrast(85%);
}

.ui-btn.--secondary.--color:hover {
    border: 1px solid var(--primary-200, #E9D7FE);
    background: var(--primary-100, #F4EBFF);
    color: var(--primary-800, #53389E);
}

.ui-btn.--secondary.--color:hover > .icon .giftey-icon {
    filter: invert(25%) sepia(84%) saturate(995%) hue-rotate(229deg) brightness(86%) contrast(98%);
}

.ui-btn.--secondary.--color:focus {
    border: 1px solid var(--primary-200);
    background: var(--primary-50);
    /* Shadow/xs focused 4px primary-100 */
    box-shadow: 0px 0px 0px 4px #F4EBFF, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.ui-btn.--secondary.--color[disabled]{
    border: 1px solid var(--primary-25, #FCFAFF);
    background: var(--primary-25, #FCFAFF);
    color: var(--primary-300);
}

.ui-btn.--secondary.--color[disabled] > .icon .giftey-icon{
    opacity:.25
}

.ui-btn.--tertiary {
    background: none;
    border-color: transparent;
    color: var(--gray-600, #475467);
    box-shadow: none;
}

.ui-btn.--tertiary > .icon .giftey-icon {
    filter: invert(29%) sepia(30%) saturate(392%) hue-rotate(176deg) brightness(97%) contrast(88%);
}

.ui-btn.--tertiary:hover,.ui-btn.--tertiary.--active {
    background: var(--gray-50, #F9FAFB);
    color: var(--gray-700, #344054);
}

.ui-btn.--tertiary:hover > .icon .giftey-icon {
    filter: invert(23%) sepia(14%) saturate(1087%) hue-rotate(179deg) brightness(93%) contrast(91%);
}

.ui-btn.--tertiary:hover > .icon .giftey-icon {
    filter: invert(23%) sepia(14%) saturate(1087%) hue-rotate(179deg) brightness(93%) contrast(91%);
}

.ui-btn.--tertiary:focus {
    background: transparent;
    border-color: transparent;
}

.ui-btn.--tertiary[disabled]{
    opacity: .25
}

.ui-btn.--warning {
    border: 1px solid var(--error-600, #D92D20);
    background: var(--error-600, #D92D20);
}

.ui-btn.--warning:hover {
    border: 1px solid var(--error-700, #B42318);
    background: var(--error-700, #B42318);
}

.ui-btn.--warning:focus {
    border: 1px solid var(--error-600, #D92D20);
    background: var(--error-600, #D92D20);
    /* Shadow/xs focused 4px error-100 */
    box-shadow: 0px 0px 0px 4px #FEE4E2, 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.ui-btn.--secondary.--warning {
    border: 1px solid var(--error-300, #FDA29B);
    background: var(--base-white, #FFF);
    color: var(--error-700, #B42318);
}

.ui-btn.--secondary.--warning > .icon .giftey-icon {
    filter: invert(15%) sepia(74%) saturate(3225%) hue-rotate(351deg) brightness(104%) contrast(95%);
}

.ui-btn.--secondary.--warning:hover {
    border: 1px solid var(--error-300, #FDA29B);
    background: var(--error-50, #FEF3F2);
    color: var(--error-800, #912018);
}

.ui-btn.--secondary.--warning:hover > .icon .giftey-icon {
    filter: invert(17%) sepia(49%) saturate(3338%) hue-rotate(345deg) brightness(92%) contrast(98%);
}

.ui-btn.--secondary.--warning:focus {
    border: 1px solid var(--error-300, #FDA29B);
    background: var(--base-white, #FFF);
}
.ui-btn.--warning.--tertiary {
    background: transparent;
    color: var(--error-600, #D92D20);
    border-color: transparent;
}

.ui-btn.--warning.--tertiary:hover {background: var(--error-100);}
.ui-btn.--md {
    padding: 9px 16px;
}

.ui-btn.--lg {
    padding: 9px 18px;
    font-size: 16px;
    line-height: 24px;
}

.ui-btn.--xl {
    padding: 11px 20px;
    font-size: 16px;
    line-height: 24px;
}

.ui-btn.--2xl {
    padding: 15px 28px;
    font-size: 18px;
    line-height: 28px;
    gap:12px;
}

.ui-btn.--2xl > .icon {
    width: 24px;
    height: 24px;
}

.ui-btn.--sm {padding: 4px 8px;border-radius: 6px;}

.--icon.--sm.--tertiary.ui-btn {
    padding: 4px;
}

.ui-btn.--icon {
    padding: 7px;
}

.ui-btn.--icon.--md {
    padding: 9px;
}

.ui-btn.--icon.--lg {
    padding: 11px;
}

.ui-btn.--icon.--xl {
    padding: 13px;
}

.ui-btn.--icon.--2xl {
    padding: 15px;
}

.--btn-group {
    display: flex;
}

.--btn-group .ui-btn {
    border-radius: 0;
    margin-right: -1px;
}

.--btn-group .item:first-child .ui-btn {
    border-radius: 8px 0 0 8px;
}

.--btn-group .item:last-child .ui-btn {
    border-radius: 0 8px 8px 0;
}

/* Alerts */

.giftey--alert {
    border-radius: 12px;
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    padding: 15px;
    color: var(--gray-700, #344054);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.giftey--alert > .--wrap {
    display: flex;
    gap: 16px;
    width: 100%;
}

.giftey--alert > .--wrap > .icon {
    height: max-content;
}

.giftey--alert > .--wrap > .content > .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.giftey--alert > .--wrap > .content {
    display: grid;
    gap: 4px;
    width: 100%;
    height: max-content;
}

.giftey--alert > .--wrap > .content .text {
    color: var(--gray-600, #475467);
}

.giftey--alert > .--wrap > .content > .actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.giftey--alert > .--wrap > .content > .actions a {
    color: var(--gray-600, #475467);
    font-weight: 600;
}

.giftey--alert > .--wrap > .content > .actions .--link-primary, .giftey--alert.--primary > .--wrap > .content > .actions .--link-primary {
    color: var(--primary-700, #6941C6);
}

.giftey--alert > .--wrap > .close {
    position: relative;
    margin: -7px;
}

.giftey--feature-icon {
    border-radius: 8px;
    border: 1px solid var(--gray-200, #EAECF0);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    width: 40px;
    height: 40px;
    padding: 9px;
    position: relative;
}

.giftey--feature-icon > .wrap .icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    filter: invert(22%) sepia(10%) saturate(1854%) hue-rotate(179deg) brightness(88%) contrast(84%);
}
.giftey--feature-icon.--primary > .wrap .icon {
    filter: invert(20%) sepia(90%) saturate(5428%) hue-rotate(219deg) brightness(104%) contrast(105%);
}

.giftey--feature-icon.--error > .wrap .icon {
    filter: invert(21%) sepia(54%) saturate(4160%) hue-rotate(359deg) brightness(107%) contrast(77%);
}

.giftey--feature-icon.--success > .wrap .icon {
    filter: invert(37%) sepia(98%) saturate(710%) hue-rotate(114deg) brightness(91%) contrast(94%);
}

.giftey--feature-icon > .wrap {
    min-width: 20px;
}

.giftey--alert.--primary {
    border: 1px solid var(--primary-300);
    background: var(--primary-25);
    color: var(--primary-700);
}

.giftey--alert.--primary > .--wrap > .content > .actions a {
    color: var(--primary-600);
}

.giftey--alert.--primary > .--wrap > .content .text {
    color: var(--primary-700);
}

.giftey--feature-icon.--outline {
    border-radius: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 20px;
    height: 20px;
    padding: 0;
}
.giftey--feature-icon.--outline.--circle:after, .giftey--feature-icon.--outline.--circle:before {
    background: var(--primary-300);
    border-color: transparent;
}

.giftey--feature-icon.--light-circle-outline {
    border-radius: 28px;
    border: 6px solid var(--gray-50);
    background: var(--gray-100);
    padding: 6px;
    width: 43px;
    height: 43px;
    margin: -5px;
    box-shadow: none;
}

.giftey--feature-icon.--light-circle-outline.--error {
    border: 6px solid var(--error-50);
    background: var(--error-100);
}

.giftey--alert.--gray {
    border: 1px solid var(--gray-300);
    background: var(--gray-25);
}
.giftey--alert.--error {
    border: 1px solid var(--error-300);
    background: var(--error-25);
    color: var(--error-700);
}
.giftey--alert.--error > .--wrap > .content > .actions .--link-primary, .giftey--alert.--error > .--wrap > .content .text{
    color: var(--error-700);
}
.giftey--alert.--error > .--wrap > .content > .actions a {
    color: var(--error-600);
}

.giftey--alert.--success {
    border: 1px solid var(--success-300);
    background: var(--success-25);
    color: var(--success-700);
}
.giftey--alert.--success > .--wrap > .content > .actions .--link-primary, .giftey--alert.--success > .--wrap > .content .text{
    color: var(--success-700);
}
.giftey--alert.--success > .--wrap > .content > .actions a {
    color: var(--success-600);
}

.giftey--feature-icon.--outline:after, .giftey--feature-icon.--outline:before  {
    content:'';
    top: -10px;
    left: -10px;
    position: absolute;
    border-radius: 24px;
    border: 2px solid var(--primary-600);
    opacity: 0.1;
    width: 36px;
    height: 36px;
    pointer-events: none;
}

.giftey--feature-icon.--outline:before {
    top: -5px;
    left: -5px;
    opacity: 0.3;
    width: 26px;
    height: 26px;
}

.giftey--feature-icon.--gray.--outline:after, .giftey--feature-icon.--gray.--outline:before  {
    border-color: var(--gray-600);
}

.giftey--feature-icon.--error.--outline:after, .giftey--feature-icon.--error.--outline:before  {
    border-color: var(--error-600);
}

.giftey--feature-icon.--success.--outline:after, .giftey--feature-icon.--success.--outline:before  {
    border-color: var(--success-600);
}

.gifteyforms > .wrapper .alerts:empty {
    display: none;
}

.gifteyforms > .wrapper .alerts {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.gifteyforms.--progress {
    pointer-events: none;
    opacity: 0.7;
}

.gifteyforms {
    transition: .2s;
}

.page--layout > .--wrap {
    display: grid;
    gap: 32px;
}

.page--header > .--wrap {
    display: grid;
    gap: 32px;
    padding-top: 32px;
}

.page--header > .--wrap .title {
    color: var(--gray-900);
    /* Display sm/Semibold */
    font-size: 30px;
    line-height: 38px; /* 126.667% */
}

.page--header > .--wrap > .--title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.--navigation > .--wrap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
}

.--navigation > .--wrap > .--item {
    padding: 1px 4px 10px 4px;
    color: var(--gray-500);
    /* Text sm/Semibold */
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    display: block;
    border: none;
    background: inherit;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}

.--navigation {
    border-bottom: 1px solid var(--gray-200);
}

.--navigation > .--wrap > .--item.active {
    border-color: var(--primary-700);
    color: var(--primary-700);
}


.--profile > .--wrap {
    display: flex;
    gap: 12px;
}

.--profile {
    padding-left: 8px;
}

.--profile > .--wrap .--photo {
    width: 40px;
    height: 40px;
}

.--avatar {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    line-height: 0;
}

.--avatar > .--placeholder {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 200px;
    background: var(--gray-100, #F2F4F7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.--avatar > .--placeholder .--icon {
    width: 50%;
    height: 50%;
}
.--avatar .--status {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.--avatar:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 200px;
    border: 1px solid var(--gray-900, #101828);
    opacity: 0.08;
    z-index: 2;
    right: 0;
    bottom: 0;
    margin: auto;
}

.--avatar.--square:before {
    border-radius: 10px;
}

.--square .giftey-avatar {
    border-radius: 8px;
}

.--square .giftey-avatar .placeholder {
    border-radius: 10px;
}

.--square.--avatar img {
    border-radius: 8px;
}



.--double-avatar {
    position: relative;
}

.--double-avatar > .--wrap > .--avatar {
    position: absolute;
    width: 35px;
    height: 35px;
}

.--double-avatar > .--wrap > .--avatar .giftey-avatar {
    min-width: auto;
    width: 100%;
    height: 100%;
}

.--double-avatar > .--wrap > .--avatar:last-child {
    right: 0px;
    bottom: -3px;
    z-index: 2;
    width: 27px;
    height: 27px;
}

.--double-avatar > .--wrap > .--avatar .giftey-icon {
    min-width: 20px;
    height: 20px;
    width: 20px;
}


.--project-scrollbar-item .--avatar:before {
    width: calc(100% - 1px);
    height: calc(100% - 2px);
    top: 1px;
}
.--profile > .--wrap > .--details {
    color: var(--gray-600, #475467);
    display: grid;
    align-items: center;
}

.--profile > .--wrap > .--details > .name {
    color: var(--gray-700, #344054);
    font-weight: 600;
}

.--profile > .--wrap > .--actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
}
.bg--gray-25 {
    background-color: var(--gray-25);
}


.--nav ul {
    display: grid;
    gap: 4px;
    list-style: none;
}

.mai--nav > .--wrap > .--header {
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    transition: .2s;
    border-radius: 6px;
    background: var(--base-white, #FFF);
    cursor: pointer;
}
.mai--nav.active .--wrap .--sub-nav {
    display: block;
}

.mai--nav > .--wrap {
    display: grid;
    gap: 8px;
}

.mai--nav.active .--open {
    transform: rotate(180deg);
}
.mai--nav a {
    color: var(--gray-700);
}

.mai--nav .--wrap .--sub-nav {
    display: none;
}

.mai--nav > .--wrap > .--header > .--left .icon {
    height: 24px;
}

.mai--nav > .--wrap > .--header > .--left {
    font-weight: 600;
    display: grid;
    grid-template-columns: 24px calc(100% - 24px);
    gap: 12px;
    align-items: center;
    font-size: 16px;
    width: calc(100% - 28px);
}

.mai--nav > .--wrap > .--header > .--right {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.mai--nav > .--wrap > .--header > .--right .icon {
    width: 20px;
    height: 20px;
}

.mai--nav {
    cursor: pointer;
    display: block;
    user-select: none;
}

.mai--nav > .--wrap > .--header:hover {
    border-radius: 6px;
    background: var(--gray-50, #F9FAFB);
}
.page--layout.--sm {
    max-width: 640px;
    margin: auto;
}

.page--section {
    margin-bottom: 32px;
}

.tippy-box {/* Shadow/lg */
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border-radius: 8px;
    background: var(--gray-900);
}

.tippy-content {
    padding: 8px 12px;
    color: var(--base-white, #FFF);
    /* Text xs/Semibol */
    font-size: 12px;

    font-weight: 600;
    line-height: 18px; /* 150% */
}

.tippy-arrow {
    color: var(--gray-900);
}

.--projects-scrollbar {
    border-right: 1px solid var(--gray-200);
    background: var(--gray-50);
    height: 100vh;
    width: 81px;
}

.--projects-scrollbar > .--wrap > .--scroll-area {
    height: 100vh;
    overflow: auto;
}


.--projects-scrollbar > .--wrap > .--scroll-area > .--items {
    display: flex;
    flex-direction: column;
    height: max-content;
    min-height: 100vh;
}

.--project-scrollbar-item .--avatar {
    height: 50px;
    width: 50px;
}

.--project-scrollbar-item {
    padding: 15px;
    cursor: pointer;
    position: relative;
}
.--project-scrollbar-item > .--notifications {
    position: absolute;
    bottom: 8px;
    z-index: 1;
    right: 8px;
    background: var(--primary-600);
    color: white;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    padding-top: 4px;
    border-radius: 11px;
}

.--project-scrollbar-item > .--notifications:empty{
    display:none;
}
.--projects-scrollbar > .--wrap > .--scroll-area > .--items > .--item {
    border-bottom: 1px solid var(--gray-200);
    transition: .2s;
}

.--projects-scrollbar > .--wrap > .--scroll-area > .--items > .--item.--active, .--projects-scrollbar > .--wrap > .--scroll-area > .--items > .--item:hover {
    background: var(--base-white);
}

.--page-header {
    border-bottom: 1px solid var(--gray-200, #EAECF0);
    padding-bottom: 20px;
    padding-top: 48px;
}

.--page-header > .--wrap {display: grid;gap: 20px;padding: 0 32px;}

.--page-header > .--wrap > .--title {
    display: flex;
    justify-content: space-between;
}

.--page-header > .--wrap > .--title > h1 {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.2;
}

.--page-header > .--wrap > .--title > h1 .--badge {
    font-size: 14px;
}

h1, h2, h3 {
    color: var(--gray-900);
}

.dataTables_wrapper .dataTables_length {
    display: none;
}

.dataTables_wrapper .--table {
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--base-white);

    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    overflow: hidden;
}

.dataTables_wrapper .--table th {
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 12px 24px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 18px;
}
.dataTables_wrapper .--table tfoot th {
    border-bottom: none;
    border-top: 1px solid var(--gray-200);
}
.--knowlegde-base > .--wrap > .--main > .--wrap > .--content {
    display: grid;
    gap: 24px;
}

table.dataTable td.dataTables_empty {
    padding: 20px 0;
    font-weight: 500;
}

.dataTables_wrapper .dataTables_paginate {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
}

span.select2-container.select2-container--open {
    z-index: 11111;
    width: 100%;
}

span.select2-container--default .select2-selection {
    border: none;
    min-height: 42px;
    padding: 0;
}

span.select2-container--default .select2-selection .select2-selection__rendered {
    line-height: 42px;
    padding-left: 0;
    color: var(--gray-900);
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
span.select2-container--default .select2-selection.select2-selection--multiple .select2-selection__rendered {
    padding-top: 8px;
}
span.select2.select2-container {
    width: 100% !important;
}

span.select2-container--default .select2-selection .select2-selection__arrow {
    height: 42px;
    top: 0;
}

span.select2-dropdown {
    border-radius: 8px !important;
    top: 5px;
    border: 1px solid var(--gray-200, #EAECF0) !important;
}

span.select2-search--dropdown {
    padding: 10px;
}

span.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 10px 14px;
    font-size: 16px;
    font-family: inherit;
}

li.select2-results__option.select2-results__message, .select2-results__option--disabled {
    padding: 10px 14px;
}

.select2-selection__rendered:empty {
    display: none !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 16px;
    font-family: inherit;
    line-height: 1.1;
    height: auto;
    margin: 0;
    padding-top: 0 !important;
    top: 13px;
    position: relative;
    border-radius: 0px;
    padding-bottom: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
}
span.select2-search.select2-search--inline {
    display: block;
}

.--fieldset > .wrap > .field > .--wrap .input.--open {}
.--fieldset span.select2-container--default li.select2-selection__choice {
    background: transparent;
    padding: 0;
    border: none;
    margin: 0;
    line-height: 1;
}

.select2-container--default  .select2-selection__choice__remove {
    display: none;
}

.select2-container--default .select2-results__option--selected {
    background: var(--gray-50, #F9FAFB);
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.select2-results__option {
    padding: 10px 10px 10px 8px;
    border-radius: 6px;
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.select2-results__options {
    padding: 6px 6px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: inherit;
    background: var(--gray-25);
}

.ui-btn.--badge {
    border-radius: 6px;
    padding: 2px 4px 2px 8px;
    gap: 2px;
}

.ui-btn.--badge .icon {
    width: 16px;
    height: 16px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding: 0;
}

.ui-select-result .icon {
    line-height: 0;
    width: 24px;
    height: 24px;
}

.ui-select-result {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-800);
}

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

.--empty-state > .--wrap {
    display: grid;
    justify-content: center;
    gap: 20px;
}

.--empty-state > .--wrap > .icon {
    width: max-content;
    margin: auto;
}

.--empty-state > .--wrap .title {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.--empty-state > .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-position: center 61%;
    z-index: -1;
    width: 100%;
    background-size: cover;
}

.select2-container--default .select2-results__option--selected:after {
    content: '';
    background-image: url("../icons/ui/check.svg");
    width: 20px;
    height: 20px;
    display: block;
    background-size: contain;
    position: relative;
    top: 2px;
    filter: invert(20%) sepia(42%) saturate(7472%) hue-rotate(219deg) brightness(94%) contrast(104%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.dataTables_wrapper table.dataTable tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.dataTables_wrapper table.dataTable tbody tr:last-child td {
    border-bottom: none;
}

/*
Badges
 */

.--badge {
    display: inline-flex;
    padding: 2px 10px 2px 8px;
    align-items: center;
    gap: 6px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    mix-blend-mode: multiply;
    color: var(--gray-700);
    text-align: center;

    /* Text sm/Medium */
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    white-space: nowrap;
}

.--badge.--dot .icon {
    width: 8px;
    height: 8px;
    background: var(--gray-500);
    border-radius: 10px;
}

.--badge.--dot.--success .icon {
    background: var(--success-500);
}

.--badge.--success {
    border: 1px solid var(--success-200, #ABEFC6);
    background: var(--success-50, #ECFDF3);
    color: var(--success-700, #067647);
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.gap-5 {
    gap: 5px;
}
.justify-content-center {
    justify-content: center;
}
.--user-s-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.--user-s-card .--avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
}

.--user-s-card .--name {font-weight: 500;color: var(--gray-700);}

.--user-profile-header > .--wrap {
    display: flex;
    flex-direction: column;
}

.--user-profile-header > .--wrap .--card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.--user-profile-header > .--wrap .--card .--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.--user-profile-header > .--wrap .--card .--avatar {
    width: 96px;
    height: 96px;
}

.--user-profile-header > .--wrap .--card .--name .text {
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.--status {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1.5px solid var(--Base-White, #FFF);
    background: var(--gray-300);
    display: inline-block;
}

.--status.--online {
    background: var(--success-600);
}

.--user-profile-header > .--wrap .--card .--name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.--user-profile-header > .--wrap .--card .--caption {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 4px;
    color: var(--gray-600);
}

.--avatar.--border {
    border: 4px solid white;
    border-radius: 100px;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    left: -4px;
}

.--user-profile-header > .--wrap .--cover {
    background: var(--gradient-linear-color-01, linear-gradient(180deg, #A5C0EE 0%, #FBC5EC 100%));
    height: 240px;
    margin-bottom: -50px;
}
.--user-profile-header > .--wrap .--cover.--style-1 {
    margin-bottom: -35px;
    height: 88px !important;
}

.--modal .--user-profile-header > .--wrap .--cover {
    height: 180px;
}
.--modal .--user-profile-header .--profile {
    padding: 0 24px;
}

.--profile-section {
    margin: 24px 0;
    color: var(--Gray-600, #475467);
}

.--profile-section > .--title > .text {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 10px;
}

.--object-loop > .--wrap {
    display: flex;
    gap: 12px;
    line-height: 1.3;
    align-items: center;
}

.--object-loop > .--wrap .--avatar {
    width: 48px;
    height: 48px;
}

.--object-loop {
    margin: 16px 0;
}
.--object-loop .--title > .text {
    color: #344054;
    font-weight: 500;
    line-height: 1.4;
}

.--object-loop .caption {
    color: var(--gray-600);
}

.--object-loop.--md > .--wrap .--avatar {
    width: 40px;
    height: 40px;
}

.--object-loop.--md .caption {
    font-size: 12px;
}

.--object-loop:first-child {
    margin-top: 0;
}
.--object-loop > .--wrap .caption {
    text-transform: capitalize;
    margin-top: 2px;
}

.--object-loop > .--wrap .--right {
}
.--object-loop > .--wrap .--actions {
    margin-left: auto;
}
.--file-upload-item {
    border-radius: 12px;
    border: 1px solid var(--gray-200, #EAECF0);
    background: var(--base-white, #FFF);
    width: 100%;
}

.--file-upload-item > .--wrap {
    padding: 16px;
    display: flex;
    gap: 12px;
    width: 100%;
}

.dropzone .--file-upload-item {
    margin: 0;
    min-height: auto;
    display: inline-flex;
    max-width: calc(50% - 8px);
}

.--file-upload-item .--title {
    color: var(--gray-700);

    /* Text sm/Medium */
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 300px;
}
.--file-upload-item .--progress {
    display: flex;
    margin-top: 10px;
    gap:12px;
    align-items: center;
}
.--file-upload-item .--progress .--line {
    position: relative;
    border-radius: 4px;
    background: var(--gray-200, #EAECF0);
    height: 8px;
    width: 100%;
}
.--file-upload-item .--progress .--percentage {
    color: var(--gray-700);

    /* Text sm/Medium */
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.--file-upload-item > .--wrap > .--details {
    width: 100%;
}

.--file-upload-item .--meta {
    color: var(--gray-600);

    /* Text sm/Regular */
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.--file-upload-item .--meta [data-dz-size] strong {
    font-weight: normal;
}

.--file-upload-item .--progress  .dz-upload {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 4px;
    background: var(--primary-600);
}

.--file-upload-item .--success, .--file-upload-item .--error {
    display: flex;
    width: 19px;
    height: 19px;
    border-radius: 100px;
    padding: 2px;
    display: none;
}

.--file-upload-item > .--wrap > .--details > .--row {
    display: flex;
    justify-content: space-between;
}

.--file-upload-item .--success .icon, .--file-upload-item .--error .icon {
    width: 100%;
    height: 100%;
    background-size: contain;
    filter: invert(1);
    cursor: pointer;
}

.--file-upload-item .--success {
    background: var(--success-600);
}

.--file-upload-item .--error {
    background: var(--error-600);
}

.--file-upload-item.dz-success .--success {
    display: flex;
}

.--file-upload-item.dz-error .--error {
    display: flex;
    cursor: pointer !important;
}

.--extension-file-icon {
    width: 32px;
    height: 40px;
    position: relative;
    background-image: url("../icons/page.svg");
}
.--extension-file-icon > .--label {
    border-radius: 2px;
    background: var(--primary-600);
    color: var(--base-white);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    padding: 2px 3px;
    left: -6px;
    bottom: 6px;
    text-transform: uppercase;
}

.--extension-file-icon.--pdf > .--label {
    background: var(--error-600, #D92D20);
}

.--extension-file-icon.--txt > .--label, .--extension-file-icon.--docx > .--label {
    background: var(--gray-700);
}
.align-center {
    align-items: center;
}

.giftey--alert > .--wrap > .spinner {
    width: 25px;
    height: 25px;
    position: relative;
}

.giftey--alert > .--wrap > .spinner .--loader {
    opacity: 1;
    filter: none;
}


.giftey--alert > .--wrap > .spinner .--loader span {
    animation-duration: 1.5s;
}
.--gl-13 {
    background: var(--Gradient-Linear-Color-13);
}