.elementor-1022 .elementor-element.elementor-element-8c057c2{--display:flex;--background-transition:0.3s;}.elementor-1022 .elementor-element.elementor-element-601f18f{--display:flex;--background-transition:0.3s;}.elementor-1022 .elementor-element.elementor-element-a9528d0.elementor-element{--align-self:flex-start;}/* Start custom CSS for html, class: .elementor-element-a9528d0 */.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Toggle background */
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #960e10; /* red  */
    border-radius: 25px; 
    transition: background-color 0.4s, justify-content 0.4s;
    display: flex;
    align-items: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    height: 34px;
    width: 80px;
    margin: 10px;
    padding: 0 10px;
   font-family: helvetica;
}

/* The circle inside the toggle */
.toggle-slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.4s;
}

/* Checked state: background color, circle position, and text alignment */
.toggle-input:checked + .toggle-slider {
    background-color: #d7be6e; /*  gold  */
    justify-content: flex-start; 
    transition: background-color 0.4s, justify-content 0.4s;
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(45px);
}

/* Text inside the toggle with alignment animation */
.toggle-input:not(:checked) + .toggle-slider {
    justify-content: flex-end;
    transition: justify-content 0.4s;
}

.toggle-input:not(:checked) + .toggle-slider::after {
    content: "No";
    margin-right: 7px;
    margin-top: 1px;
    color: # /* No text color */
}

.toggle-input:checked + .toggle-slider::after {
    content: "Yes";
    color: #ffffff; /* Yes text color */
    transition: all 0.4s;
}/* End custom CSS */