/* Milligram overrides */
:root {
    --color-cakephp-bg-dark: black;
    /* The following are official CakePHP colors */
    --color-cakephp-red: #d33c43;
    --color-cakephp-gray: #404041;
    --color-cakephp-blue: #2f85ae;
    --color-cakephp-lightblue: #34bdd7;
    /* These are additional colors */
    --color-lightgray: #606c76;
    --color-white: #fff;
    --color-main-bg: #f5f7fa;
    --color-links: var(--color-cakephp-blue);
    --color-links-active: #2a6496;
    --color-headings: #363637;
    --color-message-success-bg: #e3fcec;
    --color-message-success-text: #1f9d55;
    --color-message-success-border: #51d88a;
    --color-background-ciano: #04bf8a;
    --color-background-black: black;
    --color-message-warning-bg: #fffabc;
    --color-message-warning-text: #8d7b00;
    --color-message-warning-border: #d3b800;
    --color-message-error-bg: #fcebea;
    --color-message-error-text: #cc1f1a;
    --color-message-error-border: #ef5753;
    --color-message-info-bg: #eff8ff;
    --color-message-info-text: #2779bd;
    --color-message-info-border: #6cb2eb;
    /*Cores primárias e secundárias de acordo com a regra de negócio*/
    --b4b-primaria: #3f51b5;
    --b4b-secundaria: #eceff1;
    --b4b-terciaria: #1f1f1f;
    --b4b-preto-ou-branco: #fff;
    --b4b-primaria-rgb: rgba(63, 81, 181, 0.2);
    --b4b-primaria-rgb-88: rgba(63, 81, 181, 0.88);
    --b4b-primaria-rgb-80: rgba(63, 81, 181, 0.8);
    --b4b-primaria-rgb-58: rgba(63, 81, 181, 0.58);
    --b4b-primaria-rgb-30: rgba(63, 81, 181, 0.3);
    --b4b-primaria-rgb-12: rgba(63, 81, 181, 0.12);
    --color-background-dark: #1f1f1f;
}
::-moz-selection {
    /* Code for Firefox */
    color: var(--b4b-terciaria);
    background: var(--b4b-primaria);
}

::selection {
    color: var(--b4b-terciaria);
    background: var(--b4b-primaria);
}
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: var(--color-cakephp-red);
    border-color: var(--color-cakephp-red);
}
body {
    background: var(--color-main-bg);
    margin: 0px;
    font-family: "Noto Sans", sans-serif;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    color: var(--color-headings);
}
a {
    color: var(--color-links);
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    text-decoration: none;
}
.side-nav a,
.top-nav-links a,
th a,
.actions a {
    color: var(--color-lightgray);
}
.side-nav a:hover,
.side-nav a:focus,
.actions a:hover,
.actions a:focus {
    color: var(--color-links-active);
}
/* títulos */
.large-title {
    color: #101010;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    margin: 0px;
}
.medium-title-h5 {
    color: #101010;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin: 0px;
}
/* ScrollBar */
::-webkit-scrollbar {
    width: 20px;
    height: 12px; 
}
  
  /* Personaliza o fundo da scrollbar */
::-webkit-scrollbar-track {
    background: var(--color-background-ciano); 
    border-radius: 10px;
}
  
  /* Personaliza o polegar (parte que se move) */
::-webkit-scrollbar-thumb {
    background: black; /* Cor do polegar */
    border-radius: 10px; /* Bordas arredondadas */
}
  
  /* Adiciona um efeito ao passar o mouse no polegar */
::-webkit-scrollbar-thumb:hover {
    background: white; /* Cor ao passar o mouse */
}


