.switch-wrapper-outer{
  text-align: center;
}
.slideToggle{
  display: flex;
  justify-content: center;
  margin: 0 0 78px 0;
  font-weight:bold;
   
}
.form-switch {
  align-items: center;
  display: inline-flex;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  justify-content: space-between;
  margin-bottom: 20px;
}
.form-switch i {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 30px;
  border-radius: 15px;
  transition: all 0.3s linear;
  background-color: #ee0d08;
}
.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 15px;
  transform: translate3d(4px, 4px, 0);
  transition: all 0.2s ease-in-out;
}

.form-switch input { display: none; }

// .form-switch input:checked + i { background-color: #0274D6; }

.form-switch input:checked + i::after { transform: translate3d(44px, 4px, 0); }

span.beforeinput {
  margin-right: 20px;
  font-size: 16px;
}
span.afterinput {
  margin-left: 20px;
  font-size: 16px;
}