@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);
@import url(https://d3e54v103j8qbb.cloudfront.net/fonts/inter/inter.s3.3a4044b2f3.css);
*,
*:after,
*:before, html, h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-size: 100%;
  list-style-type: none;
  cursor: default;
}
body .row {
  margin: 0;
}

input[type=number].form-control::-webkit-outer-spin-button,
input[type=number].form-control::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Para Firefox */
input[type=number].form-control {
  -moz-appearance: textfield !important;
}

/* Para remover completamente o estilo padrão */
input[type=number].form-control {
  appearance: none !important;
}

.btn-return {
  border: 1px solid rgba(180, 121, 69, 0.66);
  border-radius: 50px;
  padding: 1.5rem 3.5rem;
  margin: 20px 0;
  font-size: 1.2em;
  font-weight: 500;
  color: #B47945;
  text-decoration: none;
  text-transform: none;
}
.btn-return:hover {
  background-color: rgba(180, 121, 69, 0.66);
  border: none;
  color: #FFFBF7;
}

.btn-next {
  border-radius: 25px;
  font-weight: 500;
  font-size: 1.3em;
  color: #FFFBF7;
}
.btn-next img {
  width: 30px;
  padding-right: 7px;
}

.btn-prev {
  background-color: #fff;
  border: none;
  padding: 20px;
  margin: 0;
}

.btn-plus {
  border-radius: 50px;
  text-wrap: nowrap;
  background-color: #e4b180;
  padding: 1.5rem 3.5rem;
  font-size: 1.2em;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  color: #fffbf7;
  z-index: 100;
  margin: 20px 0 20px -60px;
}
.btn-plus:hover {
  background-color: rgba(180, 121, 69, 0.66);
  color: #fff;
}

