Geçiş Anahtarı 18

/* The switch18 - the box around the slider18 */
.switch18 {
font-size: 17px;
position: relative;
display: inline-block;
width: 3.5em;
height: 1.5em;
}
/* Hide default HTML checkbox */
.switch18 input {
opacity: 0;
width: 0;
height: 0;
}
/* The slider18 */
.slider18 {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 1rem 0rem 1rem;
}

.slider18:before {
position: absolute;
content: "";
height: 1.5em;
width: 1.4em;
left: 0em;
bottom: 0em;
background-color: white;
transition: .4s;
border-radius: 1rem 0rem 1rem;
border: 3px solid white;
}

input:checked + .slider18 {
background-color: #72eb67;
}

input:focus + .slider18 {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider18:before {
transform: translateX(2.2em);
background-color: green;
box-shadow: 0px 0px 40px 5px #72eb67;
border: 3px solid white;
}

input:checked + .slider18::after {
content: "|";
color: white;
position: absolute;
right: 0.3rem;
transform: rotate(45deg);
}