/*TAB SWITCH*/
/* taeb-switch styles */
.taeb-switch {
  position: relative;
  display: flex;
}

.taeb-switch:after {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  transition: left cubic-bezier(.88, -.35, .565, 1.35) .4s;
  border-radius: 27.5px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1);
  background-color: #000;
  height: 100%;
  z-index: 0;
}

.taeb-switch.left:after {
  left: 0;
}

.taeb-switch.right:after {
  left: 50%;
}

.taeb-switch .taeb {
  display: inline-block;
  width: 50%;
  padding: 12px 0;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: color 200ms;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  user-select: none;
}

.taeb-switch .taeb.active {
  color: #ffffff;
}



.wrapper {
  border-radius: 37px;
  background-color: #f4f4f4;
  /*padding: 8px;*/
  width: 100%;
  max-width: 316px;
  margin-left: auto;
  margin-right: auto;
}

.discount-badge {
    font-size: 10px;
    color: #a0a1a0;
    padding-left: 10px;
}
/*TAB SWITCH*/