* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    list-style: none;
    text-decoration: none;
    background: transparent;
    line-height: 2rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: rgb(var(--text-color));
    letter-spacing: 0.3px;
    transition: 300ms ease;
    box-sizing: border-box;
}
:root {
    --background: 245 245 250;
    --opac-bg: rgba(245, 245, 250, 0.6);

    --bg-form: rgb(250, 250, 255);
    --bg-form-opac: rgba(250, 250, 255, 0.6);
    --bg-form-two: rgb(240, 240, 245);
    --bg-abs: rgba(250, 250, 255, 0.2);

    --input: rgb(255, 255, 255);
    --input-active: rgb(250, 250, 252);

    --border: rgb(220, 222, 230);
    --border-active: rgb(190, 192, 205);

    --tw-bg-opacity: 1;

    --text-color: 30 32 40;
    --opac-color: rgb(90, 95, 105);

    --shadow: rgba(0, 0, 0, 0.034);

    --primary: #4265ff;
    --primary-opac: #4265ff15;

    --danger: rgb(235, 78, 117);
    --danger-opac: rgba(235, 78, 117, 0.08);

    --success: rgb(17, 179, 111);
    --success-opac: rgba(17, 179, 112, 0.08);

    --warning: rgb(248, 212, 80);
    --warning-opac: rgba(248, 212, 80, 0.12);

    --orange: rgb(252, 180, 69);
    --orange-opac: rgba(252, 180, 69, 0.12);

    --mockups: url("../images/mocks.png");

    --mocker: url("../images/app.png");

    --hero-shade: #01143438, #011434ce;
}

.dark {
    --background: 10 11 16;
    --opac-bg: rgba(10, 11, 16, 0.466);
    --bg-form: rgb(13, 14, 20);
    --bg-form-opac: rgba(13, 14, 20, 0.445);
    --bg-form-two: rgb(16, 17, 24);
    --bg-abs: rgba(13, 14, 20, 0.17);
    --input: rgb(19, 21, 31);
    --input-active: rgb(19, 21, 32);
    --border: rgb(24, 27, 39);
    --border-active: rgb(33, 37, 53);
    --tw-bg-opacity: 1;
    --text-color: 222 225 230;
    --opac-color: rgb(145, 150, 158);
    --shadow: rgba(33, 37, 53, 0.295);
    --primary: #4265ff;
    --primary-opac: #4265ff15;
    --danger: rgb(235, 78, 117);
    --danger-opac: rgba(235, 78, 117, 0.103);
    --success: rgb(17, 179, 111);
    --success-opac: rgba(17, 179, 112, 0.123);
    --warning: rgb(248, 245, 80);
    --warning-opac: rgba(248, 245, 80, 0.103);
    --orange: rgb(252, 203, 69);
    --orange-opac: rgba(252, 203, 69, 0.103);

    --mockups: url("../images/mockusdark.png");

    --mocker: url("../images/appdark.png");

    --hero-shade: #c5cfe038, #d5dae4ce;
}

