
.custom-toggle-switch .toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-toggle-switch .toggle-checkbox {
    display: none;
}

.custom-toggle-switch .toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: background-color 0.3s;
}

.custom-toggle-switch .toggle-checkbox:checked + .toggle-label {
    background-color: rgb(230, 131, 68);
}

.custom-toggle-switch .toggle-label:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    right: 1px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.custom-toggle-switch .toggle-checkbox:checked + .toggle-label:before {
    transform: translateX(-21px);
}

.fi-ta-text-with-badge .fi-ta-text-item-label {
    display: flex;
    gap: 0.25rem;
}

/* .language-switch-trigger img {
    height: 32px;
} */