/* botões */
.button-default {
    background-color: #101010;
    background-image: -o-linear-gradient(var(--b4b-primaria), var(--b4b-primaria));
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--b4b-primaria)), to(var(--b4b-primaria)));
    background-image: linear-gradient(var(--b4b-primaria), var(--b4b-primaria));
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    position: relative;
    -webkit-transition: background-size 0.2s, color 0.2s;
    -o-transition: background-size 0.2s, color 0.2s;
    transition: background-size 0.2s, color 0.2s;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    margin: 0px;
    margin-left: auto;
    color: #FFFFFF;
    border: 0px;
}
.button-default:hover {
    background-size: 100% 100%;
    -webkit-transition: background-size 0.2s, color 0.2s;
    -o-transition: background-size 0.2s, color 0.2s;
    transition: background-size 0.2s, color 0.2s;
    background-color: #04bf8a;
}
.button-adicionar:focus {
    color: #ffffff;
}
.button-adicionar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #ffffff;
    font-size: 0px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 15px;
    max-width: 18px;
    width: 100%;
}
.button-adicionar:hover {
    color: #ffffff;
}
.button-adicionar::after {
    content: "+";
    font-size: 30px;
    font-weight: 400;
    padding-left: 0px;
}
.button-avançar,
.button-salvar {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 15px;
    border: 0px;
    max-width: none;
    width: 100%;
}
.button-avançar:hover,
.button-salvar:hover {
    color: #ffffff;
}
.home_content-grid button#button-pesquisar,
button#button-usuario-excel{
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 48px;
    height: 48px;
    margin: auto 0px 0px auto;
    padding: 0px;
    border: 1px solid var(--b4b-primaria);
    border-radius: 4px;
    cursor: pointer;
}
.home_content-grid button#extract{
    background-color: transparent;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 50px;
    border: 2px solid #04bf8a;
}

.home_content-grid button#button-pesquisar:hover,
button#button-usuario-excel:hover {
    background-color: var(--b4b-primaria-rgb-12);
}
#button-pesquisar svg path,
#button-usuario-excel svg path {
    opacity: 1;
}
.button-text-link {
    background-color: #ffffff;
    width: 100%;
    min-width: inherit;
    margin: auto;
    margin-left: auto;
    margin-top: 12px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    text-decoration: underline;
    color: #101010;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 11px 15px;
    cursor: pointer;
    text-align: center;
}
.button-text-link:hover {
    border: 1px solid #101010;
    text-decoration: none;
    color: var(--b4b-primaria);

}
.button-adicionar-produtos {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 15px;
    border: 0px;
    max-width: none;
    width: calc(100% - 30px);
}
/* Utility */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.home_content-grid-blockText--saibamais{
    background-color: transparent;
    text-decoration: none !important;
    border: 1px solid var(--color-background-ciano);
    border-radius: 25px;
    text-align: center !important;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: var(--color-background-ciano) !important;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.home_content-grid-blockText--saibamais:hover {
    color: white !important;
    background-color: var(--color-background-ciano);
}

.home_content-grid-blockText--date,
.home_content-grid-blockText--saibamais{
    width: 100% !important;
}    
/* Main */
.content {
    background: var(--color-white);
    /* Thanks Stripe */
    -webkit-box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
            box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
}
.content form {
    margin: 0;
}
.actions a {
    font-weight: bold;
}
.actions a:first-child {
    padding-left: 0;
}
th {
    white-space: nowrap;
}
/* Nav bar */
.top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 112rem;
    padding: 2rem;
    margin: 0 auto;
}
.top-nav-title a {
    font-size: 2.4rem;
    color: var(--color-cakephp-red);
}
.top-nav-title span {
    color: var(--color-cakephp-gray);
}
.top-nav-links a {
    margin: 0 0.5rem;
}
.top-nav-title a,
.top-nav-links a {
    font-weight: bold;
}
.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}
/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}
/* Flash messages */
.message {
    padding: 0.5rem 1rem;
    background: var(--color-message-info-bg);
    color: var(--color-message-info-text);
    border-color: var(--color-message-info-border);
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 1rem;
    cursor: pointer;
}
.message.hidden {
    display: none;
}
.message.success {
    background: var(--color-message-success-bg);
    color: var(--color-message-success-text);
    border-color: var(--color-message-success-border);
}
.message.warning {
    background: var(--color-message-warning-bg);
    color: var(--color-message-warning-text);
    border-color: var(--color-message-warning-border);
}
.message.error {
    background: var(--color-message-error-bg);
    color: var(--color-message-error-text);
    border-color: var(--color-message-error-border);
}
/* Forms */
.input.radio,
.input.checkbox,
.input.multicheckbox {
    margin-bottom: 2rem;
}
.input.radio input,
.input.checkbox input,
.input.multicheckbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label,
.input.multicheckbox label {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.input.radio label > input,
.input.checkbox label > input,
.input.multicheckbox label > input {
    margin-right: 1rem;
}
input[type="color"] {
    max-width: 4rem;
    padding: 0.3rem 0.5rem 0.3rem;
}
/* Paginator */
.paginator {
    text-align: right;
}
.paginator p {
    margin-bottom: 0;
}
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}
.pagination li {
    display: inline-block;
    margin: 0.25em;
    text-align: center;
}
.pagination a {
    color: var(--color-cakephp-blue);
    display: inline-block;
    font-size: 1.25rem;
    line-height: 3rem;
    min-width: 3rem;
    padding: 0;
    position: relative;
    text-decoration: none;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}
