grid2Col {
    display: grid;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    width: 100%;
    gap: 32px;
}

grid2Col .left,
grid2Col .right,
grid2Col .span {
    position: relative;
    display: flex;
    flex-direction: column;
}

grid2Col .span {
    grid-column: 1 / span 2;
}

grid2Col .left {
    grid-column: 1;
}

grid2Col .right {
    grid-column: 2;
}

buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--default-secondary-border-radius);
    flex-shrink: 0;
    gap: 0px;
}

buttons button {
    border-radius: 0px;
}

grid2Col .span h4 {
    padding: 0 0 16px 0;
}

grid2Col .qrcode {
    overflow: hidden;
    border-radius: var(--default-border-radius);
    margin: 24px;
}

grid2Col p a {
    text-decoration: underline;
}

grid2Col h4 {
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0;
}

grid2Col .span p {
    text-align: center;
}
grid2Col search {
    grid-column: 1 / span 2;
}

grid2Col hr {
    width: 100%;
    grid-column: 1 / span 2;
    border: 1px solid var(--box-border-light);
}

grid2Col buttons {
    grid-column: 1 / span 2;
}

body.darkmode grid2Col hr {
    border: 1px solid var(--box-border);
}

@media only all and (max-width: 1360px) {
    grid2col {
        display: flex;
        flex-direction: column;
    }
}

@media only all and (max-width: 1600px) {
    grid2col {
        grid-template-columns: calc(50% - 12px) calc(50% - 12px);
        gap: 24px;
    }
}

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

grid2ColPage {
    display: grid;
    grid-template-columns: calc(50% - 8px) calc(50% - 8px);
    width: 100%;
    gap: 16px;
}

grid2ColPage .span {
    display: flex;
    flex-direction: column;
    grid-column: 1 / span 2;
}

grid2ColPage .left {
    grid-column: 1;
}

grid2ColPage .right {
    grid-column: 2;
}

grid2ColPage p a {
    text-decoration: underline;
}

grid2ColPage .span img {
    text-align: center;
    margin: 8px 0;
}

grid2ColPage .span h3 {
    text-align: center;
}

grid2ColPage h4 {
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0;
}

grid2ColPage .span p {
    text-align: center;
}

@media only all and (max-width: 1360px) {
    grid2ColPage {
        display: flex;
        flex-direction: column;
    }
}

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

grid3Col {
    display: grid;
    grid-template-columns: calc(33.33% - 21.33px) calc(33.33% - 21.33px) calc(33.33% - 21.33px);
    height: fit-content;
    width: 100%;
    gap: 32px;
}

grid3Col>.span {
    grid-column: 1 / span 3;
}

grid3Col>.left {
    grid-column: 1;
}

grid3Col>.leftMiddle {
    grid-column: 1 / 3;
}

grid3Col>.middle {
    grid-column: 2;
}

grid3Col>.middleRight {
    grid-column: 2 / 4;
}

grid3Col>.right {
    grid-column: 3;
}

@media only all and (max-width: 1360px) {
    grid3col {
        display: flex;
        flex-direction: column;
    }
}

@media only all and (max-width: 1600px) {
    grid3Col {
        grid-template-columns: calc(33.33% - 16px) calc(33.33% - 16px) calc(33.33% - 16px);
        gap: 24px;
    }
}

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

inlineList {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 16px;
    row-gap: 12px;
}

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

paginacao {
    display: flex;
    flex-direction: row;
    align-items: center;
}

paginacao button {
    justify-content: center;
    height: 28px;
    border: none;
    box-shadow: none;
    padding: 8px 10px;
    text-transform: uppercase;
    color: #1c1c1c;
    font-size: 10px;
    background-color: transparent;
}

body.darkmode paginacao button {
    color: #fff;
    background-color: transparent;
}

paginacao button img {
    filter: none;
}

paginacao button:hover {
    background-color: var(--button-small-light-bg);
    box-shadow: none;
}

body.darkmode paginacao button:hover {
    background-color: var(--button-small-bg);
}

paginacao button:active {
    scale: 0.98;
}

paginacao .currentPage {
    color: #F99C48 !important;
    font-size: 14px !important;
    font-weight: 600;
}

paginacao .doublearrow {
    width: 28px;
}

paginacao .arrow {
    width: 28px;
}

paginacao .currentPage:hover,
paginacao .arrow:hover {
    background-color: #F99C48 !important;
    color: #fff !important;
}

paginacao .arrow:hover img {
    filter: invert(1);
}

body.darkmode paginacao .doublearrow img {
    filter: invert(1);
}

@media only all and (max-width: 620px) {
    paginacao {
        justify-content: center;
    }

    paginacao button {
        padding: 20px;
    }
}

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

weekGrid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: fit-content;
}

weekGrid dayGrid {
    width: 462px;
    flex-shrink: 0;
}

weekGrid dayGrid:hover {
    z-index: 9999;
}

dayGrid {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-radius: var(--default-border-radius);
    width: 100%;
}

dayGrid hour {
    display: flex;
    align-items: center;
    height: 80px;
    width: 100%;
    border-bottom: 1px solid #d0d0d082;
    font-size: 13px;
    color: #000;
}

body.darkmode dayGrid hour {
    border-bottom: 1px solid #51658470;
    color: #fff;
}

dayGrid hour:last-of-type {
    border-bottom: none !important;
    z-index: 2;
}

dayGrid hour.unavailable {
    display: none;
}

dayGrid hour.blocked {
    color: #c53e3e !important;
    background-color: #c53e3e1c;
}

dayGrid hour.lunch {
    color: #FFA554 !important;
    background-color: #ffa55430;
}

hourGrid {
    position: absolute;
    content: '';
    top: 0;
    display: grid;
    grid-template-rows: repeat(calc(24 * 4), 14px);
    grid-template-columns: 100%;
    flex-wrap: nowrap;
    padding-left: 24px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

hourGrid .item {
    left: 24px;
}

hourGrid .counter {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    height: 20px;
    top: 30px;
    width: 24px;
    padding: 0px 4px;
    color: #fff;
    background-color: #FFA554;
    pointer-events: none;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 165, 84, 0.49);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255, 165, 84, 0.49);
    box-shadow: 0px 0px 10px 0px rgba(255, 165, 84, 0.49);
    border-radius: 20px;
    z-index: 15;
}

clickableGrid {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
}

clickableGrid clickableHour {
    display: flex;
    height: 80px !important;
    flex-direction: column;
    flex-shrink: 1;
}

clickableGrid a {
    display: flex !important;
    align-items: center;
    align-content: center;
    height: 25%;
    width: 100%;
    pointer-events: all !important;
    border-bottom: none !important;
    background-color: rgba(0, 0, 0, 0.064);
    cursor: pointer;
    padding: 0px 20px;
    border-radius: var(--default-border-radius);
    flex-shrink: 0;
    opacity: 0;
    gap: 6px;
}

clickableGrid a:hover {
    height: 32px !important;
    margin-top: -7px;
    z-index: 999;
    opacity: 1;
}

clickableGrid a img {
    height: 20px;
    width: 20px;
    opacity: 0;
}

clickableGrid a:hover img {
    opacity: 0.72;
}

clickableGrid clickableHour.unavailable,
clickableGrid a.unavailable {
    display: none !important;
}

clickableGrid clickableHour.blocked,
clickableGrid a.blocked,
clickableGrid clickableHour.lunch {
    pointer-events: none !important;
}

timePointer {
    position: relative;
    height: 1px;
    width: calc(100% + 24px);
    margin-left: -24px;
    border-bottom: 2px solid #ffa55469;
    border-radius: 2px;
    z-index: 10;
}

timePointer .dot {
    position: absolute;
    content: '';
    padding: 2px 8px;
    font-size: 12px;
    color: #1c1c1c !important;
    border-radius: 50px;
    border: 2px solid #fff;
    left: 0;
    top: -11px;
    background-color: #FFA554;
}

body.darkmode timePointer .dot {
    border: 2px solid var(--box-bg);
}

body.darkmode timePointer::after {
    border: 2px solid var(--box-bg);
}

blockedDay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0px;
    border-radius: var(--default-border-radius);
    background-color: rgba(187, 67, 68, 0.08);
}

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

.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.noResults {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    width: 100%;
    font-size: 14px;
    color: #000 !important;
    filter: var(--filter-blue-light);
    user-select: none;
    text-align: center;
    gap: 12px;
}

.noResults p {
    max-width: 512px;
    font-size: 14px;
    display: inline;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    color: #000 !important;
    gap: 6px;
}

.noResults p img {
    height: 24px !important;
    width: 24px !important;
}

body.darkmode .noResults {
    filter: var(--filter-blue);
}

.noResults .img {
    height: 64px;
    width: 64px;
    opacity: 0.64;
}

.noResults button {
    margin-top: 6px;
}

.noResults button .btnContent {
    color: #000;
}

.noResults button .btnContent img,
.noResults button.btnArrow::after {
    filter: invert(0);
}

.noResults a {
    width: fit-content !important;
}

@media only all and (max-width: 620px) {
    .noResults {
        text-align: center;
    }
}

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

.item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--box-border-light);
    cursor: pointer;
    gap: 24px;
}

.item.dragging {
    position: relative;
    background-color: #F9F9F9 !important;
    border-radius: var(--default-border-radius);
    width: 100%;
    border-bottom: none !important;
    padding: 16px 24px;
    transform: rotate(2deg);
    cursor: grabbing !important;
    -webkit-box-shadow: -9px 19px 14px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: -9px 19px 14px 0px rgba(0, 0, 0, 0.15);
    box-shadow: -9px 19px 14px 0px rgba(0, 0, 0, 0.15);
}

.item.pressing {
    scale: 0.32;
    transition: scale 0.2s;
}

body.darkmode .item.dragging {
    background-color: #28364C !important;
}

.itemLink {
    border-bottom: 1px solid var(--box-border-light);
}

body.darkmode .item,
body.darkmode .itemLink {
    border-bottom: 1px solid var(--box-border);
}

.item:hover {
    background-color: rgba(0, 0, 0, 0.024);
    border-radius: var(--default-border-radius);
}

body.darkmode .item:hover {
    background-color: rgba(0, 0, 0, 0.064);
}

.item:active {
    scale: 0.99;
    border-bottom: 1px solid var(--box-border-light);
}

.item:last-of-type,
.itemLink:last-of-type,
a:last-of-type .item,
a .item {
    border-bottom: none !important;
}

.item .left,
.item .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100% !important;
    width: calc(70% - 12px);
    gap: 6px;
}

.item .right {
    width: calc(30% - 12px);
    justify-content: center;
    align-items: flex-end;
}

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

.addButtonFix {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 16px !important;
}

.addButtonFix button {
    align-self: flex-start;
}

.addButtonFix select {
    flex-shrink: 1;
}

.item .lineInfo {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
    gap: 8px;
}

.item .title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none !important;
    padding: 0 !important;
    min-height: 0 !important;
    gap: 6px;
}

.item .subtitle {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
    gap: 8px;
}

.item .subtitle img {
    height: 18px;
    width: 18px;
}

body.darkmode .item .title {
    color: #fff;
}

.item .small_icon {
    height: 18px;
    width: 18px;
}

.item .left .status {
    min-height: 52px;
    height: 100%;
    width: 6px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    background-color: #000;
    pointer-events: all;
}

.item .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.item .right .info {
    align-items: flex-end;
}

.item .created_at,
.item .employee {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.64);
    gap: 8px;
}

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

.item .employee {
    font-size: 14px;
    font-weight: 600;
}

.item .employee img {
    height: 20px;
    width: 20px;
}

.item.draggable {
    padding-left: 38px !important;
}

