html,
body {
  height: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
}

:root {
  --primary-light-color: var(--platform-primary-color);
  --primary-dark-color: var(--platform-primary-color);
  --secondary-color: var(--platform-secondary-color);
  --shadow-primary-color: #a2b0da83;
  --background-interface: #F0F2F5;
  --background-light: #FAFAFA;
  --border-color-card: #ddd;
  --default-text: #777;
  --light-text: #999;
  --dark-text: #555;
}

/* Geral */

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.navigation {
  margin-bottom: 1rem;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  list-style: none;
  border-radius: .25rem;
}

.navigation-item {
  display: flex;
  font-weight: 400;
}

.navigation-item.active {
  color: var(--default-text);
}

.navigation-item+.navigation-item {
  padding-left: .5rem;
}

.navigation-item+.navigation-item::before {
  display: inline-block;
  padding-right: .5rem;
  color: var(--default-text);
  content: "/";
}

.navigation-item:hover {
  color: var(--default-text);
}

/* Buttons */

.btn-primary {
  background-color: var(--platform-primary-color);
  border-color: var(--platform-primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
}

.btn-primary:focus {
  background-color: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
  box-shadow: 0 0 0 .2rem var(--shadow-primary-color);
}

.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
  box-shadow: 0 0 0 .2rem var(--shadow-primary-color);
}

/* MENU */
.sider-menu-left {
  width: 305px;
  height: 100%;
  border-right: 1px solid var(--border-color-card);
  float: left;
}

.main {
  width: calc(100% - 305px);
  float: left;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.main-header {
  min-height: 70px;
  width: 100%;
  background: #f8f9fc;
  display: flex;
}

.main-body {
  background: #F8F9FC;
  min-height: 100%;
}

.title-main-application {
  display: block;
  float: left;
  width: calc(100% - 400px);
  font-size: 20px;
  font-weight: 600;
  color: var(--platform-text-color);
  padding: 14px 0px 0px 24px;
}

.extra-selec-header {
  display: block;
  float: left !important;
  width: 300px;
  padding: 9px;
}

.selectPlatform {
  color: #777;
  padding: 8px;

  a.selectPlatform:hover {
    color: var(--secondary-color) !important;
  }
}

.link-platform {
  font-weight: bold;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  cursor: pointer;
}

.select-environment {
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
  height: 50px;
  width: fit-content;
}

.select-platform {
  margin: 10px;
  padding: 10px;
  display: flex;
  font-size: 18px;
}

.select-environment .icon-select {
  display: block;
  float: left;
  width: 23px;
  height: 23px;
}

.select-environment .title-select {
  display: block;
  float: left;
  width: calc(100% - 32px);
  color: var(--platform-text-color);
  height: 23px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-environment .subtitle-select {
  display: block;
  float: left;
  width: 100%;
  color: #777;
  font-size: 10px !important;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-environment .arrow-select {
  position: absolute;
  right: 9px;
  color: #ddd;
  top: 15px;
}

.select-environment:hover {
  background: #fff;
  border: 1px solid #ddd;
}

.dropdown {
  display: none;
  position: absolute;
  box-shadow: 0 .10rem 0.55rem 0 rgba(58, 59, 69, .15) !important;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 9999;
  border-radius: 3px;
  padding: 32px;
  max-height: 500px;
  max-width: 100%;
  overflow: auto;
}

.dropdown-environment {
  width: 900px;
  right: 15px;
  top: 55px;
}

.dropdown-platforms {
  width: 250px;
  right: 300px;
  top: 55px;
  padding: 20px;
}


#openListOrganizations {
  color: var(--platform-text-color);
  display: block;
  width: 100%;
  height: 39px;
}

.select-environment:hover .dropdown-environment {
  display: block !important;
}

.dropdown-environment:hover>.select-environment {
  background: #fff;
}

.user-data {
  display: block;
  float: left;
  width: 70px;
  padding: 14px;
}

.user-data:hover,
.extra-icons-header:hover {
  cursor: pointer;
  background: var(--background-light);
}

.extra-icons-header {
  display: block;
  float: left !important;
  width: 50px;
  padding: 22px 5px;
  text-align: center;
}

.extra-icons-header:hover a i {
  -webkit-text-fill-color: var(--platform-secondary-color) !important;
  color: var(--platform-secondary-color) !important;
}

.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes licitar_bounce {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-5px);
  }
}

