/* VARIABLES */
:root {
  --font-family: 'Inter', sans-serif;
  --secondaryColor: #f5a934;
  --secondaryColorOpacity: #f5a93475;
  --primaryColor: #323232;
  --grayColor: #0000008A;

  --bs-body-font-size: 14px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;


  --defaultBorderRadius: 4px;
  --defaultBorderRadiusBtn: 15px;

  /* COLORS */
  --warningColor: #FF9800;
  --successColor: #4CAF50;
  --errorColor: #F44336;
  --infoColor: #2196F3;


  /* TRANSITIONS */
  --transitionEaseInOut: cubic-bezier(0.4, 0, 0.2, 1);
  --transitionEaseOut: cubic-bezier(0.0, 0, 0.2, 1);
  --transitionEaseIn: cubic-bezier(0.4, 0, 1, 1);
  --transitionSharp: cubic-bezier(0.4, 0, 0.6, 1);

  --transitionShortest: 150ms;
  --transitionShorter: 200ms;
  --transitionShort: 250ms;
  --transitionStandard: 300ms;
  --transitionComplex: 375ms;
  --transitionEnteringScreen: 225ms;
  --transitionLeavingScreen: 195ms;

  /*TABLE*/
  --tableHoverBackground: #f5a8343a;

  /* ROOM STATUS */
  --cleanColor: #43a047;
  --dirtyColor: #e53935;
  --inspectionColor: #1e88e5;
  --inTidyingColor: #ffb300;
  --maintenanceColor: #455a64;
  --blockColor: #6149fcf7;
  --occupiedColor: #1e88e5;
  --availableColor: #43a047;
  --siteColor: #d81b60;
  --expectedCheckInColor: #ffb300;
  --interdictedColor: #f1600b;
  --expectedCheckOutColor: #d32f2f;

  /* REPORTS */
  --reportsToolsBackgroundColor: rgba(0, 0, 0, 0.8);
  --reportsToolsColor: #fff;
  --reportsToolsHoverBackgroundColor: #f5a93444;
  --reportsToolsHoverColor: var(--secondaryColor);
}


body.light-theme {

  /* GENERAL */
  --primaryColor: #323232;
  --secondaryColor: #f5a934;
  --primaryTextColor: #060608;
  --textColorLight: #0000008A;

  --defaultBackgroundColor: #F5F5F5;
  --defaultBackgroundColor_2: #FFFFFF;
  --MenuIconColor: #000;
  --panelIconColor: #fff;


  --defaultBorderRadius: 4px;
  --defaultBorderRadiusBtn: 15px;

  --defaultBorderRadius: 4px;

  --defaultBoxShadowColor: rgba(0, 0, 0, 0.2);
  --defaultBoxShadow:
    0px 1px 8px 0px #0000001F,
    0px 3px 4px 0px #00000024,
    0px 3px 3px -2px #00000033;

  --defaultDivisorBackgroundColor: rgba(0, 0, 0, 0.1);

  --dividerColor: #E0E0E0;


  /* LOADING */
  --loadingContainerBackgroundColor: #121212;
  --loadingShadowBackgroundColor: var(--secondaryColor);


  /*  SCROLLBAR */
  --scrollbarBackgroundColor: #fafafa;
  --scrollbarThumbBackgroundColor: rgba(0, 0, 0, 0.4);


  /* TOAST */
  --toastBackgroundColor: #fff;
  --toastColor: #647C88;
  --toastMessageColor: var(--primaryTextColor);
  --toastBorderColor: rgba(0, 0, 0, 0.1);
  --toastBoxShadow: rgba(0, 0, 0, 0.4);


  /* TABS */
  --tabColor: rgba(0, 0, 0, 0.54);
  --tabColorActive: #FFB400;
  --tabBackgroundColorActive: rgba(36, 135, 215, 0.1);
  --tabBackgroundColorError: rgba(244, 67, 54, 0.1);
  --tabBackgroundColorErrorActive: rgba(244, 67, 54, 0.2);
  --tabColorError: rgba(244, 67, 54, 1);
  --tabBackgroundColorSuccess: rgba(76, 175, 80, 0.1);
  --tabBackgroundColorSuccessActive: rgba(76, 175, 80, 0.2);
  --tabColorSuccess: rgba(76, 175, 80, 1);
  --tabActivedColor: var(--primaryTextColor);


  /* INPUTS */
  --inputBackgroundColor: #fff;
  --inputBackgroundColorDisabled: rgba(0, 0, 0, 0.05);
  --inputBoxShadow: rgba(0, 0, 0, 0.1);
  --inputBorderColor: #949494;
  --inputColor: var(--primaryTextColor);
  --inputColorFocus: var(--secondaryColor);
  --inputLabelColor: rgba(0, 0, 0, 0.6);
  --inputLabelColorActive: rgba(0, 0, 0, 0.8);
  --inputLabelColorSecondary: rgba(0, 0, 0, 0.54);
  --inputLabelColorFocus: var(--secondaryColor);
  --inputBorderColorError: rgba(244, 67, 54, 0.5);
  --inputLabelColorError: rgba(244, 67, 54, 0.9);
  --inputIconColor: var(--MenuIconColor);
  --inputIconBackgroundColorHover: rgba(0, 0, 0, 0.1);

  --inputImageboxToolsBackgroundColor: #FFF;
  --inputImageboxToolsColor: var(--primaryTextColor);
  --inputImageboxToolsIconColor: #0000008A;
  --inputImageboxPictureBorderColor: rgba(0, 0, 0, 0.1);

  --inputTextareaScrollColor: rgba(0, 0, 0, 0.4);

  --inputFilledBackgroundColor: rgba(0, 0, 0, 0.06);
  --inputFilledBorderColor: #BDBDBD;
  --inputFilledIconColor: rgba(0, 0, 0, 0.54);

  --inputsGroupInputColor: rgba(0, 0, 0, 0.54);
  --inputsGroupLabelColor: rgba(0, 0, 0, 0.87);

  --checkboxBorderColor: #5a5a5a;
  --checkboxCheckedBackgroundColor: var(--secondaryColor);
  --checkboxCheckedColor: #fff;


  /* DROPDOWN */
  --dropdownBackgroundColor: #fff;
  --dropdownColor: rgba(0, 0, 0, 0.87);
  --dropdownSelectedBackgroundColor: #e0e0e0;
  --dropdownHoverBackgroundColor: #f8f9fa;
  --dropdownBoxShadow: 0px 9px 12px 1px #00000024;


  /* TABLE */
  --tableBackgroundColor: #fff;
  --tableHeaderColor: var(--textColorLight);
  --tableColor: var(--primaryTextColor);
  --tableBorderColor: #e0e0e0;

  --tableCellBackgroundColorSorted: transparent;
  --tableInputSearchBackgroundColor: #fff;
  --tableInputSearchBackgroundColorDisabled: #eee;
  --tableInputSearchBorderColor: rgba(0, 0, 0, 0.1);

  --tableStripedRowBackgroundColor: rgba(0, 0, 0, 0.03);
  --tableHighlightRowBackgroundColor: #eee;
  --tableSelectedRowBackgroundColor: rgba(38, 159, 224, 0.12);

  --tablePaginationTextColor: var(--primaryTextColor);
  --tablePaginationNumbersColor: var(--primaryTextColor);
  --tablePaginationNumbersHoverBackgroundColor: #e0e0e0;
  --tablePaginationNumbersActiveHoverBackgroundColor: var(--secondaryColor);
  --tablePaginationNumbersSelectedColor: #fff;
  --tablePaginationNumbersSelectedBackgroundColor: var(--primaryColor);

  --tableActionButtonHoverBackgroundColor: rgba(0, 0, 0, 0.5);
  --tableActionButtonHoverPrimaryBackgroundColor: rgba(0, 0, 0, 0.5);
  ;
  --tableStripedBackgroundColor: rgba(0, 0, 0, 0.05);


  /* MODAL */
  --modalSecondaryBackgroundColor: #fff;
  --modalColor: var(--primaryTextColor);
  --modalBoxShadow: rgba(0, 0, 0, 0.2);
  --modalIconCloseBackgroundColorHover: rgba(0, 0, 0, 0.1);
  --modalContentItemBackgroundColorHover: #e0e0e0;
  --modalContentItemPulseBackgroundColor: #e0e0e0;
  --modalDividerBackgroundColor: rgba(0, 0, 0, 0.1);


  /* CONTEXT BOX */
  --contextBoxBackgroundColor: #fff;
  --contextBoxColor: var(--primaryTextColor);
  --contextBoxTitleColor: var(--primaryTextColor);
  --contextBoxTitleBorderColor: rgba(0, 0, 0, 0.05);
  --contextBoxItemBackgroundColorHover: rgba(0, 0, 0, 0.05);


  /* HEADER */
  --headerHeight: 72px;
  --headerBackgroundColor: var(--primaryColor);
  --headerColor: #fff;
  --headerActionColor: rgba(255, 255, 255, 0.8);
  --headerActionHoverColor: rgba(255, 255, 255, 1);
  --headerActionBorderColor: #eee;
  --headerMenuTriggerBackgroundColor: #fff;
  --headerDefaultHoverBackgroundColor: rgba(245, 169, 52, .4);
  --headerPulseBackgroundColor: rgba(245, 169, 52, .2);
  --headerDefaultDropdownIconColor: rgba(0, 0, 0, 0.6);
  --headerExitDropdownIconColor: #F44336;
  --headerExitDropdownBackgroundColor: #FFF3F3;


  /* MENU */
  --menuBackgroundColor: #F5F5F5;
  --menuCategoryColor: rgba(0, 0, 0, 0.54);
  --menuSearchInputBackgroundColor: rgba(255, 255, 255, 255);
  --menuItemColor: rgba(0, 0, 0, 0.87);
  --menuItemListBackgroundColor: rgba(0, 0, 0, 0.1);
  --menuItemHoverColor: rgba(0, 0, 0, 0.8);
  --menuItemHoverBackgroundColor: rgba(0, 0, 0, 0.1);
  --menuItemActiveColor: var(--secondaryColor);
  --menuItemActiveBackgroundColor: rgba(0, 0, 0, 0.041);
  --menuItemActiveTextShadow: 0px 0px 4px rgb(0 0 0 / 6%) --menuItemActiveBorderColor: var(--primaryColor);


  /* CONTENT */
  --contentTabBackgroundColor: #fff;
  --contentTabColor: #0000008A;
  --contentTabBorderColor: #e0e0e0;
  --contentTabHoverBackgroundColor: #F5F5F5;
  --contentTabCloseIconHoverBackgroundColor: rgba(0, 0, 0, 0.1);
  --contentTabHoverColor: #0000008A;
  --contentTabActivedBackgroundColor: rgba(245, 169, 52, 0.1);
  --contentTabActivedColor: var(--secondaryColor);
  --contentTabActivedIndicatorColor: var(--secondaryColor);


  /* IFRAMES */
  --iframeHeaderBackgroundColor: transparent;
  --iframeHeaderBorderColor: transparent;
  --iframeHeaderColor: var(--primaryTextColor);
  --iframeHeaderLinkColor: #1e88e5;
  --iframeActuatorIconColor: var(--MenuIconColor);
  --iframeActuatorIconHoverBackgroundColor: rgba(0, 0, 0, 0.1);
  --iframeCardboxBackgroundColor: #fff;
  --iframeCardboxColor: var(--primaryTextColor);
  --iframeCardboxBoxShadow: rgba(0, 0, 0, 0.4);
  --iframeCardboxBoxShadowHover: rgba(0, 0, 0, 0.6);


  /* MULTISTEP FORM */
  --multistepStepIndicatorIconBackground: rgba(0, 0, 0, 0.26);
  --multistepStepIndicatorIconColor: #fff;
  --multistepStepIndicatorIconActiveBackground: var(--primaryColor);
  --multistepStepIndicatorIconActiveColor: #fff;
  --multistepStepIndicatorTextColor: rgba(0, 0, 0, 0.38);
  --multistepStepIndicatorActiveTextColor: rgba(0, 0, 0, 0.87);
  --multistepButtonBackgroundColor: #616161;
  --multistepButtonColor: #FFF;


  /* DISPONIBILIDADE */
  --disponibilidadeBackgroundColor: #fff;
  --disponibilidadeWeekendBackgroundColor: rgba(230, 234, 238, 1);
  --disponibilidadeBackgroundSelectable: repeating-linear-gradient(45deg, rgba(38, 159, 224, 0.1), rgba(38, 159, 224, 0.1) 10px, rgba(38, 159, 224, 0.3) 10px, rgba(38, 159, 224, 0.3) 20px);
  --disponibilidadeWeekendBackgroundSelectable: var(--disponibilidadeBackgroundSelectable);


  /* STATISTICBOX */
  --statisticboxSelectedIconBackgroundColor: #fff;
  --statisticboxSelectedIconColor: #fff;
  --statisticboxSelectedBackgroundColor: #EEE;

  /* EXTRATO CONTAS */
  --produtoRowBackground: #f1f9ff;

  /* BREADCRUMB */
  --breadCrumbBackgroundColor: rgba(245, 169, 52, .2);
  --breadCrumbHoverBackgroundColor: rgba(245, 169, 52, .5);

  /* CHECKBOX CARD */
  --checkboxCardBackgroundColor: rgba(50, 50, 50, 0.2);
  --checkboxCardColor: var(--primaryTextColor);
  --checkboxCardSelectedBackgroundColor: rgba(38, 159, 224, 1);
  --checkboxCardSelectedColor: #fff;

  /* BUTTONS */
  --btnPrimaryBackground: #323232;
  --btnPrimaryHoverBackground: #161616;
}


