.spaceWidget {
  display: flex;
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 200;
  background: #fff;
  border: 1px solid #ccc;
  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;
}

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

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