
.appBottomMenu {
  min-height: 56px;
  position: fixed;
  z-index: 999;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #DCDCE9;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: env(safe-area-inset-bottom);
}

.appBottomMenu.no-border {
  border: 0 !important;
  box-shadow: 0 !important;
}

.appBottomMenu .item {
  font-size: 9px;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  height: 56px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.appBottomMenu .item:before {
  content: '';
  display: block;
  height: 2px;
  border-radius: 0 0 10px 10px;
  background: transparent;
  position: absolute;
  left: 4px;
  right: 4px;
  top: 0;
}

.appBottomMenu .item .col {
  width: 100%;
  padding: 0 4px;
  text-align: center;
}

.appBottomMenu .item .icon,
.appBottomMenu .item ion-icon {
  display: inline-flex;
  margin: 1px auto 3px auto;
  font-size: 24px;
  line-height: 1em;
  color: #27173E;
  display: block;
  margin-top: 1px;
  margin-bottom: 3px;
}

    .appBottomMenu .item .action-button {
        display: inline-flex;
        width: 50px;
        height: 50px;
        margin-left: -5px;
        margin-right: -5px;
        align-items: center;
        justify-content: center;
        border-radius: 200px;
        background: #fab758;
    }

.appBottomMenu .item .action-button.large {
  width: 60px;
  height: 60px;
  margin-top: -20px;
  margin-left: -10px;
  margin-right: -10px;
}

.appBottomMenu .item .action-button .icon,
.appBottomMenu .item .action-button ion-icon {
  color: #FFF !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.appBottomMenu .item strong {
  margin-top: 4px;
  display: block;
  color: #27173E;
  font-weight: 400;
}

.appBottomMenu .item:active {
  opacity: .8;
}

    .appBottomMenu .item.active:before {
        background: #fab758;
    }

    .appBottomMenu .item.active .icon,
    .appBottomMenu .item.active ion-icon,
    .appBottomMenu .item.active strong {
        color: #fab758 !important;
        font-weight: 500;
    }

.appBottomMenu .item:hover .icon,
.appBottomMenu .item:hover ion-icon,
.appBottomMenu .item:hover strong {
  color: #27173E;
}

.appBottomMenu.text-light {
  color: #FFF;
}

.appBottomMenu.text-light .item {
  color: #FFF;
  opacity: .7;
}

.appBottomMenu.text-light .item .icon,
.appBottomMenu.text-light .item ion-icon,
.appBottomMenu.text-light .item strong {
  color: #FFF;
}

.appBottomMenu.text-light .item.active {
  opacity: 1;
}

.appBottomMenu.text-light .item.active .icon,
.appBottomMenu.text-light .item.active ion-icon,
.appBottomMenu.text-light .item.active strong {
  color: #FFF !important;
}

.appBottomMenu.bg-primary, .appBottomMenu.bg-secondary, .appBottomMenu.bg-success, .appBottomMenu.bg-warning, .appBottomMenu.bg-danger, .appBottomMenu.bg-info, .appBottomMenu.bg-light, .appBottomMenu.bg-dark {
  border: 0;
}

.appBottomMenu.bg-primary .item:before, .appBottomMenu.bg-secondary .item:before, .appBottomMenu.bg-success .item:before, .appBottomMenu.bg-warning .item:before, .appBottomMenu.bg-danger .item:before, .appBottomMenu.bg-info .item:before, .appBottomMenu.bg-light .item:before, .appBottomMenu.bg-dark .item:before {
  display: none;
}




.appBottomMenu .badge {
  min-width: 16px;
  height: 16px;
  line-height: 1em !important;
  font-size: 10px;
  padding: 0 4px !important;
  position: absolute;
  right: 50%;
  transform: translateX(120%);
  top: 6px;
}

.appBottomMenu .badge-empty {
  transform: translateX(200%);
  top: -1px;
}



body.dark-mode .appBottomMenu {
  background: #161129;
  border-top-color: #2d1f3b;
}

body.dark-mode .appBottomMenu .item .icon,
body.dark-mode .appBottomMenu .item ion-icon,
body.dark-mode .appBottomMenu .item strong {
  color: #fff;
}

body.dark-mode .appBottomMenu .item:hover .icon,
body.dark-mode .appBottomMenu .item:hover ion-icon,
body.dark-mode .appBottomMenu .item:hover strong {
  color: #fff;
}

body.dark-mode .appBottomMenu.bg-light {
  background: #fff !important;
}

body.dark-mode .appBottomMenu.bg-light .item .icon,
body.dark-mode .appBottomMenu.bg-light .item ion-icon,
body.dark-mode .appBottomMenu.bg-light .item strong {
  color: #27173E;
}


