:root {
  --white: #fff;
  --black: #000;
  --text: #000;
  --gray: #676c73;
  --light-gray: #f3f1f1;
  --dark-gray: #464044;
  --red: #d22828;
  --light-red: #ef3e3e;
  --dark-red: #b11321;
  --blue: #3998b5;
  --light-blue: #53b5d3;
  --dark-blue: #3c7d9a;
  --green: #4cc1a1;
  --light-green: #42a78b;
  --dark-green: #329278;
  --orange: #f3af45;
  --light-orange: #ffc261;
  --dark-orange: #d8972f;
  --active: #f1f1f1;
  --disabled: #dad9d6;
  --transparent: #00000000;
  --support-000: white;
  --support-100: #F8F8F8;
  --support-200: #EFEFEF;
  --support-300: #E9E9E9;
  --support-400: #dbdbdb;
  --support-500: #C1C1C1;
  --support-600: #b5b5b5;
  /* typography */
  --font-title: "NexaBold", sans-serif;
  --font-subtitle: "NexaLight", sans-serif;
  --font-text: "PT Sans", sans-serif;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  font-family: var(--font-family-sans-serif) !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-family: var(--font-title) !important;
}

.h1,
h1 {
  font-size: 2.25rem;
}

.h3,
h3 {
  font-size: 1.75rem;
}

.h4,
h4 {
  font-size: 1.25rem;
}

.h5,
h5 {
  font-size: 1.125rem;
}

.h6,
h6 {
  font-size: 1rem;
}

.bdmg-page-title {
  font-family: var(--font-title) !important;
  font-weight: bold !important;
}

.bdmg-page-title.gray {
  color: var(--gray);
}

.bdmg-page-title.dark-gray {
  color: var(--dark-gray) !important;
}

.bdmg-pointer {
  cursor: pointer !important;
}

.bdmg-text-left {
  text-align: left !important;
}

.bdmg-text-right {
  text-align: right !important;
}

.bdmg-text-center {
  text-align: center !important;
}

.bdmg-text-end {
  text-align: end !important;
}

.bdmg-flex {
  display: flex;
  align-items: center;
  align-content: center;
}

.bdmg-flex.start {
  justify-content: flex-start;
}

.bdmg-flex.center {
  justify-content: center;
}

.bdmg-flex.end {
  justify-content: flex-end;
}

.bdmg-flex.between {
  justify-content: space-between;
}

.bdmg-flex.around {
  justify-content: space-around;
}

.bdmg-text-center {
  text-align: center;
}

.bdmg-flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/** Button style */
.mdc-button {
  border-radius: 2rem !important;
  border: 2px solid !important;
  padding: 8px 16px !important;
  box-shadow: none !important;
}

.mdc-button--raised {
  color: var(--white);
}

.mdc-button--raised.red {
  border-color: var(--red) !important;
  background-color: var(--red) !important;
  border: 0.15rem solid var(--red) !important;
}

.mdc-button--raised.red:hover {
  background-color: var(--dark-red) !important;
  border: 0.15rem solid var(--dark-red) !important;
}

.mdc-button--raised.orange {
  border-color: var(--orange) !important;
  background-color: var(--orange) !important;
  border: 0.15rem solid var(--orange) !important;
}

.mdc-button--raised.orange:hover {
  background-color: var(--dark-orange) !important;
  border: 0.15rem solid var(--dark-orange) !important;
}

.mdc-button--raised.white {
  border-color: var(--white) !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
  border: 0.15rem solid var(--white) !important;
}

.mdc-button--raised.white:hover {
  background-color: var(--support-300) !important;
  border: 0.15rem solid var(--support-300) !important;
}

.mdc-button--outlined.red {
  border-color: var(--red) !important;
  color: var(--red) !important;
  border: 2px solid var(--red) !important;
}

.mdc-button--outlined.red:hover {
  color: var(--white) !important;
  background-color: var(--red) !important;
  border: 2px solid var(--red) !important;
}

.mdc-button--outlined.orange {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}

.mdc-button--outlined.orange:hover {
  color: var(--white) !important;
  background-color: var(--orange) !important;
  border: 2px solid var(--orange) !important;
}

.mdc-button--raised .mdc-button__ripple,
.mdc-button--outlined .mdc-button__ripple {
  border-radius: 2rem !important;
}

.mdc-button__label {
  font-size: 14px;
  line-height: 18px;
  text-transform: none;
}

button:focus:not(:focus-visible) {
  outline: none;
}

/* Popover style */
.popover-wrapper {
  display: inline-block;
  position: relative;
}

.popover-wrapper .popover-content {
  width: 460px;
}

.popover__menu {
  border-radius: 4px;
  background: var(--dark-gray);
  min-width: 100%;
  padding: 0.5rem 0;
  position: absolute;
  right: 0;
  box-shadow: 0 2px 3px 0 rgba(63, 63, 68, 0.2);

  transform: scale(0.9);
  transform-origin: top left;
  display: block;
  opacity: 0;
}

.popover__menu:after {
  bottom: 100%;
  left: 0.5rem;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}


.popover--active .popover__menu {
  transform: scale(1);
  display: block;
  opacity: 1;
  z-index: 1;
}

.bdmg-notificacao {
  color: var(--white);
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 14px 16px;
}


.bdmg-notificacao.line-bottom {
  border-bottom: 1px solid var(--white);
}

.bdmg-notificacao .bdmg-notificacao-texto {
  text-align: initial;
  font-size: 14px;
}

.bdmg-notificacao-action {
  text-align: right;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.notifications-circle {
  width: 11px;
  height: 11px;
  position: absolute;
  right: 0;
  bottom: 2.367px;
  background-color: #F63D3D;
  border-radius: 50%;
}