.dark-toggle {
	cursor: pointer;
    display: inline-block;
    padding-left: 0px;
}
.dark-toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width:48px;  width:43px;	/* 스위치 길이 관련 */
    height: 22px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
    top: -2px;
}
.dark-toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 25%);
    width: 14px;
    height: 14px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}


.dark-toggle-checkbox:checked + .dark-toggle-switch {
    background: #4c4b52;
}
.dark-toggle-checkbox:checked + .dark-toggle-switch:before {
    left:30px; left: 25px;	 /* 스위치 길이 관련 */
}
.dark-toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 25%);
    width: 14px;
    height: 14px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}

.dark-toggle-switch:before, .dark-toggle-switch:after {
    content: "";
}

.dark-toggle-checkbox {
    position: absolute;
    visibility: hidden;
}