.switchHolder {
	display: flex;
	
	align-items: center;
  	justify-content: center;
  	margin-top: 3px;
  	margin-bottom: 3px;
  	
}
.switchContainer {
	flex: 0;
	
}
.switchHolder .switchLabel {
	flex: 1;
	padding-left: 6px;
	padding-right: 6px;
	font-weight: normal;
	white-space: nowrap;
}
.switch {
  position: relative;
  margin: 2px;
  width: 60px;
  height: 34px;
}

.switchSmall {
  position: relative;
  width: 33px;
  height: 17px;
}




/* Hide default HTML checkbox */
.switch input,
.switchSmall input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider,
.sliderSmall {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.sliderSmall:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider,
input:checked + .sliderSmall {
  background-color: #077ea9;
}

input:focus + .slider,
input:focus + .sliderSmall {
  /*box-shadow: 0 0 1px #077ea9;*/
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
input:checked + .sliderSmall:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.sliderSmall.round {
  border-radius: 15px;
}

.slider.round:before,
.sliderSmall.round:before  {
  border-radius: 50%;
}











.radioToggle {
	text-align: center;
}

.radioToggle input {
	display: none;
}
  
  
.radioToggle input:checked + label {
      background: #2883bd;
      color: white;
      font-weight: bold;
}
  
.radioToggle label {
    display: inline-block;
    width: 70px;
    background-color: #CCCCCC;
    color: #144361;
    text-align: center;
    font-size: 0.8rem;
    padding: 6px 6px;
	margin: 0px;
    transition: all 0.1s ease-in-out;
	
}

.radioToggle label:first-of-type {
  border-radius: 15.5px 0 0 15.5px;
}

.radioToggle label:last-of-type {
  border-radius: 0 15.5px 15.5px 0;
}