.v-content-switcher.theme-default {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v-content-switcher.theme-default .v-content-switcher-item {
  position: relative;
  display: flex;
  width: 100%;
}

.v-content-switcher.theme-default .v-content-switcher-item:not(:first-child):before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: var(--endpass-ui-color-grey-2);
  top: 50%;
  left: 0;
  z-index: 1;
  margin-top: -10px;
  transition: opacity .3s;
}

.v-content-switcher.theme-default .v-content-switcher-item.is-focused:before,
.v-content-switcher.theme-default .v-content-switcher-item.is-checked:before,
.v-content-switcher.theme-default .v-content-switcher-item:hover + .v-content-switcher-item:before,
.v-content-switcher.theme-default .v-content-switcher-item.is-checked + .v-content-switcher-item:before,
.v-content-switcher.theme-default .v-content-switcher-item.is-focused + .v-content-switcher-item:before {
  opacity: 0;
}

.v-content-switcher-control {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  opacity: 0;
  outline: 0;
  cursor: pointer;
}

.v-content-switcher.theme-default .v-content-switcher-label {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.2px;
  padding: 11px 5px;
  border: 1px solid var(--endpass-ui-color-grey-1);
  background-color: var(--endpass-ui-color-grey-1);
  user-select: none;
  position: relative;
  transition: background-color .3s, color .3s, border-color .3s, font-weight .3s;
}

.v-content-switcher.theme-default .v-content-switcher-label:hover {
  background-color: var(--endpass-ui-color-grey-2);
  border-color: var(--endpass-ui-color-grey-2);
}

.v-content-switcher.theme-default .v-content-switcher-item.is-focused .v-content-switcher-label {
  background-color: var(--endpass-ui-color-primary-2);
  border-color: var(--endpass-ui-color-primary-7);
}

.v-content-switcher.theme-default .v-content-switcher-item.is-checked .v-content-switcher-label {
  background-color: var(--endpass-ui-color-black);
  border-color: var(--endpass-ui-color-black);
  color: var(--endpass-ui-color-white);
}

.v-content-switcher.theme-default .v-content-switcher-item:first-child .v-content-switcher-label {
  border-radius: 4px 0 0 4px;
}

.v-content-switcher.theme-default .v-content-switcher-item:last-child .v-content-switcher-label {
  border-radius: 0 4px 4px 0;
}

.v-content-switcher.theme-default .v-content-switcher-item.is-checked.is-focused .v-content-switcher-label {
  border-color: var(--endpass-ui-color-primary-7);
}
