/*JetFormBuilder + JetSmartFilter*/

.switcher {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-top: -35px;
}

.switcher input {
    display: none;
}

.switcher_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #666;
    transition: .4s;
    border-radius: 100px;
}

.switcher_slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 5px;
    background-color: white;
    transition: .4s;
    border-radius: 100px;
}

.switcher_slider .on-label, .switcher_slider .off-label {
    position: absolute;
    color: white;
    transition: .4s;
}

.switcher_slider .on-label {
    left: 7px;
    top: 34%;
    opacity: 0;
    font-family: sans-serif;
    font-size: 0.6em;
}

.switcher_slider .off-label {
    right: 7px;
    top: 34%;
    opacity: 1;
    font-family: sans-serif;
    font-size: 0.6em;
}

input:checked + .switcher_slider {
    background-color: #4CAF50; /* cor verde */
}

input:checked + .switcher_slider:before {
    transform: translateX(32px);
}

input:checked + .switcher_slider .on-label {
    opacity: 1;
}

input:checked + .switcher_slider .off-label {
    opacity: 0;
}

.jet-form-builder__field.radio-field.checkradio-field.rss_go,
.jet-form-builder__field-label.for-radio .jet-form-builder__field.radio-field.checkradio-field.rss_go + span {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}














/*JetSmartFilters*/

.rss_filter .jet-radio-list__item {
    display: none !important;
}


.rss_filter .switcher {
    display: inline-block;
    vertical-align: middle;
    
  
}

.rss_filter .switcher_slider {
    background-color: #666;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 50px;
    height: 26px;
    transition: background-color 0.3s;
}

.rss_filter .switcher input[type="checkbox"] {
    display: none;
}

.rss_filter .switcher input[type="checkbox"]:checked + .switcher_slider {
    background-color: #66bb6a;
}

.rss_filter .switcher_slider:before {
    background-color: white;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 4px;
    position: absolute;
    top: 4px;
    transition: transform 0.3s;
    width: 18px;
}

.rss_filter .switcher input[type="checkbox"]:checked + .switcher_slider:before {
    transform: translateX(24px);
}





