.react-switch-checkbox {
  height: 0;
  width:0;
  visibility: hidden;
  display:flex;
  justify-content:center;
}

.react-switch-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: green;
  position: relative;
  transition: background-color .2s;
}

.react-switch-label .react-switch-button {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  height: 100%;
  transition: 0.2s;
  background: #DDD;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
}

.react-switch-label .react-switch-button-reverse {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  height: 100%;
  transition: 0.2s;
  background: #DDD;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  display: flex;
  align-items: center;
  justify-content: center;
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-button {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-button-reverse {
  right: calc(100% - 4px);
  transform: translateX(100%);
}


.react-switch-label .react-switch-button-type3 {
  position: absolute;
  height: 100%;
  top: 12%;
  transition: 0.2s;
  background: #DDD;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
}
.react-switch-checkbox:checked + .react-switch-label .react-switch-button-type3 {
  top: 0%;
  transform: translateY(12.5%);
}
.react-switch-label .react-switch-button-type3 {
  position: absolute;
  height: 100%;
  top: 0%;
  transition: 0.2s;
  background: #DDD;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
}
.react-switch-label .react-switch-button-type3-reverse {
  position: absolute;
  height: 100%;
  bottom: 12%;
  transition: 0.2s;
  background: #DDD;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-button-type3-reverse {
  top: 20%;
  transform: translateY(-10%);
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-mark-reverse {
  left: 0px;
  transform: translateX(100%);
}
.react-switch-checkbox:checked + .react-switch-label .react-switch-mark {
  right: calc(100% - 4px);
  transform: translateX(-100%);
}

.react-switch-gradient {
  background: linear-gradient(90deg, #CCCCCC 13.85%, #DDDDDD 39.68%, #B6B6B7 77.13%, #D6D6D7 78.42%);
  background-blend-mode: multiply;
}





.react-switch-label:active .react-switch-button {
  width: 100;
}
