.EcomSwitch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 24px;
}

/* Hide default checkbox */
.EcomSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switchSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.switchSlider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .switchSlider {
    background-color: #198754;
}

input:checked + .switchSlider:before {
    transform: translateX(26px);
}

.custom-pagination .pagination .page-item.active span {
    background-color: #0f79f3 !important;
    color: #fff !important;
    z-index: 0 !important;
}
.translation-input {
    height: 40px !important;
}
#translationTableBody button {
    margin-right: 5px;
    border: 1px solid #0f79f3;
}