body.dark-theme {

  /* GENERAL */
  --primaryTextColor: #eee;
  --textColorLight: #FFFFFF8A;

  --defaultBackgroundColor: #221f1f;
  --defaultBackgroundColor_2: #242726;
  --MenuIconColor: #fff;
  --PanelIconColor: #fff;

  --defaultBoxShadowColor: rgba(0, 0, 0, 0.4);
  --defaultBoxShadow:
    0px 1px 8px 0px #0000001F,
    0px 3px 4px 0px #00000024,
    0px 3px 3px -2px #00000033;

  --defaultDivisorBackgroundColor: rgba(255, 255, 255, 0.1);

  --dividerColor: rgba(183, 183, 183, 0.473);
  --borderCardBackground: rgba(183, 183, 183, 0.336) !important;

  /*  SCROLLBAR */
  --scrollbarBackgroundColor: rgba(0, 0, 0, 0.1);
  --scrollbarThumbBackgroundColor: rgba(0, 0, 0, 0.6);


  /* TOAST */
  --toastBackgroundColor: #2E3130;
  --toastColor: #78909c;
  --toastMessageColor: var(--primaryTextColor);
  --toastBorderColor: rgba(0, 0, 0, 0.1);
  --toastBoxShadow: rgba(0, 0, 0, 0.8);


  /* TABS */
  --tabColor: rgba(255, 255, 255, 0.5);
  --tabColorActive: #FFB400;
  --tabBackgroundColorActive: #242726;
  --tabBackgroundColorError: rgba(244, 67, 54, 0.06);
  --tabBackgroundColorErrorActive: rgba(244, 67, 54, 0.2);
  --tabColorError: rgba(244, 67, 54, 1);
  --tabBackgroundColorSuccess: rgba(76, 175, 80, 0.1);
  --tabBackgroundColorSuccessActive: rgba(76, 175, 80, 0.2);
  --tabColorSuccess: rgba(76, 175, 80, 1);
  --tabActivedColor: var(--primaryTextColor);


  /* INPUTS */
  --inputBackgroundColor: #242726;
  --inputBackgroundColorDisabled: rgba(0, 0, 0, 0.1);
  --inputBoxShadow: rgba(0, 0, 0, 0.2);
  --inputBorderColor: rgba(183, 183, 183, 0.20);
  --inputColor: var(--primaryTextColor);
  --inputColorFocus: var(--secondaryColor);
  --inputLabelColor: rgba(255, 255, 255, 0.4);
  --inputLabelColorActive: rgba(255, 255, 255, 0.8);
  --inputLabelColorSecondary: rgba(255, 255, 255, 0.4);
  --inputLabelColorFocus: var(--secondaryColor);
  --inputBorderColorError: rgba(244, 67, 54, 0.5);
  --inputLabelColorError: rgba(244, 67, 54, 0.8);
  --inputIconColor: var(--MenuIconColor);
  --inputIconBackgroundColorHover: rgba(0, 0, 0, 0.2);

  --inputImageboxToolsBackgroundColor: #FFF;
  --inputImageboxToolsColor: var(--primaryTextColor);
  --inputImageboxToolsIconColor: #0000008A;
  --inputImageboxPictureBorderColor: rgba(0, 0, 0, 0.1);

  --inputTextareaScrollColor: rgba(255, 255, 255, 0.2);

  --inputFilledBackgroundColor: #242726;
  --inputFilledBorderColor: #BDBDBD;
  --inputFilledIconColor: rgba(0, 0, 0, 0.54);

  --inputsGroupInputColor: rgba(0, 0, 0, 0.54);
  --inputsGroupLabelColor: rgba(0, 0, 0, 0.87);

  --checkboxBorderColor: #5a5a5a;
  --checkboxCheckedBackgroundColor: var(--secondaryColor);
  --checkboxCheckedColor: #fff;

  --checkboxCardBackgroundColor: rgba(90, 90, 90, 0.2);
  --checkboxCardColor: var(--checkboxCheckedColor);
  --checkboxCardSelectedBackgroundColor: var(--checkboxCheckedBackgroundColor);
  --checkboxCardSelectedColor: #fff;


  /* DROPDOWN */
  --dropdownBackgroundColor: #242726;
  --dropdownColor: var(--primaryTextColor);
  --dropdownSelectedBackgroundColor: rgba(255, 255, 255, 0.1);
  --dropdownHoverBackgroundColor: rgba(0, 0, 0, 0.8);
  --dropdownBoxShadow: 0px 9px 12px 1px #00000024;


  /* TABLE */
  --tableBackgroundColor: #242726;
  --tableHeaderColor: var(--primaryTextColor);
  --tableColor: var(--primaryTextColor);
  --tableBorderColor: rgba(0, 0, 0, 0.2);

  --tableCellBackgroundColorSorted: transparent;
  --tableInputSearchBackgroundColor: rgba(0, 0, 0, 0.1);
  --tableInputSearchBackgroundColorDisabled: rgba(0, 0, 0, 0);
  --tableInputSearchBorderColor: rgba(0, 0, 0, 0.1);

  --tableStripedRowBackgroundColor: rgba(0, 0, 0, 0.1);
  --tableHighlightRowBackgroundColor: rgba(255, 255, 255, 0.05);
  --tableSelectedRowBackgroundColor: rgba(38, 159, 224, 0.12);

  --tablePaginationTextColor: var(--primaryTextColor);
  --tablePaginationNumbersColor: var(--primaryTextColor);
  --tablePaginationNumbersHoverBackgroundColor: rgba(255, 255, 255, 0.2);
  --tablePaginationNumbersActiveHoverBackgroundColor: #0b5ed7;
  --tablePaginationNumbersSelectedColor: #fff;
  --tablePaginationNumbersSelectedBackgroundColor: var(--primaryColor);

  --tableActionButtonHoverBackgroundColor: rgba(0, 0, 0, 0.7);
  --tableActionButtonHoverPrimaryBackgroundColor: rgba(0, 0, 0, 0.7);
  --tableStripedBackgroundColor: #333333ad;


  /* MODAL */
  --modalSecondaryBackgroundColor: #242726;
  --modalColor: var(--primaryTextColor);
  --modalBoxShadow: rgba(0, 0, 0, 0.5);
  --modalIconCloseBackgroundColorHover: rgba(255, 255, 255, 0.1);
  --modalContentItemBackgroundColorHover: rgba(255, 255, 255, 0.1);
  --modalContentItemPulseBackgroundColor: rgb(58, 61, 60);
  --modalDividerBackgroundColor: rgba(255, 255, 255, 0.1);


  /* CONTEXT BOX */
  --contextBoxBackgroundColor: #242726;
  --contextBoxColor: var(--primaryTextColor);
  --contextBoxTitleColor: var(--primaryTextColor);
  --contextBoxTitleBorderColor: rgba(255, 255, 255, 0.05);
  --contextBoxItemBackgroundColorHover: rgba(255, 255, 255, 0.05);


  /* HEADER */
  --headerHeight: 72px;
  --headerBackgroundColor: #242726;
  --headerColor: var(--primaryTextColor);
  --headerActionColor: rgba(255, 255, 255, 0.8);
  --headerActionHoverColor: rgba(255, 255, 255, 1);
  --headerActionBorderColor: rgba(255, 255, 255, 0.05);
  --headerMenuTriggerBackgroundColor: var(--primaryTextColor);
  --headerDefaultHoverBackgroundColor: rgba(245, 169, 52, .4);
  --headerPulseBackgroundColor: rgba(245, 169, 52, .2);
  --headerDefaultDropdownIconColor: #eee;
  --headerExitDropdownIconColor: #F44336;
  --headerExitDropdownBackgroundColor: #FFF3F3;


  /* MENU */
  --menuBackgroundColor: #242726;
  --menuCategoryColor: rgba(255, 255, 255, 0.7);
  --menuSearchInputBackgroundColor: rgba(0, 0, 0, 0.15);
  --menuItemColor: rgba(255, 255, 255, 0.8);
  --menuItemListBackgroundColor: rgba(0, 0, 0, 0.2);
  --menuItemHoverColor: rgba(255, 255, 255, 0.9);
  --menuItemHoverBackgroundColor: rgba(0, 0, 0, 0.2);
  --menuItemActiveColor: var(--secondaryColor);
  --menuItemActiveBackgroundColor: rgba(0, 0, 0, 0.3);
  --menuItemActiveTextShadow: 0px 0px 4px rgba(0, 0, 0, 0.6);


  /* CONTENT */
  --contentTabBackgroundColor: transparent;
  --contentTabColor: rgba(255, 255, 255, 0.5);
  --contentTabBorderColor: rgba(255, 255, 255, 0.05);
  --contentTabHoverBackgroundColor: rgba(255, 255, 255, 0.1);
  --contentTabCloseIconHoverBackgroundColor: rgba(255, 255, 255, 0.1);
  --contentTabHoverColor: var(--primaryTextColor);
  --contentTabActivedBackgroundColor: #242726;
  --contentTabActivedColor: var(--secondaryColor);
  --contentTabActivedIndicatorColor: var(--secondaryColor);


  /* IFRAMES */
  --iframeHeaderBackgroundColor: transparent;
  --iframeHeaderBorderColor: transparent;
  --iframeHeaderColor: #eee;
  --iframeHeaderLinkColor: #2196f3;

  --iframeActuatorIconColor: var(--MenuIconColor);
  --iframeActuatorIconHoverBackgroundColor: rgba(255, 255, 255, 0.1);

  --iframeCardboxBackgroundColor: #242726;
  --iframeCardboxColor: var(--primaryTextColor);
  --iframeCardboxBoxShadow: rgba(0, 0, 0, 0.4);
  --iframeCardboxBoxShadowHover: rgba(0, 0, 0, 0.6);


  /* DISPONIBILIDADE */
  --disponibilidadeColor: var(--primaryTextColor);
  --disponibilidadeBackgroundColor: #242726;
  --disponibilidadeWeekendBackgroundColor: rgba(0, 0, 0, 0.2);
  --disponibilidadeBackgroundSelectable: repeating-linear-gradient(45deg, rgba(38, 159, 224, 0.1), rgba(38, 159, 224, 0.1) 10px, rgba(38, 159, 224, 0.3) 10px, rgba(38, 159, 224, 0.3) 20px);
  --disponibilidadeWeekendBackgroundSelectable: var(--disponibilidadeBackgroundSelectable);


  /* STATISTICBOX */
  --statisticboxSelectedIconBackgroundColor: rgba(38, 159, 224, 0.6);
  --statisticboxSelectedIconColor: #fff;
  --statisticboxSelectedBackgroundColor: #858383;

  /* EXTRATO CONTAS */
  --produtoRowBackground: rgba(0, 0, 0, 0.1);

  /* BREADCRUMB */
  --breadCrumbBackgroundColor: rgba(245, 169, 52, .2);
  --breadCrumbHoverBackgroundColor: rgba(245, 169, 52, .5);

  /* BUTTONS */
  --btnPrimaryBackground: var(--secondaryColorOpacity);
  --btnPrimaryHoverBackground: var(--secondaryColor);

  /* amcharts */
  .card-body {
    background-color: var(--tableBackgroundColor) !important;
  }

  /* card */
  --bs-card-border-color: var(--borderCardBackground);
  --bs-body-bg: var(--borderCardBackground);
  --bs-border-color: var(--borderCardBackground);

  --bs-heading-color: var(--primaryTextColor);
}