.cover-nowed {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}
.heeeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.all-border {
    border-radius: 30px !important;
}
.mw-70 {
    max-width: 70%;
}
textarea::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
/* Remove setas no Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove setas no Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

body {
    width: 100vw;
    display: flex;
    overflow-x: hidden;
}
body,
.abs-message .inside-abs-message {
    background-color: rgb(var(--background) / var(--tw-bg-opacity));
    position: relative;
}
body::before,
.abs-message .inside-abs-message:before {
    top: -500px;
    left: 50%;
    transform: translate(-50%, 0);
    content: "";
    width: 500px;
    height: 400px;
    position: fixed;
    background: #4264ff80;
    filter: blur(300px);
}

.d-flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.column {
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-start {
    justify-content: flex-start !important;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.g-4px {
    gap: 4px;
}
.g-8px {
    gap: 8px;
}
.g-12px {
    gap: 12px;
}
.g-16px {
    gap: 16px;
}
.g-20px {
    gap: 20px;
}
.g-32px {
    gap: 32px;
}
.g-36px {
    gap: 32px;
}
.size-12 {
    font-size: 12px;
}
.size-14 {
    font-size: 14px;
}
.size-16 {
    font-size: 16px;
}
.size-18 {
    font-size: 18px;
}
.size-20 {
    font-size: 20px;
}
.size-22 {
    font-size: 22px;
}
.size-24 {
    font-size: 24px;
}
.size-26 {
    font-size: 26px;
}
.size-28 {
    font-size: 28px;
}
.size-30 {
    font-size: 30px;
}
.size-32 {
    font-size: 32px;
}
.size-34 {
    font-size: 34px;
}
.size-36 {
    font-size: 36px;
}
.size-40 {
    font-size: 40px;
    font-weight: 900;
}
.btn {
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}
.btn-filter {
    height: 28px;
    border-radius: 8px;
}
.btn-filter span {
    font-size: 11px;
}
button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn i,
.btn span {
    font-weight: 600;
}
.huge-btn {
    height: 44px;
}
.btn-primary {
    background: var(--primary);
}
.btn-primary span,
.btn-primary i {
    color: rgb(222, 225, 230);
}
.btn:hover {
    opacity: 0.9;
}
.btn-color {
    background: rgb(var(--text-color));
}
.btn-color i,
.btn-color span {
    color: rgb(var(--background));
}
.square-btn {
    width: 34px;
    height: 34px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-active);
    cursor: pointer;
}
.bg-form {
    background: var(--bg-form);
}
.grid-auth {
    display: grid;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    grid-template-columns: 48rem auto;
}
.grid-auth form {
    width: 400px;
}
.grid-auth .bg-form {
    border-right: 1px solid var(--border);
}
.input,
.textarea {
    background: var(--input);
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 0 16px;
}
.input::placeholder,
.textarea::placeholder {
    color: var(--opac-color);
}
.input:active,
.input:hover,
.input:focus,
.textarea:active,
.textarea:hover,
.textarea:focus {
    background: var(--input-active);
    border-color: var(--border-active);
}
.input:disabled,
.textarea:disabled {
    opacity: 0.9;
    border: none;
    pointer-events: none;
}
.textarea {
    height: 90px;
    resize: none;
    padding: 16px 16px;
}
.color-opac {
    color: var(--opac-color);
}
.underline {
    text-decoration: underline;
}
.extra-bold {
    font-weight: 700;
}
.bold {
    font-weight: 600;
}
.medium {
    font-weight: 500;
}
.light {
    font-weight: 400;
}
.logo-abs {
    position: absolute;
    top: 16px;
    left: 16px;
}
.logo-abs img {
    height: 34px;
    width: auto;
    object-fit: cover;
}
i {
    display: flex;
    align-items: center;
    justify-content: center;
}
.abs-shade {
    background: var(--bg-abs);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.big-form {
    background: var(--bg-form-two);
    width: 890px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 12px 13px 30px var(--shadow);
}
.onboard-form {
    width: 450px;
}
.p-12 {
    padding: 12px;
}
.p-16 {
    padding: 16px;
}
.br-bt {
    border-bottom: 1px solid var(--border);
}
.br-tp {
    border-top: 1px solid var(--border);
}
.relative {
    position: relative;
}
.cover-area {
    padding-bottom: 60px;
}
.cover-area .cover-pic {
    background: var(--input);
    display: flex;
    height: 120px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.abs-pht {
    position: absolute;
    bottom: 40px;
    left: 30px;
}
.abs-pht label {
    width: 70px;
    height: 70px;
    border-radius: 30px;
    background: var(--border);
    border: 1px dashed var(--border-active);
    overflow: hidden;
}
.cover-area label img,
.abs-pht label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.error {
    font-weight: 400;
    font-size: 13px;
    color: var(--danger);
    margin-top: -4px;
}
.success {
    font-weight: 400;
    font-size: 13px;
    color: var(--success);
    margin-top: -4px;
}
.text-center {
    text-align: center;
}
.w-370px {
    width: 370px;
}
.abs-message {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.abs-message .inside-abs-message {
    width: 100%;
    height: 100%;
}
.abs-message .inside-abs-message i {
    font-size: 60px;
    color: var(--primary);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #4265ff13;
}
.abs-message .inside-abs-message.error-abs i {
    color: var(--danger);
    background: rgba(248, 48, 148, 0.137);
}
.abs-message .inside-abs-message.error-abs:before {
    background: rgba(248, 48, 148, 0.137);
}
.grid-prod-frm {
    display: grid;
    grid-template-columns: 38rem auto;
}
.prod-pht {
    background: var(--input);
    border: 1px dashed var(--border);
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
}
.prod-pht:hover {
    border-color: var(--border-active);
    background: var(--input-active);
}
.prod-pht img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

select,
::picker(select) {
    appearance: base-select;
}
select {
    border: 2px solid var(--border);
    background: var(--input);
    padding: 0 12px;
    transition: 0.4s;
    font-size: 14px;
    height: 34px;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
}
select:hover,
select:focus {
    background: var(--border);
}
select::picker-icon {
    color: var(--opac-color);
    transition: 0.4s rotate;
}
select:open::picker-icon {
    rotate: 180deg;
}
::picker(select) {
    border: none;
}
option {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    border: 2px solid var(--border);
    background: var(--input);
    padding: 10px;
    transition: 0.4s;
    font-size: 14px;
}
option:first-of-type {
    font-size: 14px;
}
option:last-of-type {
    font-size: 14px;
}
option:not(option:last-of-type) {
    border-bottom: none;
}
option:nth-of-type(odd) {
    background: var(--bg-form);
}
option:hover,
option:focus {
    background: var(--input);
}
option .icon {
    font-size: 1.6rem;
    text-box: trim-both cap alphabetic;
}
option span,
select span {
    font-size: 14px;
}

.abs-form-add-category {
    position: absolute;
    right: -350px;
    top: 0;
}
.inside-add-cat {
    background: var(--bg-form);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    width: 320px;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: cover;
}
.dashboard-grid {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 17rem auto;
    padding: 0 16px;
}
.dashboard-grid.but-bo-gridded {
    display: flex;
    flex-direction: column;
}
.sidebar {
    padding: 16px 0;
}
.sidebar .side-nv a {
    height: 44px;
    opacity: 0.8;
}
.sidebar .side-nv a span {
    font-weight: 400;
}
.sidebar .side-nv a:hover {
    opacity: 1;
}
.sidebar .side-nv a.active {
    opacity: 1;
}
.sidebar .side-nv a.active span,
.sidebar .side-nv a.active i {
    font-weight: 500;
    color: var(--primary);
}

.abs-option-square {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    padding-right: 0;
    display: none;
    z-index: 12;
}
.abs-option-square .inside-abs-square {
    background: var(--bg-form);
    box-shadow: 4px 4px 10px var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 26px;
}
.abs-option-square .inside-abs-square button {
    border-radius: 0;
}
.square-btn:hover .abs-option-square {
    display: flex;
}
.nowrap {
    text-wrap: nowrap;
}

.btn-small-hover {
    background: transparent;
}
.btn-small-hover:hover {
    background: var(--border);
}
.btn-small-hover i,
.btn-small-hover span {
    font-size: 12px;
    font-weight: 500;
}
.user-img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
}
.navbar {
    padding: 16px;
    z-index: 12;
}
.text-left {
    text-align: left;
}
.p-8 {
    padding: 8px;
}

.input input {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    background: transparent;
}
.input input::placeholder {
    color: var(--opac-color);
}
.grid-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 270px));
    gap: 24px;
    max-height: 90vh;
    overflow-y: auto;
    justify-content: center;
}
.product {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
}
.product:hover {
    background: var(--bg-form);
    border-color: var(--border);
}
.image-prod {
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 12px;
    padding: 8px;
}
.image-prod img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.seller-dashboard {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.seller-dashboard .grid-profile {
    padding-top: 60px;
}

.grid-find {
    display: grid;
    grid-template-columns: auto 25rem;
    gap: 44px;
}
.grid-selling {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: auto 38rem;
}
.ctas span {
    height: 34px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--bg-form-two);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--opac-color);
}
.cart-finish {
    height: 100%;
    background: var(--bg-form);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
}
.items-list {
    max-height: 54vh;
    overflow-y: auto;
}
.items-list::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
.items-list::-webkit-scrollbar-thumb:hover {
    background: var(--opac-color);
}
.search-modal .items-list {
    padding-bottom: 50px;
}

.item-lst {
    height: 120px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}
.item-lst:last-child {
    border-color: transparent;
}
.item-lst:hover {
    background: var(--bg-form-two);
}
.item-lst img {
    height: 100%;
    width: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.close-hover {
    opacity: 0.7;
}
.close-hover:hover {
    opacity: 1;
}
.resize-small-user img {
    width: 34px;
    height: 34px;
    border-radius: 16px;
    object-fit: cover;
}
.search-input {
    height: 60px;
    border-radius: 16px;
    background: var(--input);
    border: 1px solid var(--border);
    padding: 0 16px;
    width: 380px;
}
.search-input input {
    background: transparent;
    height: 100%;
    width: 100%;
    border-radius: 16px;
}
.search-input input::placeholder {
    color: var(--opac-color);
}
.navel {
    z-index: 12;
}
.pr-24 {
    padding-right: 24px;
}
.shader {
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
}
.btn-small-hover.active {
    background: var(--border-active);
}
.grid-payment {
    height: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.grid-payment button {
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-form-two);
    opacity: 0.8;
}
.grid-payment button:hover {
    opacity: 1;
}
.grid-payment button i {
    font-size: 24px;
}
.grid-payment button.active {
    background: var(--warning-opac);
    border-color: var(--warning-opac);
    pointer-events: none;
}
.grid-payment button.active i,
.grid-payment button.active span {
    color: var(--warning);
}
.btn-primary.disabled {
    background: var(--border);
    pointer-events: none;
}
.square-btn.no-square {
    background: transparent;
    border: none;
}
.grid-sales-dashboard {
    display: grid;
    grid-template-columns: auto 30rem;
    gap: 32px;
    max-height: 88vh;
    overflow-y: auto;
}
.cards-sales {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 120px;
}
.cards-sales.card-sales-4 {
    grid-template-columns: repeat(4, 1fr);
}
.card-item {
    animation: fade2 1s ease;
}
.card-item :nth-child(2) {
    animation-duration: 1.5s;
}
.card-item :nth-child(3) {
    animation-duration: 2s;
}
.whattt {
    background: var(--bg-form-opac);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    border: 1px solid var(--border);
    box-shadow: 0 4px 30px var(--shadow);
    padding: 12px;
    border-radius: 12px;
}
.card-item:hover {
    background: transparent;
}

::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--opac-color);
    border-radius: 8px;
}

.sales-table {
    height: 380px;
    min-height: 380x;
    max-height: 600px;
    padding: 0;
    overflow-y: auto;
    margin-bottom: 40px;
}
.payment {
    height: 28px;
    padding: 0 12px;
    border-radius: 30px;
    border: 1px solid var(--success-opac);
    background: var(--success-opac);
}
.payment span,
.payment i {
    font-size: 11px;
    color: var(--success);
}
.payment.xpress {
    border: 1px solid var(--orange-opac);
    background: var(--orange-opac);
}
.payment.xpress span,
.payment.xpress i {
    font-size: 11px;
    color: var(--orange);
}
.payment.bank {
    border: 1px solid var(--primary-opac);
    background: var(--primary-opac);
}
.payment.bank span,
.payment.bank i {
    font-size: 11px;
    color: var(--primary);
}

.product-thumb {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    object-fit: cover;
}
.payment.erno {
    border: 1px solid var(--danger-opac);
    background: var(--danger-opac);
}
.payment.erno span,
.payment.erno i {
    font-size: 11px;
    color: var(--danger);
}
.abs-per-page {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    background: var(--bg-form-opac);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
}
.p-0 {
    padding: 0 !important;
}

.details-right {
    height: 100%;
    width: 600px;
    background: var(--bg-form);
    border-left: 1px solid var(--border);
}
.search-modal {
    width: 640px;
    height: 540px;
    box-shadow: 12px 13px 30px var(--shadow);
    background: var(--bg-form-two);
}
.search-modal .find {
    height: 50px;
    background: var(--input);
    width: 100%;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.search-modal .find input {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.search-modal .find input::placeholder {
    color: var(--opac-color);
}
.hover-opac {
    opacity: 0.8;
}
.hover-opac:hover {
    opacity: 1;
}
.abs-search .logo-img {
    height: 24px;
}
.abs-search {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--bg-form-opac);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -6px 20px var(--shadow);
}
.main-dashboard {
    height: 88vh;
}
.expense {
    width: 100%;
    justify-content: flex-start;
    height: 60px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    opacity: 0.89;
    background: transparent;
}
.expense:hover {
    opacity: 1;
    background: var(--bg-form-two);
    border-color: var(--border);
}
.sm-img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}

.grid-profile {
    display: grid;
    grid-template-columns: 34rem 34rem;
    justify-content: center;
    gap: 32px;
    max-height: 95%;
    overflow-y: auto;
}
.profile-cover {
    width: 100%;
    height: 170px;
}
.profile-cover .cover-inserted,
.user-image-skeleton {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: var(--border);
}
.abs-prf {
    position: absolute;
    left: 50%;
    bottom: -120px;
    transform: translate(-50%, -0);
    flex-shrink: 0;
    display: flex;
}
.abs-prf img,
.user-image-skeleton {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgb(var(--background));
    flex-shrink: 0;
}
.mt-130 {
    margin-top: 130px;
}
.btn-br {
    border: 1px solid var(--border);
    opacity: 0.89;
}
.hahaha-cover {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}
.hahaha-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(50px);
    opacity: 0.2;
}
.hahaha-cover div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.btn-bg {
    background: rgb(var(--text-color));
}
.btn-bg span,
.btn-bg i {
    color: var(--bg-form);
}
.btn-erno {
    background: var(--danger-opac);
    border-color: var(--danger-opac);
}
.btn-erno span,
.btn-erno i {
    color: var(--danger);
}
.btn-erno:hover {
    opacity: 0.8;
}
.btn-suc {
    background: var(--success-opac);
    border-color: var(--success-opac);
}
.btn-suc span,
.btn-suc i {
    color: var(--success);
}
.btn-suc:hover {
    opacity: 0.8;
}

.grid-employees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 270px));
    gap: 24px;
}
.card-profile {
    height: 300px;
    overflow: hidden;
    border-radius: 24px;
}
.card-profile .abs-im-crd {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.card-profile .abs-im-crd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.abs-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: flex-end;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.719)
    );
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
}
.grid-you-khown button {
    border: none;
    border-radius: 30px;
    height: 40px;
}
.grid-you-khown button span {
    color: rgb(var(--background));
    opacity: 0.89;
    font-size: 14px;
}
.grid-you-khown button:last-child {
    background: transparent;
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    box-shadow: inse;
}

.loader {
    width: 50px;
    height: 6px;
    --_g: no-repeat
        radial-gradient(farthest-side, rgb(var(--background)) 94%, transparent);
    background: var(--_g) 25% 0, var(--_g) 75% 0;
    background-size: 6px 6px;
    position: relative;
    animation: l24-0 1s linear infinite;
}
.loader:before {
    content: "";
    position: absolute;
    height: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgb(var(--background));
    inset: 0;
    margin: auto;
    animation: l24-1 1s cubic-bezier(0.5, 300, 0.5, -300) infinite;
}
.loader.ground {
    width: 50px;
    height: 6px;
    --_g: no-repeat
        radial-gradient(farthest-side, var(--primary) 94%, transparent);
    background: var(--_g) 25% 0, var(--_g) 75% 0;
    background-size: 6px 6px;
    position: relative;
    animation: l24-0 1s linear infinite;
}

.loader.ground:before {
    content: "";
    position: absolute;
    height: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    inset: 0;
    margin: auto;
    animation: l24-1 1s cubic-bezier(0.5, 300, 0.5, -300) infinite;
}

.loader.text-ld {
    width: 50px;
    height: 6px;
    --_g: no-repeat
        radial-gradient(farthest-side, rgb(var(--text-color)) 94%, transparent);
    background: var(--_g) 25% 0, var(--_g) 75% 0;
    background-size: 6px 6px;
    position: relative;
    animation: l24-0 1s linear infinite;
}

.loader.text-ld:before {
    content: "";
    position: absolute;
    height: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgb(var(--text-color));
    inset: 0;
    margin: auto;
    animation: l24-1 1s cubic-bezier(0.5, 300, 0.5, -300) infinite;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tw-table {
    width: 100%;
    border-collapse: collapse;
}

.tw-table thead th {
    text-align: left;
    font-weight: 600;
    color: var(--opac-color);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-form-two);
    white-space: nowrap;
    font-weight: 400;
}

.tw-table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.tw-table tbody tr:hover {
    background: var(--bg-form-two);
    transition: background 0.15s ease, transform 0.12s ease;
}

.tw-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 40px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.nothing .tw-table tbody td,
.nothing .tw-table thead th {
    border-bottom: none;
    background: transparent;
    border-top: none;
}
.reverse {
    transform: scaleX(-1);
}
.reverse img {
    object-fit: cover;
}

.dotter {
    font-size: 9px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--danger);
    color: rgb(var(--background));
    font-weight: 700;
    flex-shrink: 0;
    position: absolute;
    top: -4px;
    right: -4px;
}
.activeed {
    border-radius: 8px;
    background: var(--input-active);
    border: 1px solid var(--border-active);
}
.expense.selected {
    background: var(--border);
    border-color: var(--border-active);
}

.card-edit-produt {
    width: 100vw;
    height: 100vh;
    padding: 50px 0;
}
.card-edit-produt .w-cd {
    width: 980px;
}

.edit-img {
    width: 350px;
    height: 200px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.edit-img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-form-two);
    opacity: 0.2;
}
.edit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.edit-img .load {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-code {
    position: absolute;
    bottom: 12px;
    left: 12px;
}
.addby-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}
.statusly {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0px 6px;
    border-radius: 12px;
    background: var(--danger-opac);
    color: var(--danger);
    border: 1px solid var(--danger-opac);
    font-size: 11px;
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
}
.statusly.suc {
    background: var(--success-opac);
    color: var(--success);
    font-weight: 600;
    border-color: var(--success-opac);
}
.statusly.color-opac {
    background: var(--bg-form-opac);
    color: var(--opac-color);
    border-color: var(--bg-form-opac);
}
.statusly.medium {
    font-weight: 500;
}
.m-4 {
    margin: 4px;
}
.m-8 {
    margin: 8px;
}
.m-12 {
    margin: 12px;
}
.m-16 {
    margin: 16px;
}
.grig-pharmacists {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(270px, 290px));
    gap: 24px;
}
.pharmacist img,
.pharmacist .image-prod {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-form-two);
}
.pharmacist {
    padding: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid transparent;
}
.pharmacist:hover {
    background: var(--bg-form);
    border-color: var(--border);
}
.pharmacist .skeleton-user-name,
.pharmacist .skeleton-user-email {
    position: initial;
    margin: 0;
}
.abs-phr {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--success);
    background: var(--success-opac);
    padding: 2px 4px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
}
.abs-phr.opaker {
    background: var(--bg-form-opac);
    color: var(--opac-color);
    font-weight: 400;
}
.item-list-src img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.item-list-src {
    height: 50px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    margin: 4px 0;
}
.item-list-src:hover {
    background: var(--border);
    border-color: var(--border-active);
}
.item-list-src.disabled {
    pointer-events: none;
}
.item-list-src.active {
    background: var(--border);
    border-color: var(--border-active);
}

.cat-lst {
    height: 45px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    margin: 4px;
    opacity: 0.7;
}
.cat-lst:hover {
    opacity: 1;
    background: var(--bg-form-two);
    border-color: var(--border);
}

.nav-pharmacist {
    width: 100%;
}
.grid-pharmacist {
    display: grid;
    grid-template-columns: auto 35rem;
    gap: 36px;
}

.medication {
    background: var(--bg-form-two);
    padding: 12px;
    border-radius: 12px;
}
.grid-pharmacist .btn.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.overwy-pharmacy {
    max-height: 80vh;
    overflow-y: auto;
}

/*CHECKBOX STYLLING*/

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.checkbox input {
    display: none;
}
.checkbox .checkmark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--border);
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}
.checkbox:hover .checkmark {
    border-color: var(--border-active);
}
.checkbox input:checked + .checkmark {
    background: linear-gradient(135deg, #4265ff, #4265ff);
    border-color: transparent;
    box-shadow: 0 0 8px rgba(66, 101, 255, 0.6);
}
.checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.2s ease;
}
.checkbox input:checked + .checkmark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}
@media (prefers-color-scheme: dark) {
    .checkbox .checkmark {
        border-color: #777;
    }
    .checkbox input:checked + .checkmark {
        box-shadow: 0 0 10px rgba(66, 101, 255, 0.6);
    }
}