.item.draggable::after {
    position: absolute;
    content: '';
    height: 24px;
    width: 44px;
    left: 0px;
    background-image: url('../assets/icons/drag_handle.svg');
    background-position: center;
    cursor: grab;
    background-size: 44px;
    transform: rotate(90deg);
    opacity: 0.64;
}

.item .logo.deleted {
    filter: grayscale(1);
}

.item .new {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    height: 16px;
    min-width: 24px;
    padding: 0px 4px;
    font-weight: 600;
    color: #1c3721;
    background-color: #56e370;
    border-radius: 6px;
}

.item .updated {
    height: 16px;
    width: 16px;
    background: url('../assets/icons/edit_FILL.svg') no-repeat center;
    background-position: contain;
    background-size: 16px;
    opacity: 0.64;
}

body.darkmode .item .updated {
    filter: invert(1);
}

body.darkmode .item .created_at,
body.darkmode .item .employee {
    color: #fff;
    opacity: 0.64;
}

.item .price {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
    gap: 8px;
}

.item .price.emptyPrice{
    color: #EF943F;
}

.item .left .price {
    justify-content: flex-start;
}

.item .right .price {
    justify-content: flex-end;
}

.item .original_price {
    font-size: 14px;
    font-weight: 500 !important;
    text-decoration: line-through;
}

.item .unit_price {
    font-size: 14px;
    font-weight: 500 !important;
}

.item .price .discount {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    height: 18px;
    min-width: 26px;
    padding: 0px 8px;
    font-weight: 600;
    color: #1c3721;
    background-color: #56e370;
    border-radius: 6px;
    flex-shrink: 0;
}

.item .sales {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
}

.item .icons .icon:first-of-type,
.item .icons .icon:nth-of-type(2),
.item .icons .icon:nth-of-type(3),
.item .icons .icon:nth-of-type(4),
.item .icons .icon:nth-of-type(5),
.item .photos .photo:first-of-type,
.item .photos .photo:nth-of-type(2),
.item .photos .photo:nth-of-type(3),
.item .photos .photo:nth-of-type(4),
.item .photos .photo:nth-of-type(5) {
    margin-left: -28px;
}

.item .company {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .item .company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.64);
}

.item .barcode {
    padding: 0 !important;
}

@media only all and (max-width: 620px) {

    .item .icons .icon:first-of-type,
    .item .icons .icon:nth-of-type(2),
    .item .icons .icon:nth-of-type(3),
    .item .icons .icon:nth-of-type(4),
    .item .icons .icon:nth-of-type(5),
    .item .photos .photo:first-of-type,
    .item .photos .photo:nth-of-type(2),
    .item .photos .photo:nth-of-type(3),
    .item .photos .photo:nth-of-type(4),
    .item .photos .photo:nth-of-type(5) {
        margin-left: unset;
    }

    .item {
        flex-direction: column;
        gap: 14px;
    }

    .item .left,
    .item .right {
        flex-direction: row;
        width: 100% !important;
        align-items: self-start;
        gap: 8px;
    }

    .item .right {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start !important;
    }

    .item .right * {
        text-align: left;
    }

    .item .icons,
    .item .photos {
        flex-wrap: wrap !important;
        gap: 4px !important;
    }

    .item .icons .icon,
    .item .photos .photo {
        margin-left: 0px !important;
    }
}

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

.device_item .left {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
}

.device_item .right {
    pointer-events: all;
}

.device_item a {
    width: fit-content;
}

.device_item a:hover .map {
    text-decoration: underline;
}

.device_item .map {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 8px;
}

.device_item .map img {
    height: 20px;
    width: 20px;
}

body.darkmode .device_item .map img {
    filter: invert(1);
}

.device_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
    background-color: var(--button-bg);
    border-radius: 16px;
}

body.darkmode .device_item .icon {
    background-color: var(--dm-button-bg);
}

.device_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

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

.info_item {
    flex-direction: column;
    min-height: fit-content;
    gap: 12px;
}

.info_item .left,
.info_item .right {
    width: 100%;
}

.info_item .right {
    align-items: flex-start;
}

.info_item .title {
    display: inline;
    font-size: 16px;
    line-height: 22px;
    font-weight: unset;
}

@media only all and (max-width: 620px) {
    .info_item {
        gap: 8px;
    }
}

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

.text_item .left {
    align-items: flex-start;
}

.text_item .title {
    max-height: 32px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: flex-start;
}

.text_item .photo {
    height: 52px;
    width: 52px;
    border-radius: 64px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 64px;
}

.text_item .category {
    font-size: 14px;
    opacity: 0.64;
}

.text_item .photo {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .text_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

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

.help_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.help_item .left,
.help_item .right {
    width: 100%;
}

.help_item .finished {
    font-size: 12px;
    color: #518E76;
    font-weight: 600;
}

.help_item .options {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}

.help_item .type {
    width: fit-content;
    font-size: 9px;
    height: 18px;
    text-transform: uppercase;
    background-color: #59b691;
    color: #fff;
    padding: 4px 8px;
    border-radius: var(--default-secondary-border-radius);
}

.help_item .type.admin {
    background-color: rgba(0, 0, 0, 0.64);
}

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

.card_item .left {
    flex-direction: row;
    align-items: center;
    pointer-events: all;
    gap: 16px;
}

body.darkmode .card_item::after {
    filter: invert(1);
}

.card_item .left,
.card_item .right {
    width: 100%;
}

.card_item .status {
    height: 52px;
}

.card_item .assistants {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.card_item .options {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}

.card_item .new {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    height: 18px;
    min-width: 26px;
    padding: 0px 4px;
    font-weight: 600;
    color: #1c3721;
    background-color: #56e370;
    border-radius: 20px;
}

.card_item .assistants .photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    color: #434343;
    background-color: #eeeeee;
    background-size: cover;
    border: 2px solid #fff;
    border-radius: var(--default-border-radius);
    margin-left: -8px;
    font-weight: 600;
    pointer-events: all;
}

.card_item .assistants .photo:first-of-type {
    margin-left: 0px !important;
}

.card_item .assistants .photo:last-of-type {
    margin-left: 16px;
}

.card_item .assistants .photo:first-of-type:after {
    height: 0px !important;
    width: 0px !important;
    background-image: none !important;
}

.card_item .assistants .photo:last-of-type:after {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    top: 3px;
    left: -21px;
    background-image: url('../assets/icons/chevron_right.svg');
}

body.darkmode .card_item .assistants .photo:last-of-type:after {
    filter: invert(1);
}

body.darkmode .card_item .assistants .photo {
    border: 2px solid var(--box-bg);
    background-color: #F6B579;
}

body.darkmode .card_item:hover .assistants .photo {
    border: 2px solid var(--box-bg);
}

.card_item .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

body.darkmode .card_item .title {
    color: #fff !important;
}

.card_item .subject {
    font-size: 14px;
    opacity: 0.64;
}

.card_item .category {
    font-size: 14px;
}

.card_item .finished {
    font-size: 12px;
    color: #518E76;
    font-weight: 600;
}

.card_item .assistant {
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .card_item .cardID,
body.darkmode .card_item .assistant {
    color: #fff;
}

body.darkmode .card_item .title {
    color: #000;
}

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

.address_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.address_item .icon {
    height: 24px;
    width: 24px;
    font-size: 14px;
    background-image: url('../assets/icons/location_on.svg');
    background-position: center;
    background-size: cover;
}

.address_item .icon.main {
    background-image: url('../assets/icons/house.svg');
}

.address_item .address {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .address_item .address {
    font-size: 14px;
    color: #fff;
    opacity: 0.64;
}

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

.user_db_item {
    pointer-events: all;
}

.user_db_item:active {
    scale: 1;
}

.user_db_item .left {
    pointer-events: all !important;
}

.user_db_item .company_name {
    text-decoration: underline;
}

.user_db_item .right {
    width: fit-content !important;
    justify-content: center !important;
    pointer-events: all !important;
}

.user_db_item .DBIcon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    bottom: -8px;
    right: -8px;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    background-color: var(--box-bg);
}

.user_db_item .DBIcon .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../assets/icons/database.svg');
    opacity: 0.64;
    filter: invert(1);
}

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

.user_item .left {
    flex-direction: row;
    align-items: center;
    width: calc(70% - 8px);
    gap: 16px;
}

.user_item .right {
    width: calc(30% - 8px);
    flex-shrink: 0;
}

.user_item .photo,
.user_item .logo,
.user_item .no_logo {
    position: relative;
    height: 52px;
    width: 52px;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--default-border-radius);
}

.user_item .lastLogin {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 14px;
    color: #000 !important;
    gap: 8px;
}

.user_item .lastLogin img {
    height: 20px;
    width: 20px;
}

.user_item .photo {
    background-image: url('../assets/images/user_noImage.jpg');
}

.user_item .logo {
    background-image: url('../assets/images/user_noLogo.jpg');
    background-size: contain;
}

.user_item .no_logo {
    background-image: url('../assets/images/user_noLogo.jpg');
    background-size: contain;
}

body.darkmode .user_item .photo {
    background-image: url('../assets/images/user_noImage.darkmode.jpg');
}

body.darkmode .user_item .no_logo {
    background-image: url('../assets/images/user_noLogo.darkmode.jpg');
}

body.darkmode .user_item .logo {
    background-image: url('../assets/images/user_noLogo.darkmode.jpg');
}

.user_item .new {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 10px;
}

.user_item .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.user_item .online {
    height: 10px;
    width: 10px;
    border-radius: 10px;
}

.user_item .online.status_1 {
    background-color: #56e370;
}

.user_item .online.status_0 {
    background-color: #e35656;
}

.user_item .userID,
.user_item .accessID {
    font-size: 12px;
}

.user_item .cpf,
.user_item .cnpj {
    font-size: 14px;
    text-align: left;
}

.user_item .accessID,
.user_item .cpf,
.user_item .cnpj {
    opacity: 0.64;
    font-size: 13px;
}

body.darkmode .user_item .userID,
body.darkmode .user_item .accessID,
body.darkmode .user_item .cpf,
body.darkmode .user_item .cnpj {
    color: #fff;
}

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

.wpp_item .title {
    align-items: flex-start;
    max-height: 32px;
    line-break: anywhere;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wpp_item .left{
    align-items: flex-start;
}

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

.service_item {
    flex-direction: row !important;
    overflow: unset !important;
    border-bottom: none !important;
}

.service_item.open:hover {
    background-color: rgba(0, 0, 0, 0.0) !important;
    border-radius: 0px;
}

.service_item.open:hover .pet {
    text-decoration: underline;
    pointer-events: all !important;
}

.service_item.open:active {
    scale: 1 !important;
}

.service_item.open .left,
.service_item.open .right {
    pointer-events: all !important;
    flex-direction: row;
    align-items: center;
}

.service_item .left {
    display: flex;
    flex-direction: row;
    pointer-events: all;
    height: fit-content;
    width: 100%;
    gap: 16px;
}

.service_item .new {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 10px;
}

.service_item.open .right {
    justify-content: flex-end;
    gap: 16px;
}

.service_item .photo {
    position: relative;
    height: 52px;
    width: 52px;
    border-radius: 64px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 64px;
}

.service_item .photo {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .service_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.service_item .timeline {
    position: relative;
    display: flex;
    flex-direction: row;
    pointer-events: all;
    min-height: fit-content !important;
    gap: 16px;
}

.service_item .timeline .execStatus {
    position: relative;
    width: fit-content;
    font-size: 10px;
    height: 20px;
    text-transform: uppercase;
    background-color: #59b691;
    color: #fff;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--default-secondary-border-radius);
    margin-left: 8px;
}

.service_item .timeline .execStatus:first-of-type {
    margin-left: 0px;
}

.service_item .timeline .execStatus.deletado {
    background-color: #C65959;
}

.service_item .timeline .execStatus.iniciado {
    background-color: #cf8f56;
}

.service_item .timeline .execStatus.aguardando {
    background-color: #3E7CCD;
}

.service_item .timeline .execStatus.finalizado {
    background-color: #518E76;
}

.service_item .timeline .execStatus::after {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: -20px;
    bottom: -1px;
    background-image: url('../assets/icons/chevron_right.svg');
    background-size: 18px;
}

body.darkmode .service_item .timeline .execStatus::after {
    filter: invert(1);
}

.service_item .timeline .execStatus:first-of-type::after {
    display: none;
}

.service_item .pet {
    font-size: 14px;
    opacity: 0.64;
}

.service_item .module {
    font-size: 12px;
    opacity: 0.64;
}

.service_item a {
    width: fit-content !important;
}

.service_item .photo .icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 32px;
    min-width: 32px;
    bottom: -8px;
    right: -8px;
    border-radius: 12px;
}

.service_item .photo .icon img {
    height: 20px;
    width: 20px;
    filter: invert(1);
}

.service_item .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    pointer-events: all;
}

