.siderContainer {
  display: flex;
  flex: none;
  flex-direction: column;
  height: 100%;
  background: #DCDCDC;
  width: 340px;
  transition: width 200ms, padding-left 200ms;
  position: relative;
}
.isCollapsed:not(.isFullCollapsed) {
  width: 34px;
}
.isCollapsed.isFullCollapsed {
  width: 1px;
}

.siderHeader {
  display: flex;
  margin-bottom: 0;
  padding: 8px 8px 8px 0;

  align-items: center;
  width: 100%;
  height: 52px;
}

.siderHeader.rotated {
  padding: 0;
  width: fit-content;
}

.siderHeader.hidden {
  display: none;
}

.headerTextContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  line-height: 1;
  overflow: hidden;
}

.headerText {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  font-family: 'Open Sans Semibold', sans-serif;
  font-style: normal;
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;

  animation: scale2 .2s ease-out;
  @keyframes scale2 {
    0% {transform: rotate(0deg) scale(0);}
    50% {transform: rotate(0deg) scale(0);}
    100% {transform: rotate(0deg) scale(1);}
  }
}

.headerText.rotated {
  transform: rotate(90deg);
  display: inline-block;
  white-space: nowrap !important;
  transform-origin: -14px center;
  animation: scale1 .2s ease-out;

  @keyframes scale1{
    0% {transform: rotate(90deg) scale(0);}
    50% {transform: rotate(90deg) scale(0);}
    100% {transform: rotate(90deg) scale(1);}
  }
}

.siderListContainer {
  display: flex;
  flex-flow: column nowrap;
  flex: 1;
  //overflow-y: hidden;
  position: relative;
  height: calc(100% - 150px);
  padding: 0 4px;

  &.noBodyPadding {
    padding: 0;
  }
}

.resizeContainer {
  position: absolute;
  right: -2px;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 5px;
}