/* Skeleton styles for cards */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin-bottom: 8px;
}

.card-item .skeleton-text {
    height: 18px;
    margin: 4px 0;
}

/* Skeleton styles for low stock items */
.skeleton-lowstock {
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-lowstock-image {
    width: 100px !important;
    height: 100px !important;
    border-radius: 8px;
}

.skeleton-lowstock-text {
    height: 14px;
    width: 60%;
    margin-bottom: 8px;
    background: var(--border);
}

.skeleton-lowstock-small {
    height: 12px;
    width: 60%;
    margin-bottom: 4px;
    background: var(--bg-form-two);
    position: absolute;
}

.cat-lst.cat-skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.card-item.card-item-skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-user-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        var(--border) 25%,
        var(--bg-form) 50%,
        var(--border) 75%
    );
    animation: skeleton-loading 1.5s infinite;
}
.skeleton-user-name {
    height: 14px;
    width: 120px;
    margin-left: 50px;
    background: linear-gradient(
        90deg,
        var(--border) 25%,
        var(--bg-form) 50%,
        var(--border) 75%
    );
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    position: absolute;
    margin-top: 8px;
}
.skeleton-user-email {
    height: 12px;
    width: 80px;
    margin-left: 50px;
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    position: absolute;
    margin-top: 26px;
}