.service_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.service_item.open .status {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    height: 100%;
    width: 32px;
    border-radius: var(--default-border-radius);
    flex-shrink: 0;
    cursor: pointer;
}

.service_item.open .status:active {
    scale: 0.95;
}

.service_item.open .status:hover {
    background-color: rgba(0, 0, 0, 1);
}

.service_item.open .status .icon,
.service_item.open .btn_remove .icon {
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.service_item.open .status.futuro .icon {
    background-image: url('../assets/icons/calendar_month.svg');
}

.service_item.open .status.finalizado .icon {
    background-image: url('../assets/icons/check_circle.svg');
}

.service_item.open .status.iniciado .icon {
    background-image: url('../assets/icons/stop_circle.svg');
}

.service_item.open .status.pendente .icon {
    background-image: url('../assets/icons/hourglass.svg');
}

.service_item.open .status.finalizado:hover {
    background-color: #45aa55 !important;
}

.service_item.open .status.pendente:hover,
.service_item.open .status.futuro:hover {
    background-color: #274C89 !important;
}

.service_item.open .status.iniciado:hover {
    background-color: #cf8f56 !important;
}

.service_item.open .status:hover .icon {
    filter: invert(1) !important;
}

.service_item.open .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
}

.service_item.open .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.service_item.open .btn_remove:hover {
    background-color: #C55959;
}

.service_item.open .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .service_item.open .btn_remove:hover {
    background-color: #C55959;
}

.service_item.open .btn_remove:active {
    scale: 0.95;
}

@media only all and (max-width: 620px) {
    .service_item .right {
        justify-content: flex-end !important;
    }

    .service_item .right * {
        text-align: left;
        align-items: flex-end;
    }

    .service_item.history {
        flex-direction: column !important;
    }

    .service_item.history .right {
        justify-content: flex-start !important;
    }

    .service_item.history .right * {
        align-items: unset;
    }

    .service_item.history .icon {
        position: absolute;
        height: 24px;
        width: 24px;
        border-radius: 8px;
        top: 51px;
        left: 33px;
    }

    .service_item.history .icon img {
        height: 16px;
        width: 16px;
    }
}

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

.supplier_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.supplier_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.supplier_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/local_mall.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.supplier_item .phone_1,
.supplier_item .email {
    font-weight: 600 !important;
}

.supplier_item .cnpj,
.supplier_item .cpf {
    font-size: 12px;
}

body.darkmode .supplier_item .phone_1,
body.darkmode .supplier_item .email {
    color: #fff;
}

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


.partner_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.partner_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.partner_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/local_mall.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.partner_item .phone_1,
.partner_item .email {
    font-weight: 600 !important;
}

.partner_item .cnpj,
.partner_item .cpf {
    font-size: 12px;
}

body.darkmode .partner_item .phone_1,
body.darkmode .partner_item .email {
    color: #fff;
}

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