/* Descobrir como usar font-family-base */
/* $font-family-base: 'Inter', sans-serif; */

body {
  font-family: 'Inter', sans-serif;
}

/* MATERIAL SYMBOLS - ICONES */
@font-face {
  font-family:
    /*'Inter', sans-serif;*/
    'Material Symbols Outlined';
  /*modifica as imagens*/
  font-style: normal;
  src: url('../material-symbols/MaterialSymbolsOutlined[FILL\,GRAD\,opsz\,wght].woff2') format('woff2');
}

.material-symbols-outlined {
  font-family:
    /*'Inter', sans-serif;*/
    'Material Symbols Outlined';
  /*modifica as imagens*/
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

.material-symbols-fill {
  font-variation-settings: "FILL" 1;
}

html {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: unset;
}

/* TIPOGRAFIA */
h1,
.h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 6rem;
  line-height: 1.167;
  letter-spacing: -0.01562em;
}

h2,
.h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 3.75rem;
  line-height: 1.2;
  letter-spacing: -0.00833em;
}

h3,
.h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.167;
  letter-spacing: 0em;
}

h4,
.h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 2.125rem;
  line-height: 1.235;
  letter-spacing: 0.00735em;
}

h5,
.h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.334;
  letter-spacing: 0em;
}

h6,
.h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.0075em;
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--primaryTextColor);
}

ul,
ol>li {
  font-family: 'Inter', sans-serif;
  color: var(--primaryTextColor);
}

.subtitle1 {
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  letter-spacing: 0.00938em !important;
}

.subtitle2 {
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  line-height: 1.57 !important;
  letter-spacing: 0.00714em !important;
}

.body1 {
  color: var(--primaryTextColor);
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.00938em !important;
}

.body2 {
  font-weight: 400 !important;
  font-size: 0.875rem !important;
  line-height: 1.43 !important;
  letter-spacing: 0.01071em !important;
}

textarea.observacoes {
  font-family: 'Inter', sans-serif;
  min-height: 104px !important;
}

.hide {
  display: none !important;
}



/* CORES */
.light-text-color {
  color: var(--textColorLight) !important;
}

.white-color {
  color: rgba(255, 255, 255, 1) !important;
}

.white-background {
  background-color: rgba(255, 255, 255, 1) !important;
}

.white-background-1 {
  background: rgba(255, 255, 255, 0.1) !important;
}

.white-background-2 {
  background: rgba(255, 255, 255, 0.2) !important;
}

.white-background-3 {
  background: rgba(255, 255, 255, 0.3) !important;
}

.white-background-4 {
  background: rgba(255, 255, 255, 0.4) !important;
}

.white-background-5 {
  background: rgba(255, 255, 255, 0.5) !important;
}

.white-background-6 {
  background: rgba(255, 255, 255, 0.6) !important;
}

.white-background-7 {
  background: rgba(255, 255, 255, 0.7) !important;
}

.white-background-8 {
  background: rgba(255, 255, 255, 0.8) !important;
}

.white-background-9 {
  background: rgba(255, 255, 255, 0.9) !important;
}

.primary-color {
  color: var(--primaryColor) !important;
}

.primary-background {
  background-color: var(--primaryColor) !important;
}

.gray-color {
  color: var(--grayColor) !important;
}

.gray-background {
  background-color: var(--grayColor) !important;
}

.color-error,
.error-color {
  color: rgba(244, 67, 54, 1) !important;
}

.error-background,
.error-hover:hover {
  background: rgba(244, 67, 54, 1) !important;
}

.error-background-1 {
  background: rgba(244, 67, 54, 0.1) !important;
}

.error-background-2 {
  background: rgba(244, 67, 54, 0.2) !important;
}

.error-background-3 {
  background: rgba(244, 67, 54, 0.3) !important;
}

.error-background-4 {
  background: rgba(244, 67, 54, 0.4) !important;
}

.error-background-5 {
  background: rgba(244, 67, 54, 0.5) !important;
}

.error-background-6 {
  background: rgba(244, 67, 54, 0.6) !important;
}

.error-background-7 {
  background: rgba(244, 67, 54, 0.7) !important;
}

.error-background-8 {
  background: rgba(244, 67, 54, 0.8) !important;
}

.error-background-9 {
  background: rgba(244, 67, 54, 0.9) !important;
}

.warning-color {
  color: rgba(255, 152, 0, 1) !important;
}

.warning-background {
  background: rgba(255, 152, 0, 1) !important;
}

.warning-background-1 {
  background: rgba(255, 152, 0, 0.1) !important;
}

.warning-background-2 {
  background: rgba(255, 152, 0, 0.2) !important;
}

.warning-background-3 {
  background: rgba(255, 152, 0, 0.3) !important;
}

.warning-background-4 {
  background: rgba(255, 152, 0, 0.4) !important;
}

.warning-background-5 {
  background: rgba(255, 152, 0, 0.5) !important;
}

.warning-background-6 {
  background: rgba(255, 152, 0, 0.6) !important;
}

.warning-background-7 {
  background: rgba(255, 152, 0, 0.7) !important;
}

.warning-background-8 {
  background: rgba(255, 152, 0, 0.8) !important;
}

