.tab-switch-wrapper {
  flex-direction: row;
  justify-content: center;
  background-color: lightgrey;
  border-radius: 5px;
  padding: 4px;
  position: relative;
  display: flex;
  width: 100%;
}
.tab-switch-wrapper .tab-switch-element {
  text-align: center;
  padding: 2px;
  border-radius: 3px;
  z-index: 1;
  position: relative;
  float: left;
  width: 100%;
  transition: color 0.3s ease-out;
  flex-grow: 1;
  cursor: pointer;
  user-select: none;
}
.tab-switch-wrapper .tab-switch-element[selected] {
  color: black;
}
.tab-switch-wrapper .tab-switch-indicator-wrapper {
  position: absolute;
  float: left;
  top: 0;
  left: 0;
  padding: 4px;
  width: 100%;
  height: 100%;
}
.tab-switch-wrapper .tab-switch-indicator-wrapper .tab-switch-indicator {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: darkorange;
  border-radius: 5px;
  transition: left 0.3s ease-out;
}
.tab-switch-wrapper[tab-count="2"] .tab-switch-element {
  width: calc(100% / 2);
}
.tab-switch-wrapper[tab-count="2"] .tab-switch-indicator {
  width: calc(100% / 2);
}
.tab-switch-wrapper[tab-count="2"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 2 * 0);
}
.tab-switch-wrapper[tab-count="2"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 2 * 1);
}
.tab-switch-wrapper[tab-count="3"] .tab-switch-element {
  width: calc(100% / 3);
}
.tab-switch-wrapper[tab-count="3"] .tab-switch-indicator {
  width: calc(100% / 3);
}
.tab-switch-wrapper[tab-count="3"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 3 * 0);
}
.tab-switch-wrapper[tab-count="3"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 3 * 1);
}
.tab-switch-wrapper[tab-count="3"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 3 * 2);
}
.tab-switch-wrapper[tab-count="4"] .tab-switch-element {
  width: calc(100% / 4);
}
.tab-switch-wrapper[tab-count="4"] .tab-switch-indicator {
  width: calc(100% / 4);
}
.tab-switch-wrapper[tab-count="4"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 4 * 0);
}
.tab-switch-wrapper[tab-count="4"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 4 * 1);
}
.tab-switch-wrapper[tab-count="4"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 4 * 2);
}
.tab-switch-wrapper[tab-count="4"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 4 * 3);
}
.tab-switch-wrapper[tab-count="5"] .tab-switch-element {
  width: calc(100% / 5);
}
.tab-switch-wrapper[tab-count="5"] .tab-switch-indicator {
  width: calc(100% / 5);
}
.tab-switch-wrapper[tab-count="5"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 5 * 0);
}
.tab-switch-wrapper[tab-count="5"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 5 * 1);
}
.tab-switch-wrapper[tab-count="5"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 5 * 2);
}
.tab-switch-wrapper[tab-count="5"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 5 * 3);
}
.tab-switch-wrapper[tab-count="5"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 5 * 4);
}
.tab-switch-wrapper[tab-count="6"] .tab-switch-element {
  width: calc(100% / 6);
}
.tab-switch-wrapper[tab-count="6"] .tab-switch-indicator {
  width: calc(100% / 6);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 6 * 0);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 6 * 1);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 6 * 2);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 6 * 3);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 6 * 4);
}
.tab-switch-wrapper[tab-count="6"][tab-selected="6"] .tab-switch-indicator {
  left: calc(100% / 6 * 5);
}
.tab-switch-wrapper[tab-count="7"] .tab-switch-element {
  width: calc(100% / 7);
}
.tab-switch-wrapper[tab-count="7"] .tab-switch-indicator {
  width: calc(100% / 7);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 7 * 0);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 7 * 1);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 7 * 2);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 7 * 3);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 7 * 4);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="6"] .tab-switch-indicator {
  left: calc(100% / 7 * 5);
}
.tab-switch-wrapper[tab-count="7"][tab-selected="7"] .tab-switch-indicator {
  left: calc(100% / 7 * 6);
}
.tab-switch-wrapper[tab-count="8"] .tab-switch-element {
  width: calc(100% / 8);
}
.tab-switch-wrapper[tab-count="8"] .tab-switch-indicator {
  width: calc(100% / 8);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 8 * 0);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 8 * 1);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 8 * 2);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 8 * 3);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 8 * 4);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="6"] .tab-switch-indicator {
  left: calc(100% / 8 * 5);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="7"] .tab-switch-indicator {
  left: calc(100% / 8 * 6);
}
.tab-switch-wrapper[tab-count="8"][tab-selected="8"] .tab-switch-indicator {
  left: calc(100% / 8 * 7);
}
.tab-switch-wrapper[tab-count="9"] .tab-switch-element {
  width: calc(100% / 9);
}
.tab-switch-wrapper[tab-count="9"] .tab-switch-indicator {
  width: calc(100% / 9);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 9 * 0);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 9 * 1);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 9 * 2);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 9 * 3);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 9 * 4);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="6"] .tab-switch-indicator {
  left: calc(100% / 9 * 5);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="7"] .tab-switch-indicator {
  left: calc(100% / 9 * 6);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="8"] .tab-switch-indicator {
  left: calc(100% / 9 * 7);
}
.tab-switch-wrapper[tab-count="9"][tab-selected="9"] .tab-switch-indicator {
  left: calc(100% / 9 * 8);
}
.tab-switch-wrapper[tab-count="10"] .tab-switch-element {
  width: calc(100% / 10);
}
.tab-switch-wrapper[tab-count="10"] .tab-switch-indicator {
  width: calc(100% / 10);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="1"] .tab-switch-indicator {
  left: calc(100% / 10 * 0);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="2"] .tab-switch-indicator {
  left: calc(100% / 10 * 1);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="3"] .tab-switch-indicator {
  left: calc(100% / 10 * 2);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="4"] .tab-switch-indicator {
  left: calc(100% / 10 * 3);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="5"] .tab-switch-indicator {
  left: calc(100% / 10 * 4);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="6"] .tab-switch-indicator {
  left: calc(100% / 10 * 5);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="7"] .tab-switch-indicator {
  left: calc(100% / 10 * 6);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="8"] .tab-switch-indicator {
  left: calc(100% / 10 * 7);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="9"] .tab-switch-indicator {
  left: calc(100% / 10 * 8);
}
.tab-switch-wrapper[tab-count="10"][tab-selected="10"] .tab-switch-indicator {
  left: calc(100% / 10 * 9);
}
.tab-switch-wrapper.tab-switch-small {
  font-size: 12px;
  font-weight: lighter;
}

/*# sourceMappingURL=tabswitch.css.map */
