#menu {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  padding-bottom: 5px;
  padding-top: 5px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  display: flex;
  gap: var(--gap-general);
  flex-direction: row;
  justify-content: space-between;
  z-index: 2;
  background-color: var(--color-bg-sidebar);
  height: 55px;
  background: -moz-linear-gradient(0deg, #18181a 0%, #0f244b 100%);
  background: -webkit-linear-gradient(0deg, #18181a 0%, #0f244b 100%);
  background: linear-gradient(0deg, #18181a 0%, #0f244b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#18181a", endColorstr="#0f244b", GradientType=1);
}
#menu.active {
  transition: all ease 0.2s;
}
#menu > div {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  flex-direction: row;
  gap: var(--gap-general);
}
#menu .btnMenu {
  color: var(--color-black);
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  position: relative;
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.5;
  cursor: pointer !important;
}
#menu .btnMenu.active {
  opacity: 1;
}
#menu .btnMenu:hover {
  opacity: 1;
}
#menu .btnMenu:hover .icon {
  color: var(--color-white);
}
#menu .btnMenu img {
  width: 21px;
  height: 21px;
  z-index: 0;
}
#menu .btnMenu .icon {
  font-size: 21px;
  color: var(--color-white);
}
#menu .btnMenu span {
  z-index: 1;
  color: var(--color-white);
  font-size: var(--font-size-menu);
}
#menu .btnMenu#btnPerfil {
  gap: 0;
}
#menu .btnMenu#btnPerfil .img {
  opacity: 1;
  display: flex;
  margin: 0;
}
#menu .btnMenu#btnPerfil .img.active {
  border-color: rgba(164, 164, 164, 0.7);
}
#menu .btnMenu#btnPerfil .img img {
  width: 24px;
  height: 24px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #494b56;
  font-size: 90%;
  border: 2px solid var(--color-line-perfil);
  opacity: 1;
  background-color: var(--color-white);
}
#menu .btnMenu#btnNotification .numAlerts {
  position: absolute;
  font-size: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 5px;
  border-radius: 20px;
  left: 50%;
  min-width: 8px;
  top: -9px;
  opacity: 0;
  z-index: 1;
  background: #f44336;
  color: #ffffff;
}
#menu .btnMenu#btnNotification .numAlerts.on {
  opacity: 1;
}
#menuTop {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  position: relative;
  top: 0;
  right: 0;
  border: 1px solid var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all ease 0.2s;
}
#menuTop .btnMenuTop .icon {
  font-size: 21px;
}
#menuTop .left {
  padding-left: 25px;
}
#menuTop .left .btnMenuTop {
  display: flex;
  flex-wrap: wrap;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px;
}
#menuTop .left .btnMenuTop .icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menuTop .logo {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#menuTop .logo img {
  height: 38px;
}
#menuTop .logo span {
  font-size: 16px;
  line-height: 21px;
  margin: 0;
  padding: 0;
}
#menuTop .right {
  padding-right: 25px;
}
.boards {
  position: absolute;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: calc(100vh - (55px + 10px));
  top: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #d9dbe1;
  z-index: 1;
  overflow: hidden;
}
.boards .board {
  display: none;
  width: 100%;
  height: 100%;
}
.boards .board.active {
  display: inline-block;
}
#home #boardHome {
  padding: 15px 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}
#home #boardHome .bannerHome .banner img {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
}
#home #boardHome > .message {
  text-align: center;
}
#home #boardHome .periodo {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  height: calc(100vh - 140px);
  flex-direction: column;
  gap: 10px;
}
#home #boardHome .periodo .header {
  font-size: 21px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
#home #boardHome .periodo .header #actionsPeriod {
  font-size: 16px;
  font-weight: 500;
}
#home #boardHome .periodo .form {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr ;
  grid-template-columns: 1fr 1fr 1fr  1fr;
  gap: 20px;
  padding: 0;
  height: fit-content;
}
#home #boardHome .periodo .factura {
  display: flex;
  min-height: 140px;
  max-height: 150px;
  background: #e8e8e8;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--color-line);
  margin-bottom: 0;
}
#home #boardHome .periodo .factura img {
  max-height: 120px;
  border-radius: 7px;
}
#home #boardHome .periodo .factura .btnRemoveFileItem {
  position: absolute;
  right: -7px;
  top: -7px;
  background: white;
  border-radius: 20px;
}
#home #boardHome .periodo .factura .btnRemoveFileItem .icon {
  font-size: 21px;
}
#home #boardHome .periodo .factura .btnRemoveFileItem:hover .icon {
  color: var(--color-red) !important;
}
#home #boardHome .periodo .factura .formUpFile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 0;
  position: relative;
  width: 100%;
  font-size: 13px;
  margin-bottom: 0;
}
#home #boardHome .periodo .factura .formUpFile .inner {
  gap: 3px;
}
#home #boardHome .periodo .factura .formUpFile .inner .btnFull {
  font-size: 12px;
  padding: 2px;
}
#home #boardHome .periodo .factura .formUpFile .message {
  font-size: 9px;
}
#home #boardHome .periodo .factura .formUpFile .formPreview .item img {
  width: 100%;
}
.image {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  border-right: 1px solid var(--color-line);
  position: relative;
}
.image #image-container {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  overflow: hidden;
  position: relative;
  background-color: var(--color-close-modal);
  z-index: 1;
}
.image #image-container img {
  height: 100%;
  transition: transform 0.25s ease;
}
.image .zoom-buttons {
  margin-top: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.image .zoom-buttons button {
  padding: 5px 5px 4px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.24);
  color: var(--color-white);
}
.image .zoom-buttons button .icon {
  font-size: 20px;
}
.image .topImage {
  display: none;
}
@media (max-width: 470px) {
  .btnMenu#btnPerfil {
    gap: 0;
  }
  .btnMenu#btnPerfil .img {
    opacity: 1;
    display: flex;
    margin-left: -2px;
    margin-top: -2px;
  }
  .btnMenu#btnPerfil .img.active {
    border-color: rgba(164, 164, 164, 0.7);
  }
  .btnMenu#btnPerfil .img img {
    width: 24px;
    height: 24px;
    display: flex;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #494b56;
    font-size: 90%;
    border: 2px solid var(--color-line-perfil);
    opacity: 1;
  }
  #menuTop .left {
    margin-left: 0;
    padding-left: 0px;
  }
  #menuTop .right {
    margin-right: 0;
    padding-right: 0;
  }
  #home #boardHome {
    padding: 0px 15px 15px;
  }
  #home #formHome {
    display: grid;
    grid-template-columns: 1fr 1fr  1fr !important;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr !important;
  }
}