.pagination li.active a,
.pagination a:hover {
    text-decoration: underline;
}
.pagination .disabled a {
    cursor: not-allowed;
    color: var(--color-lightgray);
    text-decoration: none;
}
.first a,
.prev a,
.next a,
.last a {
    padding: 0 0.75rem;
}
.disabled a:hover {
    background: initial;
    color: initial;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}
/* Error in non debug mode */
.error-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.content-center {
    max-width: 1920px;
    padding: 0px 20px;
    display: block;
}
/* Login e páginas relacionadas */
#logo-empresa-login {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
   max-width: 200px;
}

#logo-empresa{
    max-height: 100%;           
    max-width: 100%;            
    -o-object-fit: contain;            
       object-fit: contain;        
    -o-object-position: left;        
       object-position: left;    
} 

/* Fundo do Login */
#fundo_animado{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background-color: var(--color-cakephp-bg-dark);
}

/* Campo de lista para campanhas anteriores */
.body_list_before_camp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    border: 1px solid #E3E3E3;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.body_list_before_camp .home_content-grid-blockCampanhas--list-item{
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    height: 100%;
    margin: 5px;
    width: 250px;
}

.body_list_before_camp .home_content-grid-blockCampanhas--list-item:hover{
    -webkit-transform: scale(101%);
        -ms-transform: scale(101%);
            transform: scale(101%);
}
.tam_max_img_list{
    max-height: 10px !important;
}

#head_list_before_camp{
    -ms-flex-negative: 0;
        flex-shrink: 0; 
    width: 100%; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    font-weight: bold;
}
#head_list_before_camp h4{
    margin-left: 10px;
    font-weight: bold;
}

/* Tag de Alerta da Campanha*/
.tag_mensage_alert_camp{
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 24px;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: arial;
}

/* Campo de aviso para resgate*/
.campo_aviso{
    text-align: center;
    border: 2px dashed orangered;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: gainsboro;
    margin: auto;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

@counter-style thumbs{
	system: cyclic;
	symbols: ✈️ 🚜;
	suffix: "";
}

/* Corpo das campanhas */
.corpo_camp img{
    width: 200px;
}

.campo_aviso h3,
.campo_aviso h4,
.campo_aviso{
    color: orangered;
}

.campo_aviso h3,
.campo_aviso h4{
    font-weight: 600;
}

.campo_aviso ul{
    text-align: left;
    list-style-type: thumbs;
}

/* Campo de Telefone */
.campo_telefone{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}
.campo_ddd{
    border: 1px solid white;
    border-radius: 50px 0 0 50px;
    font-family: Arial, Helvetica, sans-serif;
    width: 30% !important;
    height: 52px;
    background: transparent;
    color: white;
    padding-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.campo_ddd:focus{
    color: black;
}
.campo_ddd option{
    white-space: nowrap; /* Impede que o texto dentro das opções quebre a linha */
    overflow: hidden; /* Esconde o texto que ultrapassar o limite */
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis; /* Adiciona reticências no final de textos longos */
}

.campo_cel{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 70% !important;
    color: white;
    border: 1px solid white;
    border-radius: 0 50px 50px 0 !important;
}

/* Mensagem de Resgate */
.alert_resgate{
    background-color: #ff3000;
}
.alert_resgatado{
    background-color: #256318;
}
.alert_resgatado,
.alert_resgate{
    width: 100%;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: white !important;
    font-weight: bold;
    border-radius: 170px;
    text-align: center;   
}
/* Area Login */ 
.login-related {
    position: relative;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 2;
}
.login-related-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 35px;
    height: 100%;
    color: white !important;
}
.content-center {
    max-width: 1920px;
    width: calc(100% - 40px);
    margin: 0px auto;
    padding: 0px 20px;
}
.login-related-content-card {
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(26px);
            backdrop-filter: blur(26px);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 35px;
    width: calc(100% - 70px);
    max-width: 315px;
    border: 1px solid white;
    border-radius: 12px;
}
.login-related-content-card span {
    display: block;
    font-size: 16px;
    line-height: 24px;
}
.login-related-content-card h1 {
    margin: 0px 0px 5px;
    font-weight: 700;
    line-height: 34px;
}
.login-related-content-card h1, 
.login-related-content-card span {
    color: white;
}
.login-related-content-card-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: 22px 0px 16px;
}
.login-related-content-card-field input {
    padding: 13px;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    font-size: 16px;
    line-height: 24px;
    background: transparent;
}
.login-related-content-card-field input::-webkit-input-placeholder{
    color: white;
}
.login-related-content-card-field input::-moz-placeholder{
    color: white;
}
.login-related-content-card-field input:-ms-input-placeholder{
    color: white;
}
.login-related-content-card-field input::-ms-input-placeholder{
    color: white;
}
.login-related-content-card-field input,
.login-related-content-card-field input::placeholder{
    color: white;
}
#back-login {
    color: #101010;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    text-align: center;
}

