.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.account-type-switch {
position: relative;
display: inline-block;
width: 36px;
height: 15px;
vertical-align: middle;
} .switch input {
opacity: 0;
width: 0;
height: 0;
}
.account-type-switch input {
opacity: 0;
width: 0;
height: 0;
} .switch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #dddedf;
-webkit-transition: .4s;
transition: .4s;
}
.account-type-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #FDD372;
-webkit-transition: .4s;
transition: .4s;
}
.switch-slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
.account-type-slider:before {
position: absolute;
content: "";
height: 12px;
width: 12px;
top: 1.2px;
left: 1.2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .switch-slider {
background-color: #009CC6;
}
input:checked + .account-type-slider {
background-color: #70CDE5;
}
input:focus + .switch-slider {
box-shadow: 0 0 1px #009CC6;
}
input:focus + .account-type-slider {
box-shadow: 0 0 1px  #70CDE5;
}
input:checked + .switch-slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
input:checked + .account-type-slider:before {
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
} .switch-slider.round {
border-radius: 34px;
}
.switch-slider.round:before {
border-radius: 50%;
}
.account-type-slider.round {
border-radius: 34px;
}
.account-type-slider.round:before {
border-radius: 50%;
} .ui.red.labels .label, .ui.red.label {
background-color: #D83712!important;
border-color: #D83712!important;
color: #fff!important;
}