/*
Theme Name: Listener Child Theme
Template: listener
Theme URI: https://listener.ancorathemes.com/
Description: Listener Child Theme
Author: AncoraThemes
Author URI: https://ancorathemes.com/
Version: 1.0
Tested up to: 6.8
Requires at least: 5.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, e-commerce, portfolio, grid-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
Text Domain: listener
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */
.elementor-form-fields-wrapper {


    /* Style for normal state */
    input[type="checkbox"] {
        -webkit-appearance: none;
        /* Removes default checkbox style */
        -moz-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        top: 3px;
        display: inline-block !important;
        border-radius: 3px;
        /* Rounded corners */
        cursor: pointer;
        outline: none;
        background-color: #EBEBEB;
        /* White background */
        position: relative;
    }

    /* Style for checked state */
    input[type="checkbox"]:checked {

        background-color: #2CC4BD;
        /* Purple background */
    }

    input[type="checkbox"]:checked::after {
        content: "";
        /* Add a checkmark or styling effect */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background-color: white;
        /* White checkmark background */
        border-radius: 2px;
        /* Rounded checkmark */
    }
}