.login
.login-related-content-card-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 18px auto 0px;
    padding-right: 6px;
    color: #101010;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
}
.login-related-content-card-back:hover {
    color: #101010;
    text-decoration: underline;
}
.login-related-content-card-back img {
    width: 18px;
    height: 18px;
}
.login-related-content-card-showPass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 14px;
    gap: 15px;
    margin-bottom: 16px;
}
.login-related-content-card-showPass a {
    color: #101010;
}
.login-related-content-card-showPass-block {
    padding-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 8px;
}

#configGeral .login-related-content-card-showPass-block{
    width: 100%;
}

.login-related-content-card-showPass-block input {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
    padding: 0.1rem;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    margin: 0px;
}
.login-related-content-card-showPass-block input::before {
    content: "";
    width: 13px;
    height: 13px;
    -webkit-clip-path: polygon(13% 41%, 35% 64%, 86% 18%, 95% 28%, 35% 84%, 3% 51%);
            clip-path: polygon(13% 41%, 35% 64%, 86% 18%, 95% 28%, 35% 84%, 3% 51%);
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    background-color: #ffffff;
}
.login-related-content-card-showPass-block input:checked {
    background-color: #04bf8a;
    border: 1px solid #04bf8a;
}
.login-related-content-card-showPass-block input:checked::before {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    margin: auto;
}
.login-related-content-card-field input:focus-visible {
    outline: 2px solid var(--b4b-primaria);
}
.login-related-content-card button {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    margin: 0px;
    padding: 12px;
    background-color: #101010;
    border: 0px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}.login-related a{
    color: #04bf8a;
}

/* Administrador */
.admin{
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25%;
    height: 100%;
}

/* Usuário */
.user{
    width: 100%;
}

