:root {
   /* FONTES */
   /* --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
   /* --font-sans-serif: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
   --font-sans-serif: system-ui;
   --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
   /* BODY */
   --body-font-family: var(--font-sans-serif);
   --body-font-size: 1rem;
   --body-font-weight: 400;
   --body-line-height: 1.5;
   --body-color: #212529;
   --body-bg: #F7F7F7;
   /* HEADER TOP */
   /* --header_top-height: 80px; */
   --header_top-height: 0px;
   /* HEADER LEFT */
   /* --header_left-width: 262px; */
   --header_left-width: 230px;
   /* CONTENT MAIN */
   --padding-content-main: 50px 20px;
   /* SWITCH */
   --color-switch: #dd3341;
   --color-switch-focus: #dd334173;
   --color-switch-checked: #15d661;
   --color-switch-checked-focus: #15d66173;
   --text-switch: "Inativo";
   --text-switch-checked: "Ativo";
   /* CORES */
   --color_main: #FF6100;
   --color_main_dark: #E45800;
   --color_main_dark_dark: #be4b02;
   --color_secundary: #203040;
   --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_info_light: #33b5e5;
   --color_ok_light: #15D661;
   --color_warning_light: #FFCB2E;
   --color_erro_light: #f15e5e;
   --color_neutral: #cccccc;
   --color_black: #000000;
}

*,
*:focus {
   /* font-family: system-ui; */
   font-family: var(--body-font-family);
   box-sizing: border-box;
   outline: none;
}

*::-webkit-scrollbar-track {
   background-color: #EBEBEB;
}

*::-webkit-scrollbar {
   width: 5px;
   height: 5px;
   background-color: #EBEBEB;
}

*::-webkit-scrollbar-thumb {
   background-color: #D9D9D9;
}

body {
   position: relative;
   width: 100vw;
   height: 100vh;
   max-width: 100%;
   max-height: 100%;
   padding: 0;
   margin: 0;
   font-family: var(--body-font-family);
   font-size: var(--body-font-size);
   font-weight: var(--body-font-weight);
   line-height: var(--body-line-height);
   color: var(--body-color);
   background-color: var(--body-bg);
   display: grid;
   grid-template-columns: var(--header_left-width) auto;
   grid-template-rows: var(--header_top-height) auto;
   grid-template-areas: "header_top header_top""header_left content_main";
   -webkit-text-size-adjust: 100%;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
   gap: 0px;
   overflow: hidden;
}

pre,
code,
kbd,
samp {
   font-family: var(--font-monospace);
   font-size: 1em;
}

a {
   text-decoration: none;
   color: inherit;
}


/* h2 {
   position: relative;
   width: 100%;
   padding: 14px 0px 10px 15px;
   color: #4e4e4e;
   font-size: 24px;
   font-weight: bold;
   pointer-events: none;
}
h3 {
   margin-bottom: 15px;
   color: var(--color_main);
   font-size: 18px;
   font-weight: bold;
} */

h4 {
   font-weight: 600;
}

ul,
li {
   padding: 0px;
   margin: 0px;
   list-style: none;
}

select option:disabled {
   position: relative;
   background-color: #C8C8C8;
   color: #828A94;
   font-weight: bold;
}


/* CONTEÚDO PRINCIPAL */


/* CONTEÚDO PRINCIPAL */

main {
   position: relative;
   width: 100%;
   height: 100%;
   /* padding: 40px 15px; */
   padding: var(--padding-content-main);
   grid-area: content_main;
   overflow: auto;
}

*[data-content-empty]::after {
   content: attr(data-content-empty);
}

.introduction-content {
   position: relative;
   width: max-content;
   max-width: 100%;
   padding: 0px;
   margin: 0px;
   font: normal normal bold 25px/26px Segoe UI;
   font-family: inherit;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 15px;
}

.introduction-content .icon-module {
   position: relative;
   width: 2.3rem;
   height: 100%;
   color: var(--color_main);
}

.introduction-content .titles-introduction {
   position: relative;
   width: max-content;
   max-width: 100%;
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   flex-direction: column;
   flex-wrap: nowrap;
   gap: 5px;
}

.introduction-content .title-module {
   position: relative;
   width: max-content;
   max-width: 100%;
   padding: 0px;
   margin: 0px;
   text-align: left;
   font: normal normal bold 22px/21px Segoe UI;
   font-family: inherit;
   letter-spacing: 0px;
   color: #333333;
}

.introduction-content .subtitle-module {
   position: relative;
   width: max-content;
   max-width: 100%;
   padding: 0px;
   margin: 0px;
   text-align: left;
   font: normal normal normal 15px/22px Segoe UI;
   font-family: inherit;
   letter-spacing: 0px;
   color: #AAAAAA;
}

.button-add-default {
   position: fixed;
   width: 60px;
   height: 60px;
   bottom: 20px;
   right: 20px;
   background-color: var(--color_main);
   border-radius: 100%;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 2px 2px 6px #00000057;
   transition: background-color 0.3s ease;
}

.button-add-default:hover {
   background-color: var(--color_main_dark_dark);
}

.container-no-results {
   position: sticky;
   left: 0px;
   display: none;
}

.table-row.table-title+.container-no-results,
.table-row.table-title~.table-row.preload-content~.container-no-results {
   display: initial;
}

.container-no-results .content-no-results {
   width: 500px;
   max-width: 85%;
   margin: 45px auto 20px;
   /* margin: 45px auto 0px; */
}

.container-no-results .content-no-results svg {
   max-width: 100%;
   margin: 0px auto;
   display: block;
}

.container-no-results .content-no-results h3 {
   width: 100%;
   margin: 10px 0px 0px;
   padding: 10px 0px 0px;
   font-size: 21px;
   font-weight: bold;
   text-align: center;
}


/* ESTILO PARA AS TABELAS LATERAIS */


/* ESTILO PARA AS TABELAS LATERAIS */

.mtable {
   width: 100%;
   margin-bottom: 22px;
   background-color: #0e0e0e;
   border: 1px solid #5A5C5A;
   border-radius: 4px;
   flex-direction: column;
   padding: 0px 30px;
   transition: all 0.2s ease;
}

.mtable:hover {
   border: 1px solid #1dff2c;
   box-shadow: 0px 0px 16px 0px #1dff2c1c;
}

.team_user .teams .name_teams {
   color: #ffffff;
}

.team_user::after {
   content: '';
   position: absolute;
   width: 10px;
   border: 10px solid transparent;
   border-right-color: #645f5f;
   border-right-color: #1dff2c;
   right: -30px;
}

.mtable_titles {
   width: 100%;
   color: #9f9f9f;
   position: relative;
   margin: 16px 0px 24px 0px;
}

.t-round {
   position: relative;
   font-size: 13px;
}

.t-closed {
   position: relative;
   font-size: 13px;
}

