.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;
}

.suggestionContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.suggestionItem {
  border: 1px solid var(--borderColor);
  padding: 5px 15px;
  margin-top: 5px;
  margin-right: 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.selected {
  background-color: var(--primaryColor);
  color: var(--textWhiteActivated);
  border: 1px solid var(--primaryColor);
}
