@import "interactive-report-grid.css";
@import "new-grid.css";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');


:root {
  --font-headings: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --blue: #0179A8;
  --indigo: #346CB0;
  --purple: #5F4B8B;
  --pink: #C74A4A;
  --red: #EA6759;
  --orange: #f26128;
  --yellow: #F7C46C;
  --green: #A7C796;
  --teal: #00A28A;
  --cyan: #3686A0;
  --white: #ffffff;
  --gray: #888c9b;
  --gray-dark: #222230;
  --primary: #283756;
  --secondary: #f6f7f9;
  --success: #00A28A;
  --info: #0179A8;
  --warning: #F7C46C;
  --danger: #C74A4A;
  --light: #f6f7f9;
  --dark: #222230;

}

@media (min-width: 768px) {
  .stacked-menu .menu-link {
    padding-top: .275rem;
    padding-bottom: .275rem;
    font-size: .95rem;
    line-height: 1.75rem;
  }
}


body {
  font-family: var(--font-body);
}

.QueryViewer-card {
  background-color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 5px;
}

.qv-card-element-value {
  color: var(--orange);
  font-weight: 700;
  font-family: var(--font-mono);
}

.PopupHeader {
  background-color: var(--primary);
}

.badge-pulse {
  animation: badgePulse 1.4s ease-in-out infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
    /* bootstrap danger red */
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.85);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
  }
}

.badge-pulse {
  animation: badgePulse 1.4s ease-in-out infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
    /* bootstrap danger red */
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.85);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
  }
}


/* Finix form */
#finix-form-container input {
  height: 36px !important;
}

.bg-light-red {
  background-color: #ff000036;
}

.gap-2 {
  gap: 0.5rem;
}

.NumericAtt {
  font-weight: 400;
  font-family: var(--font-mono);
}

.MonoAtt {
  font-family: var(--font-mono);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-headings);
  font-weight: 700;
}

.text-dark a {
  color: var(--dark) !important;
}

.card-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.card-header a {
  text-decoration: none;
}

.card-color-dark {
  border-left: 7px solid var(--dark);
}

.card-color-success {
  border-left: 7px solid var(--success);
}

.card-color-warning {
  border-left: 7px solid var(--warning);
}

.card-color-danger {
  border-left: 7px solid var(--danger);
}

.card-color-info {
  border-left: 7px solid var(--info);
}

.card-color-secondary {
  border-left: 7px solid var(--secondary);
}

.NewLayout .Attribute,
.NewLayout .ReadonlyAttribute {
  height: 1.8125rem !important;
  min-height: unset;
}

.NewLayout .ReadonlyAttribute {
  padding: 0.1rem 0.75rem;
}

.NewLayout .Attribute {
  padding: 0 0.75rem;
}

.NewLayout .bootstrap-select>.dropdown-toggle {
  height: 1.8125rem !important;
}

.NewLayout .filter-option-inner-inner {
  margin-top: -3px;
}

.NewLayout .form-group {
  margin-bottom: 0;
}

.FreeStyleGrid .TableDetail {
  padding: 5px 5px;
  border-bottom: 1px solid rgba(20, 20, 31, 0.12);
  border-radius: 0;
}

.FreeStyleGrid .row {
  margin-bottom: 0;
}

.scroll-225 {
  max-height: 225px;
  overflow-y: auto;
  overflow-x: hidden;
}

.scroll-500 {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.GridNoHead thead {
  display: none;
}

table[data-gx-grid-nodata] {
  display: none;
}

.TableDetail {

  border-right: none !important;
  border-left: none !important;
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
}

.TableDetail tr {
  /* border: 1px solid rgb(196, 196, 196); */
  border: 1px solid rgba(20, 20, 31, 0.12);
  border-right: 0;
  border-left: 0;
}

.TableDetail td {
  padding: 5px 10px;
}

.Grid {
  border-collapse: collapse;
}

.Grid thead th {
  padding: 5px;
}

.Grid tbody tr {
  border: 1px solid rgba(20, 20, 31, 0.12);
}

.Grid td {
  padding: 5px;
}

.Grid .Column,
.Grid .ActionColumn {
  overflow: hidden;
  padding-left: 5px;
  padding-right: 10px;
  white-space: nowrap;
  width: 1%;
  text-align: left;
  text-overflow: ellipsis;
}

.Grid .ActionColumn {
  width: 30px !important;
  text-align: center !important;
}

.card-heading {
  padding: 10px;
  margin-bottom: 0;
}

#stopwatch-value {
  font-size: 1.8rem;
  font-weight: 600;
}

