/*
 Theme Name: Kadence Child
 Theme URI: https://www.kadencewp.com/
 Description: Child theme for the Kadence theme
 Author: redNinja
 Author URI: https://redninja.es
 Template: kadence
 Version: 1.0.0
*/

/* Add your custom CSS below */

/* Desktop only for pics */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

/* Hide the default radio input */
#wpforms-228 .wpforms-field-radio input[type="radio"] {
    display: none;
}

/* Style the label to include a custom circle */
#wpforms-228 .wpforms-field-radio label {
    position: relative;
    padding-left: 28px; /* space for the custom circle */
    cursor: pointer;
    font-size: 16px;
}

/* The custom circle */
#wpforms-228 .wpforms-field-radio label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-color: #fff;
}

/* The filled dot when selected */
#wpforms-228 .wpforms-field-radio input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff0000;
}

/* WPForms submit button */
#wpforms-submit-228 {
    background-color: #FF0000;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect */
#wpforms-submit-228:hover {
    background-color: #FF0000;
    color: #000000;
}
