:root {
  --width_grid_in: 1076px;
  /* --color_main:#008cff;
  --color_main_dark:#0084f0;
  --color_main_dark_dark: #007ee6; */
  --color_main: #D20A13;
  --color_main_dark: #90080F;
  --color_main_dark_dark: #7c0d18;
  --color-main: #D20A13;
  --color-main-dark: #90080F;
  --color-main-dark-dark: #90080F;
  --color_body: #f1f4f9;

  --color_info: #33b5e5;
  --color_ok: #15D661;
  --color_warning: #FFCB2E;
  --color_erro: #dd3341;

  --color_info_dark: #0099CC;
  --color_ok_dark: #007E33;
  --color_warning_dark: #FF8800;
  --color_erro_dark: #CC0000;

	--color_neutral: #cccccc;
	--color_black: #000000;

  --color-tooltip-icon: #626262;
  --color-tooltip: #ffffff;
  --background_color-tooltip: #626262;


  /* VARIAVEIS SWITCH */
  --color-switch: #dd3341;
  --color-switch-focus: #dd334173;

  --color-switch-checked: #15d661;
  --color-switch-checked-focus: #15d66173;

  --text-switch: "Pendente";
  --text-switch-checked: "Concluido";
}
body {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--color_body);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: grid;
  grid-template: "nav  main";
  overflow: hidden;
}
*, *:focus {
  box-sizing: border-box;
  outline: none;
}
a {
  text-decoration: none;
}
h2 {
  color: var(--color_main);
  padding: 0px 0px 10px 0px;
  font-size: 26px;
}


/* INPUT SWITCH PADRÃO */
/* INPUT SWITCH PADRÃO */
input[type=checkbox].switch {
  position: relative;
  width: 38px;
  height: 21px;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid var(--color-switch);
  border-radius: 11px;
  outline: none;
  vertical-align: top;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.2s;
}
input[type=checkbox].switch:hover {
  border: 1px solid var(--color-switch);
  box-shadow: 0 0 0 3px var(--color-switch-focus);
}

input[type=checkbox].switch:disabled {
  background-color: #F6F8FF;
  border: 1px solid #F6F8FF;
  cursor: not-allowed;
  opacity: 0.9;
}
input[type=checkbox].switch:disabled:checked {
  background-color: #E1E6F9;
  border: 1px solid var(--color-switch);
}

input[type=checkbox].switch:checked {
  border: 1px solid var(--color-switch-checked);
}
input[type=checkbox].switch:checked:hover {
  box-shadow: 0 0 0 3px var(--color-switch-checked-focus);
}


input[type=checkbox].switch::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 3px;
  top: 2px;
  border-radius: 50%;
  background: var(--color-switch);
  display: block;
  transform: translateX(0);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.2s;
}
input[type=checkbox].switch:hover::after {
  background-color: var(--color-switch);
}

input[type=checkbox].switch:disabled::after,
input[type=checkbox].switch:disabled:hover::after {
  opacity: 0.6;
}

input[type=checkbox].switch:checked::after {
  left: 1px;
  opacity: 1;
  background-color: var(--color-switch-checked);
  transform: translateX(17px);
  transition: background-color 0.3s ease, transform .6s cubic-bezier(.2, .85, .32, 1.2), opacity .3s;
}
input[type=checkbox].switch:checked:hover::after {
  background-color: var(--color-switch-checked);
}


input[type=checkbox].switch+label {
  font-size: 14px;
  line-height: 21px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  /* margin-left: 4px; */
}
input[type=checkbox].switch:disabled+label {
  cursor: not-allowed;
}