@keyframes licitar_bounce {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.licitar_bounce {
  -webkit-animation-name: licitar_bounce;
  animation-name: licitar_bounce;
}

.badge-counter {
  right: -5px !important;
  top: 2px !important;
  display: inline-block;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background-color: var(--platform-danger-color);
  right: 0;
  top: 0;
  color: #fff;
  font-size: 9px;
  font-family: arial;
  text-align: center;
  line-height: 13px;
  font-weight: 700;
  opacity: 1;
  letter-spacing: 0;
  -webkit-animation: licitar_bounce 1.5s linear infinite;
  animation: licitar_bounce 1.5s linear infinite;
}

.photo-user {
  background-image: url("../_src/assets/images/usuario.png") !important;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  float: left !important;
  border-radius: 50%;
  margin: 0px;
  position: relative;
}

.photo-user i {
  position: absolute;
  right: 4px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid #11c26d;
  border-radius: 100%;
  background: #11c26d;
}

.user-name {
  display: block;
  float: left;
  width: 300px;
  padding: 5px 10px;
  line-height: 1;
}

.user-name span {
  display: block;
  color: var(--default-text);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-name small {
  display: block;
  color: var(--light-text);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-menu {
  background: var(--platform-primary-color);
  width: 70px;
  height: 100%;
  display: block;
  float: left;
}

.item-menu {
  padding: 8px 3px;
  min-height: 72px;
  text-align: center;
  height: 72px;
  margin: 3px 0px 3px 3px;
}

.item-menu-view {
  padding: 8px 3px;
  min-height: 72px;
  text-align: center;
  height: 72px;
  margin: 3px 0px 3px 3px;
}

#icon-tangerin-original {
  display: none;
}

.icon-main-menu {
  width: 100%;
  padding: 13px 0px;
}

.icon-item-menu {
  font-size: 28px;
  color: #fff;
}

.item-menu.active {
  background: #fff;
  border-radius: 3px 0 0 3px;
}

.item-menu.active #icon-tangerin-original {
  display: block;
}

.item-menu.active #icon-tangerin-white {
  display: none;
}

.item-menu.active .text-item-menu {
  color: var(--platform-primary-color);
}

.item-menu.active .icon-item-menu {
  color: var(--platform-primary-color);
}

.item-menu.active .icon-main-tangerin {
  fill: var(--platform-primary-color);
}

.app-menu {
  position: absolute;
  bottom: 0px;
  width: 70px;
}

.text-item-menu {
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
}

.menu-module {
  display: block;
  float: left;
  width: 100%;
  max-height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.menu-module:hover {
  overflow-y: auto;
}

.header-title-menu {
  padding: 10px 16px;
}

.header-title-menu h3,
.header-title-menu small {
  color: var(--default-text);
  margin: 0px;
}

.header-title-menu small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin-left: -40px;
  padding: 3px 16px;
  cursor: pointer;
  width: 234px;
  height: 38px;
}

.menu-list li:hover {
  background: var(--background-light);
}

.menu-list li a {
  text-decoration: none;
  color: var(--default-text);
}

.menu-list li a svg {
  margin-top: 3px;
  display: block;
  float: left;
  width: 25px;
  height: 25px;
  fill: var(--default-text);
}

.menu-list li a span {
  margin-top: 0px;
  display: block;
  float: left;
  height: 30px;
  padding: 8px 6px 6px 6px;
  max-width: 228px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 228px;
}

.item-module {
  display: none;
}

.item-module.active {
  display: block;
}

/* CONTAINER */

.tabs-content {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 1px;
}

.tg-container {
  padding: 20px;
}

.card-header {
  background: #fff;
}

.card-footer {
  background: #fff;
}

/* FORM */

.material-textfield {
  position: relative;
}

.material-textfield label {
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--default-text);
  padding: 0 0.3rem;
  margin: 0px 8px;
  transition: .1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}