.skeleton-box {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
.skeleton-txt-nav {
    width: 80px;
    height: 16px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        var(--bg-form-two) 25%,
        var(--bg-form) 50%,
        var(--bg-form-two) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.homepage-overflow {
    width: 100vw;
}
header.header {
    width: 100%;
    display: grid;
    grid-template-columns: 20rem auto 20rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 16px;
}
header.header a span,
header.header h3 {
    color: #ffffff;
}
header.header.active {
    background: var(--bg-form-opac);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    box-shadow: 0 4px 30px var(--shadow);
    border-bottom: 1px solid var(--border);
}
header.header.active a span,
header.header.active h3 {
    color: var(--text-color);
}

.header-absolute a {
    padding: 8px;
}
.header-absolute a:hover span {
    color: var(--primary);
}

.herosection {
    margin-top: 80px;
}

.herosection h1,
.herosection h1 span,
.herohome h1,
.herohome h1 span {
    font-size: 32px;
    font-weight: 800;
}
.herosection h1,
.herohome h1 {
    max-width: 800px;
    text-align: center;
    line-height: 3rem;
}
.herosection h1 span,
.herohome h1 span {
    color: var(--primary);
}
.herosection p,
.herohome p {
    max-width: 800px;
    text-align: center;
}

.grid-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    max-width: 800px;
    width: 100%;
    margin-top: 80px;
}
.grid-statistics h2 {
    font-size: 30px;
    font-weight: 700;
}
.bolder {
    font-weight: 800;
}
.departmentgrid {
    margin-top: 120px;
}
.departmenthead {
    width: 100%;
    opacity: 0.89;
}
.departmenthead:hover {
    opacity: 1;
}
.departmenthead img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-form);
}
.insidedepartment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 250px));
    gap: 24px;
    place-items: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.appmockup {
    margin-top: 100px;
}
.appmockup .insideappmockup {
    width: 100%;
    height: 800px;
    background-image: linear-gradient(
            to bottom,
            transparent,
            rgb(var(--background))
        ),
        var(--mocker);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer {
    margin-top: 150px;
    padding: 32px 16px;
    padding-bottom: 200px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: var(--bg-form-two);
    justify-content: center;
    position: relative;
    height: 400px;
}
.image-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 400px;
    background-image: url("../images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 1;
}
.z-index-2 {
    z-index: 2;
}

.grid-info-loopy {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}

.heitch-fade {
    animation: fade 1.5s ease;
}
.heitch-fade2 {
    animation: fade 2s ease;
}
.heitch-fade3 {
    animation: fade 2.5s ease;
}
.heitch-fade4 {
    animation: fade 3s ease;
}
.heitch-fade5 {
    animation: fade 3.5s ease;
}
.heitch-fade6 {
    animation: fade 4s ease;
}

.app-mocks {
    width: 100%;
    height: 800px;
    background-image: linear-gradient(
            to bottom,
            transparent,
            rgb(var(--background))
        ),
        var(--mockups);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
}

.chat-section {
    display: grid;
    grid-template-columns: 25rem auto;
    height: 100%;
    width: 100%;
}
.chat-users {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.grid-filter-chat {
    background: var(--bg-form-two);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
}
.grid-filter-chat .btn-br {
    background: var(--bg-form);
    opacity: 0.8;
}
.grid-filter-chat .btn-br.active {
    background: var(--border);
    border-color: var(--border-active);
}

.sm-chat-user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    object-fit: cover;
}
.user-new-chat {
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}
.user-new-chat.active-chat {
    background: var(--bg-form);
    border-color: var(--bg-form-two);
    pointer-events: none;
}
.user-new-chat:hover {
    background: var(--bg-form);
    border-color: var(--border);
}
.user-patch {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
}
.user-patch img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}
.user-patch button {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px;
    font-size: 12px;
    border-radius: 4px;
    background: var(--bg-abs);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
}
img.online-dash {
    border: 3px solid var(--success);
}
.selected-users-list {
    width: 100%;
    overflow-x: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
}
.selected-users-list::-webkit-scrollbar {
    width: 3px;
}