.warning-background-9 {
  background: rgba(255, 152, 0, 0.9) !important;
}

.success-color {
  color: rgba(76, 175, 80, 1) !important;
}

.success-background {
  background: rgba(76, 175, 80, 1) !important;
}

.success-background-1 {
  background: rgba(76, 175, 80, 0.1) !important;
}

.success-background-2 {
  background: rgba(76, 175, 80, 0.2) !important;
}

.success-background-3 {
  background: rgba(76, 175, 80, 0.3) !important;
}

.success-background-4 {
  background: rgba(76, 175, 80, 0.4) !important;
}

.success-background-5 {
  background: rgba(76, 175, 80, 0.5) !important;
}

.success-background-6 {
  background: rgba(76, 175, 80, 0.6) !important;
}

.success-background-7 {
  background: rgba(76, 175, 80, 0.7) !important;
}

.success-background-8 {
  background: rgba(76, 175, 80, 0.8) !important;
}

.success-background-9 {
  background: rgba(76, 175, 80, 0.9) !important;
}

.info-color {
  color: rgba(33, 150, 243, 1) !important;
}

.info-background {
  background: rgba(33, 150, 243, 1) !important;
}

.info-background-1 {
  background: rgba(33, 150, 243, 0.1) !important;
}

.info-background-2 {
  background: rgba(33, 150, 243, 0.2) !important;
}

.info-background-3 {
  background: rgba(33, 150, 243, 0.3) !important;
}

.info-background-4 {
  background: rgba(33, 150, 243, 0.4) !important;
}

.info-background-5 {
  background: rgba(33, 150, 243, 0.5) !important;
}

.info-background-6 {
  background: rgba(33, 150, 243, 0.6) !important;
}

.info-background-7 {
  background: rgba(33, 150, 243, 0.7) !important;
}

.info-background-8 {
  background: rgba(33, 150, 243, 0.8) !important;
}

.info-background-9 {
  background: rgba(33, 150, 243, 0.9) !important;
}

.brown-color {
  color: rgba(121, 85, 72, 1) !important;
}

.brown-background {
  background: rgba(121, 85, 72, 1) !important;
}

.brown-background-1 {
  background: rgba(121, 85, 72, 0.1) !important;
}

.brown-background-2 {
  background: rgba(121, 85, 72, 0.2) !important;
}

.brown-background-3 {
  background: rgba(121, 85, 72, 0.3) !important;
}

.brown-background-4 {
  background: rgba(121, 85, 72, 0.4) !important;
}

.brown-background-5 {
  background: rgba(121, 85, 72, 0.5) !important;
}

.brown-background-6 {
  background: rgba(121, 85, 72, 0.6) !important;
}

.brown-background-7 {
  background: rgba(121, 85, 72, 0.7) !important;
}

.brown-background-8 {
  background: rgba(121, 85, 72, 0.8) !important;
}

.brown-background-9 {
  background: rgba(121, 85, 72, 0.9) !important;
}

.black-color {
  color: rgba(0, 0, 0, 1) !important;
}

.black-background {
  background: rgba(0, 0, 0, 1) !important;
}

.black-background-1 {
  background: rgba(0, 0, 0, 0.1) !important;
}

.black-background-2 {
  background: rgba(0, 0, 0, 0.2) !important;
}

.black-background-3 {
  background: rgba(0, 0, 0, 0.3) !important;
}

.black-background-4 {
  background: rgba(0, 0, 0, 0.4) !important;
}

.black-background-5 {
  background: rgba(0, 0, 0, 0.5) !important;
}

.black-background-6 {
  background: rgba(0, 0, 0, 0.6) !important;
}

.black-background-7 {
  background: rgba(0, 0, 0, 0.7) !important;
}

.black-background-8 {
  background: rgba(0, 0, 0, 0.8) !important;
}

.black-background-9 {
  background: rgba(0, 0, 0, 0.9) !important;
}

.disabled-color {
  color: rgb(245, 245, 245) !important;
}

.disabled-background {
  background: rgb(245, 245, 245) !important;
}


/* UTILS */
.width-100 {
  width: 100% !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-block,
.cursor-notallowed {
  cursor: not-allowed !important;
}

.opacity-1 {
  opacity: 0.1 !important;
}

.opacity-2 {
  opacity: 0.2 !important;
}

.opacity-3 {
  opacity: 0.3 !important;
}

.opacity-4 {
  opacity: 0.4 !important;
}

.opacity-5 {
  opacity: 0.5 !important;
}

.opacity-6 {
  opacity: 0.6 !important;
}

.opacity-7 {
  opacity: 0.7 !important;
}

.opacity-8 {
  opacity: 0.8 !important;
}

.opacity-9 {
  opacity: 0.9 !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

.gap-32 {
  gap: 32px;
}

.textalign-center {
  text-align: center !important;
}

.textalign-right {
  text-align: right !important;
}

.textalign-left {
  text-align: left !important;
}

.margin-top-4 {
  margin-top: 4px !important;
}

.margin-top-8 {
  margin-top: 8px !important;
}

.margin-top-12 {
  margin-top: 12px !important;
}

.margin-top-16 {
  margin-top: 16px !important;
}

.margin-top-20 {
  margin-top: 20px !important;
}

.margin-top-24 {
  margin-top: 24px !important;
}

.margin-top-28 {
  margin-top: 28px !important;
}

.margin-top-32 {
  margin-top: 32px !important;
}

.margin-top-36 {
  margin-top: 36px !important;
}

.margin-top-40 {
  margin-top: 40px !important;
}

.margin-top-48 {
  margin-top: 48px !important;
}

.margin-right-4 {
  margin-right: 4px !important;
}

.margin-right-8 {
  margin-right: 8px !important;
}

.margin-right-12 {
  margin-right: 12px !important;
}

.margin-right-16 {
  margin-right: 16px !important;
}

.margin-right-20 {
  margin-right: 20px !important;
}

.margin-right-24 {
  margin-right: 24px !important;
}

.margin-right-28 {
  margin-right: 28px !important;
}

.margin-right-32 {
  margin-right: 32px !important;
}

.margin-right-36 {
  margin-right: 36px !important;
}

.margin-right-40 {
  margin-right: 40px !important;
}

.margin-right-48 {
  margin-right: 48px !important;
}

.margin-bottom-4 {
  margin-bottom: 4px !important;
}

.margin-bottom-8 {
  margin-bottom: 8px !important;
}

.margin-bottom-12 {
  margin-bottom: 12px !important;
}

.margin-bottom-16 {
  margin-bottom: 16px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-24 {
  margin-bottom: 24px !important;
}

.margin-bottom-28 {
  margin-bottom: 28px !important;
}

.margin-bottom-32 {
  margin-bottom: 32px !important;
}

.margin-bottom-36 {
  margin-bottom: 36px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-48 {
  margin-bottom: 48px !important;
}

.margin-left-0 {
  margin-left: 0px !important;
}

.margin-left-4 {
  margin-left: 4px !important;
}

.margin-left-8 {
  margin-left: 8px !important;
}

.margin-left-12 {
  margin-left: 12px !important;
}

.margin-left-16 {
  margin-left: 16px !important;
}

.margin-left-20 {
  margin-left: 20px !important;
}

.margin-left-24 {
  margin-left: 24px !important;
}

.margin-left-28 {
  margin-left: 28px !important;
}

.margin-left-32 {
  margin-left: 32px !important;
}

.margin-left-36 {
  margin-left: 36px !important;
}

.margin-left-40 {
  margin-left: 40px !important;
}

.margin-left-48 {
  margin-left: 48px !important;
}

.padding-top-4 {
  padding-top: 4px !important;
}

.padding-top-8 {
  padding-top: 8px !important;
}

.padding-top-12 {
  padding-top: 12px !important;
}

.padding-top-16 {
  padding-top: 16px !important;
}

.padding-top-20 {
  padding-top: 20px !important;
}

.padding-top-24 {
  padding-top: 24px !important;
}

.padding-top-28 {
  padding-top: 28px !important;
}

.padding-top-32 {
  padding-top: 32px !important;
}

.padding-top-36 {
  padding-top: 36px !important;
}

.padding-top-40 {
  padding-top: 40px !important;
}

.padding-top-48 {
  padding-top: 48px !important;
}

.padding-bottom-4 {
  padding-bottom: 4px !important;
}

.padding-bottom-8 {
  padding-bottom: 8px !important;
}

.padding-bottom-12 {
  padding-bottom: 12px !important;
}

.padding-bottom-16 {
  padding-bottom: 16px !important;
}

.padding-bottom-20 {
  padding-bottom: 20px !important;
}

.padding-bottom-24 {
  padding-bottom: 24px !important;
}

.padding-bottom-28 {
  padding-bottom: 28px !important;
}

.padding-bottom-32 {
  padding-bottom: 32px !important;
}

.padding-bottom-36 {
  padding-bottom: 36px !important;
}

.padding-bottom-40 {
  padding-bottom: 40px !important;
}

.padding-bottom-48 {
  padding-bottom: 48px !important;
}

.padding-left-4 {
  padding-left: 4px !important;
}

.padding-left-8 {
  padding-left: 8px !important;
}

.padding-left-12 {
  padding-left: 12px !important;
}

.padding-left-16 {
  padding-left: 16px !important;
}

.padding-left-20 {
  padding-left: 20px !important;
}

.padding-left-24 {
  padding-left: 24px !important;
}

.padding-left-28 {
  padding-left: 28px !important;
}

.padding-left-32 {
  padding-left: 32px !important;
}

.padding-left-36 {
  padding-left: 36px !important;
}

.padding-left-40 {
  padding-left: 40px !important;
}

.padding-left-48 {
  padding-left: 48px !important;
}

.padding-right-4 {
  padding-right: 4px !important;
}

.padding-right-8 {
  padding-right: 8px !important;
}

.padding-right-12 {
  padding-right: 12px !important;
}

.padding-right-16 {
  padding-right: 16px !important;
}

.padding-right-20 {
  padding-right: 20px !important;
}

.padding-right-24 {
  padding-right: 24px !important;
}

.padding-right-28 {
  padding-right: 28px !important;
}

.padding-right-32 {
  padding-right: 32px !important;
}

.padding-right-36 {
  padding-right: 36px !important;
}

.padding-right-40 {
  padding-right: 40px !important;
}

.padding-right-48 {
  padding-right: 48px !important;
}

.font-size-4 {
  font-size: 4px !important;
}

.font-size-6 {
  font-size: 6px !important;
}

.font-size-8 {
  font-size: 8px !important;
}

.font-size-10 {
  font-size: 10px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

.font-size-28 {
  font-size: 28px !important;
}

.font-size-32 {
  font-size: 32px !important;
}

.font-size-36 {
  font-size: 36px !important;
}

.font-size-40 {
  font-size: 40px !important;
}

.font-size-48 {
  font-size: 48px !important;
}

.font-weight-100 {
  font-weight: 100 !important;
}

.font-weight-200 {
  font-weight: 200 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

.font-weight-bold {
  font-weight: bold !important;
}

.display-block {
  display: block !important;
}

.texttransform-lowercase {
  text-transform: lowercase !important;
}

.texttransform-uppercase {
  text-transform: uppercase !important;
}


/* BOOTSTRAP BUTTON */
.btn {
  font-family: 'Inter', sans-serif;
  --bs-btn-font-weight: 500;
  --bs-btn-line-height: 1.75;
  --bs-btn-font-size: 0.875rem;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
}

.btn:disabled,
button {
  font-family: 'Inter', sans-serif;
  cursor: not-allowed;
  pointer-events: auto;
  /* background-color:  */
}

.btn-sm span.material-symbols-outlined {
  font-size: 14px;
}

.btn-xs {
  --bs-btn-padding-y: 0.125rem;
  --bs-btn-padding-x: 0.25rem;
  --bs-btn-font-size: 0.625rem;
  --bs-btn-border-radius: var(--defaultBorderRadius);
}

.btn-xs .material-symbols-outlined {
  font-size: 16px;
}

.btn-filters-list {
  width: 100%;
  height: 58px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
  background-color: var(--tabBackgroundColorActive);
}

.btn-primary {
  position: relative;
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--btnPrimaryBackground);
  --bs-btn-border-color: var(--primaryColor);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--btnPrimaryHoverBackground);
  --bs-btn-hover-border-color: #161616;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #161616;
  --bs-btn-active-border-color: #161616;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.5);
  /*border: 15px solid #818181;*/
  border-radius: var(--defaultBorderRadiusBtn) !important;
  padding: 5px 10px;
  /*font-size: 20px;*/
}

.btn-altera-qtde {
  padding: 5px 25px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--btnPrimaryHoverBackground);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--btnPrimaryHoverBackground);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-primary::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--btnPrimaryBackground);
  border-radius: 15px;
}

.btn-primary:hover::after {
  /* transform: scaleX(1.4) scaleY(1.6); */
  opacity: 0;
  border-radius: 15px;
}

.btn-primary-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}



