.vat-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vat-switch input {
  display: none;
}

.vat-switch label {
  margin: 0;
  color: #666;
  cursor: pointer;
}

.vat-switch input:checked~label {
  font-weight: 500;
  color: var(--primaryColor);
  cursor: default;
}

.vat-switch .switch {
  background: var(--primaryColor);
  width: 28px;
  height: 16px;
  border-radius: 8px;
  margin: 0px 15px;
  padding: 2px;
  position: relative;
  cursor: pointer;
}

.vat-switch .switch span {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: block;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

.vat-switch[data-active="incl"] .switch span {
  left: 14px;
}
@media (max-width: 1199px) {
  .vat-switch .vat-text {
    display: none;
  }
}
@media (max-width: 991px) {
  .vat-switch {
    display: none;
  }
}