/* Styling for the Toggle Switch in Settings */
.padsync-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
}
.padsync-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.padsync-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.padsync-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}
input:checked + .padsync-slider {
  background-color: #1a73e8;
}
input:focus + .padsync-slider {
  box-shadow: 0 0 1px #1a73e8;
}
input:checked + .padsync-slider:before {
  transform: translateX(20px);
}
.padsync-slider.round {
  border-radius: 24px;
}
.padsync-slider.round:before {
  border-radius: 50%;
}
.padsync-settings-wrap h3 {
	margin-top: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