.CSEMainTable .row {
  margin-bottom: 0;
}

.page-title {
  font-size: 1.5rem;
}

.WorkWithTitle {
  font-weight: 600;
}

.stacked-menu-has-compact>.menu>.menu-item>.menu-link .menu-icon {
  font-size: 1.8em;
  line-height: 1.5;
}

.auth-header {
  background-color: var(--primary);
}

.app-header-dark {
  background-color: #283756;
  color: #f26128;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
}

/* 
.btn-primary {
  color: #212529;
  border-color: #F5A800;
  background-color: #F5A800;
} */
/* 
.btn-primary:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
} */

.stacked-menu>.menu>.menu-item.has-active>.menu-link {
  color: #F5A800;
}

.stacked-menu .menu-item.has-active>.menu-link .menu-icon {
  color: #F5A800;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #F5A800;
}

.paymentform {
  min-height: 250px;
}

[data-gx-checkbox-title] {
  padding-left: 15px;
}

.bs-select-all {
  display: none;
}

#hoops-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999999;
  background: rgba(0, 0, 0, 0.4);
}

#hoops-loader::before {
  content: unset;
}


.gx-basic-tab .nav-tabs {
  padding: 0;
}

.gx-basic-tab .nav-tabs>li {
  list-style: none;
  margin: 0 5px;
  padding: 0;
  display: inline-block;
}

.gx-basic-tab .tab-pane {
  display: none;
}

.gx-basic-tab .tab-pane.active {
  display: block;
}

.gx-basic-tab .hidden {
  display: none !important;
}

.gx-attribute {
  position: relative;
}

.AutoSaveAtt {
  padding-left: 20px;
}

/* "Special" combos (selectpicker) */
.savedIndicatorSelectPicker {
  position: absolute;
  top: 5px;
  right: -15px;
}

/* Normal input */
.savedIndicatorNormal {
  position: absolute;
  top: 5px;
  right: -7px;
}

/* switches */
.savedIndicatorSwitch {
  position: absolute;
  top: 2px;
  right: -15px;
}

.MobileFreestyleGrid>.row:nth-child(even) {
  background: #ffffff;
}

