.qbitec-switch-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.qbitec-switch-checkbox {
  display: none;
}

.qbitec-switch-label {
  position: relative;
  width: 250px;
  height: 50px;
  background-color: #fff;
  border-radius: 23px;
  border: 1px solid #92341b;
  cursor: pointer;
  user-select: none;
}

.qbitec-switch-inner {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 120px;
  height: 40px;
  background-color: #92341b;
  border-radius: 18px;
  transition: left 0.3s;
}

.qbitec-switch-yearly,
.qbitec-switch-monthly {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  font-weight: normal;
}

.qbitec-switch-yearly {
  left: 0;
  color: #fff;
}

.qbitec-switch-monthly {
  right: 0;
  color: #000;
}

.qbitec-switch-checkbox:checked + .qbitec-switch-label .qbitec-switch-inner {
  left: 124px;
}

.qbitec-switch-checkbox:checked + .qbitec-switch-label .qbitec-switch-yearly {
  color: #000;
}

.qbitec-switch-checkbox:checked + .qbitec-switch-label .qbitec-switch-monthly {
  color: #fff;
}