.ova-pricing-tab .tab-pricing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.ova-pricing-tab .tab-pricing-switch .price-label {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
.ova-pricing-tab .tab-pricing-switch .price-label.label-active {
  color: var(--primary);
}
@media (max-width: 430px) {
  .ova-pricing-tab .tab-pricing-switch .price-label {
    font-size: 16px;
  }
}
.ova-pricing-tab .tab-pricing-switch .switch {
  position: relative;
  display: inline-block;
  min-width: 72px;
  width: 72px;
  height: 38px;
  margin: 0 16px;
}
.ova-pricing-tab .tab-pricing-switch .switch.switch-active .slider:before {
  -webkit-transform: translateX(34px);
  -ms-transform: translateX(34px);
  transform: translateX(34px);
}
.ova-pricing-tab .tab-pricing-switch .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E4E0EE;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 4px;
  bottom: 4px;
  background-color: var(--primary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider.round {
  border-radius: 34px;
}
.ova-pricing-tab .tab-pricing-switch .switch .slider.round:before {
  border-radius: 50%;
}
.ova-pricing-tab .tab-pricing-content {
  text-align: center;
}
.ova-pricing-tab .tab-pricing-content .tab-pane {
  display: none;
}
.ova-pricing-tab .tab-pricing-content .tab-pane.active {
  display: block;
}