.RadioButtons input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.RadioButtons label {
  /* display: inline-block;
  padding: 10px 20px; */
  border-radius: 4px;
  margin: 0;
  color: #363642;
  background: linear-gradient(to bottom, #ffffff, #f6f7f9);
  border-color: #d7dce5;
  box-shadow: 0 1px 0 0 rgba(20, 20, 31, 0.05);
  height: 1.8125rem;
  font-size: 0.8125rem;
}

.RadioButtons label.active {
  color: #ffffff;
  background: #346CB0;
  border-color: #346CB0;
}


.note-editor .card-header {
  padding: 0 0 5px 5px !important;
}

/* .note-btn::after {
  display: none;
} */

.metric-row .metric {
  min-height: unset !important;
}

.metric {
  padding: .6rem .6rem;
}

.dropdown-icon {
  display: inline-block;
}


.header-nav .nav-link {
  padding-right: 5px;
  padding-left: 5px;
}

.tile {
  font-size: .75rem !important;
}

.dhx_menu_icon.icon_workorder {
  background-image: url('scheduler/imgs_dhx_material/dollar.png');
}

.section-block {
  margin-top: 0 !important;
}

.WorkWith tfoot {
  border: 0 !important;

}

.WorkWith tbody {
  border-bottom: 1px solid #D3D3D3FF !important;
}

html.gx-popup-document {
  overflow: hidden;
  overflow-y: auto;
}

.form-control-sm {
  height: 1.8125rem !important;
}

span.ReadonlyAttribute.has-prompt:before {
  margin-right: 7px;
  font-family: fa-light-300;
  content: "\f002";
  color: #346CB0;
}

span.ReadonlyAttribute.has-prompt a {
  text-decoration: none;
  color: unset;
}

.btn:focus,
.btn.focus {
  box-shadow: none;
}

input[type=radio] {
  margin-right: 5px;

}

DIV.gx-button {
  margin-right: 0;
}

DIV.gx-button>input[type=button] {
  margin-right: 5px;

}

.flatpickr-monthSelect-month.selected {
  background-color: #346caf;
  color: #fff;
}

.flatpickr-months .flatpickr-month {
  height: 45px;
}

.flatpickr-current-month input.cur-year {
  margin-top: 5px;
}

.form-group-no-margin .gx-form-group {
  margin-bottom: 0 !important;
}

.form-group-no-margin .gx-action-group {
  margin-top: -5px;
}

.form-group-no-margin .bootstrap-select {
  margin-top: -4px;
}

div.StepTabs UL.nav-tabs {
  display: inherit;
}

div.StepTabs>UL.nav-tabs {
  display: none;
}

.ViewTabs .tab-pane {
  padding: 20px 0;
}

.ViewTabs .nav-tabs>li>a {
  padding: 10px;
}

.ViewTabs .nav-tabs {
  border-bottom: 1px solid rgba(34, 34, 48, .1) !important;
  margin: 0;
}

/* .steps,div.StepTabs UL.nav-tabs
{
	display: inherit !important;
}
 */
.HideTabs>UL.nav-tabs {
  display: none !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: #346CB0;
  border-color: unset;
}

.border-secondary {
  border-color: #88898b !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background: #346CB0;
  /* color: unset; */
}

span.flatpickr-weekday {
  color: white;
}

.GridEditable .form-control-sm:not(.ReadonlyAttribute) {
  margin-top: 5px !important;
  margin-bottom: 4px !important;
}

/* .GridFilter .custom-select {
  margin-top: -3px;
} */

.gx-grid .custom-select {
  margin-top: 0;
}

.gx-grid:not(.gx-freestyle-grid) .form-control-sm {
  margin-top: 6px;
}

.gx-grid div.bootstrap-select {
  margin-top: unset;
}

/* @media (min-width: 768px) {
   .custom-select {
     height: 1.8125rem;
   }
 } */

.filters-section .gx-attribute {
  height: 34px;
  margin-top: 3px;
}

.form-inline .Attribute {
  margin-bottom: 0 !important;
}

.bs-container .dropdown-menu {
  margin-top: unset;
}

.custom-select:focus {
  box-shadow: unset;
}


.bootstrap-select.form-control-sm .dropdown-toggle {
  padding-right: 1.95rem;
}

.dropdown-item {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: unset;
  background-color: #e9e9e9 !important;
  cursor: pointer;
}

.fa-layers-counter {
  font-size: xxx-large;
  top: -5px;
  right: -5px;
}

.dropdown-item .notification-icon {
  padding-top: 5px;
}

.task-body {
  flex: initial;
}

.task-list {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0px;
}

.board {
  height: calc(100vh - 10.5rem);
  /* overflow-x: scroll !important; */
}

.board.ar-list {
  height: 100vh;
}

.page-navs.ar-list {
  display: block;
  padding-top: 12px;
  height: unset;
}

.card-footer-item {
  padding: 7px;
}

.top-bar-brand>img {
  max-height: 80%;
}

.sidebar-section-fill {
  padding-top: 0 !important;
}

@media (min-width: 1200px) {

  .has-sidebar-expand-xl.has-sidebar-fluid .page-sidebar {
    width: calc(100vw - 33rem);
    max-width: calc(100vw - 33rem);
  }


  .has-sidebar-expand-xl.has-sidebar-fluid .page-inner {
    margin-right: calc(100vw - 33rem);
  }
}


.MultiEditFSGrid {
  background-color: #f8f9fa;
  /* max-height: 600px;
  overflow-y: scroll;
  overflow-x: hidden; */
  border: 1px solid rgba(0, 0, 0, 0.125);
}

#EditgridContainerDiv {
  max-height: 600px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.MultiEditFSGrid .row:first-child .HeaderRow {
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: #f8f9fa;
}

.MultiEditFSGrid .row:not(:first-child) .HeaderRow {
  display: none;
}

.MultiEditFSGrid .HeaderRow {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.MultiEditFSGrid .HeaderRow>div>div {
  position: relative;
  height: 50px;
}

.MultiEditFSGrid .HeaderRow>div>div>span {
  padding: 5px;
  font-weight: 700;
  position: absolute;
  bottom: 0;
}

.MultiEditFSGrid .HeaderRow>div>div>span:first-child:not(:only-child) {
  bottom: 25px;
}

/* .MultiEditFSGrid .HeaderRow > div > div > span:last-child {
  bottom: 0;
} */

.MultiEditFSGrid [data-gxrow]:nth-child(odd) {
  background-color: #0000000C;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.MultiEditFSGrid [data-gxrow]:last-child {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}

.MultiEditFSGrid [data-gxrow]:first-child {
  margin-bottom: 0 !important;
  border-top: 0 !important;
}

.MultiEditFSGrid .InputRow {
  display: block;
  padding: 5px;
}

.MultiEditFSGrid .HiddenRow {
  display: none;
}

.form-control-sm.is-invalid,
.form-control-sm.is-valid {
  background-position: calc(100% - 0.35rem) calc(.375em + .08rem);
}

.form-control2,
.form-control-sm2 {
  border-radius: 0;
}

.card2 {
  border-radius: 0;
}

.btn2 {
  border-radius: 0;
}

.tile2 {
  border-radius: 0;
}

.list-group-item:not(.flush-list) {
  padding-top: 0.40rem !important;
  padding-bottom: 0.40rem !important;
  cursor: pointer;
}

.input-group2 {
  border-radius: 0 !important;
}

.input-group.focus {
  box-shadow: unset !important;
}

.filters-section label {
  text-align: left;
  justify-content: flex-start;
  color: #646464;
  margin-top: -4px;
  margin-left: -3px;

}

#FILTERS .form-row {
  gap: 5px;
  padding: 10px !important;
  /* margin-left: 40px; */
  margin-top: -5px;
  justify-content: flex-start;
}

.filters-section:before {
  font-family: fa-light-300;
  font-size: 18px;
  color: darkgrey;
  content: "\f0b0";
}

.filters-section.form-row:before {
  margin: auto 0;
  padding-left: 15px;
  padding-right: 10px;
  padding-top: 5px;
}


#FILTERS>.form-row .gx-attribute {
  margin-left: 0;
}

#FILTERS>.form-row .GridFilter,
#FILTERS>.form-row .GridFilter .custom-select {
  margin: 0;
  /* margin-bottom: 0; */
}

