.bodyContainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contentContainerMobile {
  height: calc(100% - 70px);
  overflow: auto;
  padding-bottom: 50px;
}

.contentContainer {
  height: calc(100vh - 250px);
  overflow: auto;
  padding-bottom: 50px;
}

.headerContainer {
  background-color: var(--primaryColor);
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.titleHeaderWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}

.headerBtn {
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerTitleLabel {
  color: var(--textWhiteActivated);
  font-size: 1rem;
  font-weight: 600;
}
