.ep-contributo-attendee-checkbox {
    margin-left: 18px;
}

.ep-toggle-btn {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 22px;
}

.ep-toggle-btn input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ep-toogle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    height: 22px;
}

.ep-toogle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.4s;
}

.ep-toggle-btn input:checked + .ep-toogle-slider {
    background-color: rgb(var(--themeColor));
}

.ep-toggle-btn input:disabled + .ep-toogle-slider {
    background-color: #e6e6e6;
}

.ep-toggle-btn input:disabled:checked + .ep-toogle-slider {
    background-color: rgba(var(--themeColor), 0.25);
}

.ep-toggle-btn input:focus + .ep-toogle-slider {
    box-shadow: 0 0 1px rgb(var(--themeColor));
}

.ep-toggle-btn input:checked + .ep-toogle-slider:before {
    transform: translateX(22px);
}

.ep-toogle-slider.round {
    border-radius: 34px;
}

.ep-toogle-slider.round:before {
    border-radius: 50%;
}

.ep-fixed-check-in-buttons-container .ep-bulk-action-btn {
    background: rgba(var(--themeColor, 35, 112, 203), 0.12);
    color: rgb(var(--themeColor, 35, 112, 203));
    border: 1px solid rgba(var(--themeColor, 35, 112, 203), 0.35);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 7px 14px;
    transition: all 0.2s ease;
}

.ep-fixed-check-in-buttons-container .ep-bulk-action-btn:hover,
.ep-fixed-check-in-buttons-container .ep-bulk-action-btn:focus {
    background: rgb(var(--themeColor, 35, 112, 203));
    color: #fff;
    border-color: rgb(var(--themeColor, 35, 112, 203));
}

.ep-fixed-check-in-buttons-container .ep-bulk-action-btn[disabled] {
    background: #f1f3f5;
    color: #8e99a8;
    border-color: #d7dde4;
    box-shadow: none;
}