#FILTERS>.form-row .gx-default-form-group {
  display: unset;
  margin-bottom: 0;
  padding-top: 0;
}

#FILTERS>.form-row .gx-default-form-group>label {
  margin-left: 2px;
}

#FILTERS>.form-row .gx-form-group .GridFilter {
  margin-top: unset;
}

#FILTERS>.form-row .gx-form-item {
  padding: 0;
}

#FILTERS>.form-row .gx-attribute {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
}

.form-row .GridFilter.gx-checkbox-wrapper {
  display: inline-flex;
}

.fade {
  opacity: unset !important;
}

.dp_container img {
  margin-top: -12px;
}

.list-group-item:last-child {
  border-top: unset;
}

DIV.calendar {
  border-bottom: 1px;
  z-index: 500 !important;
}

DIV.calendar .calendar-nav {
  font-weight: normal;
}

DIV.calendar .calendarbutton {
  background-color: white;
  font-family: Arial;
  font-size: 14px;
  font-weight: 400;
  color: #2a3143;
  text-align: center;
}

DIV.calendar .calendarcombo {
  background-color: #efefef;
}

DIV.calendar .calendarcombo .label {
  padding-bottom: 2px;
  padding-top: 2px;
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #2a3143;
}

DIV.calendar TABLE {
  border-bottom-color: #b7b7b7;
  border-left-color: #b7b7b7;
  border-right-color: #b7b7b7;
  border-top-color: #b7b7b7;
  border-style: solid;
  border-width: 1px;
  border-spacing: 0;
  box-shadow: 0px 8px 10px 0px black;
  padding-top: 3px;
  height: 281px;
  width: 100%;
  max-width: 280px;
  table-layout: fixed;
}

