body.dark-mode [data-id="theme_switcher_wrapper"] .switcher-label .switcher-toggler  {
    left: 57%;
}

/*input checkbox*/
[data-id="theme_switcher_wrapper"] input.switcher-input[type='checkbox']{
    opacity: 0;
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/*label*/
[data-id="theme_switcher_wrapper"] .switcher-label{
    background-color: var(--mangofit-color);
    cursor: pointer;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
    height: 100%;
    border-radius: 30px;
    position: relative;
}

/*toggler*/
[data-id="theme_switcher_wrapper"] .switcher-label .switcher-toggler {
    background-color: var(--current-theme-color);
    border: 1px solid var(--contrast-theme-color);
    width: 25px;
    height: 25px;
    z-index: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 12%;
    transition: all 0.4s ease;
}

/*sun and moon images*/
[data-id="theme_switcher_wrapper"] .switcher-label i {
    font-size: 20px;
}

[data-id="theme_switcher_wrapper"] .switcher-label i:first-child {
    color: black;
}

[data-id="theme_switcher_wrapper"] .switcher-label i:last-child {
    color: gold;
}
