#div-master {
  display: flex;
  justify-content: center;
}

.space {
  height: 50px;
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
}

.aside-menu {
  user-select: none;
  background-color: #2152cf;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.aside-menu .item {
  padding: 10px 10px;
  margin: 0 15px;
  display: flex;
  position: relative;
  cursor: pointer;
  align-items: center;
}

.aside-menu .item:hover {
  background: #ffffff2b;
  border-radius: 10px;
}

.aside-menu .item .item-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.aside-menu .item .item-icon {
  position: absolute;
  right: 0;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.aside-menu .item .item-icon svg path {
  fill: white;
}

.aside-menu hr {
  margin: 5px 25px;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  min-width: 0px;
  margin: 0 auto;
}

.page-container h4 {
  color: #2152cf;
  font-weight: 700;
  font-size: 22px;
}

.page-container .hr-blue {
  margin: 0 0 20px 0;
  height: 1px;
  color: #2152cf;
  background-color: #2152cf;
  border: none;
  height: 2px;
  border-radius: 5px;
}

.page-container .btn-voltar {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: max-content;
  padding: 5px;
  transition: 0.1s;
  border-radius: 10px;
}

.page-container .btn-voltar span {
  font-size: 17px;
  margin-left: 6px;
  font-weight: 600;
}

.page-container .btn-voltar svg {
  height: 14px;
  fill: currentColor !important;
}

.page-container .btn-voltar:hover {
  background-color: #f2f2f2;
}

/* Tabela de Linha */
.table {
  background-color: rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 10px 10px;
  border-radius: 10px;
}

.table p b {
  color: #2152cf;
  font-weight: bolder;
}

.table .table-line {
  padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.table .table-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.table .table-line.edit {
  padding: 5px;
}

.table .table-line:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.table .table-line .label {
  color: #808080;
  font-weight: 700;
  min-width: 50px;
  margin: 5px 15px 5px 0px;
}

.table .table-line .info {
  color: #808080;
  flex: 1 1 auto;
  text-align: right;
}

.table .table-line .info.disabled {
  color: #9e9e9e;
}

.table .table-line input.info {
  flex: 1;
  margin-left: 10px;
  text-align: right;
  border: 0;
  background-color: transparent;
  padding: 10px 0;
}

#uf-field {
  max-width: 20px;
}

.table.destaque .header {
  height: 100px;
  padding: 20px;
  background-color: #2152cf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.table.destaque .header .label {
  color: white;
  font-size: 200%;
  font-weight: 900;
}
.table.destaque .header img {
  height: 100%;
}

.table.destaque .table-line {
  padding: 15px 10px;
}

/* Tabela native */

.table-default {
  width: 100%;
  background-color: #f2f2f2;
  border-spacing: 0;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
}

.table-default td,
.table-default th {
  padding: 5px 5px;
}

.table-default thead {
  background: #2152cf;
}

.table-default thead th {
  font-size: 120%;
  font-weight: bold;
  color: #ffffff;
  /*border-left: 1px solid #ffffff;*/
}

.table-default thead th:first-child {
  /*border-left: none;*/
}

.table-default tbody td {
  font-size: 100%;
}

.table-default tbody tr:nth-child(even) {
  background: #dcdcdc;
}

.table-default .td-button {
  text-align: center;
}

.table-default .btn {
  height: 25px;
  line-height: 25px;
  font-size: 100%;
}

.table-default .btn.btn-red {
  border-radius: 50%;
}

/* Grupo do botão de salvar */
#salvar-group p {
  color: #808080;
}

#salvar-group {
  text-align: center;
}

#salvar-group h4 {
  font-size: 16px;
}

/* Conta Status */
.account-status {
  position: relative;
  color: #808080;
  font-weight: bold;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 5px;
}
.account-status p {
  margin: 0;
}
.account-status h2 {
  margin: 0 0 5px;
  font-weight: bold;
}
.account-status::after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.account-status.good::after {
  background-color: rgb(11, 164, 59);
}
.account-status.warning::after {
  background-color: rgb(234, 160, 70);
}
.account-status.danger::after {
  background-color: rgb(231, 108, 108);
}