.btn-brownie {
  position: relative; /* Permite posicionar o spinner dentro do botão */
  border-radius: 50px;
  background-color: rgba(180, 121, 69, 0.66);
  padding: 1.5rem 3.5rem;
  margin: 20px 0;
  font-size: 1.2em;
  font-weight: 700;
  text-wrap: nowrap;
  text-decoration: none;
  border: 0;
  color: #fffbf7;
  z-index: 100;
}
.btn-brownie:disabled {
  background-color: #ccc; /* Cor cinza para indicar que o botão está desativado */
  cursor: not-allowed;
  opacity: 0.5; /* Opcional: reduz a opacidade para indicar que está desabilitado */
}
.btn-brownie:hover {
  background-color: #e4b180;
  color: #fff;
}
.btn-brownie .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1); /* Light grey */
  border-left: 4px solid rgba(180, 121, 69, 0.66); /* Color do spinner */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
  position: absolute; /* Posiciona o spinner dentro do botão */
  top: 50%; /* Centraliza verticalmente */
  left: 50%; /* Centraliza horizontalmente */
  transform: translate(-50%, -50%); /* Ajusta o posicionamento para o centro do botão */
  display: none; /* Inicialmente escondido */
}
.btn-brownie .hidden-text {
  display: inline; /* Mostra o texto inicialmente */
}
.btn-brownie .hidden-text.hide {
  display: none; /* Esconde o texto quando a classe hide é adicionada */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-google {
  display: none;
  background-color: #EA4335;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1em;
  margin: 10px;
  padding: 1.25em 2em;
  color: #FFFBF7;
}
.btn-google .fa-google {
  font-size: 1.4em;
  padding: 0 5px;
}
.btn-google:hover {
  background-color: #FFFBF7;
  border: 1px solid #EA4335;
  color: #EA4335;
}

.btn-facebook {
  display: none;
  background-color: #486CB4;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 1em;
  margin: 10px;
  padding: 1.25em 3em;
  color: #FFFBF7;
}
.btn-facebook .fa-facebook-f {
  font-size: 1.4em;
  padding: 0 5px;
}
.btn-facebook:hover {
  opacity: 90%;
  border: 1px solid #486CB4;
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .btn-brownie {
    border-radius: 50px;
    background-color: rgba(180, 121, 69, 0.66);
    padding: 1.25rem 3rem;
    margin: 20px 0;
    font-size: 1.1em;
    font-weight: 700;
    text-wrap: nowrap;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
  }
  .btn-brownie:hover {
    background-color: #e4b180;
    color: #fff;
  }
  .btn-plus {
    border-radius: 50px;
    text-wrap: nowrap;
    background-color: #e4b180;
    padding: 1.25rem 3em;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
    margin: 20px 0 0 -60px;
  }
  .btn-plus:hover {
    background-color: rgba(180, 121, 69, 0.66);
    color: #fff;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .btn-brownie {
    border-radius: 50px;
    background-color: rgba(180, 121, 69, 0.66);
    padding: 1.15rem 2.5rem;
    font-size: 1em;
    font-weight: 600;
    text-wrap: nowrap;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
  }
  .btn-brownie:hover {
    background-color: #e4b180;
    color: #fff;
  }
  .btn-plus {
    border-radius: 50px;
    text-wrap: nowrap;
    background-color: #e4b180;
    padding: 1.25rem 3em;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
    margin: 0 0 0 -60px;
  }
  .btn-plus:hover {
    background-color: rgba(180, 121, 69, 0.66);
    color: #fff;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .btn-brownie {
    border-radius: 50px;
    background-color: rgba(180, 121, 69, 0.66);
    padding: 1.25rem 3rem;
    font-size: 1em;
    font-weight: 600;
    text-wrap: nowrap;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
  }
  .btn-brownie:hover {
    background-color: #e4b180;
    color: #fff;
  }
  .btn-plus {
    border-radius: 50px;
    text-wrap: nowrap;
    background-color: #e4b180;
    padding: 1.25rem 3em;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
    margin: 0 0 0 -60px;
  }
  .btn-plus:hover {
    background-color: rgba(180, 121, 69, 0.66);
    color: #fff;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .btn-brownie {
    border-radius: 50px;
    background-color: rgba(180, 121, 69, 0.66);
    padding: 1.25rem 3rem;
    font-size: 1.3em;
    font-weight: 600;
    text-wrap: nowrap;
    text-decoration: none;
    border: 0;
    color: #fffbf7;
    z-index: 100;
  }
  .btn-brownie:hover {
    background-color: #e4b180;
    color: #fff;
  }
  .btn-plus {
    padding: 1rem 1.6rem;
    border-radius: 50px;
    font-size: 1.2em;
    text-wrap: nowrap;
    background-color: #e4b180;
    color: #fff;
    margin: 10px 0;
  }
  .btn-plus:hover {
    background-color: rgba(180, 121, 69, 0.66);
    color: #fff;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .btn-brownie {
    width: 100%;
    background-color: rgba(180, 121, 69, 0.66);
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 500;
    padding: 1rem 2.3rem;
    color: #fffbf7;
    z-index: 100;
  }
  .btn-brownie:hover {
    background-color: #e4b180;
    color: #fff;
  }
  .btn-plus {
    padding: 1rem 1.6rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-wrap: nowrap;
    background-color: #e4b180;
    color: #fff;
    margin: 10px 0;
  }
  .btn-plus:hover {
    background-color: rgba(180, 121, 69, 0.66);
    color: #fff;
  }
}
.flash-message {
  max-width: 90%;
  width: 400px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease-in-out;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
}

.close-btn:hover {
  color: #333;
}

.flash-message + .flash-message {
  margin-top: 15px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login {
  background-image: url("../../../_img/bg/bg-home.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login .login-content {
  min-width: 400px;
  background: #fff;
  padding: 80px 30px 30px;
  border-radius: 25px;
  border: 1px solid rgba(180, 121, 69, 0.5019607843);
}
.login .login-content .login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login .login-content .login-header .login-brand {
  width: 90%;
}
.login .login-content .login-header .login-title {
  position: relative;
  top: -15px;
  left: 110px;
}
.login .login-content .form-login {
  margin-top: 50px;
}
.login .login-content .form-login a {
  color: rgba(180, 121, 69, 0.5019607843);
}
.login .login-content .form-login a:hover {
  color: rgba(114, 76, 42, 0.7254901961);
}
.login .login-content .form-login input {
  width: 100%;
  height: 55px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(180, 121, 69, 0.5019607843);
}

.recovery {
  background-image: url("../../_img/bg/bg-home.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recovery .recovery-content {
  width: 700px;
  background: #fff;
  padding: 80px 30px 30px;
  border-radius: 25px;
  border: 1px solid rgba(180, 121, 69, 0.5019607843);
  box-shadow: 10px 10px 10px rgba(180, 121, 65, 0.3);
}
.recovery .recovery-content .recovery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recovery .recovery-content .recovery-header .recovery-brand {
  width: 70%;
  margin-bottom: 25px;
}
.recovery .recovery-content .recovery-header .recovery-title {
  font-size: 2.5em;
  color: #b47945;
  margin-bottom: 20px;
}
.recovery .recovery-content input.code-verify {
  margin: 0 auto;
  max-width: 250px !important;
  height: 80px;
  text-align: center;
  font-size: 3em;
  border: 2px solid rgba(180, 121, 69, 0.5019607843);
  border-radius: 15px;
}
.recovery .recovery-content input.code-verify:focus {
  box-shadow: 1px 1px 10px rgba(180, 121, 69, 0.8);
}
.recovery .recovery-content input.form-focus {
  border: 2px solid rgba(180, 121, 69, 0.5019607843) !important;
}
.recovery .recovery-content input.form-focus:focus {
  box-shadow: 1px 1px 5px rgba(180, 121, 69, 0.8);
}
.recovery .recovery-content .form-recovery {
  margin-top: 50px;
}
.recovery .recovery-content .form-recovery .form-label {
  font-size: 1.2em;
  color: #b47945;
  margin-bottom: 10px;
}
.recovery .recovery-content .form-recovery .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 1px solid rgba(180, 121, 69, 0.5019607843) !important;
}
.recovery .recovery-content .form-recovery .form-control:focus {
  border-bottom: 2px solid #b47945;
  box-shadow: none;
}
.recovery .recovery-content .form-recovery .form-control::placeholder {
  color: rgba(180, 121, 69, 0.5019607843);
}
.recovery .recovery-content .form-recovery .recovery-text {
  padding: 20px 0;
}
.recovery .recovery-content .form-recovery .recovery-text h2 {
  font-size: 2em;
}
.recovery .recovery-footer {
  display: flex;
  justify-content: space-between;
}
.recovery .modal-recovery {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid red;
  position: absolute;
  z-index: 1000;
}
.recovery .modal-recovery .modal-content {
  width: 500px;
  height: 300px;
  background: #fff;
  border-radius: 25px;
  border: 1px solid rgba(180, 121, 69, 0.5019607843);
  margin: 0 auto;
  margin-top: 300px;
  padding: 20px;
  display: flex;
}
.recovery .modal-recovery .modal-content .modal-header {
  display: flex;
  justify-content: flex-end;
}
.recovery .modal-recovery .modal-content .modal-header .close {
  font-size: 1.7em;
  cursor: pointer;
}
.recovery .modal-recovery .modal-content .modal-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  margin-bottom: 20px;
  height: 200px;
}

.header-content {
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(180, 121, 69, 0.66);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.header-content .nav-toggle {
  padding: 10px;
  font-size: 1.5rem;
  color: rgba(180, 121, 69, 0.66);
  cursor: pointer;
}
.header-content .brand .brand-link .brand-img {
  padding-left: 20px;
  width: 80%;
}
.header-content .search-bar .input-group {
  width: 500px;
  border: 1px solid rgba(180, 121, 69, 0.2);
  border-radius: 50px;
}
.header-content .search-bar .input-group .input-group-text {
  background-color: rgba(180, 121, 69, 0.66);
  border-radius: 50px;
  color: #FFFBF7;
}
.header-content .search-bar .input-group input {
  border-radius: 50px;
}
.header-content .profile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  cursor: pointer;
}
.header-content .profile .icon-notification {
  padding: 10px;
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}
.header-content .profile .icon-notification .quantity-message {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  display: none;
}
.header-content .profile .profile-option {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header-content .profile .profile-option .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 15px;
  background-color: #B47945;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-content .profile .profile-option .profile-img .fa-user {
  font-size: 1.5em;
  color: #FFFBF7;
}
.header-content .profile .profile-option .menu-profile {
  padding: 0 5px;
}
.header-content .profile .modal-menu {
  display: none;
  width: 210px;
  position: absolute;
  top: 75px;
  right: 25px;
  background-color: #FFFBF7;
  border: 1px solid rgba(180, 121, 69, 0.2);
  border-radius: 0 0 7px 7px;
  padding: 10px 20px 10px 0;
  z-index: 1;
  text-align: right;
}
.header-content .profile .modal-menu .menu-list {
  list-style: none;
}
.header-content .profile .modal-menu .menu-list .menu-item {
  padding: 7px 0;
}
.header-content .profile .modal-menu .menu-list .menu-item .menu-link {
  text-decoration: none;
  text-transform: none;
  color: #B47945;
  font-weight: 500;
}
.header-content .profile .modal-menu .menu-list .menu-item .menu-link i {
  padding-left: 10px;
}

.sidebar {
  min-width: 400px;
  width: 20%;
  height: 100%;
  box-shadow: 0 5px 5px #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .navigation {
  height: 100%;
  overflow-y: scroll;
  /* Para Firefox */
  scrollbar-width: thin; /* Pode ser auto, thin ou none */
  scrollbar-color: rgba(180, 121, 69, 0.66) #ecf0f1; /* Cor do thumb e do track */
  /* Para navegadores baseados em WebKit (Chrome, Edge, Safari) */
}
.sidebar .navigation::-webkit-scrollbar {
  width: 30px; /* Largura da barra */
}
.sidebar .navigation::-webkit-scrollbar-track {
  background: #928477; /* Cor do fundo da barra */
  border-radius: 10px; /* Bordas arredondadas */
}
.sidebar .navigation::-webkit-scrollbar-thumb {
  background: rgba(180, 121, 69, 0.66); /* Cor ao passar o mouse */
  border-radius: 10px; /* Bordas arredondadas */
}
.sidebar .navigation::-webkit-scrollbar-thumb:hover {
  background: rgba(180, 121, 69, 0.66); /* Cor ao passar o mouse */
}
.sidebar .navbar {
  padding: 20px 0 0 25px;
}
.sidebar .navbar .navbar-nav {
  width: 100%;
}
.sidebar .navbar .navbar-nav .nav-item .nav-link {
  padding: 10px 0 10px 7px;
  font-size: 1.4rem;
  font-weight: 400;
}
.sidebar .navbar .navbar-nav .nav-item .nav-link .icon {
  color: rgba(180, 121, 69, 0.66);
  padding-right: 7px;
}
.sidebar .navbar .navbar-nav .nav-item .active {
  width: 100%;
  background-color: rgba(180, 121, 69, 0.8);
  font-weight: 600;
  color: #FFFBF7;
}
.sidebar .navbar .navbar-nav .nav-item .active .icon {
  color: #FFFBF7;
}
.sidebar .navbar .navbar-nav .dropdown .dropdown-menu {
  padding: 0 0 5px 0;
  border-radius: 0;
}
.sidebar .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  padding: 10px 0 10px 12px;
  font-size: 1.2rem;
}
.sidebar .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  color: #FFFBF7;
  background-color: rgba(180, 121, 69, 0.7);
}
.sidebar .navbar .navbar-nav .dropdown .dropdown-item.active, .sidebar .navbar .navbar-nav .dropdown .dropdown-item:active {
  background-color: rgba(180, 121, 69, 0.7);
}
.sidebar .sidebar-footer {
  background-color: #B47945;
  height: 50px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  color: white;
}
.sidebar .sidebar-footer .nav-link-logout {
  color: #FFFBF7;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.sidebar.collapsed {
  width: 0 !important;
  min-width: 0 !important;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .sidebar {
    position: absolute;
    z-index: 1000;
    background-color: #fff;
    height: 100vh;
    transition: transform 0.3s ease;
    transform: translateX(0);
  }
  .sidebar.collapsed {
    transform: translateX(-100%);
  }
  .content.collapsed {
    margin-left: 0;
  }
}
.main-content {
  width: 100%;
  overflow-y: scroll;
  padding: 20px;
  /* Para Firefox */
  scrollbar-width: thin; /* Pode ser auto, thin ou none */
  scrollbar-color: rgba(180, 121, 69, 0.66) #ecf0f1; /* Cor do thumb e do track */
  /* Para navegadores baseados em WebKit (Chrome, Edge, Safari) */
}
.main-content::-webkit-scrollbar {
  width: 30px; /* Largura da barra */
}
.main-content::-webkit-scrollbar-track {
  background: #928477; /* Cor do fundo da barra */
  border-radius: 10px; /* Bordas arredondadas */
}
.main-content::-webkit-scrollbar-thumb {
  background: rgba(180, 121, 69, 0.66); /* Cor ao passar o mouse */
  border-radius: 10px; /* Bordas arredondadas */
}
.main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 188, 118, 0.66); /* Cor ao passar o mouse */
}

