grid2Col{
    display: grid;
    grid-template-columns: calc(50% - 8px) calc(50% - 8px);
    width: 100%;
    gap: 32px;
}
grid2Col .span{
    display: flex;
    flex-direction: column;
    grid-column: 1 / span 2;
}
grid2Col .left{
    grid-column: 1;
}
grid2Col .right{
    grid-column: 2;
}
grid2Col p a{
    text-decoration: underline;
}
grid2Col .span img {
    text-align: center;
    margin: 8px 0;
}
grid2Col .span h3 {
    text-align: center;
}
grid2Col h4 {
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0;
}
grid2Col .span p {
    text-align: center;
}
@media only all and (max-width: 1360px) {
    grid2col{
        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 .middle{
    grid-column: 2;
}
grid3Col .right{
    grid-column: 3;
}

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

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: #6D6D6D;
    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;
}
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;
    }
}


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

.noResults{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 100%;
    font-size: 14px;
}
@media only all and (max-width: 620px) {
    .noResults{
        text-align: center;
    }
}

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

.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 64px;
    padding: 16px 0;
    border-bottom: 1px solid #EEEEEE;
    cursor: pointer;
    gap: 24px;
}
body.darkmode .item{
    border-bottom: 1px solid #eeeeee33;
}
.item *{
    pointer-events: none;
}
.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 #EEEEEE;
}
.item:last-child{
    border-bottom: none !important;
}
.item .left,
.item .right{
    display: flex;
    flex-direction: column;
    width: calc(70% - 12px);
    gap: 6px;
}
.item .right{
    width: calc(30% - 12px);
    align-items: flex-end;
}
.item .right *{
    text-align: right;
}
.item .title{
    font-size: 14px;
    font-weight: 600;
    border-bottom: none !important;
    min-height: 0 !important;
}
body.darkmode .item .title{
    color: #fff;
}
.item .status{
    height: 64px;
    width: 6px;
    flex-shrink: 0;
    border-radius: 6px;
    background-color: #000;
}
@media only all and (max-width: 620px) {
    .item{
      flex-direction: column;
      padding: 24px 0;
      gap: 4px;
    }
    .item .left,
    .item .right{
        flex-direction: row;
        width: 100%;
    }
  }

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