.material-textfield input {
  font-size: 1rem;
  outline: none;
  border: 1px solid var(--border-color-card);
  border-radius: 5px;
  padding: 16px 8px 4px 10px;
  color: var(--default-text);
  transition: 0.1s ease-out;
  width: 100%;
}

.material-textfield input:focus {
  border-color: var(--platform-primary-color);
}

.material-textfield input:focus+label {
  color: var(--platform-primary-color);
  top: 0;
  transform: translateY(9%) scale(.8);
}

.material-textfield input:not(:placeholder-shown)+label {
  top: 0;
  transform: translateY(9%) scale(.8);
}

.sidebar-heading {
  padding: 0px;
  margin-left: -20px;
  font-weight: 400;
  color: #777;
  margin-top: 8px;
  border-bottom: 1px solid #ddd;
  margin-right: 8px;
  margin-bottom: 8px;
}

.user-data {
  position: relative;
}

#alertsDropdown {
  position: relative;
}

#fieldBox {
  width: 300px;
}

.copyright {
  padding: 15px;
}

/* ICONES LICITAR */

.menu-icon {
  background-color: #777;
  float: left;
  width: 24px;
  height: 24px;
  margin: 5px;
}

.header-icon {
  background-color: #777;
  float: left;
  width: 28px;
  height: 28px;
  display: block;
  margin: 5px;
}

.icon-clockload {
  -webkit-mask: url('../fonts/icons/clockload.svg') no-repeat center;
  mask: url('../fonts/icons/clockload.svg') no-repeat center;
}

.icon-dashboard {
  -webkit-mask: url('../fonts/icons/dashboard.svg') no-repeat center;
  mask: url('../fonts/icons/dashboard.svg') no-repeat center;
}

.icon-play {
  -webkit-mask: url('../fonts/icons/play.svg') no-repeat center;
  mask: url('../fonts/icons/play.svg') no-repeat center;
}

.icon-signer {
  -webkit-mask: url('../fonts/icons/signer.svg') no-repeat center;
  mask: url('../fonts/icons/signer.svg') no-repeat center;
}

.icon-chart {
  -webkit-mask: url('../fonts/icons/chart.svg') no-repeat center;
  mask: url('../fonts/icons/chart.svg') no-repeat center;
}

.icon-tax {
  -webkit-mask: url('../fonts/icons/tax.svg') no-repeat center;
  mask: url('../fonts/icons/tax.svg') no-repeat center;
}

.icon-list-add {
  -webkit-mask: url('../fonts/icons/list-add.svg') no-repeat center;
  mask: url('../fonts/icons/list-add.svg') no-repeat center;
}

.icon-card {
  -webkit-mask: url('../fonts/icons/card.svg') no-repeat center;
  mask: url('../fonts/icons/card.svg') no-repeat center;
}

.icon-cart {
  -webkit-mask: url('../fonts/icons/cart.svg') no-repeat center;
  mask: url('../fonts/icons/cart.svg') no-repeat center;
}

.icon-checklist {
  -webkit-mask: url('../fonts/icons/checklist.svg') no-repeat center;
  mask: url('../fonts/icons/checklist.svg') no-repeat center;
}

.icon-flag {
  -webkit-mask: url('../fonts/icons/flag.svg') no-repeat center;
  mask: url('../fonts/icons/flag.svg') no-repeat center;
}

.icon-doc {
  -webkit-mask: url('../fonts/icons/doc.svg') no-repeat center;
  mask: url('../fonts/icons/doc.svg') no-repeat center;
}

.icon-layers {
  -webkit-mask: url('../fonts/icons/layers.svg') no-repeat center;
  mask: url('../fonts/icons/layers.svg') no-repeat center;
}

.icon-demandas-contract {
  -webkit-mask: url('../fonts/icons/demandas-contract.svg') no-repeat center;
  mask: url('../fonts/icons/demandas-contract.svg') no-repeat center;
}

.icon-demandas-canceled {
  -webkit-mask: url('../fonts/icons/demandas-canceled.svg') no-repeat center;
  mask: url('../fonts/icons/demandas-canceled.svg') no-repeat center;
}

.icon-demandas-published {
  -webkit-mask: url('../fonts/icons/demandas-published.svg') no-repeat center;
  mask: url('../fonts/icons/demandas-published.svg') no-repeat center;
}