/* Message loginError */
.message.error,
.message.info,
.message.success,
.message.warning {
    background-color: transparent;
    border: 0px;
    position: absolute;
}
/* breadcrumb */
.breadcrumb-container {
    background-color: var(--b4b-primaria-rgb-12);
   /* transition: all 1s; */
}
ol.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 22px;
}
.breadcrumb-item {
    font-size: 12px;
    margin: 0px;
    padding: 0px 8px 0px 0px;
    list-style: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transition: ease all 0.3s;
    -o-transition: ease all 0.3s;
    transition: ease all 0.3s;
    padding-left: 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.breadcrumb-item a {
    color: #101010; 
    /* color: white; */
    font-size: 12px;
    line-height: 20px;
}
.breadcrumb-item a:hover {
    color: var(--b4b-primaria);
}
.breadcrumb-item.adjust-width:nth-child(1) a:hover {
    color: var(--b4b-primaria);
}
.breadcrumb-item:nth-last-child(-n + 1) {
    font-weight: 700;
}
.breadcrumb-item {
    position: relative;
    margin-right: 10px;
}
.breadcrumb-item::after {
    content: "/";
    position: absolute;
    right: -4px;
    top: 1px;
}
.breadcrumb-item:last-child::after {
    content: "";
}
/* Header e menu */
.perfil_teste {
    background-color: #8c9eff;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    display: none;
}

.header {
    background: -o-linear-gradient(340.4deg, rgba(0, 0, 0, 0.93) 55.2%, rgb(4,191,138));
    background: linear-gradient(109.6deg, rgba(0, 0, 0, 0.93) 55.2%, rgb(4,191,138));
    -webkit-backdrop-filter: blur(75px);
            backdrop-filter: blur(75px);
    position: fixed;
    width: 100%;
    z-index: 5;
}
.header_content {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
/* Botão Dark Mode */
.darkmode{
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: end;
}
.modoColor{
    display: inline-block;
    width: 35px;
    background-color: white;
    opacity: 0.7;
    border-radius: 15px;
    margin: 0 5px;
}
.modoColor div{
    width: 10%;
    height: 10%;
    border-radius: 60px;
    background-color: #04bf8a;
    border: 2px solid #000 ;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.modoColor,
.modoColor div{
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
  
.header_content-block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;*/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header_content-block1 #logo-empresa {
    display: none;
}
.header_content-block1 svg {
    cursor: pointer;
}
.header_content-block1 img {
    margin: auto 0px;
    width: 160px;
    height: 50px;
}
.header_content-block2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
}
.header_content-block2-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    color: var(--b4b-preto-ou-branco);
    font-size: 16px;
    line-height: 24px;
    gap: 18px;
}
.header_content-block2-name a {
    text-align: right;
    color: var(--b4b-preto-ou-branco);
    opacity: 0.7;
    font-size: 16px;
    line-height: 24px;
}
.header_content-block2-name a:hover {
    text-decoration: underline;
}
.header_content-block2-name span mark {
    color: var(--b4b-preto-ou-branco);
    background-color: transparent;
    font-weight: 700;
}
.menu_block {
    padding-top: 60px;
}
.menu_block.display {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0px;
}
.menu_block-blur {
    display: none;
}
.menu_block-blur.display {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 9999;
    position: fixed;
    top: 0;
}
.menu {
    width: 245px;
    min-height: 100vh;
    background-color: #f7f7f7;
    -webkit-box-shadow: 0px 0px 15px 2px #1a237e29;
            box-shadow: 0px 0px 15px 2px #1a237e29;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 20px 0px;
    margin-top: 0px;
    margin-left: -245px;
    overflow: auto;
    z-index: 99999;
    /*
    -webkit-transition: ease all 1s;
    -o-transition: ease all 1s;
    transition: ease all 1s; */
}
.menu.open-menu {
    margin-left: 0px;
}
.no-scroll {
    overflow: hidden;
}
.menu_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding-left: 0px;
}
.menu_content-item svg {
    width: 34px;
}
.menu_content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    color: #101010;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 14px 13px 20px;
    margin: 0px;
    -webkit-transition: ease all 0.1s;
    -o-transition: ease all 0.1s;
    transition: ease all 0.1s;
}
.menu_content-item a {
    color: #101010;
}
.menu_content-item:hover a {
    color: #fff;
    -webkit-transition: ease all 0.1s;
    -o-transition: ease all 0.1s;
    transition: ease all 0.1s;
}
.menu_content-item:hover {
    color: var(--b4b-primaria);
    background-color: var(--b4b-primaria-rgb-12);
}
.effect-true {
    pointer-events: none;
}
/* Loaders */
.loader-button {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 8px;
    pointer-events: none;
}
.loader-button::after {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    content: '';
    width: 16px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px !important;
    background: conic-gradient(#0000 10%,#fff) content-box;
    -webkit-mask:
      repeating-conic-gradient(#0000 0deg,#000 10deg 20deg,#0000 21deg 40deg),
      radial-gradient(farthest-side,#0000 calc(100% - var(--b) - -4px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
            mask-composite: intersect;
    -webkit-animation:l4 1s infinite steps(10);
            animation:l4 1s infinite steps(10);
  }
  @-webkit-keyframes l4 {to{-webkit-transform: rotate(1turn);transform: rotate(1turn)}}
  @keyframes l4 {to{-webkit-transform: rotate(1turn);transform: rotate(1turn)}}
.loader {
    position: relative;
    margin: auto;
    width: 2rem;
    border-radius: 100vmin;
    overflow: hidden;
    padding: 1.25rem;
    display: none;
    &::before {
        content: "";
        display: block;
        padding-top: 100%;
    }
}

.circular {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation: 2s linear 0s infinite rotate;
            animation: 2s linear 0s infinite rotate;
}

.path {
    stroke: var(--b4b-primaria);
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    -webkit-animation: 1.5s ease-in-out 0s infinite dash;
            animation: 1.5s ease-in-out 0s infinite dash;
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
        stroke: var(--b4b-primaria);
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
        stroke: var(--b4b-primaria);
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}

footer {
    background: var(--b4b-primaria-rgb-30);
}

.footer__content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4px 0;
    font-size: 12px;
}
/* Dashboard Graficos */
.container div{
    border: 10px dashed transparent;
    border-radius: 80px;
    padding: 15px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation: 5s  system_border_one infinite;
            animation: 5s  system_border_one infinite;
}

@-webkit-keyframes system_border_one{
    0%{
        border-top-color: #079970;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: none;
    }
    15%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: none;
        border-left-color: none;  
    }
    20%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: none;  
    }
    30%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: #079970;   
    }
    45%{
        border-top-color: none;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: #079970;        
    }
    55%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: #079970;
        border-left-color: #079970;          
    }
    65%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: #079970;  
    }
    75%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: none;  
    }
}