.btn-secondary {
  position: relative;
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--secondaryColor);
  --bs-btn-border-color: var(--secondaryColor);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e19520;
  --bs-btn-hover-border-color: #e19520;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e19520;
  --bs-btn-active-border-color: #e19520;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.5);
  height: 45px;
  border-radius: var(--defaultBorderRadiusBtn) !important;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--btnPrimaryHoverBackground);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--btnPrimaryHoverBackground);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-secondary::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--btnPrimaryBackground);
  border-radius: 15px;
}

.btn-secondary:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-secondary-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-secondary-outlined {
  position: relative;
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #FFF;
  --bs-btn-bg: var(--secondaryColor);
  --bs-btn-border-color: var(--secondaryColor);
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #e19520;
  --bs-btn-hover-border-color: #e19520;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #e19520;
  --bs-btn-active-border-color: #e19520;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.5);
  border: 1px solid #818181;
  padding: 5px 10px;
  border-radius: var(--defaultBorderRadiusBtn) !important;
}

.btn-secondary-outlined:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--btnPrimaryHoverBackground);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-secondary-outlined:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--btnPrimaryHoverBackground);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-secondary-outlined::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--btnPrimaryBackground);
  border-radius: 15px;
}

.btn-secondary-outlined:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-secondary-outlined-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}


/*.btn-secondary-outlined {
  font-family: 'Inter', sans-serif;
  --bs-btn-color: var(--secondaryColor);
  --bs-btn-bg: #FFF;
  --bs-btn-border-color: var(--secondaryColor);
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: var(--secondaryColor);
  --bs-btn-hover-border-color: var(--secondaryColor);
  --bs-btn-focus-shadow-rgb: 217,164,6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #e19520;
  --bs-btn-active-border-color: var(--secondaryColor);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0,0,0,0.38);
  --bs-btn-disabled-bg: rgba(0,0,0,0.26);
  --bs-btn-disabled-border-color: rgba(0,0,0,0);
  --bs-btn-disabled-opacity: 1;
}*/

.btn-cancel {
  position: relative;
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #FFF;
  --bs-btn-bg: var(--secondaryColor);
  ;
  --bs-btn-border-color: var(--secondaryColor);
  ;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #e19520;
  --bs-btn-hover-border-color: #e19520;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #e19520;
  --bs-btn-active-border-color: #e19520;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.5);
  border: 1px solid #e19520;
  padding: 20px 40px;
  border-radius: var(--defaultBorderRadiusBtn) !important;
  /*font-size: 20px;*/
}

.btn-cancel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--btnPrimaryHoverBackground);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-cancel:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--btnPrimaryHoverBackground);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-cancel::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--btnPrimaryBackground);
  border-radius: 15px;
}

.btn-cancel:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-cancel-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-white {
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #000;
  --bs-btn-bg: #FFF;
  --bs-btn-border-color: #FFF;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5f5f5;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f5f5f5;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  border-radius: var(--defaultBorderRadiusBtn) !important;
}

.btn-delete {
  position: relative;
  font-family: 'Inter', sans-serif;
  --bs-btn-color: #FFF;
  --bs-btn-bg: #F44336;
  --bs-btn-border-color: #F44336;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #E31B0C;
  --bs-btn-hover-border-color: #E31B0C;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #E31B0C;
  --bs-btn-active-border-color: #E31B0C;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.5);
  border: 1px solid #d32f2f;
  padding: 10px 10px;
  border-radius: var(--defaultBorderRadiusBtn) !important;
  /*font-size: 20px;*/
}

.btn-delete:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-delete:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-hover-bg);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-delete::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--bs-btn-bg);
  border-radius: 15px;
}

.btn-delete:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-delete-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-estornar {
  padding: 8px 16px;
  border-radius: var(--defaultBorderRadiusBtn) !important;
}

.btn-outline-delete {
  position: relative;
  --bs-btn-color: #F44336;
  --bs-btn-border-color: #F44336;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #F44336;
  --bs-btn-hover-border-color: #F44336;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #F44336;
  --bs-btn-active-border-color: #F44336;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(6, 6, 8, 4);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  --bs-gradient: none;
  border-radius: var(--defaultBorderRadiusBtn);
}

.btn-outline-delete:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-outline-delete:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-hover-bg);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-outline-delete::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--bs-btn-bg);
  border-radius: 15px;
}

.btn-outline-delete:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-outline-delete-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-success {
  position: relative;
  --bs-btn-color: #fff;
  --bs-btn-bg: #2e7d32;
  --bs-btn-border-color: #2e7d32;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1b5e20;
  --bs-btn-hover-border-color: #1b5e20;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1b5e20;
  --bs-btn-active-border-color: #4caf50;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  border-radius: var(--defaultBorderRadiusBtn);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-success:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-hover-bg);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-success::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--bs-btn-bg);
  border-radius: 15px;
}

.btn-success:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-success-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-black {
  position: relative;
  --bs-btn-color: #FFF;
  --bs-btn-bg: #000;
  --bs-btn-border-color: #000;
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: #262626;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgba(0, 0, 0, 0.38);
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  border-radius: var(--defaultBorderRadiusBtn) !important;
}

.btn-black:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-black:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-hover-bg);
  box-shadow: var(--bs-btn-active-shadow);
}

.btn-black::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .6s;
  background-color: var(--bs-btn-bg);
  border-radius: 15px;
}

.btn-black:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
  border-radius: 15px;
}

.btn-black-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.btn-transparent {
  --bs-btn-color: #000;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5f5f5;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f5f5f5;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: rgba(0, 0, 0, 0.26);
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0);
  --bs-btn-disabled-opacity: 1;
  border-radius: var(--defaultBorderRadiusBtn);
}

.btn-transparent-border {
  --bs-btn-border-color: transparent;
}



span.link {
  font-family: 'Inter', sans-serif;
  color: var(--infoColor);
  text-decoration: underline;
  cursor: pointer;
}



/* BOOTSTRAP INPUTS */
.invalid-feedback {
  display: block;
}

.form-row-16 {
  --bs-gutter-x: 1rem;
  row-gap: 16px;
}

.form-row-20 {
  padding: 10px 0px 10px 0px;
  --bs-gutter-x: 1.20rem;
  row-gap: 20px;
}

.form-row-24 {
  --bs-gutter-x: 1.24rem;
  row-gap: 24px;
}

.form-control,
.form-select {
  height: 56px;
  padding: 16px 12px;
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--defaultBorderRadius);
  color: var(--inputColor);
  background-color: var(--inputBackgroundColor) !important;
}

.form-control-input {
  width: 150px;
  height: 25px;
  padding: 10px 10px;
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--defaultBorderRadius);
  color: var(--inputColor);
  background-color: var(--inputBackgroundColor) !important;
}

.form-select-input {
  width: 250px;
  height: 40px;
  padding: 10px 10px;
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--defaultBorderRadius);
  color: var(--inputColor);
  background-color: var(--inputBackgroundColor) !important;
}

.form-control:focus,
.form-select:focus {
  color: var(--inputColor);
  border-color: var(--inputColorFocus);
  box-shadow: 0 0 0 .25rem rgba(245, 169, 52, .25);
  background-color: var(--inputBackgroundColor);
}

