/* Toggle Switch Styles */
.angie-toggle-switch-5317f2a8 {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    min-height: 24px;
}

.angie-toggle-switch-5317f2a8 input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.angie-toggle-slider-5317f2a8 {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    transition: .4s;
    margin-right: 10px;
}

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

.angie-toggle-checkbox-5317f2a8:checked + .angie-toggle-slider-5317f2a8 {
    background-color: #2196F3;
}

.angie-toggle-checkbox-5317f2a8:focus + .angie-toggle-slider-5317f2a8 {
    box-shadow: 0 0 1px #2196F3;
}

.angie-toggle-checkbox-5317f2a8:checked + .angie-toggle-slider-5317f2a8:before {
    transform: translateX(20px);
}

.angie-toggle-label-text-5317f2a8 {
    font-size: 14px;
    line-height: 1;
}

/* Adjust layout when inside Elementor form fields */
.elementor-field-group .angie-toggle-switch-5317f2a8 {
    margin-top: 5px;
}

/* Hard hide logic for un-toggled fields */
.angie-toggle-condition-hidden {
    display: none !important;
}