grid2Col{
    display: grid;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    width: 100%;
    gap: 32px;
}
grid2Col .span{
    display: flex;
    flex-direction: column;
    grid-column: 1 / span 2;
}
grid2Col .left{
    display: flex;
    flex-direction: column;
    grid-column: 1;
}
grid2Col .right{
    display: flex;
    flex-direction: column;
    grid-column: 2;
}
buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    gap: 0px;
}
buttons button{
    border-radius: 0px;
}
grid2Col .span h4{
    padding: 0 0 16px 0;
}
grid2Col .qrcode{
    overflow: hidden;
    border-radius: 6px;
    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 hr{
    width: 100%;
    grid-column: 1 / span 2;
    border: 1px solid var(--box-border-light);
}
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);
    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;
}

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

pagination{
    display: flex;
    flex-direction: row;
    gap: 8px;
}
pagination 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 pagination button{
    color: #fff;
    background-color: transparent;
}
pagination button img{
    filter: none;
}
pagination button:hover{
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: none;
}
body.darkmode pagination button:hover{
    background-color: #243145;
}
pagination button:active{
    scale: 0.98;
}
pagination .currentPage{
    color: #F99C48 !important;
    font-weight: 600;
}
pagination .arrow{
    width: 28px;
}
@media only all and (max-width: 620px) {
    pagination{
        justify-content: center;
    }
    pagination button{
        padding: 20px;
    }
}


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

dayGrid{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-radius: 6px;
    width: 100%;
}
dayGrid hour{
    display: flex;
    align-items: center;
    height: 56px;
    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;
}
.hiddenButton{
    position: absolute;
    height: 56px;
    width: 100%;
    pointer-events: all;
    cursor: pointer;
    z-index: 2;
}
dayGrid .hiddenButton.unavailable{
    display: none;
    height: 0px;
}
.hiddenButton:hover{
    background-color: rgba(0, 0, 0, 0.1);
}
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: 17px;
    left: 24px;
    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;
}
timePointer{
    position: relative;
    height: 1px;
    width: calc(100% + 24px);
    margin-left: -24px;
    pointer-events: none;
    border-bottom: 2px solid #ffa55469;
    border-radius: 2px;
    z-index: 10;
}
timePointer::after{
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 10px;
    border: 2px solid #fff;
    left: 0;
    top: -6px;
    background-color: #FFA554;
}
body.darkmode timePointer::after{
    border: 2px solid var(--box-bg);
}
blockedDay{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0px;
    border-radius: 6px;
    background-color: rgba(187,67,68,0.08);
}

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

.noResults{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    gap: 4px;
}
@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;
    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: 6px;
    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;
}
body.darkmode .item{
    border-bottom: 1px solid var(--box-border);
}
.item:hover{
    background-color: rgba(0, 0, 0, 0.024);
    border-radius: 6px;
}
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-child,
a:last-child .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);
    pointer-events: none;
    gap: 6px;
}
.item .left{
    align-items: flex-start;
}
.item .right {
    width: calc(30% - 12px);
    justify-content: center;
    align-items: flex-end;
}
.item .right *{
    text-align: right;
}
.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{
    font-size: 13px;
    font-weight: 500;
}
body.darkmode .item .title{
    color: #fff;
}
.item .small_icon{
    height: 18px;
    width: 18px;
}
body.darkmode .item .small_icon{
    filter: invert(1);
}
.item .status{
    min-height: 52px;
    height: 100%;
    width: 6px;
    flex-shrink: 0;
    border-radius: 6px;
    background-color: #000;
    pointer-events: all;
}
.item .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.item .right .info{
    align-items: flex-end;
}
.item .created_at,
.item .employee{
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.64);
}
.item .left .created_at{
    text-align: left;
}
.item .employee{
    font-size: 14px;
    font-weight: 600;
}
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 .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 .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: 20px;
    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: -18px;
}

.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%;
        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;
    pointer-events: none;
}
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 .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 .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;
}
.help_item .type{
    width: fit-content;
    font-size: 9px;
    height: 18px;
    text-transform: uppercase;
    background-color: #59b691;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
}
.help_item .type.admin{
    background-color: rgba(0, 0, 0, 0.64);
}

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