@keyframes system_border_one{
    0%{
        border-top-color: #079970;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: none;
    }
    15%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: none;
        border-left-color: none;  
    }
    20%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: none;  
    }
    30%{
        border-top-color: #079970;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: #079970;   
    }
    45%{
        border-top-color: none;
        border-right-color: #079970;
        border-bottom-color: #079970;
        border-left-color: #079970;        
    }
    55%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: #079970;
        border-left-color: #079970;          
    }
    65%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: #079970;  
    }
    75%{
        border-top-color: none;
        border-right-color: none;
        border-bottom-color: none;
        border-left-color: none;  
    }
}

/* Estilo de alerta */
.toast-error{
    background-color: #f3981d !important;
    color: white !important;
    font-weight: bold;
}

/* Configuração de cor do SVG Path */
.menu_content-item svg path,
.header_content-block1 svg path,
#button-pesquisar svg path,
#button-usuario-excel svg path,
.home_content-grid-title svg path,
#head_list_before_camp svg path {
    fill: var(--color-background-ciano) !important;
}

@media (min-width: 1024px) {
    .breadcrumb-item.adjust-width:nth-child(1) {
        margin-left: 245px;
    }
    .breadcrumb-item.adjust-width:nth-child(n + 2) {
        margin-left: 0px;
    }
    .breadcrumb-item {
        padding: 0px 14px 0px 7px;
    }
    .breadcrumb-item a,
    .breadcrumb-item{
        font-size: 16px;
        line-height: 24px;
    }
    .large-title {
        font-size: 22px;
        line-height: 27px;
    }
    /* Header e menu */
    .perfil_teste {
        width: 56px;
        height: 56px;
    }
    .header {
        position: relative;
    }
    .header_content {
        height: 80px;
    }
    .header_content-block1 {
        width: 228px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 30px;
    }
    .header_content-block1 #logo-empresa {
        display: block;
    }
    .header_content-block1 svg {
        height: auto;
        width: 45px;
    }
    .header_content-block2 {
        gap: 30px;
    }
    .header_content-block2-name {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0px;
    }
    .menu_block {
        padding: 0px;
    }
    .menu_block.display {
        width: 0px;
        height: 0px;
    }
    .menu_block-blur.display {
        width: 0px;
        height: 0px;
    }
    .menu {
        top: 80px;
    }
    .no-scroll {
        overflow: auto;
        overflow-x: hidden;
    }
    /* Botões */
    .button-adicionar {
        font-size: 16px;
        max-width: 110px;
    }
    .button-adicionar::after {
        padding-left: 12px;
    }
    .button-avançar,
    .button-salvar {
        max-width: 140px;
        margin-left: 0px;
    }
    .button-text-link {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: 140px;
        margin: 0px;
    }
    .button-adicionar-produtos {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}
@media screen and (max-width: 1023px) {
    /* Login e páginas relacionadas */
    .admin{
        width: 100%;
    }
    /* Fix milligram not having a responsive column system */
    .row .column[class*="column-"] {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%;
    }
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
}