.theme-toggle-switch {
    padding-left: 15px;
}

.theme-toggle-switch .nav-link {
    --toggle-switch-size: 30px;
    align-items: center;
    background-color: #D99E00;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: var(--toggle-switch-size);
    width: var(--toggle-switch-size);
}

    .theme-toggle-switch .nav-link i {
        font-size: 1.3rem!important;
        position: relative;
        top: 1px;
    }

    .theme-toggle-switch .nav-link::before {
        color: white;
        left: 1px;
        position: relative;
        top: 2px;
    }

        .theme-toggle-switch .nav-link.bx-sun::before {
            left: 0;
        }

        .theme-toggle-switch .nav-link.bx-moon {
            background-color: #386CC9;
            transition: all 0.3s ease;
        }