.content.collapsed {
  margin-left: 0;
  transition: all 0.3s ease;
}

.notification {
  display: none;
  flex-direction: column;
  justify-content: end;
}
.notification .modal-notification {
  background: #FFFBF7;
  width: 20%;
  height: calc(100% - 80px);
  border: 2px solid #B47945;
  padding: 20px;
  position: absolute;
  top: 80px;
  right: 10px;
  z-index: 2000;
}

.dashboard {
  display: block;
  height: 89vh;
  padding: 10px 15px;
}
.dashboard header {
  padding-bottom: 10px;
}
.dashboard .dash {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 7px;
}
.dashboard .dash .dash-status {
  width: 100%;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 10px;
}
.dashboard .dash .dash-status .counter-budget, .dashboard .dash .dash-status .counter-budget-progress, .dashboard .dash .dash-status .counter-budget-final, .dashboard .dash .dash-status .counter-budget-value {
  width: 100%;
  color: rgba(180, 121, 69, 0.66);
}
.dashboard .dash .dash-status .counter-budget .counter-title, .dashboard .dash .dash-status .counter-budget-progress .counter-title, .dashboard .dash .dash-status .counter-budget-final .counter-title, .dashboard .dash .dash-status .counter-budget-value .counter-title {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 500;
}
.dashboard .dash .dash-status .counter-budget .counter-value, .dashboard .dash .dash-status .counter-budget-progress .counter-value, .dashboard .dash .dash-status .counter-budget-final .counter-value, .dashboard .dash .dash-status .counter-budget-value .counter-value {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 4rem;
  font-weight: 700;
  line-height: 5rem;
}
.dashboard .budget-report {
  margin-top: 50px;
  min-height: 450px;
  background-color: #FFFBF7;
  margin-bottom: 20px;
}
.dashboard .budget-report header {
  padding-top: 10px;
}

.dash-modal-info {
  border: 1px solid #00FF00;
  display: none;
  background-color: rgba(44, 62, 80, 0.5);
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.dash-modal-info .modal-content {
  background-color: #FFFBF7;
  padding: 20px;
  border-radius: 15px;
  max-width: 700px;
  overflow-y: auto;
}
.dash-modal-info .modal-content .modal-header {
  height: 50px;
  margin-bottom: 10px;
  border-bottom: 1px solid #8F8173;
}

body {
  background-color: #fffbf7;
  font-family: Inter, sans-serif;
  color: #000;
  min-height: 100%;
}
body .content {
  width: 100%;
  min-height: auto;
  height: calc(100vh - 80px);
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
