body {
  margin: 0;
}
.appContainer {
  display: none;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes skeleton {
  0% {
    width: 0;
    left: 0;
    right: auto;
    opacity: 0.3;
  }
  20% {
    width: 100%;
    left: 0;
    right: auto;
    opacity: 1;
  }
  28% {
    width: 100%;
    left: auto;
    right: 0;
  }
  51% {
    width: 0;
    left: auto;
    right: 0;
  }
  58% {
    width: 0;
    left: auto;
    right: 0;
  }
  82% {
    width: 100%;
    left: auto;
    right: 0;
  }
  83% {
    width: 100%;
    left: 0;
    right: auto;
  }
  96% {
    width: 0;
    left: 0;
    right: auto;
  }
  to {
    width: 0;
    left: 0;
    right: auto;
    opacity: 0.3;
  }
}
.outline .appContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: calc(100vh - 48px);
  overflow: auto;
  background-color: #f9f9f9;
  overflow: hidden;
}
.outline .navigation {
  color: #fff;
  height: 50px;
  transition: height 0.15s ease-out;
  z-index: 2;
}
.outline .navigation .topContainer {
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 1;
  top: 0;
  transition: top 0.15s ease-out;
  background-color: #343334;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.outline .navigation .topContainer .topLeft {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}
.outline .navigation .topContainer .topLeft .topProductIcon {
  border-right: 1px solid #272727;
  width: 50px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.outline .navigation .topContainer .topLeft .topProductName {
  padding: 0 20px;
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.outline .navigation .topContainer .topActions {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}
.outline .navigation .topContainer .topActions .topIcon {
  height: 100%;
  padding: 0 17px;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.outline .navigation .leftMainContainer {
  margin-top: 50px;
  width: fit-content;
  width: -moz-fit-content;
  padding-top: 0;
  transition: padding-top 0.15s ease-out;
}
.outline .navigation .leftContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  z-index: 501;
  overflow-y: auto;
  height: calc(100vh - 48px);
  width: 50px;
  position: fixed;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  box-shadow: 0 3px 6px #b2b2b2;
}
.outline .navigation .leftContainer .leftButton {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.outline .navigation .leftContainer .leftButton .icon--skeleton {
  margin-top: 10px;
  margin-bottom: 10px;
}
.outline .pageContainer {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  position: relative;
}
.outline .pageContainer .loading {
  width: 10.5rem;
  height: 10.5rem;
  position: absolute;
  top: calc(50% - 84px);
  left: calc(50% - 84px);
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.outline .pageContainer .loading svg {
  fill: transparent;
  stroke: #0f62fe;
  stroke-width: 7px;
  stroke-linecap: butt;
  stroke-dasharray: 240;
  stroke-dashoffset: 40px;
}
.outline .icon--skeleton {
  width: 30px;
  height: 30px;
  position: relative;
  border: none;
  padding: 0;
  box-shadow: none;
  pointer-events: none;
  background: rgba(61, 112, 178, 0.1);
  display: inline-block;
}
.outline .icon--skeleton:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  background: rgba(61, 112, 178, 0.1);
  animation: 3s ease-in-out skeleton infinite;
}
