.spaceWidget {
  display: flex;
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 200;
  background: #fff;
  box-sizing: border-box;
  flex-direction: column;
  flex: 1 1 auto;


  /* IE 11 scrollbar styling workarounds */
  scrollbar-face-color: #E0E0E0;
  scrollbar-arrow-color: #E0E0E0;
  scrollbar-shadow-color: white;
  scrollbar-track-color: white;
}

.activityComponentWrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.activityComponentWrapper > div {
  display: flex;
  width: inherit;
}

.widgetBody {
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1 1 auto;
}

.hidden {
  visibility: hidden;
}

.spaceWidget .messageButton {
  background-color: #07c1e4;
}

.spaceWidget .meetButton {
  background-color: #30d557;
}

.spaceWidget .peopleButton {
  background-color: #00d6a2;
}

.spaceWidget .filesButton {
  background-color: #ffb400;
}

.activityMenuButtonWrapper {
  padding: 0 16px;
}

.tabContainer {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  grid-template-areas:
    'messages content people huddle';
  gap: 8px;
  border-block-end: .99px solid rgb(236, 236, 237);
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

.tabMeet {
  height: 100%;
  place-self: end;
  grid-area: huddle;
  display: grid;
  align-items: center;
}

#huddle {
  background-color: #00853C;
}

#huddle:hover {
  background-color: #03612C;
}

#huddle:active {
  background-color: #08421F;
}

.tabOther {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
  cursor: pointer;
  font-size: 14px;
  color: #545454;
  font-family: 'CiscoSansTT Regular';
  margin-block-start: 12px;
  padding: 0px 8px;
  width: fit-content;
}

.tabOther:disabled {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  text-shadow: 0px 0px 0px transparent;
}

.tabActive {
  border-bottom: 2px solid #121212 !important;
  border-block-end: 2px solid #121212;
  margin-block-end: -2px;
  color: #121212;
}

.activityMenuButton {
  display: flex;
}

.activityMenuWrapper {
  position: absolute;
  top: 1px;
  right: 1px;
  z-index: 90;
  width: 280px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.1);
  animation: slideIn 350ms;
}

.callTimer {
  margin-left: 10px;
  font-size: 12px;
  color: #858688;
  display: none;
}

.errorWrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.secondaryWidget {
  position: absolute;
  top: 1px;
  right: 1px;
  z-index:  80;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.1);
}

.secondaryWidgetCover {
  width: 280px;
}

.secondaryWidgetFull {
  width: 100%;
}

.secondaryWidget > div {
  height: 100%;
}

@keyframes slideIn {
  from {
    right: -50%;
  }

  to {
    right: 0;
  }
}