.contato .whats-button {
  cursor: pointer;
  user-select: none;
  background-color: rgb(51, 164, 87);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.contato .whats-button span {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
.contato .whats-button svg {
  width: 20px;
  fill: white;
  margin-left: 10px;
}

/* Default */

.flex {
  display: flex;
}
.coluna {
  display: flex;
  flex-direction: column;
  margin: 5px 10px;
}
.linha {
  display: flex;
  flex-direction: row;
}
.linha:not(:last-child) {
  margin-bottom: 5px;
}
.linha span {
  text-align: right;
}
.full {
  flex: 1;
}
.bold {
  font-weight: bold;
}
.center {
  justify-content: center;
  align-items: center;
}
.ta-center {
  text-align: center;
}
.mr {
  margin-right: 5px;
}
.ml {
  margin-left: 5px;
}
.mt-20 {
  margin-top: 20px;
}
.min-50 {
  min-width: 50px;
}
.min-70 {
  min-width: 70px;
}
.w-30 {
  width: 30% !important;
}
.w-70 {
  width: 70% !important;
}
.hidden {
  display: none !important;
}

.btn-transparent {
  font-weight: 900;
  color: #2152cf;
  border: 2px solid #2152cf;
  text-transform: uppercase;
  background-color: transparent;
  user-select: none;
  outline: none;
}
.btn-transparent:hover {
  color: #fff;
  background-color: #2152cf;
}

.description {
  margin-bottom: 20px;
}

.description h4 {
  font-size: 30px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.description hr.hr-blue {
  margin-bottom: 5px;
}

.description span {
  font-size: 16px;
  color: #808080;
  font-weight: bold;
}

/* Loading*/
.loading {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #265891;
  animation: loading-animation 1s infinite;
}
@keyframes loading-animation {
  0% {
    transform: scale(0) translate(-20px);
  }
  50% {
    transform: scale(1) translate(0px);
  }
  100% {
    transform: scale(0) translate(20px);
  }
}

/* -------------- */
/* MEDIAS */
@media screen and (max-width: 768px) {
  .page-container {
    padding: 10px 10px 25px 10px;
  }
  .table-default .not-important {
    display: none;
  }
  .description h4 {
    font-size: 24px;
    line-height: 24px;
  }
  .description span {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .aside-menu {
    font-size: 10px;
  }
  .aside-menu .container .perfil {
    padding: 5px;
  }
  .aside-menu .container .itens .item {
    justify-content: center;
    padding: 10px 5px;
  }
  .aside-menu .container .itens .item .label {
    display: none;
  }
  .aside-menu .container .itens .item.foto .img-container {
    max-width: 50px;
  }
  .aside-menu .container .itens .item.foto .img-container .camera {
    width: 23px;
    height: 23px;
    bottom: 5px;
    right: 5px;
    padding: 2px;
  }

  .table-default thead th {
    font-size: 100%;
  }

  #salvar-group h4 {
    font-size: 12px;
  }
}

/* -------------- */
/* DARK MODE */

body.dark #div-master {
  background-color: #010307;
  min-height: 100vh;
}

body.dark .aside-menu .container .itens .item.active {
  background-color: #121212;
  color: #e5e5e7;
  fill: #e5e5e7;
}

/* body.dark .page-container {
  background-color: rgb(18, 18, 18);
} */

body.dark .page-container h3,
body.dark .page-container h4,
body.dark .table .table-line .info {
  color: rgb(229, 229, 231);
}
body.dark .page-container .btn-voltar:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* body.dark table {
  background-color: rgb(25, 25, 25) !important;
} */
body.dark table tr:not(.active):nth-child(even) {
  background: rgb(255, 255, 255, 0.05) !important;
}
body.dark .main-content {
  border-color: #272729;
}

body.dark .table {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

body.dark .table .table-line .label {
  color: rgb(229, 229, 231);
}

body.dark .table-default {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

body.dark .plano-beneficio {
  background-color: rgba(255, 255, 255, 0.05);
}

body.dark .plano-beneficio .beneficio {
  color: rgb(229, 229, 231);
}

body.dark #salvar-group p {
  color: rgb(229, 229, 231);
}

body.dark .account-status {
  color: rgb(229, 229, 231);
}

/* DARK THEME */
body.dark .description span {
  color: rgb(229, 229, 231);
}