.conversations-form {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    right: 26px;
    left: 26px;
    background: var(--bg-form-two);
    -webkit-backdrop-filter: blur(5.1px);
    backdrop-filter: blur(5.1px);
    height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
}
.conversations-form input {
    height: 100%;
    width: 100%;
}
.send-button:hover i {
    color: var(--primary);
}
.time-top {
    font-size: 11px;
    position: absolute;
    top: 4px;
    right: 8px;
    color: var(--opac-color);
}
.color-primary {
    color: var(--primary);
}
.color-danger {
    color: var(--danger);
}
.image-attachment,
.icon-flow {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: cover;
}
.attachment-class {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.icon-flow {
    display: flex;
    align-items: center;
    justify-content: center;
}
.abs-loader {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}
.conversation-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto 25rem;
}
.size-10 {
    font-size: 10px;
}
.wrawra {
    text-decoration: wavy;
}
.message-row {
    margin-top: 6px;
}
.message-row .bubble {
    border-radius: 12px;
    padding: 12px;
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 4px;
}
.message-row.i-sent .bubble {
    background: var(--primary);
}
.message-row.i-receive .bubble {
    background: var(--bg-form);
}
.message-row .bubble .datter {
    position: absolute;
    bottom: -2px;
    left: 8px;
    opacity: 0.6;
    font-size: 11px;
    padding: 0;
    font-weight: 400;
}