.form-control::-webkit-input-placeholder {
  color: var(--inputLabelColor);
}

.form-control::-moz-placeholder {
  color: var(--inputLabelColor);
}

.form-control:-ms-input-placeholder {
  color: var(--inputLabelColor);
}

.form-control::-ms-input-placeholder {
  color: var(--inputLabelColor);
}

.form-control::placeholder {
  color: var(--inputLabelColor);
}

.form-control::-ms-placeholder {
  color: var(--inputLabelColor);
}

.form-control:disabled,
.form-select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.form-select {
  --bs-form-select-bg-img: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIzIiB2aWV3Qm94PSIwIDAgMTAgNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEw1IDVMMTAgMEgwWiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC41NCIvPgo8L3N2Zz4=);
  background-size: 10px 5px;
  cursor: pointer;
}

.form-input-icon-right .form-select {
  background-image: none;
}

.form-check {
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 8px;
  min-height: 40px;
  cursor: pointer;
  --bs-border-color: var(--inputBorderColor);
}

.form-check:not(.form-switch)>.form-check-input {
  width: 18px;
  height: 18px;
  margin: 3px;
}

.form-check>.form-check-label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  cursor: pointer;
  color: inherit;
}

.form-check>.form-check-label>.title,
.form-check>.form-check-label>.description {
  display: block;
}

.form-check>.form-check-label>.description {
  color: var(--inputLabelColorSecondary);
  color: inherit;
}

.form-check.form-switch {
  margin: 3px;
}

.form-check.form-switch .form-check-input {
  margin-left: 0px;
  cursor: pointer;
}

.form-multiselect {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--defaultBorderRadius);
  background-color: var(--inputBackgroundColor);
}

.form-multiselect~label {
  display: none;
}

.form-multiselect.selected~label {
  display: inline-block;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--inputLabelColor);
}

.form-multiselect a.dropdown-trigger {
  display: block;
  padding: 18px 12px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
  color: var(--inputColor);
  cursor: pointer;
}

.form-multiselect.selected a.dropdown-trigger {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-multiselect a.dropdown-trigger:before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIzIiB2aWV3Qm94PSIwIDAgMTAgNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEw1IDVMMTAgMEgwWiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC41NCIvPgo8L3N2Zz4=);
  background-size: 10px 5px;
  cursor: pointer;
  width: 10px;
  height: 5px;
  position: absolute;
  right: 14px;
  top: 26px;
}

.form-multiselect .dropdown-menu {
  --bs-dropdown-padding-y: 0px;
  --bs-dropdown-border-color: transparent;
  --bs-dropdown-item-padding-y: 0px;
  --bs-dropdown-item-padding-x: 0px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow:
    0px 6px 30px 5px #0000001F,
    0px 16px 24px 2px #00000024,
    0px 8px 10px -5px #00000033;
}

.form-multiselect .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--scrollbarBackgroundColor);
}

.form-multiselect .dropdown-menu::-webkit-scrollbar {
  height: 10px;
  width: 5px;
  background: var(--scrollbarBackgroundColor);
}

.form-multiselect .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--scrollbarThumbBackgroundColor);
}

.form-multiselect .dropdown-menu>li:first-of-type {
  border-top-left-radius: var(--bs-dropdown-border-radius);
  border-top-right-radius: var(--bs-dropdown-border-radius);
}

.form-multiselect .dropdown-menu>li:last-of-type {
  border-bottom-left-radius: var(--bs-dropdown-border-radius);
  border-bottom-right-radius: var(--bs-dropdown-border-radius);
}

.form-multiselect .dropdown-menu>li>.form-check {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--dropdownBackgroundColor);
}

.form-multiselect .dropdown-menu>li label {
  width: 100%;
  font-size: 16px;
}

.form-multiselect .dropdown-menu .check-all {
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
}

.form-multiselect .dropdown-item:hover {
  color: var(--primaryTextColor);
}

.dropdown-item {
  color: var(--primaryTextColor);
}



.form-floating.form-date input::-webkit-inner-spin-button,
.form-floating.form-date input::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.form-floating.form-date .form-input-icon {
  cursor: pointer;
}

.error>.form-control,
.error>.form-select {
  border-color: var(--bs-form-invalid-border-color);
}

.error>.form-control:focus,
.error>.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), .25);
}

div.form-floating .form-control:not(:placeholder-shown)~label,
div.form-floating .form-select:not(:placeholder-shown)~label {
  color: var(--inputLabelColor);
}

div.form-floating .form-control~label,
div.form-floating .form-select~label {
  font-size: 16px;
  color: var(--inputLabelColor);
  max-width: 100%;
}

div.form-floating .form-control:focus,
div.form-floating .form-select:focus {
  color: var(--inputColor);
  border-color: var(--inputColorFocus);
  box-shadow: 0 0 0 .25rem rgba(245, 169, 52, .25);
  background-color: var(--inputBackgroundColor);
}

label,
.form-label {
  color: var(--inputLabelColor);
}

div.form-floating .form-control:focus:placeholder-shown~label,
div.form-floating .form-select:focus:placeholder-shown~label {
  color: var(--inputLabelColorActive);
}

div.form-floating .form-control~label::after,
div.form-floating .form-select~label::after {
  background-color: transparent !important;
}

/* .form-control:not(:placeholder-shown) ~ label,
.form-select:not(:placeholder-shown) ~ label,
.form-control:focus:placeholder-shown ~ label,
.form-select:focus:placeholder-shown ~ label {
  color: var(--primaryColor)!important;
} */

.form-control.form-filled,
.form-select.form-filled {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border: 0px !important;
  border-bottom: 1px solid var(--inputFilledBorderColor) !important;
  background-color: var(--inputFilledBackgroundColor) !important;
}

.form-control.form-standard,
.form-select.form-standard {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border: 0px !important;
  border-bottom: 1px solid var(--inputFilledBorderColor) !important;
}

div.form-input-icon-left {
  position: relative;
}

div.form-input-icon-left>div.form-input-icon {
  position: absolute;
  max-height: 58px;
  top: 0px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

div.form-input-icon-left>div.form-input-icon>span {
  font-size: 24px;
  color: var(--inputLabelColor);
}

div.form-input-icon-left>div.form-input-icon>span {
  color: var(--inputLabelColorActive);
}

div.form-input-icon-left>input.form-control {
  padding-left: 46px;
}

div.form-floating.form-input-icon-left .form-control~label,
div.form-floating.form-input-icon-left .form-select~label {
  margin-left: 34px !important;
}

div.form-input-icon-right {
  position: relative;
}

div.form-input-icon-right>div.form-input-icon {
  position: absolute;
  max-height: 58px;
  top: 0px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

div.form-input-icon-right>div.form-input-icon>span {
  font-size: 24px;
  color: var(--iframeActuatorIconColor);
}

div.form-input-icon-right>input.form-control {
  padding-right: 46px;
}

div.form-floating.form-input-icon-right .form-control~label,
div.form-floating.form-input-icon-right .form-select~label {
  margin-right: 34px !important;
}

/* SELECT 2 */
.select2 {
  width: 100% !important;
}

.select2-body-overflow {
  overflow: auto;
}

.select2-container--bootstrap-5 .select2-selection--single {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIzIiB2aWV3Qm94PSIwIDAgMTAgNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEw1IDVMMTAgMEgwWiIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC41NCIvPgo8L3N2Zz4=);
  background-size: 10px 5px;
  border-color: var(--inputBorderColor);
  cursor: pointer;
  height: 58px;
  background-color: var(--inputBackgroundColor);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: rgb(134, 183, 254);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  padding: 0.705rem 0px;
  color: var(--inputColor);
}

.form-floating .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  padding: 1.2rem 0px;
  color: var(--inputColor);
}

.form-floating .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  padding: 1.2rem 0px;
  color: var(--inputColor);
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  padding: 0.705rem 0px;
  color: var(--inputLabelColor);
}

.select2-results__options[aria-multiselectable="true"] li {
  padding-left: 30px;
  position: relative;
}

.select2-results__options[aria-multiselectable="true"] li:before {
  position: absolute;
  left: 8px;
  opacity: .6;
  top: 6px;
  font-family: "FontAwesome";
  content: "\f0c8";
}

.select2-results__options[aria-multiselectable="true"] li[aria-selected="true"]:before {
  content: "\f14a";
}

.error>.select2-container--bootstrap-5 .select2-selection--single {
  border-color: var(--bs-form-invalid-border-color);
}

.error>.select2-container--bootstrap-5 .select2-selection--single:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), .25);
}




/* SWITCH BUTTON */
.form-check-label span {
  color: var(--primaryTextColor);
}

.form-check-label span.modulo {
  font-weight: bold;
}

.form-check-switch-toggle {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
  margin-right: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.form-check-switch-toggle:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  font-size: 10px;
  display: block;
  background: #e6e6e6;
  border-radius: var(--defaultBorderRadius);
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}


.form-check-switch-toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 5px 0px #0000001F, 0px 2px 3px 0px #00000024, 0px 3px 5px -2px #00000033;
  box-shadow: 0px 1px 5px 0px #0000001F, 0px 2px 3px 0px #00000024, 0px 3px 5px -2px #00000033;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.form-check-switch-toggle span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: var(--primaryColor);
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

.form-check-switch-input {
  display: none;
}

.form-check-switch-input:checked+.form-check-switch-toggle:before {
  background: var(--primaryColor);
  opacity: 0.32;
}

.form-check-switch-input:checked+.form-check-switch-toggle span {
  background: var(--primaryColor);
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -o-transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  -webkit-box-shadow: 0px 1px 5px 0px #0000001F, 0px 2px 3px 0px #00000024, 0px 3px 5px -2px #00000033;
  box-shadow: 0px 1px 5px 0px #0000001F, 0px 2px 3px 0px #00000024, 0px 3px 5px -2px #00000033;
}

.form-check-switch-input:checked+.form-check-switch-toggle span:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}



/* FORM VALIDATION */
span.helpertext>div.helpertext-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

span.helpertext>div.helpertext-item {
  font-size: 14px;
  font-weight: 400;
}

span.helpertext>div.helpertext-item>span.icon {
  font-size: 15px;
}