.icon-login {
  -webkit-mask: url('../fonts/icons/login.svg') no-repeat center;
  mask: url('../fonts/icons/login.svg') no-repeat center;
}

.icon-bank {
  -webkit-mask: url('../fonts/icons/bank.svg') no-repeat center;
  mask: url('../fonts/icons/bank.svg') no-repeat center;
}

.icon-people {
  -webkit-mask: url('../fonts/icons/people.svg') no-repeat center;
  mask: url('../fonts/icons/people.svg') no-repeat center;
}

.icon-lock {
  -webkit-mask: url('../fonts/icons/lock.svg') no-repeat center;
  mask: url('../fonts/icons/lock.svg') no-repeat center;
}

.icon-help {
  -webkit-mask: url('../fonts/icons/help.svg') no-repeat center;
  mask: url('../fonts/icons/help.svg') no-repeat center;
}

.icon-link {
  -webkit-mask: url('../fonts/icons/link.svg') no-repeat center;
  mask: url('../fonts/icons/link.svg') no-repeat center;
}

.icon-notification {
  -webkit-mask: url('../fonts/icons/notification.svg') no-repeat center;
  mask: url('../fonts/icons/notification.svg') no-repeat center;
}

.icon-search {
  -webkit-mask: url('../fonts/icons/search.svg') no-repeat center;
  mask: url('../fonts/icons/search.svg') no-repeat center;
}

.icon-database {
  -webkit-mask: url('../fonts/icons/database.svg') no-repeat center;
  mask: url('../fonts/icons/database.svg') no-repeat center;
}

.icon-heart {
  -webkit-mask: url('../fonts/icons/heart.svg') no-repeat center;
  mask: url('../fonts/icons/heart.svg') no-repeat center;
}

.icon-fire {
  -webkit-mask: url('../fonts/icons/fire.svg') no-repeat center;
  mask: url('../fonts/icons/fire.svg') no-repeat center;
}

.icon-business {
  -webkit-mask: url('../fonts/icons/business.svg') no-repeat center;
  mask: url('../fonts/icons/business.svg') no-repeat center;
}

.icon-person {
  -webkit-mask: url('../fonts/icons/person.svg') no-repeat center;
  mask: url('../fonts/icons/person.svg') no-repeat center;
}

.icon-money {
  -webkit-mask: url('../fonts/icons/money.svg') no-repeat center;
  mask: url('../fonts/icons/money.svg') no-repeat center;
}

.icon-money-circle {
  -webkit-mask: url('../fonts/icons/moneyCircle.svg') no-repeat center;
  mask: url('../fonts/icons/moneyCircle.svg') no-repeat center;
}

.icon-auction {
  -webkit-mask: url('../fonts/icons/auction.svg') no-repeat center;
  mask: url('../fonts/icons/auction.svg') no-repeat center;
}

.icon-code {
  -webkit-mask: url('../fonts/icons/code.svg') no-repeat center;
  mask: url('../fonts/icons/code.svg') no-repeat center;
}

.icon-calendar {
  -webkit-mask: url('../fonts/icons/calendar.svg') no-repeat center;
  mask: url('../fonts/icons/calendar.svg') no-repeat center;
}

.icon-settings {
  -webkit-mask: url('../fonts/icons/settings.svg') no-repeat center;
  mask: url('../fonts/icons/settings.svg') no-repeat center;
}

.icon-informations {
  -webkit-mask: url('../fonts/icons/informations.svg') no-repeat center;
  mask: url('../fonts/icons/informations.svg') no-repeat center;
}

.icon-box {
  -webkit-mask: url('../fonts/icons/box.svg') no-repeat center;
  mask: url('../fonts/icons/box.svg') no-repeat center;
}

.icon-net {
  -webkit-mask: url('../fonts/icons/net.svg') no-repeat center;
  mask: url('../fonts/icons/net.svg') no-repeat center;
}

.icon-radar {
  -webkit-mask: url('../fonts/icons/radar.svg') no-repeat center;
  mask: url('../fonts/icons/radar.svg') no-repeat center;
}