.text_item .category{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.text_item .date_created{
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .text_item .category,
body.darkmode .text_item .date_created{
    color: #fff;
}
@media only all and (max-width: 620px) {
    .text_item{
        gap: 8px;
    }
    .text_item .left{
        flex-direction: column;
        gap: 4px;
    }
}

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

.help_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.help_item .left,
.help_item .right{
    width: 100%;
}
.help_item .company{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.help_item .info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.help_item .finished{
    font-size: 12px;
    color: #518E76;
    font-weight: 600;
}
.help_item .type{
    width: fit-content;
    font-size: 9px;
    text-transform: uppercase;
    background-color: #59b691;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
}
.help_item .type.admin{
    background-color: rgba(0, 0, 0, 0.5);
}

.help_item .date_created,
.help_item .assistant{
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .help_item .company,
body.darkmode .help_item .date_created,
body.darkmode .help_item .assistant{
    color: #fff;
}
@media only all and (max-width: 620px) {
    .help_item{
        gap: 16px;
    }
}

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

.card_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.card_item .left,
.card_item .right{
    width: 100%;
}
.card_item .status{
    height: 76px;
}
.card_item .assistants{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.card_item .assistants .photo{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: #eeeeee;
    background-size: cover;
    border: 2px solid #fff;
    border-radius: 64px;
    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.5;
}
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: #7a6e6e;
}
body.darkmode .card_item:hover .assistants .photo{
    border: 2px solid #2c2626;
}
.card_item .info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card_item .subject{
    font-size: 14px;
}
.card_item .category{
    font-size: 14px;
}
.card_item .finished{
    font-size: 12px;
    color: #518E76;
    font-weight: 600;
}
.card_item .date_created,
.card_item .assistant{
    font-size: 12px;
    text-wrap: nowrap;
    text-align: right;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .card_item .cardID,
body.darkmode .card_item .date_created,
body.darkmode .card_item .assistant{
    color: #fff;
}
body.darkmode .card_item .title {
    color: #000;
}
@media only all and (max-width: 620px) {
    .card_item{
        gap: 16px;
    }
}

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

.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.5);
}
body.darkmode .address_item .address{
    font-size: 14px;
    color: #fff;
    opacity: 0.64;
}

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

.user_item .left{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.user_item .photo,
.user_item .logo{
    height: 64px;
    width: 64px;
    flex-shrink: 0;
    background-size: contain;
    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');
}
body.darkmode .user_item .photo{
    background-image: url('../assets/images/user_noImage.darkmode.jpg');
}
body.darkmode .user_item .logo{
    background-image: url('../assets/images/user_noLogo.darkmode.jpg');
}
.user_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.user_item .userID,
.user_item .role{
    font-size: 12px;
}
.user_item .cpf,
.user_item .cnpj{
    font-size: 14px;
}
.user_item .role,
.user_item .cpf,
.user_item .cnpj{
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .user_item .userID,
body.darkmode .user_item .role,
body.darkmode .user_item .cpf,
body.darkmode .user_item .cnpj{
    color: #fff;
}

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

.horse_item .left{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.horse_item .right{
    align-items: flex-end;
}
.horse_item .photo,
.horse_item .logo{
    height: 64px;
    width: 64px;
    border-radius: 64px;
    flex-shrink: 0;
    background-size: cover;
    border-radius: 64px;
}
.horse_item .photo{
    background-image: url('../assets/images/horse_noImage.jpg');
}
.horse_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.horse_item .horseID,
.horse_item .tutor{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.horse_item .behavior{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 44px;
    background-color: rgba(0, 0, 0, 0.016);
}
body.darkmode .horse_item .horseID,
body.darkmode .horse_item .tutor{
    color: #fff;
}
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */

.open_service_item{
    cursor: default;
}
.open_service_item:active{
    scale: 1;
}
.open_service_item:hover,
body.darkmode .open_service_item:hover{
    background-color: transparent;
}
.open_service_item *{
    pointer-events: all;
}
.open_service_item .left,
.open_service_item .right{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.open_service_item .right{
    justify-content: flex-end;
}
.open_service_item .info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.open_service_item .status{
    height: 52px;
    width: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.open_service_item .status:active{
    scale: 0.95;
}
.open_service_item .status:hover{
    background-color: rgba(0, 0, 0, 0.08);
}
.open_service_item .status.finalizado{
    background-image: url('../assets/icons/check_circle.svg');
}
.open_service_item .status.ativo{
    background-image: url('../assets/icons/play_circle.svg');
}
.open_service_item .status.pendente{
    background-image: url('../assets/icons/hourglass.svg');
}
.open_service_item .employee{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.open_service_item .date_created{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.open_service_item .price{
    font-weight: 700;
    font-size: 18px;
}
.open_service_item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 52px;
    width: 52px;
    background-color: #000;
    border-radius: 56px;
}
.open_service_item .icon img{
    height: 24px;
    width: 24px;
    filter: invert(1) brightness(1000);
}
body.darkmode .open_service_item .employee,
body.darkmode .open_service_item .date_created{
    color: #fff;
}
.open_service_item .btn_remove{
    height: 52px;
    width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    background-image: url('../assets/icons/close.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.open_service_item .btn_remove:hover{
    background-color: rgba(0, 0, 0, 0.06);
}
body.darkmode .open_service_item .btn_remove:hover{
    background-color: rgba(255, 255, 255, 0.12);
}
.open_service_item .btn_remove:active{
    scale: 0.95;
}

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

.plan_item{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 98px;
    overflow: hidden;
    padding: 0;
    gap: 0;
}
.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);
}
.plan_item:active::after{
    left: 48%;
}
.plan_item .left{
    flex-direction: row;
}
.plan_item .content{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 100%;
    grid-column: 2;
    border: none;
    padding: 0 10px;
    background-color: #455B77;
    border-radius: 0;
    flex-wrap: nowrap;
}
body.darkmode .plan_item .content{
    background-color: #718bb4;
    border: none;
}
.plan_item .icon{
    height: 64px;
    width: 64px;
    flex-shrink: 0;
    background-image: url('../assets/icons/package_2.svg');
    background-size: 64px;
    filter: invert(1);
    background-repeat: no-repeat;
    background-position: center;
}
.plan_item .content .info,
.plan_item .services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.plan_item .content *{
    color: #fff;
}
.plan_item .title,
.plan_item .price{
    font-weight: 700;
    font-size: 16px;
}
.plan_item .price{
    opacity: 0.64;
}
.plan_item .usable_services,
.plan_item .used_services{
    font-size: 13px;
}
.plan_item .date_created{
    font-size: 12px;
    opacity: 0.64;
}
.plan_item .detail_left,
.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 .plan_item .detail_left,
body.darkmode .plan_item .detail_right{
    filter: invert(58%) sepia(9%) saturate(1413%) hue-rotate(178deg) brightness(91%) contrast(95%);
}
.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;
}
body.darkmode .access_item .icon{
    filter: invert(1);
}
.access_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.access_item .date_created{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.access_item .amount,
.access_item .description{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .access_item .amount,
body.darkmode .access_item .date_created,
body.darkmode .access_item .description{
    color: #fff;
}

@media only all and (max-width: 620px) {
    .access_item{
        gap: 16px;
    }
    .access_item .right{
        align-items: flex-start;
    }
}

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

.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 .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page_item .date_created{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.page_item .category,
.page_item .name{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .page_item .date_created,
body.darkmode .page_item .category,
body.darkmode .page_item .name{
    color: #fff;
}
@media only all and (max-width: 620px) {
    .page_item{
        gap: 16px;
    }
    .page_item .right{
        align-items: flex-start;
    }
}

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

.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 .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.log_item .date_created{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.log_item .description{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .log_item .date_created,
body.darkmode .log_item .description{
    color: #fff;
}

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

.employee_item .left{
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}
.employee_item .photo{
    height: 64px;
    width: 64px;
    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 .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.employee_item .title.token{
    position: relative;
    padding-left: 24px;
}
.employee_item .title.token::after{
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    top: 0;
    left: 0;
    background-image: url('../assets/icons/token.svg');
    background-position: 0px center;
    background-size: 18px;
    background-repeat: no-repeat;
}
body.darkmode .employee_item .title.token::after{
    filter: invert(1);
}
.employee_item .position{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.employee_item .email{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .employee_item .position,
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 .horse{
    height: 32px;
    width: 32px;
    background-image: url('../assets/images/horse_noImage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    border-radius: 32px;
}
.historico_item .info{
    overflow: hidden;
}
.historico_item .title{
    position: relative;
    width: 100%;
}
.historico_item .employee{
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}
.historico_item .date_created{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .historico_item .employee,
body.darkmode .historico_item .date_created{
    color: rgba(255, 255, 255, 1);
}
.historico_modal{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.historico_modal .icon{
    height: 64px;
    width: 64px;
    border-radius: 64px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0000001f;
    background-size: 32px;
    flex-shrink: 0;
}
body.darkmode .historico_modal .icon{
    filter: invert(1) !important;
}
.historico_modal .title_name{
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}
.historico_modal .description,
.historico_modal .involved{
    text-align: center;
}
.historico_modal .description{
    width: 100%;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 24px;
    margin-bottom: 12px;
}
body.darkmode .historico_modal .description{
    border-bottom: 1px solid var(--box-border);
}
.historico_modal .involved{
    line-height: 20px;
}
.historico_modal a,
.historico_modal button{
    justify-content: center;
    width: 100%;
}

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

.notificacao_item,
.notificacao_item a{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-bottom: 1px solid #EEEEEE;
    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 .info{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}
.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;
}
.notificacao_item .date_created{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .notificacao_item .date_created{
    color: rgba(255, 255, 255, 1);
}
@media only all and (max-width: 620px) {
    .notificacao_item {
        flex-direction: row;
    }
    .notificacao_item .left{
        flex-direction: column;
    }
}

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

.cliente_item .left{
    flex-direction: row;
    gap: 16px;
}
.cliente_item .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.cliente_item .title{
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.cliente_item .cpf,
.cliente_item .horses{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.cliente_item .horses{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

body.darkmode .cliente_item .cpf,
body.darkmode .cliente_item .horses{
    color: rgba(255, 255, 255, 0.5);
}
.cliente_item .horse_icons{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.cliente_item .horse_icons .icon{
    height: 64px;
    width: 64px;
    margin-left: -44px;
    background-color: rgba(0, 0, 0, 0.032);
    background-image: url('../assets/images/horse_noImage.jpg');
    background-size: cover;
    border: 2px solid #fff;
    border-radius: 64px;
}
body.darkmode .cliente_item .horse_icons .icon{
    border: 2px solid #3E5A87;
    background-color: rgba(255, 255, 255, 0.064);
}

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

.arquivo_item .left{
    flex-direction: row;
    gap: 16px;
}
.arquivo_item .preview{
    width: 64px;
    height: 64px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #EEEEEE;
    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.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 .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.arquivo_item .description{
    font-size: 14px;
    opacity: 0.5;
}
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.5);
}
.arquivo_item .date_created{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .arquivo_item .category,
body.darkmode .arquivo_item .date_created{
    color: rgba(255, 255, 255, 1);
}

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

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

.anotacao_item .employee{
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}
.anotacao_item .date_created{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .anotacao_item .employee,
body.darkmode .anotacao_item .date_created{
    color: rgba(255, 255, 255, 1);
}

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

.produto_item{
    position: relative;
}
.produto_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.produto_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.produto_item .right{
    flex-direction: row;
    justify-content: flex-end;
    align-items: center !important;
    gap: 16px;
}
.produto_item .image{
    height: 64px;
    width: 64px;
    border-radius: 6px;
    flex-shrink: 0;
    background-image: url('../assets/images/product_noImage.jpg');
    background-size: cover;
}
.produto_item .productID{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.produto_item .price{
    font-weight: 700;
    font-size: 18px;
}
@media only all and (max-width: 620px) {
    .produto_item{
        align-items: flex-start;
        gap: 8px;
    }
    .produto_item .left{
        max-width: 70%;
    }
    .produto_item .right{
        justify-content: flex-start;
    }
    .produto_item .image{
        position: absolute;
        top: 30px;
        right: 0;
    }
}

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

.contrato_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.contrato_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contrato_item .contractID,
.contrato_item .modulos{
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
.contrato_item .modulos{
    font-size: 14px;
}
.contrato_item .price{
    font-weight: 700;
    font-size: 18px;
}
.contrato_item .renew{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}
body.darkmode .contrato_item .contractID,
body.darkmode .contrato_item .modulos,
body.darkmode .contrato_item .renew{
    color: #fff;
}

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

.pagamento_item .left{
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.pagamento_item .icon{
    height: 32px;
    width: 32px;
    background-image: url('../assets/icons/receipt_long.svg');
    background-size: cover;
}
.pagamento_item .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pagamento_item .paymentID{
    font-size: 12px;
}
.pagamento_item .price{
    font-weight: 700;
    font-size: 18px;
}
.pagamento_item .payment_date{
    text-wrap: nowrap;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

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

.horsePhoto{
    position: relative;
    display: flex;
    justify-content: center;
    height: fit-content;
    height: 189px;
    width: 158px;
    cursor: pointer;
}
.horsePhoto:hover{
    transform: translateY(-6px);
    z-index: 5;
}
.horsePhoto:active{
    scale: 0.98;
}
.horsePhoto.notAlive{
    opacity: 0.5;
}
.horsePhoto *{
    pointer-events: none;
}
.horsePhoto .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;
}
.horsePhoto .stamp.birthday{
    background-image: url('../assets/icons/birthday.svg');
}
.horsePhoto .photo{
    position: absolute;
    content: '';
    top: 18px;
    left: 12px;
    height: 140px;
    width: 140px;
    background-size: cover;
    background-position: center;
}
.horsePhoto .photo.empty{
    background-image: url('../assets/images/horse_noImage_2.jpg');
}
.horsePhoto .photo.add{
    background-image: url('../assets/icons/add_circle_FILL.svg');
    background-size: 98px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.44);
    opacity: 0.16;
}
.horsePhoto::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: 10px 10px 16px rgba(0, 0, 0, 0.04);
    z-index: 2;
}
body.darkmode .horsePhoto::after{
    opacity: 0.2;
}
.horsePhoto:hover::after{
    box-shadow: 10px 16px 16px rgba(0, 0, 0, 0.04);
}
.horsePhoto h4{
    position: absolute;
    bottom: 6px;
    font-size: 14px;
    color: #444444;
    z-index: 3;
}
.horsePhoto h4.birthday{
    color: #9A58B3;
}

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

#nested_input_list,
#nested_input_empty{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #6D6D6D;
  font-size: 14px;
  gap: 16px;
}
.nested_input_item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  background-color: #fdfdfd;
  border: 1px solid #EEE;
  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;
  gap: 16px;
}
.nested_input_item .checkboxes .checkboxToolbar{
  width: fit-content;
}