:host {
  align-items: center;
  display: flex;
}

.collapse-header {
  color: var(--color-ti-secondary-grey-dark);
  background-color: var(--color-ti-bg-grey-dark);
  text-align: center;
  height: 100%;
  display: flex;
  width: 50px;
  flex-direction: column;
  align-items: center;
}

.collapse-header-content {
  transform: rotate(-90deg);
  position: absolute;
  font-size: 16px;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 4px;
  height: 25px;
  top: 40%;
  width: 35%;
  justify-content: flex-start;
}

.collapsed-panel {
  height: calc(100% - 140px);
  width: 0;
  position: fixed;
  z-index: 1;
  top: 110px;
  right: 0;
  overflow: hidden;
  transition: 0.5s;
  background-color: var(--color-ti-white);
}

.collapse-content {
  width: 100%;
  overflow: auto;
}

.close-icon {
  height: 50px;
  cursor: pointer;
}