span.helpertext>div.helpertext-item.error {
  color: var(--errorColor);
}

span.helpertext>div.helpertext-item.success {
  color: var(--successColor);
}




/* FORM LIST GROUP */
.form-list-group {
  --bs-list-group-bg: var(--defaultBackgroundColor_2);
  --bs-list-group-border-color: var(--dividerColor);
  --bs-list-group-border-radius: 8px;
  --bs-list-group-item-padding-x: 20px;
  --bs-list-group-item-padding-y: 24px;
  color: inherit;
  background-color: var(--bs-list-group-bg);
  border: 1px solid var(--bs-list-group-border-color);
  border-radius: var(--bs-list-group-border-radius);
  padding: 0;
  list-style-type: none;
  margin: 0;
  flex-wrap: wrap;
  display: flex;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  gap: 15px;
}

.form-list-group .list-group-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 16px;
  border-radius: 8px;
  background-color: var(--modalSecondaryBackgroundColor);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  margin-bottom: 40px;
  Color: var(--primaryTextColor);
}

.form-list-group .list-group-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
  /*0 8px 16px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);*/
  transform: perspective(1000px) rotateX(0) rotateY(2deg);
}

.form-list-group .list-group-item:last-child {
  border-bottom: none;
}

.form-list-group .info {
  display: flex;
  flex-direction: column;
}

.form-list-group .info .text {
  color: #555;
}


/* ACCORDION */
.accordion-item {
  --bs-accordion-bg: var(--defaultBackgroundColor_2);
  --bs-accordion-border-color: var(--dividerColor);
  --bs-accordion-color: var(--primaryTextColor);
  --bs-accordion-btn-padding-x: 36px;
  --bs-accordion-btn-padding-y: 14px;
  --bs-accordion-body-padding-x: 24px;
  --bs-accordion-body-padding-y: 14px;
  --bs-accordion-active-color: var(--primaryTextColor);
  --bs-accordion-active-bg: var(--defaultBackgroundColor_2);
  --bs-accordion-btn-icon-width: 20px;
  border: none;
}

.accordion-item .accordion-button {
  font-size: 15px;
  border: 1px solid var(--dividerColor);
  box-shadow: none;
  /* box-shadow: 0px 1px 3px 0px #0000001F,
    0px 1px 1px 0px #00000024,
    0px 2px 1px -1px #00000033; */

}

.accordion-item .accordion-button::after {
  font-family:
    /*'Inter', sans-serif;*/
    "Material Symbols Outlined";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  font-size: 20px;
  text-rendering: auto;
  line-height: 1;
  content: "\e5cf";
  position: absolute;
  display: inline-block;
  opacity: 1;
  right: 0;
  bottom: 0;
  top: 14px;
  margin-right: 22px;

  background-image: none;
  color: rgba(0, 0, 0, 0.54);
}


.accordion-item .accordion-body {
  margin-top: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  box-shadow: 0px 1px 3px 0px #0000001F,
    0px 1px 1px 0px #00000024,
    0px 2px 1px -1px #00000033;
}

.accordion-item .accordion-body.no-padding {
  padding: 0;
}

.accordion-item .accordion-body .accordion-padding {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-item .accordion-body .accordion-footer {
  min-height: 68px;
  border-top: 1px solid var(--dividerColor);
}

.accordion-item .accordion-button-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}

.accordion-item .accordion-alert {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-alert__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 17.58px;
}

.accordion-alert__icon {
  font-size: 16px;
}

.accordion-list-item div:not(.no-list-item),
.accordion-list-item p:not(.no-list-item),
.accordion-list-item li:not(.no-list-item) {
  display: list-item;
  margin-left: 1rem;
  outline: none;
}

.accordion-list-item ul,
.accordion-list-item ol {
  padding-left: 0;
}





/* TABLE */
.table {
  --bs-table-hover-bg: var(--tableHoverBackground);
}

.table-responsive {
  overflow-x: auto;
}

.table-striped {
  --bs-table-striped-bg: var(--tableStripedBackgroundColor);
}


table.table th,
table.table td {
  background-color: transparent;
}

table.table>thead {
  border-radius: 15px;
  border-color: transparent;
}

table.table>thead>tr>th {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  color: var(--tableHeaderColor);
}

table.table>tbody>tr>td {
  font-size: 12px;
  font-weight: 400;
  color: var(--tableColor);
  vertical-align: middle;
}

table.table>tr {
  border-radius: 15px;
  border-color: transparent;
}

table.table>:not(caption)>*>* {
  padding: 3px 8px;
}

table:is(.tablesorter, .refreshsorter)>thead>tr>th {
  position: relative;
  padding-right: 25px;
}

table:is(.tablesorter, .refreshsorter)>thead>tr>th:not(.no-sort)::before {
  font-family:
    /*'Inter', sans-serif;*/
    "Material Symbols Outlined";
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-size: 20px;
  text-rendering: auto;
  line-height: 1;
  content: "\e986";
  margin: 0px;
  opacity: 0.8;
  position: absolute;
  right: 0;
  bottom: 3px;
}

table.table>tbody>tr>td>div.table-actions {
  display: flex;
  justify-content: start;
  gap: 10px;
}

table.table>tbody>tr>td>div.table-actions .dropdown-menu {
  min-width: auto;
  background: var(--defaultBackgroundColor_2);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
  --bs-dropdown-border-color: transparent;
}

table.table>tbody>tr>td>div.table-actions .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px;
  padding-right: 14px;
  gap: 8px;
  font-size: 14px;
}

table.table>tbody>tr>td>div.table-actions .dropdown-menu .dropdown-item .material-symbols-outlined {
  font-size: 20px;
}

table.table>thead>tr>td>div.cell-content,
table.table>tbody>tr>td>div.cell-content,
table.table>thead>tr>th>div.cell-content,
table.table>tbody>tr>th>div.cell-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

table.table td.checkbox-column div.form-check,
table.table th.checkbox-column div.form-check {
  min-height: 0px;
}

table.table td.checkbox-column div.form-check .form-check-input,
table.table th.checkbox-column div.form-check .form-check-input {
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.table-tooltip,
.custom-tooltip {
  --bs-tooltip-bg: #616161;
  --bs-tooltip-color: var(--bs-white);
  --bs-tooltip-opacity: 0.9;
}

.tippy-box {
  background-color: #616161;
}

.tippy-box[data-placement^='top']>.tippy-arrow::before {
  border-top-color: #616161;
}

.tippy-box[data-placement^='bottom']>.tippy-arrow::before {
  border-bottom-color: #616161;
}

.tippy-box[data-placement^='left']>.tippy-arrow::before {
  border-left-color: #616161;
}

.tippy-box[data-placement^='right']>.tippy-arrow::before {
  border-right-color: #616161;
}



button.table-action-button {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--primaryTextColor) !important;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.4s;
}

button.table-action-button.with-text {
  gap: 12px;
  padding: 20px 12px;
  width: auto;
  border-radius: 0px;
  text-transform: none;
}

button.table-action-button span.material-symbols-outlined {
  font-size: 20px;
}

button.table-action-button span.table-action-button-text {
  font-size: 16px;
}

button.table-action-button::after {
  display: none;
}

.table-action-button.small.green.darken-2.tooltipped {
  margin-top: 4px;
}

button.table-action-button.small {
  width: 24px;
  height: 24px;
}


button.table-action-button>i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0.9;
  transition: 0.4s;
}

button.table-action-button.small>i {
  font-size: 2px;
}


button.table-action-button:hover,
button.table-action-button:focus {
  background-color: var(--tableActionButtonHoverBackgroundColor);
  transition: 0.4s;
}

button.table-action-button.primary-color:hover {
  background-color: var(--tableActionButtonHoverPrimaryBackgroundColor);
  transition: 0.4s;
}


button.table-action-button:hover>i,
button.table-action-button:focus>i {
  opacity: 0.9;
  transition: 0.4s;
}


button.table-action-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transition: 0.2s;
}


button.table-action-button:disabled>i {
  opacity: 1;
}


div.section-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 68px;
}

div.section-separator div.separator {
  width: -webkit-fill-available;
  height: 1px;
  background: var(--dividerColor);
}

div.section-separator span.separator-text {
  width: auto;
  text-align: center;
  white-space: nowrap;
  color: var(--textColorLight);
  font-size: 14px;
}




/* ALERTS */
.alert {
  font-size: 14px;
  font-weight: 700;
  --bs-alert-border-radius: 4px;
}

.alert-danger {
  --bs-alert-color: #FFF;
  --bs-alert-bg: #F44336;
  --bs-alert-border-color: #F44336;
  --bs-alert-link-color: #FFF;
}

.alert-info {
  --bs-alert-color: #0D3C61;
  --bs-alert-bg: rgb(221, 233, 246);
  --bs-alert-border-color: rgb(221, 233, 246);
  --bs-alert-link-color: #0D3C61;
}

.alert-info span {
  color: var(--primaryColor);
}

.alert a {
  color: var(--dividerColor);
}

.alert a:hover {
  font-weight: bolder;
}


/* STATISTIC BOX */
div.statisticbox {
  box-shadow:
    0px 1px 8px 0px #0000001F,
    0px 3px 4px 0px #00000024,
    0px 3px 3px -2px #00000000;
  border-radius: var(--defaultBorderRadius);
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px 12px;
  cursor: pointer;
  background-color: var(--defaultBackgroundColor_2);
  position: relative;
}

.col-sm-5>div.statisticbox {
  height: 55px;
}

div.statisticbox.lg {
  height: 110px;
}

div.statisticbox.height-unset {
  min-height: 80px;
  height: unset !important;
}

div.statisticbox.lg.height-unset {
  min-height: 120px;
  height: unset !important;
}