.card_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.card_item.draggable{
    padding-left: 44px;
}
.card_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 .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: 64px;
    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: 24px;
}
.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: -25px;
    background-image: url('../assets/icons/chevron_right.svg');
    opacity: 0.64;
}
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: 100%;
    gap: 16px;
}
.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: 6px;
}
.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 .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{
    flex-direction: column;
}
.wpp_item .left,
.wpp_item .right{
    width: 100%;
    align-items: flex-start !important
}
.wpp_item .title{
    line-break: anywhere;
}

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

.service_item{
    flex-direction: row !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;
    height: fit-content;
    width: 100%;
    gap: 16px;
}
.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: 4px;
    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;
    pointer-events: none;
}
.service_item .photo .icon img{
    height: 20px;
    width: 20px;
    filter: invert(1);
}
.service_item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    pointer-events: none;
}
.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: 52px;
    width: 32px;
    border-radius: 6px;
    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;
    pointer-events: none;
}
.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: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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;
}

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


.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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    cursor: pointer;
}
.plan_item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
    pointer-events: none;
}
.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: 6px;
}
.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: 6px;
    cursor: pointer;
}
.kit_item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    border-radius: 16px;
    pointer-events: none;
}
.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: 6px;
}
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: 6px;
    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;
    pointer-events: none;
}
.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: 6px;
    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: 6px;
    pointer-events: none;
    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 *{
    pointer-events: none;
}
.pet_plan_item::after{
    position: absolute;
    content: '';
    height: 200px;
    width: 100px;
    left: 45%;
    transition: 100ms;
    pointer-events: none;
    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;
    pointer-events: none;
}
.pet_plan_item .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end !important;
    width: calc(40% - 12px);
    align-items: center;
    pointer-events: none;
}
.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;
}
.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,
.pet_plan_item .services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.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{
    font-size: 13px;
}
.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%);
}
.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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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: 6px;
}
.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;
    border-radius: 6px;
}
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;
}

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

.historico_item .left{
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.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: 6px;
    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 .right .info{
    align-items: flex-end;
}
.fila_item.draggable{
    padding-left: 32px;
}
.fila_item.draggable::after{
    position: absolute;
    content: '';
    height: 24px;
    width: 44px;
    left: -8px;
    background-image: url('../assets/icons/drag_handle.svg');
    background-position: center;
    cursor: grab;
    background-size: 44px;
    transform: rotate(90deg);
    opacity: 0.64;
}
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: 26px;
    padding: 0px 4px;
    font-weight: 600;
    color: #1c3721;
    background-color: #56e370;
    border-radius: 20px;
}
.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: 24px;
}
.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: 4px;
    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.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{
    height: 32px;
    width: 32px;
    border-radius: 6px;
    background-image: url('../assets/icons/whatsapp.svg');
    background-position: center;
    background-size: 32px;
}
.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;
    pointer-events: none;
}
.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 .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;
}
.fila_item .urgency:hover{
    width: fit-content;
    transition: width 100ms !important;
    color: #fff;
}
.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');
}

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

.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{
    height: 32px;
    width: 32px;
    border-radius: 6px;
    background-image: url('../assets/icons/whatsapp.svg');
    background-position: center;
    background-size: 32px;
}
.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');
}

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

.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: rgba(0, 0, 0, 0.64);
}
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);
}
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: 6px;
}

.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');
}

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

.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;
    border-radius: 6px;
    padding: 0 16px 0 10px;
    pointer-events: none;
    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);
    }
}

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: #28364c;
    border: 1px solid var(--box-border);
}
body.darkmode .agenda_day_item:hover{
    background-color: #32435d !important;
}
.agenda_day_item .left{
    flex-direction: row;
    align-items: center;
    width: fit-content;
    gap: 8px;
}
.agenda_day_item .right{
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    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: 18px;
    width: 18px;
}
.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;
    }
}

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

