/* The switch9 - the box around the slider9 */
.switch9 {
font-size: 1rem;
position: relative;
display: inline-block;
width: 4em;
height: 2em;
}
/* Hide default HTML checkbox */
.switch9 input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider9 */
.slider9 {
position: absolute;
cursor: pointer;
inset: 0;
background-color: #eee;
transition: 0.4s;
border-radius: 0.5em;
box-shadow: 0 0.2em #dfd9d9;
}
.slider9:before {
position: absolute;
content: "";
height: 1.5em;
width: 1.4em;
border-radius: 0.3em;
left: 0.3em;
bottom: 0.7em;
background-color: lightsalmon;
transition: 0.4s;
box-shadow: 0 0.4em #bcb4b4;
}
.slider9:hover::before {
box-shadow: 0 0.2em #bcb4b4;
bottom: 0.5em;
}
input:checked+.slider9:before {
transform: translateX(2em);
background: lightgreen;
}