.icon-edit {
  -webkit-mask: url('../fonts/icons/edit.svg') no-repeat center;
  mask: url('../fonts/icons/edit.svg') no-repeat center;
}

.icon-megaphone {
  -webkit-mask: url('../fonts/icons/megaphone.svg') no-repeat center;
  mask: url('../fonts/icons/megaphone.svg') no-repeat center;
}

.icon-provider {
  -webkit-mask: url('../fonts/icons/provider.svg') no-repeat center;
  mask: url('../fonts/icons/provider.svg') no-repeat center;
}

.icon-enter {
  -webkit-mask: url('../fonts/icons/enter.svg') no-repeat center;
  mask: url('../fonts/icons/enter.svg') no-repeat center;
}

.icon-balance {
  -webkit-mask: url('../fonts/icons/balance.svg') no-repeat center;
  mask: url('../fonts/icons/balance.svg') no-repeat center;
}

.icon-puzzle {
  -webkit-mask: url('../fonts/icons/puzzle.svg') no-repeat center;
  mask: url('../fonts/icons/puzzle.svg') no-repeat center;
}

.icon-data {
  -webkit-mask: url('../fonts/icons/data.svg') no-repeat center;
  mask: url('../fonts/icons/data.svg') no-repeat center;
}

.icon-delete {
  -webkit-mask: url('../fonts/icons/excluir.svg') no-repeat center;
  mask: url('../fonts/icons/excluir.svg') no-repeat center;
}

.icon-magic {
  -webkit-mask: url('../fonts/icons/magic.svg') no-repeat center;
  mask: url('../fonts/icons/magic.svg') no-repeat center;
}

.icon-newspaper {
  -webkit-mask: url('../fonts/icons/newspaper.svg') no-repeat center;
  mask: url('../fonts/icons/newspaper.svg') no-repeat center;
}

.icon-materials {
  -webkit-mask: url('../fonts/icons/materials.svg') no-repeat center;
  mask: url('../fonts/icons/materials.svg') no-repeat center;
}

.icon-information {
  -webkit-mask: url('../fonts/icons/information.svg') no-repeat center;
  mask: url('../fonts/icons/information.svg') no-repeat center;
}

.icon-marketplace {
  -webkit-mask: url('../fonts/icons/marketplace.svg') no-repeat center;
  mask: url('../fonts/icons/marketplace.svg') no-repeat center;
}

.icon-order {
  -webkit-mask: url('../fonts/icons/order.svg') no-repeat center;
  mask: url('../fonts/icons/order.svg') no-repeat center;
}

.icon-close {
  -webkit-mask: url('../fonts/icons/close.svg') no-repeat center;
  mask: url('../fonts/icons/close.svg') no-repeat center;
}

.icon-check {
  -webkit-mask: url('../fonts/icons/check.svg') no-repeat center;
  mask: url('../fonts/icons/check.svg') no-repeat center;
}

.header-title-menu {
  height: 70px;
}

.logo-mob {
  display: none;
}

.menu-module {
  transition: background-color 0.5s ease;
}

#boxPaginationSearch {
  float: right;
}

#menu-mobile {
  display: none;
  font-size: 25px;
  cursor: pointer;
  color: var(--platform-primary-color);
  width: 34px;
  margin-right: 8px;
  float: left;
  padding: 0px;
  color: #777;
}

#menu-disabled {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 8px;
  cursor: pointer;
}

.icon-select-small {
  display: none;
}

/* RESPONSIVE OPTIONS */