DIV.calendar TABLE THEAD .calendartitle {
  background-color: white;
  font-family: Arial;
  font-size: 14px;
  font-weight: 400;
  color: #2a3143;
  text-align: center;
}

DIV.calendar TABLE THEAD .name {
  background-color: #f9f9f9;
  overflow: hidden;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  font-family: Arial;
  font-size: 14px;
  font-weight: 400;
  color: #2a3143;
  text-align: center;
}

DIV.calendar TABLE THEAD .daynames {
  background-color: #f9f9f9;
  border-bottom: none;
  border-top-color: #f9f9f9;
  border-top: 1px;
}

DIV.calendar TABLE THEAD TR:first-child {
  background-color: transparent;
}

DIV.calendar TABLE THEAD TR.headrow {
  background-color: white;
  width: 280px;
  color: #2a3143;
}

DIV.calendar TABLE THEAD TR {
  height: 35px;
}

DIV.calendar TABLE TBODY {
  background-color: #f9f9f9;
}

DIV.calendar TABLE TBODY .day {
  background-color: #f9f9f9;
  background-image: none;
  border-width: 0px;
  height: 24px;
  width: 27px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

DIV.calendar TABLE TBODY .hilite {
  border-bottom-color: #3c80f5;
  border-left-color: #3c80f5;
  border-right-color: #3c80f5;
  border-top-color: #3c80f5;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 1px;
  padding-left: 1px;
  padding-right: 1px;
  padding-top: 1px;
}

DIV.calendar TABLE TBODY TD.selected {
  background-color: #3c80f5;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
  color: white;
}

DIV.calendar TD.time .hour {
  background-color: white;
  border-bottom-color: #efefef;
  border-left-color: #efefef;
  border-right-color: #efefef;
  border-top-color: #efefef;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 1px;
}

DIV.calendar TD.time .minute {
  background-color: white;
  border-bottom-color: #efefef;
  border-left-color: #efefef;
  border-right-color: #efefef;
  border-top-color: #efefef;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 1px;
}

DIV.calendar TD.time .ampm {
  background-color: white;
  border-bottom-color: #efefef;
  border-left-color: #efefef;
  border-right-color: #efefef;
  border-top-color: #efefef;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 1px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 1px;
}

.login-form {
  height: 100px;
}

.email-input {
  margin-bottom: 0;
}

.login-form .password-input-wrapper {
  overflow: hidden;
  height: 0;
  transition: height .5s linear;
}

.login-form.show-pass .password-input-wrapper {
  height: 50px
}

.login-form.show-pass .email-input {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.login-form.show-pass .password-input {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.AttributeTFACode {
  font-size: 2rem;
  height: 60px;
  letter-spacing: 15px;
  text-align: center !important;
  color: #6c6c6c !important;
}

.password-change-form div:first-child input {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.password-change-form div:last-child input {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.top-bar-brand {
  background-color: unset !important;
}

.butteruptoast.custom {
  background-color: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #282828;
  font-family: 'Figtree' sans-serif;
  font-size: 1rem;
}

.butteruptoast.custom.success {
  background-color: #00A28A !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: hsl(0, 0%, 100%);
}

.butteruptoast.custom.error {
  background-color: #C74A4A !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #fff;
}

.butteruptoast.custom.warning {
  background-color: #F7C46C !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #000;
}

.butteruptoast.custom.info {
  background-color: #888c9b !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  color: #fff;
}