.mtable_lines {
   position: relative;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 14px;
   color: #fff;
}

.teams {
   align-items: center;
}

.name_teams {
   font-size: 16px;
   font-weight: 600;
   line-height: 100%;
   color: var(--color_texts);
}

.results {
   font-size: 16px;
   color: #9f9f9f;
}


/* Se for o time do usuário usar está classe */

.my_result {
   color: #fff;
   font-weight: 600;
}

.shield_teams {
   margin-right: 10px;
   display: flex;
}

.shield_teams img {
   width: 28px;
   height: 28px;
   object-fit: contain;
}

.mtable_footer {
   position: relative;
   width: 100%;
   margin: 20px 0px 14px 0px;
   font-size: 14px;
   color: #9f9f9f;
   cursor: pointer;
   transition: color 0.2s ease;
}

.mtable_footer:hover {
   color: #ffffff;
}

.title_league {
   font-size: 20px;
   font-weight: 700;
   color: var(--color_titles);
}

.view_games_table {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.view_games_table a {
   display: flex;
   align-items: center;
}

.view_games_table span {
   font-size: 16px;
   color: var(--color_titles);
   font-weight: 600;
   cursor: pointer;
   transition: color 0.2s ease;
}

.view_games_table span:hover {
   color: #c7c7c7;
}

@media(max-width:539px) {
   .title_league {
      font-size: 18px;
   }
}


/* COR DO LINK */

.link-redirect {
   color: inherit;
   cursor: alias;
}

.link-redirect:hover {
   color: var(--color_main);
}

.content-more-options {
   margin-left: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   opacity: 0;
   transform: scale(0.8);
   transition: all 0.2s ease;
}

.table-row:hover .content-more-options,
.content-more-options.visible {
   opacity: 1;
   transform: scale(1);
}

.content-more-options .option {
   padding: 4px 4px 3px;
   /* background-color: #fff; */
   border: 1px solid var(--wsr-color-10, #3899EC);
   border-radius: 18px;
   color: var(--wsr-color-10, #3899EC);
   text-align: center;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition-property: background-color, color, border-color;
   transition: all 0.3s ease;
}

.content-more-options .option:hover {
   background-color: var(--wsr-color-10, #3899EC);
   border-color: var(--wsr-color-10, #3899EC);
   color: #fff;
}

.content-more-options .option svg {
   width: 19px;
   height: 19px;
}


/* SELECT PERSONALIZADO */


/* SELECT PERSONALIZADO */

.custom-select {
   flex: 1;
   font-size: 0;
}

.custom-select label {
   color: #5f6569;
   font-size: 13px;
   /* font-size: 14px; */
   font-weight: 500;
   letter-spacing: 0.3px;
}

.custom-select .select {
   cursor: pointer;
   position: relative;
   margin-top: 10px;
   font-size: 15px;
   font-weight: 500;
   user-select: none;
}

.custom-select .select select {
   width: 100%;
   display: none;
   visibility: hidden;
}

.custom-select .select .select-styled {
   position: relative;
   padding: 0.7rem 0.8rem;
   background-color: #fff;
   border: 1px solid #d9d9d9;
   border-radius: 4px;
   color: #233646;
   transition: all 250ms ease;
}

.custom-select .select .select-styled:hover {
   background-color: var(--color_main);
   color: #fff;
}

.custom-select .select .select-styled:active,
.custom-select .select .select-styled.active {
   background-color: var(--color_main);
   color: #fff;
   box-shadow: 0px 0px 0 3px rgba(74, 144, 226, 0.3);
}

.custom-select .select .select-styled span {
   width: calc(100% - 20px);
   height: 100%;
   display: -webkit-box;
   overflow: hidden;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   word-break: break-word;
}

.custom-select .select .select-styled .arrow-select-styled {
   position: absolute;
   width: 18px;
   height: 16px;
   top: calc(50% + 1px);
   right: .6rem;
   color: var(--color_main);
   display: inline-block;
   transform: translateY(-50%);
   transition: all 250ms ease-in;
}

.custom-select .select .select-styled:hover .arrow-select-styled {
   color: #fff;
}

.custom-select .select .select-styled:active .arrow-select-styled,
.custom-select .select .select-styled.active .arrow-select-styled {
   color: #fff;
   transform: rotate(180deg);
   top: calc(25% + 3px);
}

.custom-select .select .select-options {
   position: absolute;
   max-height: 70vh;
   padding: 0.4rem 0;
   margin: 0.45rem 0 0 0;
   top: 100%;
   right: 0;
   left: 0;
   border-radius: 4px;
   background-color: #fff;
   box-shadow: 0 10px 16px rgba(68, 104, 194, 0.18);
   display: block;
   overflow: auto;
   list-style: none;
   pointer-events: none;
   opacity: 0;
   z-index: 999;
   transition: all 250ms ease;
}

.custom-select .select .select-styled.active~.select-options {
   opacity: 1;
   pointer-events: all;
}

.custom-select .select .select-options::-webkit-scrollbar-track {
   background-color: #F4F4F4;
}

.custom-select .select .select-options::-webkit-scrollbar {
   width: 6px;
   height: 6px;
   background-color: #F4F4F4;
}

.custom-select .select .select-options::-webkit-scrollbar-thumb {
   background-color: var(--color_main);
}

.custom-select .select .select-options li {
   margin: 0;
   padding: 8px 15px;
   transition: all 150ms ease-in;
   color: var(--color_main);
}

.custom-select .select .select-options li[rel=hide] {
   display: none;
}

.custom-select .select .select-options li:hover {
   background-color: var(--color_main);
   color: #fff;
}

.custom-select .select .select-options li.disabled,
.custom-select .select .select-options li.disabled:hover {
   background-color: #dddddd;
   border-color: #bbbbbb;
   color: #aaaaaa;
   cursor: default;
}

.bk-ft-kr {
   position: relative;
   left: var(--width-header-left);
   width: calc(96% - var(--width-header-left));
   height: max-content;
   margin: 20px 0px 0px 2%;
   background-color: #fff;
   box-shadow: 0px 2px 20px 0px #d9d9d9;
   padding: 20px 25px;
}

.uf {
   text-transform: uppercase;
}

.group-field {
   position: relative;
   width: 100px;
   height: 100px;
   margin: 5px;
   display: flex;
   flex-direction: column-reverse;
}

.align-groups {
   margin: 24px 0px 0px;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   flex-wrap: wrap;
}


/* Estilo da input type file */

.group-field.field-type-file input[type='file'] {
   display: none;
}


/* Estilo da label */

.group-field.field-type-file label {
   position: relative;
   width: 100%;
   height: 100%;
   margin: 0px;
   border: 1px solid #C1C1C1;
   border-radius: 4px;
   cursor: copy;
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6CAIAAAAHjs1qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0MjY4QTU4ODI2NkRFMjExQTA5QkU3NzkzRUE5Qjc5QiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2MTg5MDlGMEZFRUUxMUU0QTc2QkNEMjY5OTFDODIxMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2MTg5MDlFRkZFRUUxMUU0QTc2QkNEMjY5OTFDODIxMSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQkY0NTk2QjEwQjRFMjExQkVBN0JFQTA3MEQ2OTg2QSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MjY4QTU4ODI2NkRFMjExQTA5QkU3NzkzRUE5Qjc5QiIvPiA8L3JkZjpEZXNjcmlwdGlv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');
   background-position: center;
   background-repeat: no-repeat;
   background-size: 80%;
}


/* Estilo do titulo do campo */

.group-field.field-type-file .square-file {
   position: relative;
   padding: 4px 5px;
   margin: 0px;
   margin-bottom: 4px;
   top: 0px;
   color: #818181;
   font-size: 16px;
   font-weight: 500;
   cursor: text;
   transition: all 0.2s ease;
}

.group-field.image_cover {
   position: relative;
   max-width: 100%;
   width: 230px;
   height: 230px;
}

.group-field.image_cover input {
   position: absolute;
   top: 0px;
   opacity: 0;
   pointer-events: none;
   display: block !important;
}

.group-field.field-type-file input[type='file']~label .remove_selected_image {
   position: absolute;
   width: 100%;
   height: 100%;
   padding: 45px;
   bottom: 0px;
   left: 0px;
   background-color: #00000073;
   color: #ffffff;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   opacity: 0;
   pointer-events: none;
   cursor: pointer;
   transition: opacity 0.3s ease;
}

.group-field.field-type-file input[type='file'][data-selected="true"]~label:hover .remove_selected_image {
   opacity: 0.9;
   pointer-events: all;
}

.group-field.field-type-file input[type='file']~label .remove_selected_image p {
   margin-top: 10px;
   font-weight: 500;
   font-size: 18px;
}

.remove_fields {
   position: absolute;
   right: 10px;
   top: -50px
}

.bt-1-reverse {
   background-color: transparent !important;
   color: var(--color_main) !important;
}

.bt-1-reverse:hover {
   background-color: var(--color_main) !important;
   color: #ffffff !important;
}


/* BOTÃO PADRÃO */


/* BOTÃO PADRÃO */

.bt-1 {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   background-color: var(--color_main);
   border: 1px solid var(--color_main);
}

.bt-1:hover {
   background-color: var(--color_main_dark);
}

.bt-1:disabled,
.bt-1:disabled:hover,
.bt-1:disabled:focus,
.bt-1.disabled,
.bt-1.disabled:hover,
.bt-1.disabled:focus {
   background-color: #e4e4e4;
   border-color: #bcbcbc;
   color: #aaaaaa;
   cursor: default;
}

@media(max-width:540px) {
   .bt-1 {
      font-size: 14px;
   }
}


/* INPUT SWITCH */


/* INPUT SWITCH */


/* 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);
}

.toggle-status-info[type=checkbox].switch+label::after {
   content: "Usada";
}

.toggle-status-info[type=checkbox].switch:checked+label::after {
   content: "Disponível";
}


/* LOADING PADRÃO */


/* LOADING PADRÃO */

.content-loading {
   position: relative;
   width: 450px;
   max-width: 100%;
   height: max-content;
   margin: 50px auto 20px;
   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 PRINCIPAL DA PÁGINA */


/* CONTEÚDO PRINCIPAL DA PÁGINA */

.content-main {
   position: relative;
   width: calc(100% - var(--header_left-width));
   min-height: calc(100vh - var(--height-header-top));
   padding: var(--padding-content-main);
   top: 0px;
   left: var(--header_left-width);
   transition: width 0.3s ease, left 0.3s ease;
}

.loading-content-main {
   position: fixed;
   width: calc(100% - var(--header_left-width));
   height: calc(100vh - var(--height-header-top));
   bottom: 0;
   right: 0;
   background-color: #ffffff;
   display: flex;
   justify-content: center;
   align-items: center;
   opacity: 0;
   pointer-events: none;
   z-index: 2;
   transition: opacity 0.2s ease;
   --size-balls: 50px;
}

.loading-content-main.visible {
   opacity: 1;
   pointer-events: all;
}

.loading-content-main .loading-animation {
   -moz-transform: scale(1.7);
   -ms-transform: scale(1.7);
   -webkit-transform: scale(1.7);
   transform: scale(1.7);
   position: relative;
   display: inline-block;
   width: var(--size-balls);
   height: var(--size-balls);
   background: rgba(25, 165, 152, 0.5);
   border-radius: 50%;
   overflow: hidden;
   text-indent: -9999px;
   /* Hides inner circles outside base circle at safari */
   -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

.loading-content-main .loading-animation::before,
.loading-content-main .loading-animation::after {
   content: '';
   position: absolute;
   top: 0;
   display: inline-block;
   width: var(--size-balls);
   height: var(--size-balls);
   border-radius: 50%;
}

.loading-content-main .loading-animation::before {
   -moz-animation: inner-circles-loader 3s infinite;
   -webkit-animation: inner-circles-loader 3s infinite;
   animation: inner-circles-loader 3s infinite;
   -moz-transform-origin: 0 0%;
   -ms-transform-origin: 0 0%;
   -webkit-transform-origin: 0 0%;
   transform-origin: 0 0%;
   left: 0;
   background: #c7efcf;
}

.loading-content-main .loading-animation::after {
   -moz-animation: inner-circles-loader 3s 0.2s reverse infinite;
   -webkit-animation: inner-circles-loader 3s 0.2s reverse infinite;
   animation: inner-circles-loader 3s 0.2s reverse infinite;
   -moz-transform-origin: 100% 50%;
   -ms-transform-origin: 100% 50%;
   -webkit-transform-origin: 100% 50%;
   transform-origin: 100% 50%;
   right: 0;
   background: #eef5db;
}

@-moz-keyframes inner-circles-loader {
   0% {
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   50% {
      -moz-transform: rotate(360deg);
      transform: rotate(360deg);
   }

   100% {
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
   }
}

@-webkit-keyframes inner-circles-loader {
   0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   50% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
   }

   100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }
}

@keyframes inner-circles-loader {
   0% {
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   50% {
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
   }

   100% {
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
   }
}


/* FILTRO DA TABELA */


/* FILTRO DA TABELA */

.filter-table-default {
   position: relative;
   width: max-content;
   max-width: 100%;
   height: 44px;
   /* z-index: 1; */
   cursor: pointer;
   display: flex;
   flex-direction: column;
   transition: all 0.3s ease;
   margin-bottom: 20px;
}


/* SELECIONADO */

.filter-table-default.filtered>.content-filter-table {
   color: #FF6100;
   border: 2px solid #FF6100;
   box-shadow: 0px 0px 12px -3px #FF61005c;
}

.filter-table-default .content-filter-table {
   position: relative;
   width: max-content;
   height: 46px;
   padding: 0px 14px;
   border: 2px solid #d8d8d8;
   border-radius: 6px;
   color: #ababab;
   line-height: 100%;
   white-space: nowrap;
   display: flex;
   justify-content: space-between;
   align-items: center;
   order: 1;
   pointer-events: none;
   cursor: pointer;
   transition: all 0.2s ease;
}

.filter-table-default .options-filter-table.active~.content-filter-table,
.filter-table-default:hover .content-filter-table {
   box-shadow: 0px 0px 12px -3px #FF61005c;
   border: 2px solid #FF6100;
   color: #FF6100;
   background-color: #64b9ff0c;
}

.filter-table-default .content-filter-table p {
   font-size: 16px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   transition: all 0.2s ease;
}

.filter-table-default .options-filter-table.active~.content-filter-table p,
.filter-table-default:hover .content-filter-table p {
   color: #FF6100;
}

.filter-table-default .content-filter-table p::after {
   content: "";
   margin-left: 10px;
   border-left: 7px solid transparent;
   border-right: 7px solid transparent;
   border-top: 7px solid currentColor;
   color: inherit;
   transition: transform 0.3s ease;
}

.filter-table-default .options-filter-table.active~.content-filter-table p::after {
   transform: rotate(180deg);
}

.filter-table-default .options-filter-table {
   position: absolute;
   width: max-content;
   min-width: 100%;
   padding: 6px 6px;
   top: 116%;
   background-color: #ffffff;
   border-radius: 6px;
   box-shadow: 0px 0px 12px -3px #65a8ff7a;
   order: 2;
   opacity: 0;
   pointer-events: none;
   transition: all 0.2s ease;
   z-index: 2;
}

.filter-table-default .options-filter-table.active {
   opacity: 1;
   pointer-events: all;
}

.filter-table-default .options-filter-table .option-filter {
   position: relative;
   width: 100%;
   height: max-content;
   padding: 9px 12px;
   padding-left: 22px;
   background-color: #ffffff;
   border-radius: 6px;
   color: #0d487c;
   display: block;
   transition: background-color 0.1s ease;
}

.filter-table-default .options-filter-table .option-filter:hover {
   background-color: #2e96eb13;
}


/* SELECIONADO */

.filter-table-default .options-filter-table .option-filter.selected {
   color: #FF6100;
}

.filter-table-default .options-filter-table .option-filter.selected::after {
   content: "";
   position: absolute;
   top: calc(50% - 5px);
   left: 5px;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: #FF6100a8;
}

.filter-table-default .options-filter-table .option-filter:nth-child(1) {
   margin-bottom: 13px;
   color: #FF6100;
}

.filter-table-default .options-filter-table .option-filter:nth-child(1):hover {
   background-color: #2e96eb13;
}

.filter-table-default .options-filter-table .option-filter:nth-child(2)::before {
   content: "";
   position: absolute;
   width: 95%;
   height: 1px;
   left: 2.5%;
   margin-top: -17px;
   background-color: #eeeeee;
}


/* STATUS DA TABELA */


/* STATUS DA TABELA */

.dropdown-table {
   position: relative;
   width: max-content;
   max-width: 100%;
   height: 44px;
   /* z-index: 1; */
   cursor: pointer;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   transition: all 0.3s ease;
}

.dropdown-table .content-dropdown-table {
   position: relative;
   width: max-content;
   height: 46px;
   padding: 0px 14px;
   border: 2px solid #d8d8d8;
   border-radius: 6px;
   color: #ababab;
   line-height: 100%;
   white-space: nowrap;
   display: flex;
   justify-content: space-between;
   align-items: center;
   order: 1;
   pointer-events: none;
   cursor: pointer;
   transition: all 0.2s ease;
}

.dropdown-table .options-dropdown-table.active~.content-dropdown-table,
.dropdown-table:hover .content-dropdown-table {
   box-shadow: 0px 0px 12px -3px #FF61005c;
   border: 2px solid #FF6100;
   color: #FF6100;
   background-color: #64b9ff0c;
}

.dropdown-table .content-dropdown-table p {
   color: #ababab;
   font-size: 16px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   transition: all 0.2s ease;
}

.dropdown-table .options-dropdown-table.active~.content-dropdown-table p,
.dropdown-table:hover .content-dropdown-table p {
   color: #FF6100;
}

.dropdown-table .content-dropdown-table p::after {
   content: "";
   margin-left: 10px;
   border-left: 7px solid transparent;
   border-right: 7px solid transparent;
   border-top: 7px solid currentColor;
   color: inherit;
   transition: transform 0.3s ease;
}

.dropdown-table .options-dropdown-table.active~.content-dropdown-table p::after {
   transform: rotate(180deg);
}

.options-dropdown-table {
   position: absolute;
   width: max-content;
   min-width: 100%;
   padding: 6px 6px;
   top: 116%;
   background-color: #ffffff;
   border-radius: 6px;
   box-shadow: 0px 0px 12px -3px #65a8ff7a;
   order: 2;
   opacity: 0;
   pointer-events: none;
   transition: all 0.2s ease;
}

.options-dropdown-table.active {
   opacity: 1;
   z-index: 2;
   pointer-events: all;
}

.options-dropdown-table .option-dropdown {
   width: 100%;
   height: max-content;
   padding: 9px 12px;
   background-color: #ffffff;
   border-radius: 6px;
   color: #0d487c;
   display: block;
   transition: background-color 0.1s ease;
}

.options-dropdown-table .option-dropdown:hover {
   background-color: #2e96eb13;
}

.options-dropdown-table .option-dropdown:nth-child(1) {
   /* margin-bottom:13px; */
   /* color: #FF6100; */
}

.options-dropdown-table .option-dropdown:nth-child(1):hover {
   background-color: #2e96eb13;
}

.options-dropdown-table .option-dropdown:nth-child(2)::before {
   content: "";
   position: absolute;
   width: 95%;
   height: 1px;
   left: 2.5%;
   margin-top: -17px;
   /* background-color: #eeeeee; */
}


/* 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 #e9e9e9;
   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 #FF61005c;
}

.content-pagination .option-pagination:first-child,
.content-pagination .option-pagination:last-child {
   padding: 7px 6px;
}





/* ELEMENTOS DENTRO DA TABELA */


/* ELEMENTOS DENTRO DA TABELA */

.table-row.active {
   background-color: #f5f5f5;
   border: 1px solid #f3f3f3;
}

.content-status {
   position: relative;
   padding: 5px;
   color: var(--color_black);
   font-weight: 500;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
   text-transform: capitalize;
}

.content-status[data-status="pendente"] {
   color: var(--color_warning);
}

.content-status[data-status="em_andamento"] {
   color: var(--color_info);
}

.content-status[data-status="pausado"] {
   color: var(--color_warning_dark);
}

.content-status[data-status="completo"] {
   color: var(--color_ok);
}

.content-status .box-status {
   position: relative;
   width: 20px;
   height: 20px;
   margin-right: 10px;
   top: 1.5px;
   background-color: currentColor;
   border-radius: 100%;
}

.content-data {
   max-height: 100px;
   padding: 4px 10px 5px;
   border: 2px solid transparent;
   overflow: auto;
   align-items: flex-start !important;
}

.content-data:focus {
   border: 2px solid var(--color_main);
   border-radius: 4px;
   padding: 4px 10px 5px;
}

.content-data::-webkit-scrollbar {
   width: 6px;
   height: 6px;
}

.content-data::-webkit-scrollbar-thumb {
   background-color: #b5b5b5;
   border-radius: 5px;
}

.content-data::-webkit-scrollbar-track {
   background-color: #e8e8e9;
   border-radius: 5px;
}

.order-by-column {
   position: relative;
   cursor: pointer;
   transition: color 0.25s;
   user-select: none;
}

.order-by-column:hover {
   color: #848181;
}

.order-by-column svg {
   position: relative;
   margin-left: 6px;
   top: 1px;
}

.order-by-column.descendant svg {
   transform: rotate(0deg);
}

.order-by-column.ascendant svg {
   transform: rotate(180deg);
}


/* BOTÃO ATALHO 3 PONTINHOS */


/* BOTÃO ATALHO 3 PONTINHOS */

.button-toggle-shortcut {
   position: relative;
   width: 28px;
   height: 28px;
   color: #afbbd4;
   cursor: pointer;
   z-index: 1;
   transition: color 0.3s ease
}

.table-row.active .button-toggle-shortcut,
.button-toggle-shortcut:hover {
   color: var(--color_main);
}

.button-toggle-shortcut * {
   pointer-events: none;
}

.button-toggle-shortcut::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   transform: scale(0.8);
   top: 0px;
   left: 0px;
   background-color: #bcbcbc;
   border-radius: 100%;
   opacity: 0;
   z-index: -2;
   transition: opacity 0.2s ease, transform 0.1s ease;
}

.table-row.active .button-toggle-shortcut::before,
.button-toggle-shortcut:hover::before {
   opacity: 0.3;
   transform: scale(1.45);
   transition: opacity 0.3s ease, transform 0.3s ease;
}


/* MENU FLUTUANTE COM ATALHOS */


/* MENU FLUTUANTE COM ATALHOS */

.menu-shortcut-options {
   position: absolute;
   width: max-content;
   padding: 5px 14px;
   margin-top: 130px;
   margin-right: -5px;
   background-color: var(--color_main);
   border-radius: 6px;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   pointer-events: none;
   transform: scale(.7) translateY(-20px);
   opacity: 0;
   z-index: 2;
   transition: all 270ms cubic-bezier(.34, 1.25, .3, 1);
}

.table-row:last-child .menu-shortcut-options {
   margin-top: unset;
   margin-right: var(--size-balls);
   transform: scale(.7) translateX(25px) translateY(0px);
}

.table-row.active .menu-shortcut-options {
   transform: scale(1) translateX(0px) translateY(0px);
   opacity: 1;
   pointer-events: all;
}

.menu-shortcut-options::before {
   content: "";
   position: absolute;
   top: -18px;
   right: 10px;
   border: 10px solid transparent;
   border-bottom-color: var(--color_main);
}

.table-row:last-child .menu-shortcut-options::before {
   top: unset;
   right: -18px;
   border: 10px solid transparent;
   border-left-color: #0d5396;
}

.menu-shortcut-options .align-shortcut-options {
   width: max-content;
   display: flex;
   align-items: center;
   justify-content: center;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut {
   padding: 10px 10px 6px;
   margin-left: 5px;
   border-radius: 100%;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut:first-child {
   margin-left: 0px;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut:hover {
   background-color: #00000040;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut.inactive {
   color: #ffffff80;
   cursor: default;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut.inactive:hover {
   background-color: transparent;
}

.menu-shortcut-options .align-shortcut-options .option-shortcut * {
   pointer-events: none;
}

.icon_notify_element {
   width: 18px;
   height: 18px;
   font-size: 12px;
   border-radius: 50%;
   background-color: #ff5100;
   color: #ffffff;
   text-align: center;
   line-height: 17px;
   margin-right: 10px;
}

.icon_notify_adm_info {
   position: relative;
   width: 22px;
   height: 22px;
   top: 3px;
   margin-left: 10px;
   font-size: 14px;
   border-radius: 50%;
   background-color: #ff5100;
   color: #ffffff;
   text-align: center;
   line-height: 15px;
   display: inline-flex;
   align-content: center;
   justify-content: center;
   align-items: center;
}

.table-row>div>p {
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow-wrap: anywhere;
}


/* MOBILE RESPONSE */


/* MOBILE RESPONSE */

@media(max-width:540px) {
   h2 {
      width: 100%;
      margin-left: 0px;
      font-size: 24px;
      text-align: center;
      padding: 14px 0px 10px 10px;
   }

   h3 {
      width: 100%;
      text-align: center;
   }

   .custom-select .select {
      font-size: 13px;
   }

   .button_mobile {
      width: 100%;
      height: 46px;
   }

   .align_buttons_options {
      padding: 0px 7px;
   }

   .bk-ft-kr {
      width: 100%;
      margin: 20px 0px 0px 0px;
      padding: 20px 20px;
   }

   .group-field {
      margin: 0px;
   }

   .group-field.image_cover {
      width: 100%;
      height: 270px;
   }

   .content-main {
      width: 100%;
      padding: 35px 18px 95px;
      left: 0px;
   }

   .mobile_align {
      padding: 0px !important;
   }

   .button_cadastrar_selo {
      width: 100%;
      padding: 12px 12px;
   }
}

@media(max-width:320px) {
   h2 {
      width: 100%;
      font-size: 20px;
   }

   h3 {
      font-size: 16px;
   }

   .bt-1 {
      font-size: 11px;
   }

   .bk-ft-kr {
      padding: 8px 6px;
   }
}


/* MOBILE RESPONSE */


/* MOBILE RESPONSE */

.table-element-pedido {
   --text-switch: "Pendente";
   --text-switch-checked: "Confirmado";
}

.table-element-conta_a_receber {
   --text-switch: "Não pago";
   --text-switch-checked: "Pago";
}

.table-element-conta_a_pagar {
   --text-switch: "Não pago";
   --text-switch-checked: "Pago";
}




/* @font-face {
   font-family: 'Segoe UI';
   src: url("../../fonts/Segoe UI.woff");

} */



:root {
   /* FONTES */
   /* --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
   /* --font-sans-serif: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
   /* --font-sans-serif:system-ui; */
   --font-sans-serif: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   /* --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
   --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

   /* CORES */
   --color-title: #00000094;
   --color-text: #979696;
   --color-border: #ced4da;
   /* --color-main: #ba0909; */
   --color-main: #2B2B2B;
   /* --color-main-dark: #970505; */
   --color-main-dark: #1f1f1f;

   --color-percent-default:#1984FF;
   /* --color-percent-default-ligth:#E9F8EE; */
   --color-percent-default-ligth:#1984ff62;

   /* --color-patrimonio-passivo: #ED5656; */
   /* --color-patrimonio-passivo-ligth: #FEF0EF; */
   --color-patrimonio-passivo: #E22525;
   --color-patrimonio-passivo-ligth: #e9b6b6;

   --color-patrimonio-ativo: #BDC0CA;
   --color-patrimonio-ativo-ligth: #e1e7ef;

   --color-patrimonio-liquido: #2AAC64;
   --color-patrimonio-liquido-ligth: #c4f5d4;

   /* BODY */
   --body-font-family: var(--font-sans-serif);
   --body-font-size: 1rem;
   --body-font-weight: 400;
   --body-line-height: 1.5;
   --body-color: #212529;
   --body-bg: #202020;
   --body-bg: #F7F7F7;

   /* HEADER LEFT */
   --header_left-width: 221px;
   --header_left-height: 100%;

   /* HEADER TOP */
   --header_top-width: 100%;
   --header_top-height: 85px;
   --header_top-height: 0px;
}

* {
   /* font-family: system-ui; */
   font-family: var(--body-font-family);
   box-sizing: border-box;
   outline: none;
}

body {
   width: 100vw;
   height: 100vh;
   max-width: 100%;
   max-height: 100%;
   padding: 0;
   margin: 0;
   font-family: var(--bs-body-font-family);
   font-family: var(--body-font-family);
   font-size: var(--body-font-size);
   font-weight: var(--body-font-weight);
   line-height: var(--body-line-height);
   color: var(--body-color);
   background-color: var(--body-bg);
   -webkit-text-size-adjust: 100%;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
   display: grid;
   grid-template-columns: var(--header_left-width) auto;
   grid-template-rows: var(--header_top-height) auto;
   grid-template-areas:
      "header_top header_top"
      "header_left content_main";
   gap: 0px;
   overflow: hidden;
}

pre,
code,
kbd,
samp {
   font-family: var(--font-monospace);
   font-size: 1em;
}

a {
   text-decoration: none;
   color: inherit;
}

h4 {
   font-weight: 600;
}

.content-tooltip-especial {
   width: 100%;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: nowrap;
   white-space: nowrap;
   gap: 30px;
}

.content-tooltip-especial:last-child {
   margin-bottom: 0px;
}

/* CONTEÚDO PRINCIPAL */
/* CONTEÚDO PRINCIPAL */
main {
   position: relative;
   width: 100%;
   height: 100%;
   padding: 40px 15px;
   grid-area: content_main;
   overflow: auto;
}

@media (min-width: 800px) {

   main::-webkit-scrollbar,
   .father_modal_controll::-webkit-scrollbar {
      width: 8px;
      height: 8px;
   }

   main::-webkit-scrollbar-track,
   .father_modal_controll::-webkit-scrollbar-track {
      background-color: transparent;
   }

   main::-webkit-scrollbar-thumb,
   .father_modal_controll::-webkit-scrollbar-thumb {
      background-color: #333333;
      border-radius: 30px;
   }
}

/* BOTÃO DE FILTRAR PADRÃO */
/* BOTÃO DE FILTRAR PADRÃO */
.button-filter {
   position: relative;
   width: max-content;
   padding: 8px 20px;
   border: 1px solid #555555;
   border-radius: 8px;
   color: #ffffff;
   cursor: pointer;
}

.button-filter span {
   margin-left: 5px;
   color: #ffffff;
}

.button-filter svg {
   margin-left: 20px;
}

.button-filter .content-options {
   position: absolute;
   min-width: calc(100% - 75px);
   width: max-content;
   height: max-content;
   max-height: 50vh;
   top: calc(100% + 10px);
   left: 0px;
   background-color: #101010;
   border: 1px solid #333333;
   border-radius: 8px;
   box-shadow: 0px 0px 18px #21212191;
   opacity: 0;
   z-index: 1;
   visibility: hidden;
   overflow: hidden auto;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   -webkit-animation: opacity 0.3s ease, visibility 0.3s ease;
   box-shadow: 5px 8px 8px #000000a1;
}

.button-filter:focus {
   box-shadow: 0px 0px 12px #ff800033;
   border: 1px solid var(--color-main);
   color: var(--color-main);
}

.button-filter:focus .content-options {
   opacity: 1;
   visibility: visible;
}

.button-filter .content-options::-webkit-scrollbar {
   width: 3px;
   height: 3px;
}

.button-filter .content-options::-webkit-scrollbar-track {
   background-color: transparent;
}

.button-filter .content-options::-webkit-scrollbar-thumb {
   background-color: #a09f9f;
   border-radius: 30px;
}

.button-filter .content-options .option-filter {
   min-width: 155px;
   padding: 9px 20px;
   background-color: transparent;
   color: #8d8d8d;
   font-size: 14px;
   border-bottom: 1px solid #333333;
}

.button-filter .content-options .option-filter:last-child {
   border-bottom: none;
}

.button-filter .content-options .option-filter:hover {
   color: #ffffff;
   background-color: #3c3c3c;
}

.button-filter .content-options .option-filter.selected {
   color: var(--color-main);
}

/* BOX COM CONTEÚDO PADRÃO */
/* BOX COM CONTEÚDO PADRÃO */
.box-content {
   position: relative;
   width: 100%;
   height: max-content;
   margin-top: 25px;
   padding: 15px;
   background-color: #101010;
   border: 2px solid #333333;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 0px 15px;
}

.box-content .content-icon {
   position: relative;
   width: 65px;
   height: 65px;
   background-color: var(--color-main);
   border-radius: 8px;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
}

.box-content .content-informations {
   position: relative;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   flex-direction: column;
   flex-wrap: nowrap;
   gap: 5px;
}

.box-content .content-informations p {
   color: #ffffff;
   font: normal normal bold 18px/26px Segoe UI;
   font-family: system-ui;
}

.box-content .content-informations span {
   color: #8d8d8d;
   font: normal normal 500 16px/18px Segoe UI;
   font-family: system-ui;
}

.box-content .porcent-diference {
   position: absolute;
   width: max-content;
   height: max-content;
   top: 10px;
   right: 10px;
   color: #00ff5d;
   font-size: 12px;
   font-weight: 500;
}

.box-content .porcent-diference.bad {
   color: red;
}

.box-content .porcent-diference.bad svg {
   transform: rotate(180deg);
}

.carousel .content-carousel .item-carousel {
   padding-right: 18px;
}

.carousel .content-carousel .item-carousel:last-child {
   padding-right: 0px;
}

/* BOX CONTAINER PADRÃO */
/* BOX CONTAINER PADRÃO */
.box-container {
   position: relative;
   width: 100%;
   height: max-content;
   margin-top: 18px;
   background-color: #101010;
   border: 2px solid #333333;
   border-radius: 8px;
}

.introduction-content {
   position: relative;
   max-width: 100%;
   padding: 8px 25px 20px 25px;
}

.title-introduction {
   max-width: 100%;
   padding: 0px;
   font-weight: 500;
   font-size: 20px;
   color: #ffffff;
}

/* CONTEÚDO DO GRAFICO */
/* CONTEÚDO DO GRAFICO */
.graphic-content {
   position: relative;
   width: 100%;
   height: max-content;
   min-height: 285px;
   padding: 15px 26px 15px 13px;
   overflow: auto;
}

.graphic-content::-webkit-scrollbar {
   width: 5px;
   height: 5px;
}

.graphic-content::-webkit-scrollbar-track {
   background-color: transparent;
}

.graphic-content::-webkit-scrollbar-thumb {
   background-color: #333333;
   border-radius: 30px;
}

.graphic-content div.google-visualization-tooltip {
   background: var(--color-main) 0% 0% no-repeat padding-box;
   box-shadow: 0px 0px 6px #000000;
   border: 1px solid #EA6900;
   border-radius: 4px;
   color: #ffffff;
   font: normal normal bold 12px/16px Segoe UI;
   font-family: system-ui;
   text-align: center;
}

.graphic-content #curve_chart svg text[text-anchor="middle"] {
   font-size: 15px !important;
   transform: translate(0px, 10px);
}

.graphic-content #curve_chart svg text[text-anchor="end"] {
   font-size: 15px !important;
}

/* FILTRO DA TABELA */
/* FILTRO DA TABELA */
.box-container .group-filters {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 40px;
}

.box-container .filter-table {
   position: relative;
   width: max-content;
   margin: 20px 0px 10px;
   text-align: left;
   font: normal normal 600 14px Segoe UI;
   font-family: system-ui;
   letter-spacing: 0px;
   color: #7e7e7e;
   cursor: pointer;
}

.box-container .filter-table span,
.box-container .filter-table svg {
   margin-left: 5px;
   color: #ffffff;
}

.box-container .filter-table .content-options {
   position: absolute;
   min-width: calc(100% - 75px);
   width: max-content;
   height: max-content;
   max-height: 50vh;
   top: calc(100% + 20px);
   left: 0px;
   background-color: #232323;
   border: 2px solid #696767;
   border-radius: 8px;
   box-shadow: 0px 0px 18px #21212191;
   opacity: 0;
   z-index: 1;
   visibility: hidden;
   overflow: hidden auto;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   -webkit-animation: opacity 0.3s ease, visibility 0.3s ease;
}

.box-container .filter-table:focus .content-options {
   opacity: 1;
   visibility: visible;
}

.box-container .filter-table .content-options::-webkit-scrollbar {
   width: 3px;
   height: 3px;
}

.box-container .filter-table .content-options::-webkit-scrollbar-track {
   background-color: transparent;
}

.box-container .filter-table .content-options::-webkit-scrollbar-thumb {
   background-color: #a09f9f;
   border-radius: 30px;
}

.box-container .filter-table .content-options .option-filter {
   min-width: 120px;
   padding: 8px 20px;
   background-color: transparent;
   color: #929090;
}

.box-container .filter-table .content-options .option-filter:hover {
   color: #ffffff;
   background-color: #3c3c3c;
}

.box-container .filter-table .content-options .option-filter.selected {
   color: #ffffff;
   background-color: var(--color-main);
}

/* PAGINAÇÃO DA TABELA */
/* PAGINAÇÃO DA TABELA */
.box-container .pagination-table {
   position: relative;
   width: max-content;
   margin: 20px auto;
   display: flex;
   align-items: center;
   justify-content: space-evenly;
   gap: 10px;
}

.box-container .pagination-table .option-pagination {
   position: relative;
   min-width: 30px;
   width: max-content;
   padding: 6px;
   background-color: #333333;
   border: 2px solid #505050;
   border-radius: 4px;
   color: #909090;
   font: normal normal 600 14px/19px Segoe UI;
   font-family: system-ui;
   line-height: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0px 0px 0px #fe7f00c2;
   transition: background-color 0.2s ease, border-color 0.2s ease,
      color 0.2s ease, text-shadow 0.2s ease, box-shadow 0.2s ease;
   -webkit-animation: background-color 0.2s ease, border-color 0.2s ease,
      color 0.2s ease, text-shadow 0.2s ease, box-shadow 0.2s ease;
}

.box-container .pagination-table .option-pagination:hover {
   background-color: var(--color-main);
   border-color: var(--color-main);
   color: #ffffff;
}

.box-container .pagination-table .option-pagination.active {
   background-color: var(--color-main);
   border-color: var(--color-main);
   color: #ffffff;
   text-shadow: 0px 3px 6px #00000029;
   box-shadow: 0px 0px 14px #fe7f00c2;
}

/* CONTEÚDO DA TABELA */
/* CONTEÚDO DA TABELA */
.table-content {
   position: relative;
   width: 100%;
   height: max-content;
   overflow: auto;
}

.table-content::-webkit-scrollbar {
   width: 5px;
   height: 5px;
}

.table-content::-webkit-scrollbar-track {
   background-color: transparent;
}

.table-content::-webkit-scrollbar-thumb {
   background-color: #333333;
   border-radius: 30px;
}

.table-content table {
   min-width: 100%;
   width: max-content;
   height: max-content;
   border-spacing: 0px;
}

.table-content table tr {
   position: relative;
   z-index: 0;
}

.table-content table tr::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: #0c0c0c;
   top: 0px;
   left: 0px;
   display: block;
   opacity: 0;
   z-index: -1;
   pointer-events: none;
   transition: opacity 0.2s ease;
   -webkit-animation: opacity 0.2s ease;
}

.table-content table tr:hover::before {
   opacity: 1;
}

.table-content table tr:first-child::before {
   visibility: hidden;
}

.table-content table tr::after {
   content: "";
   position: absolute;
   width: calc(100% - 50px);
   height: 1px;
   background-color: #333333;
   bottom: -1px;
   left: 25px;
   display: block;
   opacity: 1;
   z-index: -2;
   pointer-events: none;
   transition: opacity 0.2s ease;
   -webkit-animation: opacity 0.2s ease;
}

.table-content table tr:hover::after,
.table-content table tr:first-child::after,
.table-content table tr:last-child::after {
   display: none;
   visibility: hidden;
}

.table-content table tr th {
   padding: 15px 35px;
   color: #7e7e7e;
   font: normal normal 600 14px/17px Segoe UI;
   font-family: system-ui;
   text-align: left;
}

.table-content table tr td {
   padding: 22px 35px;
   color: #d4d4d4;
   font: normal normal 500 16px/21px Segoe UI;
   font-family: system-ui;
   text-align: left;
}

.table-content table tr td small {
   display: block;
   color: #606060;
   font: normal normal 600 14px/17px Segoe UI;
   font-family: system-ui;
   margin-top: 2px;
}

.table-content table tr th:first-child,
.table-content table tr td:first-child {
   padding-left: 25px;
}

.table-content table tr th:last-child,
.table-content table tr td:last-child {
   padding-right: 25px;
}

/* BOX CONTAINER COM OS MELHORES VENDEDORES */
/* BOX CONTAINER COM OS MELHORES VENDEDORES */
.box-container-best-salers {
   position: relative;
   width: 100%;
   height: max-content;
   max-height: 400px;
   margin-top: 18px;
   background-color: #101010;
   border: 2px solid #333333;
   border-radius: 8px;
   overflow: auto;
}

.box-container-best-salers::-webkit-scrollbar {
   width: 5px;
   height: 5px;
}

.box-container-best-salers::-webkit-scrollbar-track {
   background-color: transparent;
}

.box-container-best-salers::-webkit-scrollbar-thumb {
   background-color: #333333;
   border-radius: 30px;
}

.box-container-best-salers .content-saler {
   position: relative;
   width: 100%;
   padding: 20px 20px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   flex-direction: row;
   flex-wrap: nowrap;
   gap: 20px;
}

.box-container-best-salers .content-saler::after {
   content: "";
   position: absolute;
   width: calc(100% - 30px);
   height: 2px;
   left: 15px;
   bottom: 1px;
   display: block;
   background-color: #333333;
}

.box-container-best-salers .content-saler:last-child:after {
   display: none;
}

.box-container-best-salers .content-saler .image-saler {
   position: relative;
   width: 40px;
   height: 40px;
   max-height: 100%;
   border-radius: 100%;
   border: 2px solid #545454;
   pointer-events: all;
   flex: 0 0 40px;
   overflow: hidden;
}

.box-container-best-salers .content-saler .image-saler img {
   width: 100%;
   height: 100%;
   object-position: center;
}

.box-container-best-salers .content-saler .informations-saler {
   position: relative;
   width: calc(100% - 70px);
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   flex-direction: column;
   gap: 7px;
}

.box-container-best-salers .content-saler .informations-saler .informations-main {
   position: relative;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: nowrap;
   gap: 10px;
}

.box-container-best-salers .content-saler .informations-saler .informations-main p {
   color: #ffffff;
   font: 600 16px/18px Segoe UI;
   font-family: system-ui;
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   flex: 0 1 max-content;
}

.box-container-best-salers .content-saler .informations-saler .informations-main .value-saler {
   position: relative;
   width: max-content;
   height: max-content;
   color: #00ff5d;
   font-size: 14px;
   font-weight: 500;
   white-space: nowrap;
   flex: 0 0 max-content;
}

.box-container-best-salers .content-saler .informations-saler span {
   position: relative;
   width: 100%;
   color: #606060;
   font: normal normal 600 14px/15px Segoe UI;
   font-family: system-ui;
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}

/* BOX CONTAINER COM OS MELHORES VENDEDORES */
/* BOX CONTAINER COM OS MELHORES VENDEDORES */
.box-container-goals {
   position: relative;
   width: 100%;
   height: max-content;
   margin-top: 18px;
   background-color: var(--color-main);
   /* border: 2px solid #333333; */
   border-radius: 8px;
   box-shadow: 2px 3px 6px 1px #834a1b;
}

.box-container-goals .content-goal {
   position: relative;
   width: 100%;
   padding: 20px 20px;
   color: #777777;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   flex-direction: row;
   flex-wrap: nowrap;
   gap: 20px;
}

.box-container-goals .content-goal.completed {
   color: #00ff5d;
}

.box-container-goals .content-goal.expired {
   color: #ac1900;
}

.box-container-goals .content-goal.near {
   color: #ffd800;
}

.box-container-goals .content-goal::after {
   content: "";
   position: absolute;
   width: calc(100% - 30px);
   height: 2px;
   left: 15px;
   bottom: 1px;
   display: block;
   background-color: #ff8219;
}

.box-container-goals .content-goal:last-child:after {
   display: none;
}

.box-container-goals .content-goal .icon-goal {
   position: relative;
   width: 40px;
   height: 40px;
   max-height: 100%;
   padding: 9px 10px 10px;
   border: 2px solid currentColor;
   border-radius: 4px;
   color: inherit;
   pointer-events: all;
   overflow: hidden;
}

.box-container-goals .content-goal .informations-goal p {
   margin-bottom: 7px;
   color: #ffffff;
   font-size: 16px;
   font-weight: 600;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}

.box-container-goals .content-goal.completed .informations-goal p,
.box-container-goals .content-goal.expired .informations-goal p {
   color: inherit;
   text-decoration: line-through;
}

.box-container-goals .content-goal .informations-goal span {
   color: #ffca9e;
   font: normal normal 500 14px/15px Segoe UI;
   font-family: system-ui;
   display: -webkit-box;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}

.box-container-goals .content-new-goal {
   position: fixed;
   width: 100%;
   padding: 30px 50px;
   bottom: 0px;
   left: 0px;
   background-color: #101010;
   border-top: 2px solid #232323;
   box-shadow: 0px -4px 6px #00000073;
   display: flex;
   align-items: center;
   justify-content: center;
}

.box-container-goals .content-new-goal button {
   width: 100%;
   padding: 15px 50px;
   background-color: var(--color-main);
   border: none;
   border-radius: 8px;
   color: #ffffff;
   font-size: 18px;
   font-weight: 600;
   font-family: system-ui;
   cursor: pointer;
   transition: all 0.2s ease;
}

.box-container-goals .content-new-goal button:hover {
   background-color: var(--color-main-dark);
   border-color: var(--color-main-dark);
}


#funcionalidade_indisponivel .container button {
   width: 100%;
   margin-top: 40px;
   padding: 10px 50px;
   background-color: var(--color-main);
   border: none;
   border-radius: 8px;
   color: #ffffff;
   font-size: 18px;
   font-weight: 600;
   font-family: system-ui;
   cursor: pointer;
   transition: all 0.2s ease;
}
#funcionalidade_indisponivel .container button:hover {
   background-color: var(--color-main-dark);
   border-color: var(--color-main-dark);
}

.modal-content .container .form-group-2 input, .modal-content .container .form-group-2 select, .modal-content .container .form-group-2 textarea {
   margin-top: 0;
}