.pet_item .left{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.pet_item .right{
    align-items: flex-end;
}
.pet_item .photo,
.pet_item .logo{
    height: 52px;
    width: 52px;
    border-radius: 64px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 64px;
}
.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 .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 .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{
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    height: 189px;
    width: 158px;
    cursor: pointer;
}
.productPhoto:hover{
    transform: translateY(-6px) !important;
    z-index: 5;
}
.productPhoto:active{
    scale: 0.98;
}
.productPhoto.notAlive{
    opacity: 0.64;
}
.productPhoto *{
    pointer-events: none;
}
.productPhoto .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{
    background-image: url('../assets/icons/birthday.svg');
}
.productPhoto .photo{
    position: absolute;
    content: '';
    top: 18px;
    left: 12px;
    height: 140px;
    width: 140px;
    background-size: cover;
    background-position: center;
}
.productPhoto .photo.empty{
    background-image: url('../assets/images/pet_noPhoto.jpg');
}
body.darkmode .productPhoto .photo.empty{
    background-image: url('../assets/images/pet_noPhoto.darkmode.jpg');
}
.productPhoto .photo.add{
    background-image: url('../assets/images/add.jpg');
    background-size: cover;
    background-position: center;
}
body.darkmode .productPhoto .photo.add{
    background-image: url('../assets/images/add.darkmode.jpg');
}
.productPhoto::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: 4px;
    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{
    background-image: url('../assets/images/polaroid.darkmode.png');
}
.productPhoto:hover::after{
    box-shadow: 20px 24px 8px rgba(0, 0, 0, 0.024);
}
.productPhoto 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 h4.birthday{
    color: #9A58B3;
}
.productPhoto.preview{
    align-self:center;
    height: 250px;
    width: 202px;
}
.productPhoto.preview .photo{
    top: 24px;
    left: 14px;
    height: 180px;
    width: 180px;
}
.productPhoto.preview::after{
    height: 245px;
    width: 203px;
    background-size: 207px;
}

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

.petPhoto{
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    height: 189px;
    width: 158px;
    cursor: pointer;
}
.petPhoto:hover{
    transform: translateY(-6px) !important;
    z-index: 5;
}
.petPhoto:active{
    scale: 0.98;
}
.petPhoto.notAlive{
    opacity: 0.64;
}
.petPhoto *{
    pointer-events: none;
}
.petPhoto .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;
}
.petPhoto .stamp.birthday{
    background-image: url('../assets/icons/birthday.svg');
}
.petPhoto .photo{
    position: absolute;
    content: '';
    top: 18px;
    left: 12px;
    height: 140px;
    width: 140px;
    background-size: cover;
    background-position: center;
}
.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::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: 4px;
    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 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: #9A58B3;
}
.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 .left{
    flex-direction: row;
    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;
}
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 !important;
    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');
}

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

.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{
    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;
}
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: 6px;
}
.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,
.order_item .icon.voucher{
    background-color: #324e79 !important;
    background-image: none !important;
}
.order_item .icon img {
    height: 24px;
    width: 24px;
    filter: invert(1);
}

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

.arquivo_item .left{
    flex-direction: row;
    gap: 16px;
}
.arquivo_item .preview{
    width: 52px;
    height: 52px;
    border-radius: 6px;
    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.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;
    width: 100%;
    gap: 16px;
}
.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: 6px;
    flex-shrink: 0;
    background-image: url('../assets/images/product_noImage.jpg');
    background-size: cover;
}
body.darkmode .produto_item .image{
    background-image: url('../assets/images/product_noImage.darkmode.jpg');
}
.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 .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: 6px;
    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: 6px;
}
.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) !important;
    flex-direction: column;
    border-radius: 6px;
}
body.darkmode .cashier_item.history {
    border: 1px solid var(--box-border) !important;
}
.cashier_item .item{
    width: 100%;
}
.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: 6px;
}
.cashier_item.history .left{
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
}
.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{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.item.pagamento_item .right{
    justify-content: flex-end !important;
}
.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 .btn_remove{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    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;
}

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

.balance_item{
    flex-direction: row !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 .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{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #1c1c1c;
  font-size: 14px;
  gap: 16px;
}
.nested_input_item {
  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: 6px;
  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;
}

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

.comm_item .left{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.comm_item .right{
    align-items: flex-end;
}
.comm_item .image{
    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;
}
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: 6px;
    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: 6px;
    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;
}