div.statisticbox>i.icon {
  font-size: 36px;
  width: 56px;
  height: 56px;
  border-radius: var(--defaultBorderRadius);
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

div.statisticbox.lg>div.icon {
  width: 64px;
  height: 64px;
  border-radius: var(--defaultBorderRadius);
  display: flex;
  align-items: center;
  justify-content: center;
}

div.statisticbox.lg>i.icon {
  font-size: 40px;
  width: 64px;
  height: 64px;
  border-radius: var(--defaultBorderRadius);
}

div.statisticbox>span.icon {
  font-size: 36px;
  width: 56px;
  height: 56px;
  border-radius: var(--defaultBorderRadius);
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

div.statisticbox.lg>span.icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: var(--defaultBorderRadius);
}


div.statisticbox>div.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
  text-align: right;
  color: var(--primaryTextColor);
  width: calc(100% - 56px);
  overflow: hidden;
}

div.statisticbox>div.info>span.value {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

div.statisticbox.lg>div.info>span.value {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
}


div.statisticbox>div.info>span.text {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--textColorLight);
}

div.statisticbox.lg>div.info>span.text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.15000000596046448px;
}


div.statisticbox>div.progressbar {
  position: absolute;
  bottom: -4px;
  left: 0px;
  height: 15px;
  width: 100%;
  max-width: 100%;
  z-index: -1;
  border-bottom-left-radius: var(--defaultBorderRadius);
  border-bottom-right-radius: var(--defaultBorderRadius);
  box-shadow: var(--defaultBoxShadow);
}



/* STATISTIC BOX - ED */
div.statisticbox.selected {
  background-color: var(--statisticboxSelectedBackgroundColor) !important;
  transition: 0.2s;
}

div.statisticbox.selected::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  color: var(--primaryTextColor);
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: var(--defaultBorderRadius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--defaultBoxShadow);
  background-color: var(--statisticboxSelectedIconBackgroundColor);
  z-index: 99;
  -webkit-animation: scale-in 0.2s;
  animation: scale-in 0.2s;
}


/* STATISTIC BOX - DISABLED */
div.statisticbox.disabled>i.icon,
div.statisticbox.disabled>span.icon {
  background-color: rgba(0, 0, 0, 0.12) !important;
}

div.statisticbox.disabled>div.progressbar {
  background-color: rgba(0, 0, 0, 0.26) !important;
  box-shadow: none;
}






/* BUSSINESS BOX - LOCALIZADOR DE EMPRESAS */
div.bussiness-box {
  position: relative;
  padding: 1rem 0.75rem;
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
  border: 1px solid var(--inputBorderColor);
  border-radius: var(--defaultBorderRadius);
  color: var(--inputColor);
}

div.bussiness-box.disabled {
  background-color: #f5f5f5;
  border: none;
}

div.bussiness-box span.bussiness-box-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1.2rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  font-size: 16px;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

div.bussiness-box.filled span.bussiness-box-title {
  color: var(--inputLabelColor);
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

div.bussiness-box div.bussiness-box-body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

div.bussiness-box div.bussiness-box-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
}

div.bussiness-box div.bussiness-box-actions button.modal-buscar-empresas,
div.bussiness-box div.bussiness-box-actions button.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 35px;
  height: 35px;
}

div.bussiness-box div.bussiness-box-actions button.dropdown-toggle:after {
  display: none;
}

div.bussiness-box div.bussiness-box-actions button.modal-buscar-empresas:hover,
div.bussiness-box div.bussiness-box-actions button.dropdown-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

div.bussiness-box div.bussiness-box-actions button.modal-buscar-empresas {
  display: flex;
}

div.bussiness-box div.bussiness-box-actions div.dropdown {
  display: none;
}

div.bussiness-box.filled div.bussiness-box-actions button.modal-buscar-empresas {
  display: none;
}

div.bussiness-box.filled div.bussiness-box-actions div.dropdown {
  display: unset;
}

div.bussiness-box div.bussiness-box-actions ul.dropdown-menu button {
  display: flex;
  align-items: center;
  background: transparent;
  gap: 8px;
  font-size: 20px;
}

div.bussiness-box div.bussiness-box-actions ul.dropdown-menu button span {
  font-size: 18px;
}

div.bussiness-box.disabled div.bussiness-box-actions {
  display: none;
}

div.bussiness-box .empresa-reserva {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.875rem;
  width: calc(100% - 58px);
  overflow-x: hidden;
  text-wrap: nowrap;
  text-overflow: ellipse;
}

div.bussiness-box.disabled .empresa-reserva {
  width: 100%;
  padding-right: 0.875rem;
  background-color: var(--inputBackgroundColor);
  border: 1px solid var(--inputBorderColor);
  border-radius: 4px;
}



.title-field {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  color: var(--primaryTextColor);
}

.value-field {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--primaryTextColor);
}


div.empty-state {
  width: 100%;
  max-width: 720px;
  margin: 80px auto;
  text-align: center;
}

div.empty-state h4 {
  margin: 0;
}

div.empty-state p {
  margin: 20px 0px 40px 0px;
}

div.empty-contas {
  width: 100%;
  max-width: 720px;
  margin: 80px auto;
  text-align: center;
}


.checkbox-card,
.checkbox-card:hover,
.checkbox-card:active {
  padding: 6px 20px;
  min-width: 160px;
  margin: 4px;
  background-color: var(--checkboxCardBackgroundColor) !important;
  color: var(--checkboxCardColor) !important;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}

.checkbox-card>input {
  width: 1px;
  height: 1px;
}

.checkbox-card>i {
  margin-right: 8px;
}

.checkbox-card.selected {
  background-color: var(--checkboxCardSelectedBackgroundColor) !important;
  color: var(--checkboxCardSelectedColor) !important;
}

div.input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  transform: translateX(80px);
}

div.input-group input.search-input {
  width: 70%;
  max-width: 400px;
  text-align: center;
  padding-left: 28px;
  font-size: 13px;
}

div.input-group input.search-input:focus {
  text-align: left;
  padding-left: 35px;
}

div.input-group button.procurar-hospedes {
  margin-left: -30px !important;
  padding: 6px 12px;
  height: 100%;
}

.title-novo {
  justify-content: end;
  font-size: 14pt;
  font-weight: 700;
  color: var(--primaryTextColor);
  padding-bottom: 20px;
}

.btn-action {
  font-size: 12pt;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  height: 40px;
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.div-btn {
  display: flex;
  align-items: center;
  /* centraliza verticalmente */

}

.btn-action:hover {
  opacity: 0.3;
}

.productaction {
  background-color: #ff8f00;
}

.serviceaction {
  background-color: #1976D2;
}

.lavanderiaaction {
  background-color: #20B2AA;
}

.paymentaction {
  background-color: #388E3C;
}

.chargebackaction {
  background-color: #6A5ACD;
}

.transferaction {
  background-color: #DA70D6;
}

.splitaction {
  background-color: #D3D3D3;
}

.tabela-lancamentos {

  padding-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.lanca-periodo {
  padding: 20px 0px 20px 0px;
}

.resumo-container,
.actions-row {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

div.card-info,
div.payment-details {
  justify-content: center;
}

.label-card-info {
  text-align: center;
  margin: 15px;
}

.payments-list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

div.value-pay {
  padding: 30px;
  justify-content: space-between;
}

span.info {
  font-weight: bold;
  color: var(--primaryTextColor);
  font-size: 20px
}

;

div.account-info {
  padding: 0px 30px 15px 30px;
  justify-content: space-between;
}


.resumo-conta,
.resumo-saldo {
  flex: 1 1 calc(50% - 10px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  box-sizing: border-box;
}


.resumo-conta .titulo,
.resumo-saldo .titulo {
  font-size: 14pt;
  font-weight: 700;
  color: var(--primaryTextColor);
  padding-bottom: 20px;
}

.resumo-container .title {
  font-size: 12pt;
  font-weight: 700;
  color: var(--primaryTextColor);
  white-space: normal;
  word-break: break-word;
}

.resumo-container .value {
  text-align: center;
  font-size: 12pt;
  font-weight: 400;
  color: var(--textColorLight);
}

.resumo-container .value-start {
  text-align: start;
  font-size: 12pt;
  font-weight: 400;
  color: var(--textColorLight);
}

@media (max-width: 768px) {

  .tabela-responsividade table,
  .tabela-responsividade thead,
  .tabela-responsividade tbody,
  .tabela-responsividade th,
  .tabela-responsividade td,
  .tabela-responsividade tr {
    display: block;
    width: 100%;
  }

  .label-rest-fecha-conta {
    display: none;
  }

  .rest-fecha-conta {
    font-size: x-small;
  }

  .btn-rest-fecha-conta {

    width: 120px;
  }

  .tabela-responsividade {
    overflow-x: auto;
    width: 100%;
  }

  .tabela-responsividade thead tr {
    display: none;
  }

  .tabela-responsividade tr {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.5rem;
  }

  .tabela-responsividade td {
    padding: 0.5rem;
    text-align: right;
    position: relative;
  }

  .tabela-responsividade td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    text-align: left;
    font-weight: bold;
  }

  .resumo-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .resumo-conta,
  .resumo-saldo {
    width: 80% !important;
    min-width: unset;
    flex: unset;
    margin-top: 0;
  }

  div.chartbox {
    margin-top: 32px;
  }

  .resumo-container .title {
    white-space: normal;
    word-break: break-word;
  }
}

@media (min-width: 769px) {
  .tabela-responsividade-wrapper {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: auto;
    display: block;
  }
}


@media (max-width: 1024px) {
  
    .form-control,
    .form-select, 
    .btn-primary,
    .btn-secondary,
    .btn-cancel
    {
        font-size: 0.9em; 
        padding: 8px 10px; 
        height: 40px; 
    }
}

    
    


div.chartbox div.content {
  height: 140px;
  padding: 0px 8px;
}

div.chartbox div.header {
  padding: 8px;
  border-bottom: 1px solid var(--dividerColor);
}

div.chartbox div.footer {
  padding: 8px;
  border-top: 1px solid var(--dividerColor);
}

table.tabela-extratos th,
table.tabela-extratos td {
  min-width: 118px;
}

table.tabela-saldos .vlpagar {
  color: var(--primaryTextColor);
}


@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  40% {
    transform: rotate(0deg);
  }

  45% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0eg);
  }

  55% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}



@keyframes scale-in {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}



@keyframes show-sofly {
  0% {
    opacity: 0;
  }
}