input[type=checkbox].switch+label::after {
  content: var(--text-switch);
  margin-left: 5px;
  color: var(--color-switch);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

input[type=checkbox].switch:checked+label::after {
  content: var(--text-switch-checked);
  color: var(--color-switch-checked);
}



/* INPUT FILE PADRÃO */
/* INPUT FILE PADRÃO */
.form-group-2 input[type='file'] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.button-download,
.form-group-2 input[type='file']+label {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.button-download .box,
.form-group-2 input[type='file']+label .box {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 8px 20px 6px;
  background-color: var(--color-main);
  border-radius: 3px;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-download::after,
.form-group-2 input[type='file']+label::after {
  content: attr(data-selected);
  position: relative;
  margin-left: 10px;
  text-overflow: ellipsis;
  font-size: 15px;
  overflow: hidden;
}



/* LOADING PADRÃO */
/* LOADING PADRÃO */
.content-loading {
  position: relative;
  width: 450px;
  max-width: 100%;
  height: max-content;
  margin: 40px auto 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.content-loading div {
  width: 130px;
  height: 130px;
}

.content-loading h3 {
  width: 100%;
  text-align: center;
}



/* CONTEÚDO DE ERRO PADRÃO */
/* CONTEÚDO DE ERRO PADRÃO */
.content-error {
  width: 500px;
  max-width: 85%;
  margin: 15px auto 10px;
  text-align: center;
}
.content-error h3 {
  width: 100%;
  margin: 10px 0px 0px;
  color: #00000094;
  font-size: 21px;
  font-weight: bold;
}



/* Botão padrão */
.button_default_fill,
.button_default_fill_reverse {
  position: relative;
  height: 82%;
  min-height: 32px;
  width: max-content;
  padding: 10px 25px 8px;
  background-color: var(--color_main);
  border: 1px solid var(--color_main);
  border-radius: 2px;
  color:#ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.button_default_fill:hover {
  background-color: transparent;
  color: var(--color_main);
}
.button_default_fill:disabled, 
.button_default_fill:disabled:hover, 
.button_default_fill:disabled:focus {
  background-color: #f2f2f2;
  color: #bbbbbb;
  border: 1px solid #cccccc;
  cursor: default;
}

.button_default_fill_reverse {
  background-color: #ffffff;
  border: 1px solid var(--color_main);
  color: var(--color_main);
}
.button_default_fill_reverse:hover {
  background-color: var(--color_main);
  color:#ffffff;
}

.tooltip-content {
  position: absolute;
  min-width: 100%;
  width: max-content;
  max-width: 30vw;
  padding: 7px 10px;
  bottom: 135%;
  background-color: var(--background_color-tooltip);
  border-radius: 6px;
  color: var(--color-tooltip);
  text-align: center;
  box-shadow: 0px 0px 4px 0px #aaaaaa;
  cursor: auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.tooltip-content::before {
  content: "";
  position: absolute;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: var(--background_color-tooltip);
}


/* Filtro para enviar as informações do produto */
.filter-waiting-response {
  position: fixed;
  width: 100%;
  height: 110%;
  right: 0px;
  top: 0px;
  background-color: #3030307a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  cursor: wait;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.filter-waiting-response p {
  width: 500px;
  max-width: calc(100% - 50px);
  margin: 50px;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
}
/* Animação de carregamento */
.filter-waiting-response .loader-bars {
  width: 90px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.filter-waiting-response .loader-bars::before,
.filter-waiting-response .loader-bars::after,
.filter-waiting-response .loader-bars span {
  content: "";
  width: 22%;
  height: 120%;
  background-color: #f9e5ff;
  display: block;
  animation: grow 1.5s linear infinite;
}
.filter-waiting-response .loader-bars::after {
  left: 15px;
  animation: grow 1.5s linear -0.5s infinite;
}
.filter-waiting-response .loader-bars span {
  left: 30px;
  animation: grow 1.5s linear -1s infinite;
}
@keyframes grow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}


/* Elemento que alinha o conteúdo principal da pagina */
.content-main {
  position: relative;
  width: calc(100vw - calc(var(--header_left-width) - 2px));
  height: 100vh;
  padding-top: var(--height-top_item_title);
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  overflow-y: scroll;
  /* overflow-y: auto; */
  overflow-x: auto;
  grid-area: main;
  transition: all 0.3s ease;
}
.content-top-main,
.content-bottom-main {
  position: sticky;
  /* width: calc(100vw - (var(--header_left-width) + 73px)); */
  width: 100%;
  /* margin-bottom: 20px; */
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  transition: width 0.3s ease, left 0.3s ease;
}
.content-bottom-main {
  pointer-events: none;
}
.content-bottom-main .options_pages {
  pointer-events: all;
}
/* Titulo da pagina, explicação da pesquisa e botão */
.content-introduction-page {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.content-introduction-page h2 {
  /* max-width: 55%; */
  width: max-content;
  max-width: 100%;
  margin: 0px;
  flex: 1 1 70%;
}
.content-introduction-page h2 p {
  margin: 5px 0px 0px;
  color: #727272;
  font-size: 16px;
  font-weight: 500;
}

.content-introduction-page .button_default_fill,
.content-introduction-page .button_default_fill_reverse {
  flex: 0 0 max-content;
}

/* Elemento que alinha as opções da tabela */
.content-options-table {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
}
.content-options-table > *:empty {
  height: 0px;
  opacity: 0;
  pointer-events: none;
}
/* Filtro dropdown da pagina */
.button_filter_default {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0px;
  background-color: transparent;
  border: 1px solid var(--color_main);
  color: var(--color_main);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
}
.button_filter_default:hover {
  background-color: var(--color_main);
  color: #fff;
}
.button_filter_default.extended {
  background-color: #fff;
  color: var(--color_main);
}
.button_filter_default .join_text_arrow_button {
  pointer-events: none;
  background-color: transparent;
  padding: 10px 15px;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease 0.25s;
}
.button_filter_default.extended .join_text_arrow_button {
  background-color: #fff;
}
/* Opções do filtro */
.button_filter_default .join_option_filter {
  position: relative;
  width: 100%;
  white-space: nowrap;
  top: calc(100% - 10px);
  left: 0px;
  max-height: 0px;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease 0s;
  border: 0px solid var(--color_main);
}
.button_filter_default.extended .join_option_filter {
  height: max-content;
  max-height: 250px;
}
.button_filter_default .join_option_filter .option_filter {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  color: var(--color_main);
  transition: all .3s ease;
}
.button_filter_default .join_option_filter .option_filter:hover {
  background-color: var(--color_main);;
  color: #fff;
}

/* Paginação da pagina */
.options_pages {
  border-radius: 3px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_controll_link {
  padding: 9px 15px;
  background-color: transparent;
  border: 1px solid var(--color_main);
  color: var(--color_main);
  cursor: pointer;
  transition: all 0.2s ease;
}
.page_controll_link:not(:first-child) {
  border-left: 1px solid transparent;
}
.page_controll_link:hover {
  color:#fff;
  background-color: var(--color_main);
}

.page_controll_link.page_controll_active {
  color:#fff;
  background-color: var(--color_main);
}
.page_controll_link.page_controll_active:hover {
  color:#fff;
  background-color: var(--color_main_dark);
}


/* PAGINAÇÃO */
/* PAGINAÇÃO */
.content-pagination {
  /* margin: 23px 20px 5px; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.content-pagination .option-pagination {
  padding: 9px 11px 8px;
  margin: 0px 4px;
  background-color: transparent;
  border: 2px solid #dedcdc;
  border-radius: 4px;
  color: #999999;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.content-pagination .option-pagination:hover,
.content-pagination .option-pagination.current-page {
  color: var(--color_main);
  border-color: var(--color_main);
  background-color: #64b9ff0c;
}
.content-pagination .option-pagination:hover {
  box-shadow: 0px 0px 12px -3px #D20A135c;
}

.content-pagination .option-pagination.prev-page,
.content-pagination .option-pagination.next-page {
  padding: 7px 5px;
}

/* Campo de pesquisar da pagina */
.options_search {
  position: relative;
  width: 220px;
  height: 40px;
}
.options_search input {
  width: 100%;
  height: 100%;
  /* padding: 0px 20px; */
  padding: 0px 20px 0px 17px;
  background-color: transparent;
  /* background-color: #ffffff; */
  /* border: 1px solid var(--color_main); */
  border: 2px solid #d8d8d8;
  /* border-radius: 3px; */
  border-radius: 4px;
  /* color: var(--color_main); */
  color: #ababab;
  /* font-size: 14px; */
  font-size: 16px;
  transition: all 0.2s ease;
}
.options_search input:hover,
.options_search input:focus {
  border: 2px solid var(--color_main);
  background-color: #64b9ff0c;
  color: var(--color_main);
  box-shadow: 0px 0px 12px -3px #008cff5c;
}
.options_search input::placeholder {
  color: inherit;
  font-size: 15px;
  font-weight: 600;
}

/* .options_search input ~ label {
  position: absolute;
  padding: 0px 10px;
  top: 9px;
  left: 20px;
  background-color: var(--color_body);
  color: var(--color_main);
  cursor: text;
  transition: all 0.3s ease;
} */
/* .options_search input:focus ~ label, 
.options_search input:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 13px;
} */



/* Box com checkbox para selecionar todas as linhas e botões para mudar o status das linhas selecionadas */
.container_change_status {
  position: sticky;
  /* width: calc(100vw - (var(--header_left-width) + 73px)); */
  width: 100%;
  padding: 20px 20px;
  margin: 20px 0px;
  top: calc(var(--height-top_item_title) * -1);
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 30px;
  z-index: 1;
  overflow: auto;
  transition: width 0.3s ease, left 0.3s ease;
}
/* Input checkbox */
.container_change_status .align_input {
  max-width: 100%;
  margin-top: 0px;
  display: flex;
  align-items: center;
  flex: 1 0 max-content;
}
.input-checkbox {
	position: relative;
	width: 22px;
	height: 22px;
  margin: 0px;
	margin-right: 10px;
	background: transparent;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
	color: #fff;
	cursor: pointer;
  display: inline-block;
  box-sizing: content-box;
  appearance: none;
  flex: 0 0 22px;
	transition: all 0.15s ease-out 0s;
}
.input-checkbox:checked {
	background: var(--color_main);
	border: 1px solid var(--color_main);
}
.input-checkbox:checked::before {
	content: '✔';
	position: absolute;
  height: 100%;
  width: 100%;
  font-size: 110%;
  line-height: 1;
	text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-checkbox.row_selected:checked {
	background: transparent;
}
.input-checkbox.row_selected:checked::before {
	content: '';
  position: absolute;
  height: 3px;
  width: 60%;
  top: calc(50% - 1px);
  left: 20%;
  background-color: var(--color_main);
}
.input-checkbox ~ label {
  position: relative;
  top: -1px;
  color: #aaaaaa;
  margin: 0px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease-in-out 0s;
  font-size: 15px;
  flex: 0 0 max-content;
}
.input-checkbox:checked ~ label {
  color:var(--color_main);
	cursor: pointer;
}
/* Botões para mudar o status das linhas selecionadas */
.container_change_status .align_buttons {
  /* max-width: 100%; */
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex: 0 0 max-content;
  gap: 15px;
}
.container_change_status .align_buttons:not([data-selected='0'])::before {
  content: "Empresas selecionadas: "attr(data-selected);
  position: relative;
  color: var(--color_main);
  font-size: 15px;
}
.container_change_status .align_buttons .button_change_status {
  width: max-content;
  height: max-content;
  margin: 0px;
  padding: 10px 20px;
  font-size: 14px;
}
/* Botão para mudar o status das linhas selecionadas para 'disponivel' */
.container_change_status .align_buttons .button_change_status:nth-child(1):not(:disabled) {
  background-color: var(--color_warning);
  border: 1px solid var(--color_warning);
}
.container_change_status .align_buttons .button_change_status:nth-child(1):not(:disabled):hover {
  background-color: transparent;
  border: 1px solid var(--color_warning);
  color: var(--color_warning);
}
/* Botão para mudar o status das linhas selecionadas para em 'atendendo' */
.container_change_status .align_buttons .button_change_status:nth-child(2):not(:disabled) {
  background-color: var(--color_main);
  border: 1px solid var(--color_main);
}
.container_change_status .align_buttons .button_change_status:nth-child(2):not(:disabled):hover {
  background-color: transparent;
  border: 1px solid var(--color_main);
  color: var(--color_main);
}
/* Botão para mudar o status das linhas selecionadas para em 'recusado' */
.container_change_status .align_buttons .button_change_status:nth-child(3):not(:disabled) {
  background-color: var(--color_erro);
  border: 1px solid var(--color_erro);
}
.container_change_status .align_buttons .button_change_status:nth-child(3):not(:disabled):hover {
  background-color: transparent;
  border: 1px solid var(--color_erro);
  color: var(--color_erro);
}
/* Botão para mudar o status das linhas selecionadas para em 'aceito' */
.container_change_status .align_buttons .button_change_status:nth-child(4):not(:disabled) {
  background-color: var(--color_ok);
  border: 1px solid var(--color_ok);
}
.container_change_status .align_buttons .button_change_status:nth-child(4):not(:disabled):hover {
  background-color: transparent;
  border: 1px solid var(--color_ok);
  color: var(--color_ok);
}



/* Tabela da pagina */
.box_table_view {
  /* width: max-content; */
  width: 100%;
  /* max-width:calc(100vw - (var(--header_left-width) + 80px)); */
  max-width: 100%;
  /* padding-right: 28px; */
  margin: 20px 0px;
  overflow: auto;
}
.table_view {
  /* min-width: calc(100vw - (var(--header_left-width) + 80px)); */
  min-width: 100%;
  width: max-content;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px #e1e1e1;
  display: block;
  border-collapse: collapse;
  transition: all 0.3s ease;
}
.table_view tbody {
  display: table;
  width: 100%;
}
/* linhas da tabela */
.table_view tr {
  position: relative;
  height: 52px;
  padding: 5px 0px;
  border: 1px solid #e1e1e1;
  text-align: center;
  font-weight: 400;
}
.table_view tr:first-child {
  border: none;
  font-weight: 500;
}
.table_view tr:nth-child(even) {
  background-color: #f3f3f3;
}
/* Colunas da tabela */
.table_view th,
.table_view td {
  padding: 5px 10px;
  color: #202020;
  font-size: 14px;
  font-weight: inherit;
}
.table_view td:not(:first-child) {
  border-left: 1px solid #e1e1e1;
}
/* Checkbox da tabela */
.table_view .input-checkbox {
	width: 15px;
	height: 15px;
  margin: 0px;
}
.table_view .input-checkbox:checked::before {
  height: 100%;
  width: 100%;
  font-size: 90%;
  line-height: 1;
	text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botões da tabela */
.button_main_in_view {
  position: relative;
  width: 36px;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--color_main);
  border-radius: 5px;
  color: var(--color_main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.button_main_in_view:hover {
  background-color: var(--color_main);
  color:#ffffff;
}
.button_main_in_view svg {
  width: 75%;
  height: 75%;
}
.button_main_in_view:disabled {
  background-color: #dddddd;
  border-color: #9d9d9d;
  color: #9d9d9d;
  opacity: 0.7;
}
/* Dropdown da tabela */
.dropdowm {
  position: relative;
  width: max-content;
  max-width: 150px;
  margin: 0px auto;
  background-color: transparent;
  padding: 7px 0px;
}
.dropdowm-select {
  max-width: 150px;
  padding: 7px 20px;
  background-color: var(--color_main_dark);
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-transform: capitalize;
}
/* Elemento com as opções do dropdown */
.dropdown-list {
  position: absolute;
  max-height: 10px;
  top: 100%;
  left: 0;
  right: 0;
  background-color: transparent;
  border-radius: 3px;
  box-shadow: 0px 3px 7px 0px #a79797;
  color: #ffffff;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.dropdowm:focus .dropdown-list {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}
/* Opções do dropdown */
.dropdown-list-item {
  position: relative;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s linear;
  z-index: 0;
  text-transform: capitalize;
}
.dropdown-list-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #ffffff;
  opacity: 0;
  z-index: -1;
  transition: all 0.2s linear;
}
.dropdown-list-item:hover::before {
  opacity: 0.2;
}

.status_office {
  width: max-content;
  min-width: 75%;
  padding: 2px 20px 4px;
  margin: 0px auto;
  background-color: var(--color_erro);
  border: 1px solid var(--color_erro);
  border-radius: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}
.status_office.complete {
  background-color: var(--color_ok);
  border: 1px solid var(--color_ok);
}



/* Estilo padrão dos modais */
.modal-kr-df {
  display: none;
  color: #404040;
}
.modal-kr-content {
  width: 100%;
}
/* Cabeçalho do modal com titulo do modal e botão de fechar */
.modal-kr-header { 
  position: relative;
  padding: 20px 30px 16px;
  border-bottom: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color:var(--color_main);
  font-size: 13px;
}
.modal-kr-header .modal-title { 
  padding: 0px;
  margin: 0px;
  font-size: 22px;
  font-weight: 500;
}
.modal-kr-header .modal-close { 
  cursor:pointer; 
}


/* Corpo do modal com o conteúdo */
.modal-kr-body {
  position: relative;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: auto;
}
.modal-kr-body::-webkit-scrollbar-track {
  background-color: #F4F4F4;
}
.modal-kr-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.modal-kr-body::-webkit-scrollbar-thumb {
  background: #dad7d7;
}
/* Conteúdo do modal */
.modal-kr-body .align_content {
  /* width: 90%; */
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* Titulo mais explicativo do modal */
.modal-kr-body .align_content h3 {
  color: var(--color_main);
  margin: 0px;
  font-size: 20px;
}

/* Tabela do modal */
.modal-kr-body .align_content .table_view{
  margin-right: 30px;
}

/* Formulário do modal */
.modal-kr-body .align_content form {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
/* Input checkbox do modal */
.modal-kr-body .align_content .ft-in-checkbox {
  display: flex;
  align-items: center;
  margin: 6px;
}
.modal-kr-body .align_content .ft-in-checkbox input {
  display: none;
}
.modal-kr-body .align_content .ft-in-checkbox input ~ label {
  position: relative;
  padding: 5px 20px 5px 40px;
  border-radius: 50px;
  /* background-color: var(--color_main); */
  background-color: #c1c1c1;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.modal-kr-body .align_content .ft-in-checkbox input ~ label::before {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 23px;
  width: 23px;
  border-radius: 100%;
  top: 4px;
  left: 4px;
  color: var(--color_main_dark_dark);
  line-height: 23px;
  text-align: center;
  font-weight: 700;
}
.modal-kr-body .align_content .ft-in-checkbox input:checked ~ label::before {
  content: "\2713";
}


/* Rodapé do modal com botão de fechar e botão com função dinamico */
.modal-kr-footer { 
  position: relative;
  padding: 25px 30px;
  border-top: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Estilo dos botões no rodapé do modal */
.modal-kr-footer .button-modal {
  padding: 9px 22px 7px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  border: 1px solid var(--color_main);
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Botão de fechar no rodapé do modal */
.modal-kr-footer .button-modal:first-child {
  background-color: var(--color_main);
  color: #f1f1f1;
}
.modal-kr-footer .button-modal:first-child:hover {
  background-color: transparent;
  color: var(--color_main);
}
/* Botão com função dinamico no rodapé do modal */
.modal-kr-footer .button-modal:last-child {
  background-color: transparent;
  color: var(--color_main);
}
.modal-kr-footer .button-modal:last-child:hover {
   background-color: var(--color_main);
  color: #f1f1f1;
}


@media (max-width:989px) {
  #header_left[data-size="expanded"] ~ .content-main .content-options-table {
    width: 100%;
    height: max-content;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 20px;
  }
  #header_left[data-size="expanded"] ~ .content-main .content-bottom-main .content-options-table {
    flex-direction: column;
  }
  #header_left[data-size="expanded"] ~ .content-main .content-options-table > *:empty {
    display: none;
  }

  #header_left[data-size="expanded"] ~ .content-main .options_search {
    position: relative;
    /* width: 100%; */
    height: 40px;
  }
  #header_left[data-size="expanded"] ~ .content-main .options_pages {
    width: 100%;
    margin: 0px;
  }
}

@media (max-width:799px) {
  /* Botão padrão */
  .button_default_fill,
  .button_default_fill_reverse {
    font-size: 14px;
  }
}

@media (max-width:749px) {
  .content-main .content-options-table {
    width: 100%;
    height: max-content;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 20px;
  }

  .content-main .content-bottom-main .content-options-table {
    flex-direction: column;
  }

  .content-main .content-options-table>*:empty {
    display: none;
  }

  .content-main .options_search {
    position: relative;
    width: 100%;
    height: 40px;
  }

  .content-main .options_pages {
    width: 100%;
    margin: 0px;
  }
}