@media only screen and (max-width: 1380px) {

  .menu-module {
    background: var(--platform-white-color);
    z-index: 9;
    top: 0px;
    position: absolute;
    height: 100%;
    width: 70px;
    border-right: 1px solid var(--border-color-card);
    z-index: 9999;
  }

  .menu-module:hover {
    width: 305px;
  }

  .sider-menu-left {
    width: 70px;
  }

  .logo-desk {
    display: none;
  }

  .logo-mob {
    display: block;
  }

  .header-title-menu {
    padding: 18px 12px;
  }

  .sidebar-heading {
    white-space: nowrap;
    color: var(--platform-white-color);
    overflow: hidden;
  }

  .menu-icon {
    width: 32px;
    background-color: var(--platform-primary-color);
  }

  .menu-list li a span {
    opacity: 0;
    display: none;
  }

  .menu-module:hover {
    background-color: #fff;
  }

  .menu-module:hover .menu-list li a span {
    display: block;
  }

  .menu-module:hover .sidebar-heading {
    color: #777;
  }

  .menu-module:hover .logo-mob {
    display: none;
  }

  .menu-module:hover .logo-desk {
    display: block;
  }

  .menu-module:hover .menu-icon {
    width: 24px;
    background-color: #777;
  }

  .menu-module:hover .menu-list li a span {
    opacity: 1;
  }

  .main {
    width: calc(100% - 70px);
  }

  .item-menu.active {
    background: var(--platform-primary-color);
  }

  .item-menu.active .icon-main-tangerin {
    fill: #fff;

  }

  .item-menu.active .text-item-menu {
    color: #fff;
  }

  .item-menu:hover {
    background: #fff;
  }

  .item-menu:hover .icon-main-tangerin {
    fill: var(--platform-primary-color);
  }

  .item-menu:hover .text-item-menu {
    color: var(--platform-primary-color);
  }

}


@media only screen and (max-width: 600px) {

  .title-main-application {
    width: calc(100% - 70px);
    font-size: 22px;
    padding: 20px 5px;
  }

  body .sider-menu-left {
    display: none;
  }

  body.menu-active .sider-menu-left {
    display: block;
    width: 100%;
  }

  body .main {
    width: 100%;
  }

  #menu-mobile {
    display: inline-block;
  }

  #menu-disabled {
    display: block;
  }

  .menu-module {
    background: var(--platform-primary-color);
    z-index: 9;
    top: 0px;
    left: 0px !important;
    position: absolute;
    height: 100%;
    width: 100% !important;
    border-right: 1px solid var(--border-color-card);
    z-index: 9999;
    background: #fff !important;
  }

  .extra-icons-header {
    display: none !important;
  }

  .new-select {
    border-radius: 3px 3px !important;
    margin-bottom: 4px !important;
  }

  #filterSuggestedForYou {
    padding-top: 13px !important;
  }

  #boxPaginationSearch {
    float: none;
  }

  .box-grid {
    width: auto !important;
  }

  .pagination {
    max-width: 100%;
    width: 100%;
    padding: 10px;
    display: block;
    height: 80px;
  }

  .pagination li.page-item {
    float: left;
    width: 30px;
    height: 30px;
  }

  .pagination .page-item .page-link {
    font-size: 12px !important;
  }

  .new-select label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  #titleApplication {
    display: block;
    float: left;
    width: calc(100% - 70px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .user-data {
    width: 70px;
  }

  .user-name {
    display: none;
  }

  #openListOrganizations .icon-select,
  #openListOrganizations .title-select,
  #openListOrganizations .subtitle-select,
  #openListOrganizations .arrow-select {
    display: none;
  }

  #openListOrganizations .icon-select-small {
    display: block;
    font-size: 30px;
    color: #777;
  }

  .extra-selec-header {
    width: 70px;
  }

  .select-environment {
    text-align: center;
  }

  .dropdown-environment {
    width: 100%;
    right: 0px;
    left: 0px;
  }

  .logo-desk {
    display: block;
  }

  .menu-icon {
    width: 24px;
    background-color: #777;
  }

  .menu-list li a span {
    opacity: 1;
    display: inline-block;
  }

}

#page-top {
  height: 100% !important;
}

.menu-list li.disabled a {
  cursor: not-allowed;
}

.menu-list li.disabled a div.menu-icon {
  opacity: 0.5;
}

.menu-list li.disabled a span {
  opacity: 0.5;
}

.option {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  border-bottom: 1px solid #ddd;
}

.option:hover {
  background-color: var(--platform-light-gray);

}

/* Temporary badge (NEW!) */
.new-feat {
  position: relative;
  right: 2.2rem;
  top: 1rem;
  font-size: 9px;
  border-radius: 5px;
  padding: 0px 4px;
  background-color: var(--platform-primary-color);
  color: #fff;
  font-weight: bold;
  height: 16px;
  line-height: 1.8;
}