.message-row.i-receive .bubble .datter {
    position: absolute;
    bottom: -2px;
    left: auto;
    right: 8px;
}
.message-row.i-sent .bubble span {
    color: #ffffff;
}
.message-row.i-receive .bubble span {
    color: var(--text-color);
}
.message-row .bubble .image-attachment,
.message-row .bubble .icon-flow {
    width: 90px;
    height: 90px;
}
.container-files-chat .image-attachment,
.container-files-chat .icon-flow {
    width: 60px;
    height: 60px;
}
.message-row.i-sent .bubble .image-attachment,
.message-row.i-sent .bubble .icon-flow {
    border-color: #5372ff;
    font-size: 30px;
}

.container-files-chat {
    padding: 16px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
}
.abs-chat-has-message {
    position: absolute;
    top: 28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--danger);
    right: 20px;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.herohome {
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom, var(--hero-shade)),
        url("../images/herohome.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.herohome h1,
.herohome p {
    color: rgb(var(--background));
}
.herohome .btn-br {
    background: rgb(var(--background));
    color: var(--text-color);
}

.conversation-body {
    max-height: 93vh;
    overflow-y: auto;
}
.logo-logo {
    position: absolute;
    top: 16px;
    left: 16px;
    display: none;
}

.dashboard-grid.but-bo-gridded {
    overflow: auto;
    height: 100vh;
}
.cool-break {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* número máximo de linhas */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.avatar-smaller {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}
.underline-btn {
    border-bottom: 1px solid var(--border-active);
}
.underline-btn:hover {
    border-color: var(--primary-opac);
}
.underline-btn:hover i,
.underline-btn:hover span {
    color: var(--primary);
}

.fields-container {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
}
.error-abs-message {
    z-index: 9605645504;
}
.statistic-employee-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.grid-agregated {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: auto 30rem;
    gap: 36px;
    padding: 16px;
}
.mt-30 {
    margin-top: 30px;
}



@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes l24-0 {
    0%,
    24% {
        background-position: 25% 0, 75% 0;
    }
    40% {
        background-position: 25% 0, 85% 0;
    }
    50%,
    72% {
        background-position: 25% 0, 75% 0;
    }
    90% {
        background-position: 15% 0, 75% 0;
    }
    100% {
        background-position: 25% 0, 75% 0;
    }
}
@keyframes l24-1 {
    100% {
        transform: translate(0.1px);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}
@keyframes fade2 {
    0% {
        opacity: 0;
        transform: translateX(-7px) scale(0.6);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

.appear-478,
.appear-1230,
.appear1115,
.appear1076,
.appear-546 {
    display: none;
}
.appear-546-app {
    display: flex !important;
}

@media screen and (min-width: 1440px) {
    .grid-agregated {
        padding: 0;
    }
    .padding-inside {
        padding: 0 150px;
    }
    .dashboard-grid {
        padding: 0 150px;
    }
    header.header,
    .insidedepartment,
    .footer {
        padding: 16px 150px;
    }
    .footer {
        padding-bottom: 150px;
    }
    .i-dont-khow {
        padding-left: 150px;
    }
}
@media screen and (max-width: 1440px) {
    .abs-form-add-category {
        right: 0;
    }
}
@media screen and (max-width: 1230px) {
    .appear-1230 {
        display: flex !important;
    }
    .grid-sales-dashboard {
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 1115px) {
    .grid-products.i-dont-khow.pr-24 {
        padding-right: 0;
    }
    .appear1115 {
        display: flex !important;
    }
    .grid-selling,
    .grid-pharmacist {
        display: flex;
    }
    .grid-pharmacist {
        width: 100%;
    }
    .cart-finish {
        position: fixed;
        z-index: 900;
        top: 0;
        bottom: 0;
        right: -200%;
        width: 450px;
        border-left: 1px solid var(--border);
    }
    .cart-finish.active {
        right: 0;
    }
    .pharmacs-absolute {
        position: fixed;
        top: 0;
        border-radius: 0;
        right: -200%;
        bottom: 0;
        width: 480px;
        z-index: 12;
    }
    .pharmacs-absolute.actived {
        right: 0;
    }
}
@media screen and (max-width: 1076px) {
    header.header .header-absolute {
        position: fixed;
        left: 0;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 800ms ease;
        background: var(--bg-form-opac);
        -webkit-backdrop-filter: blur(5.1px);
        backdrop-filter: blur(5.1px);
        box-shadow: 0 4px 30px var(--shadow);
        border-bottom: 1px solid var(--border);
        gap: 8px;
        padding: 16px;
        z-index: 10;
        top: -500%;
    }
    header.header .header-absolute.active {
        top: 65px;
    }
    header.header {
        display: flex;
        justify-content: space-between;
    }
    .appear1076 {
        display: flex !important;
    }
}
@media screen and (max-width: 1014px) {
    .hidden-1014 {
        display: none !important;
    }
    .dashboard-grid {
        display: flex;
    }
    .grid-agregated {
        display: flex;
        flex-direction: column;
        padding: 16px;
    }
    .sidebar {
        position: fixed;
        z-index: 16;
        left: -100%;
        top: 0;
        bottom: 0;
        background: var(--bg-form-two);
        padding: 16px;
        transition: 800ms ease;
    }
    .sidebar.active {
        left: 0;
    }
    .grid-auth {
        display: flex;
    }
    .grid-auth .bg-form {
        width: 100%;
        height: 100%;
        padding: 16px;
    }
    .card-edit-produt {
        padding: 50px 16px;
    }
    .card-edit-produt .w-cd {
        width: 100%;
    }
}
@media screen and (max-width: 918px) {
    .grid-prod-frm {
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }
    .product {
        height: 200px !important;
    }
}
@media screen and (max-width: 782px) {
    .hidden-782 {
        display: none !important;
    }
}
@media screen and (max-width: 722px) {
    .hidden-722 {
        display: none !important;
    }
    .grid-selling .shader.navel {
        padding-bottom: 70px;
        position: relative;
    }
    .grid-selling .shader.navel .search-input {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 45px;
        margin: 16px;
        width: 94.4%;
    }
    .collermnr {
        flex-direction: column;
    }
    .collermnr label {
        width: 100%;
    }
}

@media screen and (max-width: 546px) {
    .appear-546,
    .appear-546-app {
        display: flex !important;
    }
    .message-row.i-receive .bubble {
        background: var(--bg-form-two);
    }
    .dashboard-grid.zero-dashboard-grid,
    .conversations-list.p-12 {
        padding: 0 0 0 0 !important;
    }
    .dashboard-grid.zero-dashboard-grid .sidebar {
        display: none !important;
    }
    .chat-section {
        display: flex;
    }
    .conversation-grid,
    .container-files-chat {
        display: none;
    }
    .conversation-grid.active {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 12;
        display: flex;
        background: var(--bg-form);
    }
    .conversations-form {
        bottom: 12px;
        right: 12px;
        left: 12px;
        border-radius: 30px;
    }
    .chat-users {
        width: 100%;
        height: auto;
        border: none;
    }
    .grid-info-loopy img {
        width: 300px;
        height: auto;
    }
    .burhons .btn span,
    .burhons .btn i {
        font-size: 12px;
    }
    .burhons {
        gap: 20px;
    }
    .sizer-twelve {
        font-size: 12px;
    }
    .appmockup .insideappmockup {
        height: 300px;
    }
    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .dashboard-grid {
        width: 100vw;
    }
    ::-webkit-scrollbar {
        display: none;
    }
    .hidden-546 {
        display: none !important;
    }
    .cards-sales {
        display: flex;
        width: 100%;
        overflow-x: auto;
    }
    .card-item {
        min-width: 280px;
    }
    .pharmacs-absolute {
        width: 100%;
    }
    .app-mocks {
        height: 300px;
        object-fit: contain;
    }
    .grid-auth .bg-form {
        position: fixed;
        z-index: 10;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-form);
        -webkit-backdrop-filter: blur(5.1px);
        backdrop-filter: blur(5.1px);
        box-shadow: 0 4px 30px var(--shadow);
        height: auto;
        border: 1px solid var(--border);
        border-radius: 12px 12px 0 0;
    }
    .grid-auth .logo-abs {
        display: none;
    }
    .format-image {
        height: 600px;
        width: 100%;
    }
}

@media screen and (max-width: 478px) {
    .smallout {
        width: 34px;
        height: 34px;
    }
    .grid-statistics h2 {
        font-size: 24px;
        text-align: center;
    }
    .grid-statistics span {
        font-size: 12px;
        text-align: center;
    }
    .grid-statistics .d-flex {
        justify-content: center;
    }
    .cart-finish {
        width: 100%;
    }
    .search-input {
        width: 91.2% !important;
    }
    .hidden-478 {
        display: none !important;
    }
    .navbar {
        padding: 12px 0;
    }
    .sales-table {
        height: auto;
        max-height: auto;
    }
    .appear-478 {
        display: flex !important;
    }
    .sidebar {
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        padding: 0 0;
        -webkit-backdrop-filter: blur(5.1px);
        backdrop-filter: blur(5.1px);
        padding: 12px;
        border-top: 1px solid var(--border);
        background: var(--opac-bg);
        z-index: 12;
    }
    .sidebar .side-nv.abs-nv {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
    }
    .sidebar .side-nv a {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .sidebar .side-nv a span {
        font-size: 12px;
    }
    .grid-sales-dashboard {
        padding-bottom: 200px;
    }
    .grid-products,
    .insidedepartment {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 100px;
    }
    .image-prod,
    .departmenthead img {
        height: 160px;
    }
    .columnr {
        flex-direction: column;
    }
    .abs-shade.d-flex.items-center.justify-center {
        align-items: flex-end;
    }
    .big-form {
        padding-bottom: 40px;
        margin-bottom: -30px;
    }
    .abs-form-add-category {
        z-index: 2000;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-backdrop-filter: blur(5.1px);
        backdrop-filter: blur(5.1px);
        position: fixed;
        justify-content: flex-end;
        align-items: flex-end;
        display: flex;
    }
    .abs-form-add-category .inside-add-cat {
        padding-bottom: 40px;
        margin-bottom: -30px;
        width: 100%;
    }
    .grid-profile {
        grid-template-columns: 1fr;
        margin-bottom: 80px;
    }
    .grig-pharmacists {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .pharmacist {
        padding: 4px;
    }
    .pharmacist img {
        height: 130px;
    }
    .pharmacist b,
    .pharmacist span,
    .grid-products b,
    .grid-products span,
    .cool-break,
    .departmenthead b,
    .departmenthead span {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 1; /* número máximo de linhas */
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .departmenthead .g-4px {
        gap: 0;
    }
    .abs-phr {
        top: 12px;
        left: 12px;
        font-size: 10px;
    }
    .items-list {
        max-height: none;
        height: auto;
    }
}