.inventario_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.inventario_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.inventario_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/inventory_2.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.inventario_item .employee {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .inventario_item .employee {
    color: rgba(255, 255, 255, 0.64);
}

.inventario_item .updated_at {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .inventario_item .updated_at {
    color: #fff;
}

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

.transfer_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.transfer_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.transfer_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/arrow_range.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.transfer_item .title img {
    height: 20px;
    width: 20px;
}

body.darkmode .transfer_item .title img {
    filter: invert(1);
}

.transfer_item .employee {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .transfer_item .employee {
    color: rgba(255, 255, 255, 0.64);
}

.transfer_item .updated_at {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .transfer_item .updated_at {
    color: #fff;
}

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


.orcamento_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.orcamento_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.orcamento_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/list_alt.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.orcamento_item .employee {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .orcamento_item .employee {
    color: rgba(255, 255, 255, 0.64);
}

.orcamento_item .updated_at {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .orcamento_item .updated_at {
    color: #fff;
}

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

.xml_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.xml_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.xml_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/file_present.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.xml_item .total {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-weight: 700;
    gap: 8px;
}

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


.plan_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.plan_item.comanda .right {
    pointer-events: all !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.plan_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.plan_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/local_mall.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.plan_item .services {
    font-size: 12px;
}

body.darkmode .plan_item .amount,
body.darkmode .plan_item .description {
    color: #fff;
}

.plan_item .pet {
    font-size: 14px;
    opacity: 0.64;
}

.plan_item .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
}

.plan_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
}

.plan_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.plan_item .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.plan_item .btn_remove:hover {
    background-color: #C55959;
}

.plan_item .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .plan_item .btn_remove:hover {
    background-color: #C55959;
}

.plan_item .btn_remove:active {
    scale: 0.95;
}

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

.kit_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.kit_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.kit_item.comanda .right {
    pointer-events: all !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.kit_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/package_2.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.kit_item .products {
    font-size: 12px;
}

body.darkmode .kit_item .amount,
body.darkmode .kit_item .description {
    color: #fff;
}

.kit_item .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
}

.kit_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
}

.kit_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.kit_item .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.kit_item .btn_remove:hover {
    background-color: #C55959;
}

.kit_item .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .kit_item .btn_remove:hover {
    background-color: #C55959;
}

.kit_item .btn_remove:active {
    scale: 0.95;
}

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

.voucher_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.voucher_item .right {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.voucher_item.comanda .right {
    pointer-events: all !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.voucher_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-image: url('../assets/icons/redeem.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

body.darkmode .voucher_item .amount,
body.darkmode .voucher_item .description {
    color: #fff;
}

.voucher_item .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
    pointer-events: all;
}

.voucher_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
}

.voucher_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.voucher_item .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.voucher_item .btn_remove:hover {
    background-color: #C55959;
}

.voucher_item .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .voucher_item .btn_remove:hover {
    background-color: #C55959;
}

.voucher_item .btn_remove:active {
    scale: 0.95;
}

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

.faq_item {
    position: relative;
    min-height: 76px;
    height: fit-content;
    grid-column: 1 / span 2;
}

.faq_item:last-of-type .overlay {
    border-bottom: none !important;
}

.faq_item .right {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.faq_item .overlay {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--box-border-light);
    background-color: #fff;
    padding: 16px;
    height: 76px;
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    top: 0;
    left: 0;
    z-index: 2;
}

body.darkmode .faq_item .overlay {
    border-bottom: 1px solid var(--box-border);
    background-color: var(--box-bg);
}

.faq_item .overlay .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.faq_item .overlay .title h4 {
    font-size: 14px;
    padding: 0 !important;
    text-align: left;
}

.faq_item .overlay .title p {
    text-align: left;
    font-size: 13px;
    opacity: 0.64;
}

.faq_item options {
    gap: 0px;
    border-radius: var(--default-border-radius);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #0000003d;
}

.faq_item .overlay button {
    justify-content: flex-start;
    text-indent: 999999999;
}

.faq_item .overlay button:hover {
    background-color: rgba(0, 0, 0, 0.044);
}

body.darkmode .faq_item .overlay button:hover {
    background-color: rgba(255, 255, 255, 0.16);
}

.faq_item .faq_content {
    height: 0px;
    width: 100%;
    padding: 24px;
    border-radius: var(--default-border-radius);
    overflow: hidden;
}

.faq_item .faq_content grid2Col .span div {
    font-size: 14px;
    line-height: 24px;
}

.faq_item .faq_content.show {
    height: fit-content;
    pointer-events: all;
    padding-top: calc(76px + 24px);
    border: 1px solid var(--box-border-light) !important;
    overflow: visible;
}

body.darkmode .faq_item .faq_content.show {
    border: 1px solid var(--box-border) !important;
}

.faq_item .overlay.open {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 1px solid var(--box-border-light) !important;
    border-bottom: transparent;
}

body.darkmode .faq_item .overlay.open {
    border: 1px solid var(--box-border) !important;
}

.faq_item .overlay.open .arrow {
    transform: rotate(180deg);
}

.faq_item .overlay .arrow {
    height: 44px;
    width: 44px;
    cursor: pointer;
    background-image: url('../../../../assets/icons/keyboard_arrow_down.svg');
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}

.faq_item .overlay .arrow_forward {
    background-image: url('../../../../assets/icons/keyboard_arrow_right.svg');
    transform: rotate(0deg);
}

body.darkmode .faq_item .overlay .arrow {
    filter: invert(1);
}

.faq_item .icon {
    position: absolute;
    height: 24px;
    width: 24px;
    left: 16px;
    opacity: 0.64;
}

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

.pet_plan_item {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 84px;
    overflow: hidden;
    padding: 0;
    gap: 0;
}

.pet_plan_item::after {
    position: absolute;
    content: '';
    height: 200px;
    width: 100px;
    left: 45%;
    transition: 100ms;
    background-color: rgba(255, 255, 255, 0.04);
    transform: rotate(35deg);
}

.pet_plan_item:active::after {
    left: 48%;
}

.pet_plan_item .left {
    flex-direction: row;
    align-items: center;
}

.pet_plan_item .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end !important;
    width: calc(40% - 12px);
    align-items: center;
}

.pet_plan_item .plan_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 100%;
    grid-column: 2;
    border: none;
    padding: 0 16px 0 10px;
    background-color: #455B77;
    border-radius: 0;
    flex-wrap: nowrap;
}

body.darkmode .pet_plan_item .plan_content {
    background-color: #718bb4;
    border: none;
}

.empty_plan_items .plan_content {
    background-color: rgb(138, 142, 146);
}

body.darkmode .empty_plan_items .plan_content {
    background-color: #707276;
}

.pet_plan_item .icon {
    height: 64px;
    width: 64px;
    flex-shrink: 0;
    background-image: url('../assets/icons/shopping_bag.svg');
    background-size: 50px;
    filter: invert(1);
    background-repeat: no-repeat;
    background-position: center;
}

.empty_plan .icon {
    background-image: url('../assets/icons/add_circle.svg');
}

.pet_plan_item .plan_content .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.pet_plan_item .services {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}
.pet_plan_item .services img{
    height: 20px;
    width: 20px;
    opacity: 0.64;
    filter: invert(1);
}
.pet_plan_item .plan_content * {
    color: #fff;
}

.pet_plan_item .title {
    font-weight: 700;
    font-size: 16px;
}

.pet_plan_item .usable_services,
.pet_plan_item .used_services {
    display: flex;
    align-items: center;
    border-radius: var(--default-border-radius);
    background-color: rgba(0, 0, 0, 0.064);
    padding: 4px 12px;
    gap: 4px;
}

.pet_plan_item .usable_services p,
.pet_plan_item .used_services p{
    font-size: 14px;
}

.pet_plan_item .detail_left,
.pet_plan_item .detail_right {
    height: 100%;
    width: 8px;
    grid-column: 1;
    flex-shrink: 0;
    border-right: 1px outset #000;
    filter: invert(28%) sepia(5%) saturate(4057%) hue-rotate(174deg) brightness(105%) contrast(76%);
    background-image: url('../assets/images/plan_detail.svg');
    background-repeat: repeat-y;
}

body.darkmode .pet_plan_item .detail_left,
body.darkmode .pet_plan_item .detail_right {
    filter: invert(58%) sepia(9%) saturate(1413%) hue-rotate(178deg) brightness(91%) contrast(95%);
}

.empty_plan_items .detail_left,
.empty_plan_items .detail_right {
    filter: brightness(0) saturate(100%) invert(57%) sepia(5%) saturate(298%) hue-rotate(169deg) brightness(98%) contrast(89%);
}

body.darkmode .empty_plan_items .detail_left,
body.darkmode .empty_plan_items .detail_right {
    filter: brightness(0) saturate(100%) invert(45%) sepia(6%) saturate(269%) hue-rotate(182deg) brightness(96%) contrast(86%);
}

.pet_plan_item .detail_right {
    grid-column: 3;
    transform: rotate(180deg);
}

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

.access_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.access_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.access_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/question_mark.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.access_item .amount,
.access_item .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .access_item .amount,
body.darkmode .access_item .description {
    color: #fff;
}

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

.page_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.page_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.page_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/question_mark.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.page_item .category,
.page_item .name {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .page_item .category,
body.darkmode .page_item .name {
    color: #fff;
}

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

.blog_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.blog_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.blog_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/news.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.blog_item .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .blog_item .description {
    color: #fff;
}

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

.info_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.info_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.info_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/info.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.info_item .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .info_item .description {
    color: #fff;
}

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

.log_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.log_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.log_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/update.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.log_item .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .log_item .description {
    color: #fff;
}

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

.code_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.code_item .right {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.code_item .icon {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    background-image: url('../assets/icons/list.svg');
    background-size: cover;
    border-radius: var(--default-border-radius);
}

.code_item .description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .code_item .description {
    color: #fff;
}

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

.employee_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.employee_item .photo {
    height: 52px;
    width: 52px;
    flex-shrink: 0;
    background-image: url('../assets/images/user_noImage.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--default-border-radius);
}

body.darkmode .employee_item .photo {
    background-image: url('../assets/images/user_noImage.darkmode.jpg');
}

.employee_item .title.token {
    position: relative;
    padding-left: 24px !important;
}

.employee_item .title.token::after {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    top: 0;
    left: 0;
    background-image: url('../assets/icons/token_FILL.svg');
    opacity: 0.64;
    background-position: 0px center;
    background-size: 18px;
    background-repeat: no-repeat;
}

body.darkmode .employee_item .title.token::after {
    filter: invert(1);
}

.employee_item .online {
    height: 10px;
    width: 10px;
    border-radius: 10px;
}

.employee_item .title .name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.employee_item .online.status_1 {
    background-color: #56e370;
}

.employee_item .online.status_0 {
    background-color: #e35656;
}

.employee_item .position {
    font-size: 12px;
    opacity: 0.64;
}

.employee_item .email {
    font-size: 14px;
    opacity: 0.64;
}

body.darkmode .employee_item .accessID,
body.darkmode .employee_item .email {
    color: #fff;
}


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

.tarefa_item .left {
    flex-direction: row;
    align-items: center;
    pointer-events: all;
    gap: 12px;
}

.tarefa_item .left>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tarefa_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 32px;
}


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

.share_item .left {
    flex-direction: row;
    flex-wrap: nowrap;
}

.share_item .left {
    align-items: flex-start;
}

.share_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 32px;
}

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

.historico_item {
    gap: 6px !important;
}

.historico_item .left {
    flex-direction: row;
    align-items: center;
}

.historico_item .icon {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 32px;
}

.historico_item .pet {
    height: 32px;
    width: 32px;
    background-image: url('../assets/images/pet_noPhoto.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    border-radius: 32px;
}

body.darkmode .historico_item .pet {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.historico_item .title {
    position: relative;
    width: 100%;
}

.historico_item .description {
    height: 16px;
    max-width: 256px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.darkmode .historico_item .description {
    color: rgba(255, 255, 255, 0.64);
}

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

.notificacao_item,
.notificacao_item a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1px solid var(--box-border-light);
    width: 100%;
}

.notificacao_item a {
    border-bottom: none;
    pointer-events: all !important;
}

.notificacao_item .left {
    width: 100%;
    gap: 12px;
}

.notificacao_item .right {
    width: fit-content;
    z-index: 99;
    gap: 0px;
}

.notificacao_item button,
body.darkmode .notificacao_item button {
    align-self: auto;
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: #000;
    pointer-events: all !important;
}

.notificacao_item .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notificacao_item .description {
    font-size: 14px;
}

.notificacao_item .icon {
    height: 44px;
    width: 44px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    background-color: rgba(0, 0, 0, 0.064);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px;
}

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

.fila_item {
    flex-direction: row;
    z-index: 1;
}

.fila_item * {
    pointer-events: all;
}

.fila_item.dragging {
    cursor: grabbing !important;
}

.fila_item.dragging .left {
    padding-left: 16px;
}

.fila_item .left {
    width: 75% !important;
}

.fila_item .right {
    width: 25% !important;
    justify-content: flex-end;
}

.fila_item .right .info {
    align-items: flex-end;
}

body.darkmode .fila_item::after {
    filter: invert(1);
}

.fila_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.fila_item .right {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap;
    width: 110px;
    gap: 16px;
}

.fila_item .title {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.fila_item .photo,
.fila_item .prodPhoto {
    position: relative;
    height: 52px;
    width: 52px;
    border-radius: 64px;
    flex-shrink: 0;
    background-size: cover;
    border-radius: 64px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0px inset, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
}

.fila_item .photo {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

.fila_item .prodPhoto {
    background-image: url('../assets/images/product_noImage.jpg');
}

body.darkmode .fila_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

body.darkmode .fila_item .prodPhoto {
    background-image: url('../assets/images/product_noImage.darkmode.jpg');
}

.fila_item .service_order {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    height: 18px;
    min-width: 22px;
    padding: 0px 4px;
    font-weight: 600;
    color: #1c3721;
    background-color: #56e370;
    border-radius: var(--default-border-radius);
}

.fila_item .type {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -10px;
    right: -16px;
    background-color: #fff;
    border-radius: var(--default-border-radius);
}

.fila_item:hover .type {
    background-color: #F9F9F9;
}

body.darkmode .fila_item:hover .type {
    background-color: #222E41;
}

.fila_item:hover .type {
    background-color: #F9F9F9;
}

body.darkmode .fila_item:hover .type {
    background-color: #222E41;
}

body.darkmode .fila_item .type {
    background-color: var(--box-bg);
}

body.darkmode .fila_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.fila_item .photo.delivery {
    background-image: url('../assets/images/product_noImage.jpg');
}

body.darkmode .fila_item .photo.delivery {
    background-image: url('../assets/images/product_noImage.darkmode.jpg');
}

.fila_item .photo.pendencia {
    border: 4px solid #EF943F;
}

.fila_item .photo.cancelado {
    border: 4px solid #000;
}

.fila_item .photo.aguardando {
    border: 4px solid #6AE5D6;
}

.fila_item .photo.iniciado {
    border: 4px solid #3E7CCD;
}

.fila_item .photo.finalizado {
    border: 4px solid #518E76;
}

.fila_item .services {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

.fila_item .timeline {
    position: relative;
    display: flex;
    max-width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    pointer-events: all;
    column-gap: 16px;
    margin-left: 8px;
    row-gap: 4px;
}

.fila_item .timeline div:first-of-type {
    margin-left: -14px !important;
}

.fila_item .timeline .execStatus {
    position: relative;
    width: fit-content;
    font-size: 10px;
    height: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--default-secondary-border-radius);
    margin-left: 8px;
}

.fila_item .timeline .execStatus:first-of-type {
    margin-left: 0px;
}

.fila_item .timeline .execStatus.pendencia {
    background-color: #EF943F;
}

.fila_item .timeline .execStatus.deletado {
    background-color: #C65959;
}

.fila_item .timeline .execStatus.aguardando {
    background-color: #6AE5D6;
    color: #000;
}

.fila_item .timeline .execStatus.montagem {
    background-color: #6ab8e5;
    color: #000;
}

.fila_item .timeline .execStatus.iniciado {
    background-color: #3E7CCD;
}

.fila_item .timeline .execStatus.finalizado {
    background-color: #518E76;
}

.fila_item .timeline .execStatus::after {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: -20px;
    bottom: -1px;
    background-image: url('../assets/icons/chevron_right.svg');
    background-size: 18px;
}

body.darkmode .fila_item .timeline .execStatus::after {
    filter: invert(1);
}

.fila_item .timeline .execStatus:first-of-type::after {
    display: none;
}

.fila_item .employee {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.64);
    gap: 8px;
}

body.darkmode .fila_item .employee {
    color: rgba(255, 255, 255, 1);
}

.fila_item .wpp,
.fila_item .opticonnect {
    height: 32px;
    width: 32px;
    background-position: center;
    background-size: 32px;
}

.fila_item .wpp {
    background-image: url('../assets/icons/whatsapp.svg');
}

.fila_item .opticonnect {
    background-image: url('../assets/icons/optiConnect.svg');
}

.fila_item .module {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
    border-radius: 44px;
    background-color: rgba(0, 0, 0, 0.64);
}

body.darkmode .fila_item .module {
    outline: 1px solid rgba(255, 255, 255, 0.24);
    outline-offset: -1px;
}

.fila_item .service {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 32px;
    min-width: 32px;
    padding: 0 8px;
    bottom: -8px;
    right: -8px;
    border-radius: 12px;
}

.fila_item .service img {
    height: 18px;
    width: 18px;
    filter: invert(1);
}

.fila_item .service p {
    font-weight: 600;
}

.fila_item .icon {
    position: absolute;
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

body.darkmode .fila_item .icon {
    filter: invert(1);
    opacity: 0.72;
}

.fila_item .type.delivery .icon {
    background-image: url('../assets/icons/quick_reorder_FILL.svg');
}

.fila_item .type.taxipet .icon {
    background-image: url('../assets/icons/local_taxi_FILL.svg');
}

body.darkmode .fila_item .service .icon {
    color: #fff;
}

.fila_item .timer {
    font-size: 13px;
    color: rgba(0, 0, 0, 1);
    opacity: 0.64;
}

body.darkmode .fila_item .timer {
    color: #fff;
}

.fila_item .behavior {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -8px;
    left: -8px;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.016);
}

.fila_item .otherInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
}

.fila_item .urgency {
    display: flex;
    align-items: center;
    height: 14px;
    width: 14px;
    border-radius: 14px;
    color: transparent;
    overflow: hidden;
    text-wrap: nowrap;
    text-transform: uppercase;
}

.fila_item .behavior .icon {
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.fila_item .behavior.b1 {
    background-color: #C55959;
}

.fila_item .behavior.b2 {
    background-color: #A97173;
}

.fila_item .behavior.b3 {
    background-color: #948487;
}

.fila_item .behavior.b4 {
    background-color: #80969A;
}

.fila_item .behavior.b5 {
    background-color: #65ADB2;
}

.fila_item .behavior.b1 .icon {
    background-image: url('../assets/icons/sentiment_stressed_FILL.svg');
}

.fila_item .behavior.b2 .icon {
    background-image: url('../assets/icons/sentiment_dissatisfied_FILL.svg');
}

.fila_item .behavior.b3 .icon {
    background-image: url('../assets/icons/sentiment_neutral_FILL.svg');
}

.fila_item .behavior.b4 .icon {
    background-image: url('../assets/icons/sentiment_satisfied_FILL.svg');
}

.fila_item .behavior.b5 .icon {
    background-image: url('../assets/icons/sentiment_very_satisfied_FILL.svg');
}

@media only all and (max-width: 620px) {
    .fila_item {
        padding: 16px !important;
    }

    .fila_item .right {
        justify-content: flex-end !important;
    }
}

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

.historico_fila_item {
    flex-direction: row;
    z-index: 1;
}

.historico_fila_item * {
    pointer-events: all;
}

.historico_fila_item.dragging {
    cursor: grabbing !important;
}

.historico_fila_item.dragging .left {
    padding-left: 16px;
}

.historico_fila_item.draggable::after {
    position: absolute;
    content: '';
    height: 24px;
    width: 44px;
    left: 0px;
    background-image: url('../assets/icons/drag_handle.svg');
    background-position: center;
    cursor: grab;
    background-size: 44px;
    transform: rotate(90deg);
    opacity: 0.64;
}

body.darkmode .historico_fila_item::after {
    filter: invert(1);
}

.historico_fila_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.historico_fila_item .right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 52%;
    gap: 16px;
}

.historico_fila_item .services {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

.historico_fila_item .employee {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.64);
    gap: 8px;
}

body.darkmode .historico_fila_item .employee {
    color: rgba(255, 255, 255, 1);
}

.historico_fila_item .urgency {
    display: flex;
    align-items: center;
    height: 16px;
    width: 16px;
    font-weight: 600;
    font-size: 11px;
    padding: 0px 8px;
    border-radius: 12px;
    color: transparent;
    transition: width 100ms !important;
    overflow: hidden;
    text-wrap: nowrap;
    text-transform: uppercase;
}

.historico_fila_item .urgency:hover {
    width: fit-content;
    transition: width 100ms !important;
    color: #fff;
}

.historico_fila_item .wpp,
.historico_fila_item .opticonnect {
    height: 32px;
    width: 32px;
    background-position: center;
    background-size: 32px;
}

.historico_fila_item .wpp {
    background-image: url('../assets/icons/whatsapp.svg');
}

.historico_fila_item .opticonnect {
    background-image: url('../assets/icons/optiConnect.svg');
}

.historico_fila_item .module {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
    border-radius: 44px;
    background-color: rgba(0, 0, 0, 0.64);
}

body.darkmode .historico_fila_item .module {
    outline: 1px solid rgba(255, 255, 255, 0.24);
    outline-offset: -1px;
}

.historico_fila_item .module .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.historico_fila_item .date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .historico_fila_item .date {
    color: #fff;
    opacity: 0.64;
}

.historico_fila_item .behavior {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -8px;
    left: -8px;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    flex-shrink: 0;
}

.historico_fila_item .behavior .icon {
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.historico_fila_item .behavior.b1 {
    background-color: #C55959;
}

.historico_fila_item .behavior.b2 {
    background-color: #A97173;
}

.historico_fila_item .behavior.b3 {
    background-color: #948487;
}

.historico_fila_item .behavior.b4 {
    background-color: #80969A;
}

.historico_fila_item .behavior.b5 {
    background-color: #65ADB2;
}

.historico_fila_item .behavior.b1 .icon {
    background-image: url('../assets/icons/sentiment_stressed_FILL.svg');
}

.historico_fila_item .behavior.b2 .icon {
    background-image: url('../assets/icons/sentiment_dissatisfied_FILL.svg');
}

.historico_fila_item .behavior.b3 .icon {
    background-image: url('../assets/icons/sentiment_neutral_FILL.svg');
}

.historico_fila_item .behavior.b4 .icon {
    background-image: url('../assets/icons/sentiment_satisfied_FILL.svg');
}

.historico_fila_item .behavior.b5 .icon {
    background-image: url('../assets/icons/sentiment_very_satisfied_FILL.svg');
}

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

.anexo_item .left {
    align-items: flex-start;
}

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

.agenda_item {
    flex-direction: row;
}

.agenda_item .left {
    flex-direction: row;
    align-items: center;
    width: fit-content;
    pointer-events: all;
    gap: 16px;
}

.agenda_item .right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    gap: 16px;
}

.agenda_item .photo {
    position: relative;
    height: 52px;
    width: 52px;
    border-radius: 52px;
    flex-shrink: 0;
    background-size: cover;
    border-radius: 64px;
    margin-right: 8px;
}

.agenda_item .photo .type,
.agenda_item .photo .plano {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -10px;
    right: -16px;
    background-color: #fff;
    border-radius: 24px;
}

.agenda_item .photo .plano {
    bottom: unset;
    top: -10px;
}

.agenda_item:hover .plano,
.agenda_item:hover .type {
    background-color: #F9F9F9;
}

body.darkmode .agenda_item:hover .plano,
body.darkmode .agenda_item:hover .type {
    background-color: #222E41;
}

body.darkmode .agenda_item .type,
body.darkmode .agenda_item .photo .plano {
    background-color: var(--box-bg);
}

.agenda_item .type .icon,
.agenda_item .plano .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

body.darkmode .agenda_item .type .icon,
body.darkmode .agenda_item .plano .icon {
    filter: invert(1);
    opacity: 0.72;
}

.agenda_item .plano .icon {
    background-image: url('../assets/icons/shopping_bag_FILL.svg');
    scale: 0.9;
}

.agenda_item .type .icon.fixo {
    background-image: url('../assets/icons/keep_FILL.svg');
    transform: rotate(30deg);
}

.agenda_item .type .icon.delivery {
    background-image: url('../assets/icons/quick_reorder_FILL.svg');
}

.agenda_item .type .icon.traz {
    background-image: url('../assets/icons/local_taxi_FILL.svg');
}

.agenda_item .type .icon.leva {
    background-image: url('../assets/icons/house_FILL.svg');
}

.agenda_item .photo {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .agenda_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.agenda_item .photo.phone {
    background-image: url('../assets/images/comunicacoes/phone.jpg');
}

body.darkmode .agenda_item .photo.phone {
    background-image: url('../assets/images/comunicacoes/phone.jpg');
}

.agenda_item .title {
    display: flex;
    gap: 6px;
}

body.darkmode .agenda_item .title {
    color: #fff;
}

.agenda_item .title img {
    height: 18px;
    width: 18px;
    margin: 0 !important;
}

.agenda_item .services {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

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

.agenda_item .module {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
    border-radius: 44px;
    background-color: rgb(20 42 81 / 27%);
}

body.darkmode .agenda_item .module {
    outline: 1px solid rgba(255, 255, 255, 0.24);
    outline-offset: -1px;
}

.agenda_item .module .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.agenda_item .module .icon.fixo {
    background-image: url('../assets/icons/keep_FILL.svg');
    transform: rotate(30deg);
}

.agenda_item .module .icon.delivery {
    background-image: url('../assets/icons/quick_reorder_FILL.svg');
}

.agenda_item .module .icon.traz {
    background-image: url('../assets/icons/local_taxi_FILL.svg');
}

.agenda_item .module .icon.leva {
    background-image: url('../assets/icons/house_FILL.svg');
}

body.darkmode .agenda_item .services {
    color: rgba(255, 255, 255, 0.64);
}

.agenda_item .date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .agenda_item .date {
    color: rgba(255, 255, 255, 0.64);
}

.semHorario {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    background-color: rgb(191, 89, 89);
    border-radius: var(--default-border-radius);
}

.semHorario .icon {
    height: 20px;
    width: 20px;
    background-size: 20px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../assets/icons/event_busy_FILL.svg');
    filter: invert(1);
}

.agenda_item .semHorario {
    position: absolute;
    top: -4px;
}

.agenda_item .behavior {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -8px;
    left: -8px;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.016);
}

.agenda_item .behavior .icon {
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.agenda_item .behavior.b1 {
    background-color: #C55959;
}

.agenda_item .behavior.b2 {
    background-color: #A97173;
}

.agenda_item .behavior.b3 {
    background-color: #948487;
}

.agenda_item .behavior.b4 {
    background-color: #80969A;
}

.agenda_item .behavior.b5 {
    background-color: #65ADB2;
}

.agenda_item .behavior.b1 .icon {
    background-image: url('../assets/icons/sentiment_stressed_FILL.svg');
}

.agenda_item .behavior.b2 .icon {
    background-image: url('../assets/icons/sentiment_dissatisfied_FILL.svg');
}

.agenda_item .behavior.b3 .icon {
    background-image: url('../assets/icons/sentiment_neutral_FILL.svg');
}

.agenda_item .behavior.b4 .icon {
    background-image: url('../assets/icons/sentiment_satisfied_FILL.svg');
}

.agenda_item .behavior.b5 .icon {
    background-image: url('../assets/icons/sentiment_very_satisfied_FILL.svg');
}


@media only all and (max-width: 620px) {
    .agenda_item .right {
        width: 100% !important;
    }
}

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

.agenda_day_item {
    position: absolute;
    content: '';
    flex-direction: row;
    min-height: 14px !important;
    height: 100%;
    width: calc(100% - 24px);
    box-sizing: border-box;
    background-color: #fff;
    transition: min-height 100ms;
    border: 1px solid var(--box-border-light);
    -webkit-box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.46);
    -moz-box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.46);
    box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.46);
    overflow: hidden;
    pointer-events: none;
    border-radius: var(--default-border-radius);
    padding: 0 16px 0 10px;
    z-index: 3;
    gap: 16px;
}

.agenda_day_item.multi-item {
    left: 58px;
    width: calc(100% - 58px);
}

.agenda_day_item:hover {
    min-height: 55px !important;
    padding: 8px;
    background-color: #fbfbfb !important;
    animation: pop 200ms;
    z-index: 10;
}

.agenda_day_item .clickableSpace {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    pointer-events: all;
    top: 0;
    left: 0;
    z-index: 2;
}

.agenda_day_item.multi-item .clickableSpace {
    width: 44px;
}

.agenda_day_item.multi-item.last .clickableSpace {
    width: 100%;
}

@keyframes pop {
    0% {
        transform: scale(1.008);
    }

    100% {
        transform: scale(1);
    }
}

.agenda_day_item.planRunningOut,
.agenda_day_item.planPresent {
    padding-left: calc(16px + 8px);
}

.agenda_day_item.planRunningOut::after,
.agenda_day_item.planPresent::after {
    position: absolute;
    content: '';
    width: 10px;
    height: inherit;
    left: 0;
    opacity: 0.64;
}

.agenda_day_item.planRunningOut::after {
    background-color: orange !important;
}

.agenda_day_item.planPresent::after {
    background-color: limegreen !important;
}

body.darkmode .agenda_day_item {
    -webkit-box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.64);
    -moz-box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.64);
    box-shadow: -10px 10px 13px -12px rgba(0, 0, 0, 0.64);
    background-color: var(--dm-agenda-day-bg);
    border: 1px solid var(--box-border);
}

body.darkmode .agenda_day_item:hover {
    background-color: var(--dm-agenda-day-bg-hover) !important;
}

.agenda_day_item .left {
    flex-direction: row;
    align-items: center;
    width: fit-content !important;
    gap: 8px;
}

.agenda_day_item .right {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 2px;
}

.agenda_day_item .info {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: fit-content;
    margin-right: 8px;
    column-gap: 8px;
    row-gap: 1px;
}

.agenda_day_item .time {
    font-size: 11px;
}

.agenda_day_item .title {
    display: flex;
    text-align: left !important;
    gap: 6px;
}

.agenda_day_item:hover .title {
    font-size: 14px !important;
}

body.darkmode .agenda_day_item .title {
    color: #fff;
}

.agenda_day_item .title img {
    height: 24px;
    width: 24px;
}

.agenda_day_item .services,
.agenda_day_item .employee {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
    transition: font-size 100ms;
}

.agenda_day_item .employee {
    font-weight: 600;
}

.agenda_day_item:hover .services,
.agenda_day_item:hover .employee {
    display: block !important;
}

.agenda_day_item .module {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.agenda_day_item .plano .icon {
    background-image: url('../assets/icons/shopping_bag_FILL.svg');
    scale: 0.9;
}

.agenda_day_item .module .icon.fixo {
    background-image: url('../assets/icons/keep_FILL.svg');
    transform: rotate(30deg);
}

.agenda_day_item .module .icon.delivery {
    background-image: url('../assets/icons/quick_reorder_FILL.svg');
}

.agenda_day_item .module .icon.traz {
    background-image: url('../assets/icons/local_taxi_FILL.svg');
}

.agenda_day_item .module .icon.leva {
    background-image: url('../assets/icons/house_FILL.svg');
}

body.darkmode .agenda_day_item .module {
    outline-offset: -1px;
}

.agenda_day_item .module .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(0);
    opacity: 0.64;
}

body.darkmode .agenda_day_item .module .icon {
    filter: invert(1);
}

body.darkmode .agenda_day_item .services,
body.darkmode .agenda_day_item .employee {
    color: rgba(255, 255, 255, 0.64);
}

.agenda_day_item .date {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .agenda_day_item .date {
    color: rgba(255, 255, 255, 0.64);
}

.agenda_day_item .behavior {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.016);
}

.agenda_day_item .behavior .icon {
    height: 20px;
    width: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
}

.agenda_day_item .behavior.b1 {
    background-color: #C55959;
}

.agenda_day_item .behavior.b2 {
    background-color: #A97173;
}

.agenda_day_item .behavior.b3 {
    background-color: #948487;
}

.agenda_day_item .behavior.b4 {
    background-color: #80969A;
}

.agenda_day_item .behavior.b5 {
    background-color: #65ADB2;
}

.agenda_day_item .behavior.b1 .icon {
    background-image: url('../assets/icons/sentiment_stressed_FILL.svg');
}

.agenda_day_item .behavior.b2 .icon {
    background-image: url('../assets/icons/sentiment_dissatisfied_FILL.svg');
}

.agenda_day_item .behavior.b3 .icon {
    background-image: url('../assets/icons/sentiment_neutral_FILL.svg');
}

.agenda_day_item .behavior.b4 .icon {
    background-image: url('../assets/icons/sentiment_satisfied_FILL.svg');
}

.agenda_day_item .behavior.b5 .icon {
    background-image: url('../assets/icons/sentiment_very_satisfied_FILL.svg');
}

@media only all and (max-width: 850px) {
    .agenda_day_item {
        backdrop-filter: none !important;
    }
}

@media only all and (max-width: 620px) {
    .agenda_item .right {
        justify-content: flex-end !important;
    }
}

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

petID {
    position: relative;
    display: grid;
    grid-template-columns: calc(76px + 32px + 32px) auto;
    border-radius: var(--default-border-radius);
    box-shadow: var(--default-box-shadow);
    transform: rotate(-0.32deg);
    background-color: #6c8eae;
    border: 1px solid #9cbfe0;
    overflow: hidden;
}

.context-menu petID {
    width: 98%;
    grid-template-columns: calc(38px + 32px + 32px) auto;
}

petID::after {
    position: absolute;
    content: '';
    height: 500px;
    width: 200px;
    top: -120px;
    left: 15%;
    transition: 100ms;
    background-color: rgba(255, 255, 255, 0.064);
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 10;
}

petID .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

petID .name {
    font-size: 32px;
    font-weight: 800;
    color: #fff !important;
}

petID .stamp {
    position: absolute;
    height: 124px;
    width: 124px;
    background-image: url('../assets/images/stamp.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-15deg);
    opacity: 0.64;
    bottom: -32px;
    left: -15px;
    z-index: 3;
}

petID .bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: url('../../../assets/backgrounds/petID_bg.jpg');
    background-repeat: repeat;
    background-size: 60%;
    opacity: 0.2;
    z-index: 1;
}

body.darkmode petID .bg {
    opacity: 0.14;
}

petID .left {
    position: relative;
    width: 100%;
    padding: 32px 0 32px 32px;
    background-color: #597997;
    border-right: 1px solid #9cbfe0;
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
}

petID .status {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    bottom: 13px;
    left: 11px;
    border-radius: 100%;
    transform: rotate(-15deg);
    z-index: 4;
}

petID .status img {
    opacity: 0.64;
    height: 64px;
    width: 64px;
    cursor: pointer;
}

petID .right p {
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
}

petID .right {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 24px 44px;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    gap: 8px;
}

.context-menu petID .right {
    padding: 24px;
}

petID .resumo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

petID .resumo div {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #9cbfe0;
}

petID .resumo div:last-of-type {
    border-bottom: none !important;
}

petID .resumo div b {
    border-bottom: 1px solid #9cbfe0;
}

petID .close {
    display: none;
}

.context-menu petID .close {
    display: flex;
    height: 40px;
    top: 8px;
    right: 8px;
    z-index: 10;
}

petID .close img {
    opacity: 1 !important;
}

petID petPhoto {
    display: block;
    width: 124px;
    background-image: url('../assets/images/pet_noPhoto.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--default-border-radius);
    aspect-ratio: 3 / 4;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.24);
}

petID petPhoto.obito {
    filter: grayscale(1);
}

.context-menu petID petPhoto {
    width: 76px;
}

body.darkmode petID petPhoto {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

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

.pet_item .left {
    pointer-events: all;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.pet_item .right {
    align-items: flex-end;
    pointer-events: all;
}

.pet_item .photoBox {
    position: relative;
    height: 52px;
    width: 52px;
    pointer-events: all;
}

.pet_item .photo {
    height: 52px;
    width: 52px;
    flex-shrink: 0;
    border-radius: 64px;
    background-size: cover;
    background-position: center;
}

.pet_item .photo {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .pet_item .photo {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.pet_item .name.birthday {
    color: #de47b6;
}

body.darkmode .pet_item .name.birthday {
    color: #ff99e4;
}

.pet_item .castrado {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -10px;
    right: -16px;
    background-color: #fff;
    border-radius: 24px;
}

.pet_item .castrado .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

body.darkmode .pet_item .castrado .icon {
    filter: invert(1);
    opacity: 0.72;
}

body.darkmode .pet_item:hover .castrado {
    background-color: #222E41;
}

body.darkmode .pet_item .castrado {
    background-color: var(--box-bg);
}

.pet_item .castrado .icon {
    background-image: url('../assets/icons/surgical_FILL.svg');
    scale: 0.9;
}

.pet_item .new {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 10px;
}

.pet_item .tutores {
    text-align: left;
    opacity: 0.64;
    font-size: 13px;
}

.pet_item .type {
    font-size: 14px;
    text-align: left;
}

.pet_item .behavior {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
    border-radius: 44px;
    background-color: rgba(0, 0, 0, 0.016);
}

.pet_item .behavior .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.72;
    mix-blend-mode: lighten;
    filter: invert(1);
}

.pet_item .photo .db {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -4px;
    left: -4px;
    background-color: var(--box-bg);
    border-radius: 100%;
}

.pet_item .photo .db img {
    height: 24px;
    width: 24px;
}

body.darkmode .pet_item .photo .db img {
    filter: invert(1);
}

.pet_item .behavior.b1 {
    background-color: #C55959;
}

.pet_item .behavior.b2 {
    background-color: #A97173;
}

.pet_item .behavior.b3 {
    background-color: #948487;
}

.pet_item .behavior.b4 {
    background-color: #80969A;
}

.pet_item .behavior.b5 {
    background-color: #65ADB2;
}

.pet_item .behavior.b1 .icon {
    background-image: url('../assets/icons/sentiment_stressed_FILL.svg');
}

.pet_item .behavior.b2 .icon {
    background-image: url('../assets/icons/sentiment_dissatisfied_FILL.svg');
}

.pet_item .behavior.b3 .icon {
    background-image: url('../assets/icons/sentiment_neutral_FILL.svg');
}

.pet_item .behavior.b4 .icon {
    background-image: url('../assets/icons/sentiment_satisfied_FILL.svg');
}

.pet_item .behavior.b5 .icon {
    background-image: url('../assets/icons/sentiment_very_satisfied_FILL.svg');
}

body.darkmode .pet_item .type,
body.darkmode .pet_item .tutores {
    color: #fff;
}

@media only all and (max-width: 620px) {
    .pet_item .right {
        width: 24px !important;
        height: 24px !important;
        position: absolute;
        top: 58px;
        left: 55px;
    }

    .pet_item .behavior {
        height: 24px;
        width: 24px;
    }

    .pet_item .behavior .icon {
        height: 20px;
        width: 20px;
    }
}

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

.productPhoto,
.servicePhoto {
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    height: 189px;
    width: 158px;
    cursor: pointer;
}

.productPhoto:hover,
.servicePhoto:hover {
    transform: translateY(-6px) !important;
    z-index: 5;
}

.productPhoto:active,
.servicePhoto:active {
    scale: 0.98;
}

.productPhoto.notobito,
.servicePhoto.notobito {
    opacity: 0.64;
}

.productPhoto *,
.servicePhoto * {
    pointer-events: none;
}

.productPhoto .stamp,
.servicePhoto .stamp {
    position: absolute;
    height: 35px;
    width: 35px;
    top: 24px;
    right: 16px;
    background-size: 35px;
    background-position: center;
    background-image: url('../assets/icons/birthday.svg');
    z-index: 3;
}

.productPhoto .stamp.birthday,
.servicePhoto .stamp.birthday {
    background-image: url('../assets/icons/birthday.svg');
}

.productPhoto .photo,
.servicePhoto .photo {
    position: absolute;
    content: '';
    top: 18px;
    left: 12px;
    height: 140px;
    width: 140px;
    background-size: cover;
    background-position: center;
}

.productPhoto .photo.empty,
.servicePhoto .photo.empty {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .productPhoto .photo.empty,
body.darkmode .servicePhoto .photo.empty {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.productPhoto .photo.add,
.servicePhoto .photo.add {
    background-image: url('../assets/images/add.jpg');
    background-size: cover;
    background-position: center;
}

body.darkmode .productPhoto .photo.add,
body.darkmode .servicePhoto .photo.add {
    background-image: url('../assets/images/add.darkmode.jpg');
}

.productPhoto::after,
.servicePhoto::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 1px;
    height: 189px;
    width: 158px;
    background-image: url('../assets/images/polaroid.png');
    background-size: 161px;
    background-position: center;
    border-radius: var(--default-secondary-border-radius);
    border-bottom: 2px solid rgba(0, 0, 0, 0.024);
    border-right: 2px solid rgba(0, 0, 0, 0.024);
    box-shadow: 16px 16px 6px rgba(0, 0, 0, 0.024);
    z-index: 2;
}

body.darkmode .productPhoto::after,
body.darkmode .servicePhoto::after {
    background-image: url('../assets/images/polaroid.darkmode.png');
}

.productPhoto:hover::after,
.servicePhoto:hover::after {
    box-shadow: 20px 24px 8px rgba(0, 0, 0, 0.024);
}

.productPhoto h4,
.servicePhoto h4 {
    position: absolute;
    bottom: 6px;
    padding: 0;
    font-weight: 500;
    height: 17px;
    max-width: 142px;
    font-size: 14px;
    text-align: center;
    color: #444444;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 3;
}

.productPhoto.preview,
.servicePhoto.preview {
    align-self: center;
    height: 250px;
    width: 202px;
}

.productPhoto.preview .photo,
.servicePhoto.preview .photo {
    top: 24px;
    left: 14px;
    height: 180px;
    width: 180px;
}

.productPhoto.preview::after,
.servicePhoto.preview::after {
    height: 245px;
    width: 203px;
    background-size: 207px;
}

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

.petPhoto {
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    height: 189px;
    width: 158px;
}

.petPhoto:hover {
    transform: translateY(-6px) !important;
    z-index: 5;
}

.petPhoto:active {
    scale: 0.98;
}

.petPhoto.obito {
    opacity: 0.64;
}

.petPhoto * {
    pointer-events: none;
}

.petPhoto .stamp {
    position: absolute;
    height: 32px;
    width: 32px;
    top: 28px;
    right: 18px;
    transform: rotate(16deg);
    background-size: cover;
    background-position: center;
    z-index: 3;
}

.petPhoto .stamp.birthday {
    background-image: url('../assets/icons/cake_FILL.svg');
    filter: brightness(0) saturate(100%) invert(59%) sepia(75%) saturate(5555%) hue-rotate(290deg) brightness(92%) contrast(88%) drop-shadow(2px 0 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(0 -2px 0 white);
}

.petPhoto .stamp.obito {
    background-image: url('../assets/icons/wings_FILL.svg');
    filter: invert(1) drop-shadow(2px 0 0 black) drop-shadow(-2px 0 0 black) drop-shadow(0 2px 0 black) drop-shadow(0 -2px 0 black);
}

.petPhoto .photo {
    position: absolute;
    content: '';
    top: 18px;
    left: 12px;
    height: 140px;
    width: 140px;
    background-size: cover;
    background-position: center;
}
.petPhoto .photo::after{
    position: absolute;
    content: '';
    height: 177px;
    width: 77px;
    transform: rotate(45deg);
    opacity: 1;
    z-index: 187;
}

.petPhoto .photo.empty {
    background-image: url('../assets/images/pet_noPhoto.jpg');
}

body.darkmode .petPhoto .photo.empty {
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.petPhoto .photo.add {
    background-image: url('../assets/images/add.jpg');
    background-size: cover;
    background-position: center;
}

body.darkmode .petPhoto .photo.add {
    background-image: url('../assets/images/add.darkmode.jpg');
}

.petPhoto .photo.obito {
    opacity: 0.64;
    filter: grayscale(1);
}

.petPhoto::after {
    position: absolute;
    content: '';
    left: 2px;
    top: 1px;
    height: 189px;
    width: 158px;
    background-image: url('../assets/images/polaroid.png');
    background-size: 161px;
    background-position: center;
    border-radius: var(--default-secondary-border-radius);
    border-bottom: 2px solid rgba(0, 0, 0, 0.024);
    border-right: 2px solid rgba(0, 0, 0, 0.024);
    box-shadow: 16px 16px 6px rgba(0, 0, 0, 0.024);
    z-index: 2;
}

body.darkmode .petPhoto::after {
    background-image: url('../assets/images/polaroid.darkmode.png');
}

.petPhoto:hover::after {
    box-shadow: 20px 24px 8px rgba(0, 0, 0, 0.024);
}

.petPhoto:hover {
    scale: 1.16;
    z-index: 999;
}

.petPhoto h4 {
    position: absolute;
    bottom: 6px;
    padding: 0;
    font-weight: 500;
    height: 17px;
    max-width: 142px;
    font-size: 14px;
    text-align: center;
    color: #444444;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 3;
}

.petPhoto h4.birthday {
    color: #de47b6;
}

.petPhoto h4.obito {
    opacity: 0.64;
}

.petPhoto.preview {
    align-self: center;
    height: 250px;
    width: 202px;
}

.petPhoto.preview .photo {
    top: 24px;
    left: 14px;
    height: 180px;
    width: 180px;
}

.petPhoto.preview::after {
    height: 245px;
    width: 203px;
    background-size: 207px;
}

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

.cliente_item {
    min-height: 90px;
}

.cliente_item .left {
    flex-direction: row;
    pointer-events: all;
    gap: 16px;
}

.cliente_item .title {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    gap: 8px !important;
}

.cliente_item .cpf {
    font-size: 12px;
    text-align: left;
}

.cliente_item .pets {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
    text-align: left;
}

.cliente_item .loyalty {
    color: #000 !important;
    padding-left: 20px;
    font-weight: 400;
    width: 64px;
    background-image: url('../assets/icons/star_FILL.svg');
    background-size: 20px;
    background-position: 0px center;
    background-repeat: no-repeat;
}

.cliente_item .addressPresent {
    height: 20px;
    width: 20px;
    background-image: url('../assets/icons/person_pin_circle_FILL.svg');
    background-size: 20px;
    background-position: 0px center;
    background-repeat: no-repeat;

}

body.darkmode .cliente_item .cpf,
body.darkmode .cliente_item .pets {
    color: rgba(255, 255, 255, 0.64);
}

.cliente_item .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: fit-content;
    flex-shrink: 0;
}

.cliente_item .icons .icon {
    height: 52px;
    width: 52px;
    margin-left: -52px;
    background-color: rgba(0, 0, 0, 0.032);
    background-image: url('../assets/images/pet_noPhoto.jpg');
    background-size: cover;
    border: 2px solid #fff;
    pointer-events: all;
    border-radius: 64px;
}

body.darkmode .cliente_item .icons .icon {
    border: 2px solid var(--box-bg);
    background-color: rgba(255, 255, 255, 0.064);
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.cliente_item .db {
    height: 20px;
    width: 20px;
}

.db img {
    height: 20px;
    width: 20px;
}

body.darkmode .db img {
    filter: invert(1);
}

.cliente_item .new {
    font-size: 10px;
    height: 16px;
}

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

.order_item .left {
    flex-direction: row;
    gap: 16px;
}

.order_item .title {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    gap: 8px !important;
}

.order_item .products {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.64);
    text-align: left;
}

.order_item .loyalty {
    color: #000 !important;
    padding-left: 20px;
    font-weight: 400;
    width: 64px;
    background-image: url('../assets/icons/star_FILL.svg');
    background-size: 20px;
    background-position: 0px center;
    background-repeat: no-repeat;
}

body.darkmode .order_item .products {
    color: rgba(255, 255, 255, 0.64);
}

.order_item .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: fit-content;
    flex-shrink: 0;
}

.order_item .icons .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    width: 52px;
    margin-left: -45px;
    background-color: rgba(0, 0, 0, 0.032);
    background-image: url('../assets/images/pet_noPhoto.jpg');
    background-size: cover;
    border: 2px solid #fff;
    pointer-events: all !important;
    border-radius: 64px;
    overflow: clip;
    isolation: isolate;
}

body.darkmode .order_item .icons .icon {
    border: 2px solid var(--box-bg);
    background-color: rgba(255, 255, 255, 0.064);
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}

.order_item .icon.product,
.order_item .icon.kit {
    border-radius: var(--default-border-radius);
}

.order_item .icon.service,
.order_item .icon.plan {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    flex-shrink: 0;
    border-radius: 16px;
}

.order_item .icon.kit,
.order_item .icon.plan {
    background-color: #324e79 !important;
    background-image: none !important;
}

.order_item .icon.voucher {
    background-color: #6079AF !important;
    background-image: none !important;
}

.order_item .icon.pending {
    background-color: #BC6C6C !important;
    background-image: none !important;
}

.order_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

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

.meta_item .left,
.meta_item .info {
    width: 100% !important;
}

.meta_item .metaProgress {
    height: 8px;
    width: 100%;
    margin: 6px 0px;
    background-color: #dde3f0;
    border-radius: 8px;
    overflow: hidden;
}

.meta_item .review {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
}

.meta_item .review,
.meta_item .review * {
    font-size: 14px;
}

.meta_item .review>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.darkmode .meta_item .metaProgress {
    position: relative;
    background-color: #3a465c;
}

.meta_item .metaProgress.empty {
    background-color: rgba(0, 0, 0, 0.12) !important;
}

.meta_item .metaProgress .progress {
    position: absolute;
    height: 8px;
    width: 0;
    background-color: #5b7ebf;
}

body.darkmode .meta_item .metaProgress .progress {
    background-color: #abc8ff;
}

.meta_item .metaProgress .progress.full {
    background-color: #5bbf98;
}

body.darkmode .meta_item .metaProgress .progress.full {
    background-color: #64cfa5;
}

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

.arquivo_item .left {
    flex-direction: row;
    gap: 16px;
}

.arquivo_item .preview {
    width: 52px;
    height: 52px;
    border-radius: var(--default-border-radius);
    flex-shrink: 0;
    border: 1px solid var(--box-border-light);
    background-color: rgba(0, 0, 0, 0.24);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

body.darkmode .arquivo_item .preview {
    border: 1px solid var(--box-border);
}

.arquivo_item .preview.file {
    background-image: url('../assets/icons/file_present.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .preview.php {
    background-image: url('../assets/icons/php.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .preview.pdf {
    background-image: url('../assets/icons/pdf.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .preview.video {
    background-image: url('../assets/icons/play_circle.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .preview.certificado {
    background-image: url('../assets/icons/verified.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .preview.missing {
    background-image: url('../assets/icons/question_mark.svg');
    background-size: 44px;
    border: none;
}

.arquivo_item .description {
    font-size: 14px;
    opacity: 0.64;
}

body.darkmode .arquivo_item .description {
    color: #fff;
    opacity: 1;
}

.arquivo_item .category {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .arquivo_item .category {
    color: rgba(255, 255, 255, 1);
}

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

.produto_item {
    position: relative;
}

.produto_item .left {
    flex-direction: row;
    pointer-events: all;
    width: 70%;
    gap: 16px;
}

.produto_item .right {
    width: 50%;
}

.produto_item.comanda .right {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    pointer-events: all !important;
    gap: 16px;
}

.produto_item .image {
    position: relative;
    height: 52px;
    width: 52px;
    border-radius: var(--default-border-radius);
    flex-shrink: 0;
    background-image: url('../assets/images/product_noImage.jpg');
    background-size: cover;
    background-position: center;
}

body.darkmode .produto_item .image {
    background-image: url('../assets/images/product_noImage.darkmode.jpg');
}

.produto_item .new {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 18px;
    font-size: 10px;
}

.produto_item .category {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

.produto_item .stock {
    font-size: 12px;
}

.produto_item .type {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -10px;
    right: -16px;
    background-color: #fff;
    border-radius: 24px;
}

.produto_item:hover .type {
    background-color: #F9F9F9;
}

body.darkmode .produto_item:hover .type {
    background-color: #222E41;
}

.produto_item:hover .type {
    background-color: #F9F9F9;
}

body.darkmode .produto_item:hover .type {
    background-color: #222E41;
}

body.darkmode .produto_item .type {
    background-color: var(--box-bg);
}

.produto_item .price {
    position: relative;
    gap: 6px;
}

.produto_item .atacado {
    height: 22px;
    width: 22px;
    background-size: 22px;
    background-image: url('../assets/icons/package_FILL.svg');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

.produto_item .type .icon {
    position: absolute;
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

body.darkmode .produto_item .type .icon {
    filter: invert(1);
    opacity: 0.72;
}

.produto_item .type.barcode .icon {
    background-image: url('../assets/icons/barcode.svg');
}

body.darkmode .produto_item .category {
    color: rgba(255, 255, 255, 0.64);
}

.produto_item .sold_at {
    font-size: 12px;
}

.produto_item .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
}

.produto_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
    pointer-events: none;
}

.produto_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.produto_item .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.produto_item .btn_remove:hover {
    background-color: #C55959;
}

.produto_item .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .produto_item .btn_remove:hover {
    background-color: #C55959;
}

.produto_item .btn_remove:active {
    scale: 0.95;
}

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

.contrato_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.contrato_item .contractID,
.contrato_item .modulos {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

.contrato_item .modulos {
    font-size: 13px;
    opacity: 0.64;
}

.contrato_item .renew {
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .contrato_item .contractID,
body.darkmode .contrato_item .modulos,
body.darkmode .contrato_item .renew {
    color: #fff;
}

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

.modulo_item {
    width: 100%;
    padding: 16px 0;
}

.modal .modulo_item {
    flex-direction: row;
}

.modulo_item .left {
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 16px;
}

.modulo_item .right {
    width: calc(100% - 16px);
}

.modal .modulo_item .right {
    flex-direction: row;
    align-items: center !important;
    gap: 16px;
    justify-content: flex-end;
}

.modulo_item .right button {
    align-self: flex-end;
    height: 32px !important;
    width: 32px !important;
    padding: 0 !important;
    justify-content: center;
}

.modulo_item .right button:hover {
    background-color: rgba(0, 0, 0, 0.16) !important;
}

.modulo_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 44px;
    width: 44px;
    border-radius: var(--default-border-radius);
}

.modulo_item .iconImg {
    height: 24px;
    width: 24px;
    background-size: cover;
    filter: invert(1);
}

.modulo_item .title {
    font-size: 16px;
    font-weight: 600;
}

body.darkmode .modulo_item .title {
    color: #fff !important;
}

.modulo_item .description {
    font-size: 14px;
}

.modulo_item .released_at {
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .modulo_item .released_at {
    color: #fff;
}

.modulo_item .remove {
    flex-shrink: 0;
    pointer-events: all !important;
}

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

.cupom_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.cupom_item .icon {
    height: 32px;
    width: 32px;
    background-image: url('../../assets/icons/percent.svg');
    background-size: cover;
}

.cupom_item .value {
    opacity: 0.64;
}

.cupom_item .value,
.cupom_item .quantity {
    font-size: 14px;
}

body.darmode .cupom_item .value,
body.darmode .cupom_item .quantity {
    font-size: 14px;
}

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

.nf_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.nf_item .icon {
    height: 32px;
    width: 32px;
    background-image: url('../../assets/icons/receipt_long.svg');
    background-size: cover;
}

.nf_item .warning {
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background-color: #000;
}

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

.cashier_item {
    gap: 10px;
}

.cashier_item:hover {
    background-color: transparent !important;
}

.cashier_item.history {
    border: 1px solid var(--box-border-light);
    flex-direction: column;
    border-radius: var(--default-border-radius);
    cursor: default;
}

body.darkmode .cashier_item.history {
    border: 1px solid var(--box-border);
}

.cashier_item .item {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.0) !important;
}

.cashier_item .item:hover {
    background-color: rgba(0, 0, 0, 0.12) !important;
}

.cashier_item .cashier_content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
    gap: 0;
}

.cashier_item .cashier_content a {
    width: 100%;
}

.cashier_item .span {
    display: flex;
    flex-direction: row;
    padding: 0 16px;
    flex-wrap: nowrap;
    width: 100%;
}

.cashier_item .item {
    background-color: rgba(0, 0, 0, 0.064);
    border-radius: var(--default-border-radius);
}

.cashier_item.history .left {
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.cashier_item.history .right {
    width: 100%;
}

.cashier_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.cashier_item .icon {
    height: 32px;
    width: 32px;
    background-image: url('../../assets/icons/shopping_cart.svg');
    background-size: cover;
}

body.darmode .cashier_item .fees,
body.darmode .cashier_item .type {
    font-size: 14px;
}

.cashier_item .total {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-weight: 700;
    gap: 8px;
}

.cashier_item .totalBig {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-weight: 700;
    font-size: 20px;
    gap: 8px;
}

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

.maquininha_item {
    min-height: unset;
    height: fit-content;
}

.maquininha_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.maquininha_item .icon {
    height: 32px;
    width: 32px;
    background-image: url('../../assets/icons/smart_card_reader.svg');
    background-size: cover;
}

.maquininha_item .fees {
    opacity: 0.64;
}

.maquininha_item .fees,
.maquininha_item .type {
    font-size: 14px;
}

body.darmode .maquininha_item .fees,
body.darmode .maquininha_item .type {
    font-size: 14px;
}

.maquininha_item .employee {
    font-size: 14px;
}

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

.pagamento_item {
    flex-direction: row !important;
}

.pagamento_item .left,
.pagamento_item .right {
    width: calc(50% - 8px);
}

.pagamento_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.pagamento_item .right {
    pointer-events: all !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pagamento_item .icon {
    position: relative;
    display: flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.pagamento_item .icon .ico.debito,
.pagamento_item .icon .ico.credito {
    background-image: url('../assets/icons/credit_card.svg');
}

.pagamento_item .icon .ico.creditoParcelado {
    background-image: url('../assets/icons/credit_card_clock.svg');
}

.pagamento_item .icon .ico.pix {
    background-image: url('../assets/icons/pix.svg');
}

.pagamento_item .icon .ico.cheque {
    background-image: url('../assets/icons/checkbook.svg');
}

.pagamento_item .icon .ico.dinheiro {
    background-image: url('../assets/icons/money.svg')
}

.pagamento_item .icon .ico.transferencia {
    background-image: url('../assets/icons/account_balance.svg')
}

.pagamento_item .icon .ico.boleto {
    background-image: url('../assets/icons/description.svg')
}

.pagamento_item .icon .ico.fiado {
    background-image: url('../assets/icons/universal_currency.svg')
}

.pagamento_item .icon .ico.notFound {
    background-image: url('../assets/icons/question_mark.svg');
}

.pagamento_item .icon .ico.programado {
    background-image: url('../assets/icons/hourglass_empty.svg');
}

.pagamento_item .icon .ico.emitido {
    background-image: url('../assets/icons/pending.svg');
}

.pagamento_item .icon .ico {
    height: 28px;
    width: 28px;
    background-size: cover !important;
    flex-shrink: 0;
}

.pagamento_item .icon .manual {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    bottom: -10px;
    right: -6px;
    background-color: #fff;
    border-radius: 24px;
}

body.darkmode .icon .manual {
    background-color: #243145;
}

.pagamento_item .icon .manual .ico {
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

body.darkmode .pagamento_item .icon .manual .ico {
    filter: invert(1);
    opacity: 0.72;
}

.pagamento_item .icon .manual .ico {
    background-image: url('../assets/icons/edit.svg');
    scale: 0.9;
}

.pagamento_item .info .title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

body.darkmode .info .title img {
    color: rgba(255, 255, 255, 0.64);
}

.pagamento_item .employee {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
}

body.darkmode .pagamento_item .employee {
    color: rgba(255, 255, 255, 0.64);
}

.pagamento_item .paymentID {
    font-size: 12px;
}

.pagamento_item .payment_at {
    text-wrap: nowrap;
    font-size: 12px;
}

.pagamento_item .interest {
    font-size: 14px;
    font-weight: 600;
}

.pagamento_item .btn_remove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
    cursor: pointer;
}

.pagamento_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
    pointer-events: none;
}

.pagamento_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

.pagamento_item .btn_remove .icon {
    background-image: url('../assets/icons/close.svg');
}

.pagamento_item .btn_remove:hover {
    background-color: #C55959;
}

.pagamento_item .btn_remove:hover .icon {
    filter: invert(1);
}

body.darkmode .pagamento_item .btn_remove:hover {
    background-color: #C55959;
}

.pagamento_item .btn_remove:active {
    scale: 0.95;
}

@media only all and (max-width: 620px) {
    .pagamento_item {
        flex-direction: column !important;
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }

    .pagamento_item .info {
        align-items: flex-start !important;
        flex-direction: column-reverse;
    }

    .pagamento_item .right {
        justify-content: space-between !important;
    }
}

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

.balance_item .left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.balance_item .right {
    flex-direction: column;
    justify-content: flex-end;
}

.balance_item .icon {
    position: relative;
    display: flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
}

.balance_item .icon .ico {
    height: 28px;
    width: 28px;
    background-size: cover !important;
}

.balance_item .employee {
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.64);
    opacity: 0.64;
}

body.darkmode .balance_item .employee {
    color: rgba(255, 255, 255, 1);
}

.balance_item .type {
    font-size: 12px;
}

.balance_item .updated_at {
    text-wrap: nowrap;
    font-size: 12px;
    opacity: 0.64;
}

body.darkmode .balance_item .updated_at {
    color: #fff;
}

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

.lote_item .left {
    align-items: flex-start;
}

.lote_item .expiration_date {
    text-wrap: nowrap;
    font-size: 12px;
    opacity: 0.64;
}

body.darkmode .lote_item .expiration_date {
    color: #fff;
}

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

#nested_input_list,
#nested_input_empty,
.nested_input_list,
.nested_input_empty {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: #1c1c1c;
    font-size: 14px;
    gap: 16px;
}

.nested_input_item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(50% - 8px);
    background-color: #fdfdfd;
    border: 1px solid var(--box-border-light);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.04);
    padding: 16px;
    border-radius: var(--default-border-radius);
    gap: 16px;
}

body.darkmode .nested_input_item {
    background-color: var(--box-input-bg);
    border: 1px solid var(--box-input-border);
    box-shadow: none !important;
}

.nested_input_item .title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
}

.nested_input_item .checkboxes {
    display: flex;
    flex-wrap: wrap;
}

.nested_input_item .checkboxes .checkboxToolbar {
    width: fit-content;
}

.nested_input_item .bigtitle {
    display: flex;
    height: 42px;
    width: 100%;
    justify-content: center;
}

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

.comm_item .left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.comm_item .right {
    align-items: flex-end;
}

.comm_item .image {
    position: relative;
    height: 54px;
    width: 54px;
    border-radius: 54px;
    flex-shrink: 0;
    background-size: cover;
    border-radius: 64px;
}

.comm_item .image {
    background-image: url('../assets/images/comunicacoes/missing.jpg');
}

.comm_item .tutor,
.comm_item .done_at {
    color: rgba(0, 0, 0, 0.64);
    font-size: 14px;
}

.comm_item .type {
    font-size: 14px;
}

.comm_item .image .type {
    position: absolute;
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    bottom: -10px;
    right: -16px;
    background-color: #fff;
    border-radius: 24px;
}

.comm_item:hover .image .type {
    background-color: #F9F9F9;
}

body.darkmode .comm_item:hover .image .type {
    background-color: #222E41;
}

body.darkmode .comm_item .image .type {
    background-color: var(--box-bg);
}

.comm_item .image .type .icon {
    height: 24px;
    width: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.72;
}

.comm_item .image .type .auto.icon{
    background-image: url('../assets/icons/optiConnect_FILL.svg');
}
body.darkmode .comm_item .image .type .auto.icon{
    filter: invert(1);
}

body.darkmode .comm_item .tutor,
body.darkmode .comm_item .done_at {
    color: #fff;
}

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

categoryBar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 32px;
    width: 100%;
    border-radius: var(--default-border-radius);
    background-color: #dae2ee;
    overflow: hidden;
}

body.darkmode categoryBar {
    background-color: #344662;
}

categoryBar categoryBit {
    height: 32px;
    border-right: 2px solid #fff;
}

categoryBar categoryBit:last-of-type {
    border-right: none !important;
}

.categoryList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.categoryList .category {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: calc(50% - 8px);
    height: 44px;
    padding: 16px;
    cursor: pointer;
    border-radius: var(--default-border-radius);
    font-size: 14px;
    gap: 16px;
}

.categoryList .category .catContent {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.categoryList .category h4 {
    padding: 0;
}

.categoryList .category:hover {
    background-color: rgba(0, 0, 0, 0.032);
}

body.darkmode .categoryList .category:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

.categoryList .category .dot {
    height: 12px;
    width: 12px;
    flex-shrink: 0;
    border-radius: 12px;
}