:root {
    --jrfgf-primary-color: #06e80b; /*8bc647*/
    --jrfgf-button-hover-color: #05ce09;
    --jrfgf-primary-font-family: 'Akshar',sans-serif;
    --jrfgf-secondary-font-family: 'Work Sans',sans-serif
}

.jrfgf_form_wrapper h1,
.jrfgf_form_wrapper h2,
.jrfgf_form_wrapper h3,
.jrfgf_form_wrapper h4,
.jrfgf_form_wrapper h5,
.jrfgf_form_wrapper h6 {
    font-family: var(--jrfgf-primary-font-family);
}

.jrfgf_form_wrapper p,
.jrfgf_form_wrapper .gfield_label,
.jrfgf_form_wrapper label {
    font-family: var(--jrfgf-secondary-font-family);
}

.popular-items-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.jrfgf-search-container {
    margin-bottom: 30px;
}

.selected-items-wrapper {
    margin-top: 30px;
}



.jrfgf-flex-item {
    flex: 0 0 32%;
    background: rgba(253, 253, 253, 0.9);
    border: 1px solid #abb1a5;
    border-radius: 2px;    
    min-height: 100px;
    max-height: 100px;
    padding: 5px;
    opacity: 0.65;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}

.jrfgf-flex-item:hover:not(.disabled) {
    opacity: 1;
    background: #fff;
    -webkit-box-shadow: 0px 3px 10px 0px #cccccc;
    -moz-box-shadow: 0px 3px 10px 0px #cccccc;
    box-shadow: 0px 3px 10px 0px #cccccc;
    cursor: pointer;
}

.jrfgf-flex-item.disabled {
    opacity: .3 !important;
    cursor: not-allowed;
}

.selected-items-container {
    border-radius: 2px;
    padding: 0px;
    margin: 20px 0px;
    border: 1px solid #CCC;
}

.selected-items-inner {
    background-color: rgb(245, 245, 245);
    padding: 10px 0px;
    width: 100%;
    height: 100%;
}

.jrfgf-no-item-heading {
    text-align: center;
    font-weight: bold;
}

.jrfgf-no-item-subheading {
    text-align: center;
    font-weight: italic;
    font-size: 80%;
}

.jrfgf-flex-item p {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
}






.jrfgf-selected-item:not(:first-of-type) {
    border-top: 1px solid #CCC;
}
.jrfgf-selected-item {
    display: flex;
    align-items: center;    
    font-size: 16px;
    gap: 10px;
    
    padding-top: 10px;
    padding-bottom: 10px;
}

.jrfgf-selected-item .item-image {
    width: 70px;
    padding: 10px;
}

.jrfgf-selected-item .item-label {
    flex: 1;
}

.jrfgf-selected-item .item-label span {
    font-weight: bold;
    text-transform: uppercase;
}

.jrfgf-selected-item .item-label p {
    font-size: 80%;
    font-style: italic;
}

.jrfgf-selected-item .item-price {
    font-weight: bold;
    margin-left: 5px;
    color: #31a298;
}

.jrfgf-selected-item span.item-dimensions {
    font-weight: 400 !important;
}

.jrfgf-selected-item  .item-controls {
    padding: 10px;
    max-width: 150px;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-control div {
    /* display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #007bff;
    color: white;
    text-align: center;
    
    user-select: none; */

    cursor: pointer;
    width: 50px;
    height: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #8ac646;
}

.quantity-control div span {
    font-weight: bold;
    font-size: 22px;
}

.quantity-control div:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,.5);
}

.quantity-control input {    
    text-align: center;
    border: none !important;
    background-color: transparent;
    padding-right: 10 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 10px !important;
    font-weight: 700;
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {  
    -webkit-appearance: none;
    margin: 0;
}

.remove-item {
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 2px 10px;
    margin-top: 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 13px;
}

@media screen and (max-width: 768px) { 
    .jrfgf-flex-item {
        flex: 0 48%; 

    }

}


/**
 * Spinner
 **/
.jrfgf_form_wrapper .gform_ajax_spinner {
	position: fixed !important;
	top: 35% !important;
	left: calc(50% - 32px) !important;
}




/**
 * Summary Start
 **/
.jrfgf_form_wrapper:not(.hide_summary) {
    display: flex;
    gap: 30px;
}

.jrfgf_form_wrapper:not(.hide_summary) .jrfgf_form_container {
    width: 65%;
    background-color: white;
    -webkit-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    -moz-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    padding: 20px;
}

.jrfgf_form_wrapper:not(.hide_summary) .jrfgf_summary_container {
    flex: 1;
}

.jrfgf_form_wrapper.hide_summary .jrfgf_summary_container {
    display: none !important;
}

.jrfgf_order_summary {
    -webkit-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    -moz-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    padding: 20px;
    background-color: white;
}

.jrfgf_summary_title {
    text-align: center;
    font-weight: 700;
    padding-bottom: 10px;
}

.jrfgf_summary_total {
    font-weight: bold;
    border-top: 1px solid rgb(180, 218, 137);
    border-bottom: 1px solid rgb(180, 218, 137);
    padding: 14px 24px;
    background-color: rgba(138, 198, 70, 0.15);
    text-align: center;
    margin-bottom: 10px;
}

.jrfgf_toggle_breakdown {
    padding: 5px;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chevron svg {
    width: 15px;
    fill: #000;
}

.rotated {
    transform: rotate(180deg);
}

.jrfgf_summary_lines {
    border: 1px solid #ddd;
    margin-top: 0;
    padding: 10px;
}

.jrfgf-service-fee-wrapper {
    margin-bottom: 10px;
}

.jrfgf-service-fee-details, .jrfgf-breakdown-total > div {
    display: flex;
    justify-content: space-between;
}

.jrfgf-service-fee-details > div:last-child {
    font-weight: 700;
}

.jrfgf-breakdown-total {
    border-top: 2px solid #000;
    font-weight: 700;
}

.jrfgf-service-fee-title {
    border-bottom: 1px solid #000;
    font-weight: 500;
}

.jrfgf-multiplier {
    font-size: 80%;
}

.jrfgf-summary-discount {
    color: green;
    font-weight: 500;
}

/* Mobile summary Styles */
@media screen and (max-width: 768px) { 
    .jrfgf_form_wrapper:not(.hide_summary) {
        flex-direction: column;
        gap: 20px; 
    }

    .jrfgf_form_wrapper:not(.hide_summary) .jrfgf_form_container,
    .jrfgf_form_wrapper:not(.hide_summary) .jrfgf_summary_container {
        width: 100%; 
        flex: none; 
    }
}






/**
 * Form Fields Markup
 **/
.jrfgf-heading {
    text-align: center;
    font-weight: bold;
}

.jrfgf-subheading {
    text-align: center;
    font-weight: 400;
    font-size: 17px;
}

.jrfgf-zip .ginput_container {
    display: flex;
    justify-content: center;
}

.jrfgf-zip .ginput_container .ts-wrapper {
    width: calc(25% - 12px);
    padding-left: 30px !important;
    padding-right: 30px !important;
    background: url("../images/magnifying-glass.png") no-repeat scroll 10px 50% #FFF;
    border: 1px solid #666;  
    border-radius: 4px;
    transition: all .3s;
    padding: 8px;    
    
}

.jrfgf-zip .ginput_container .ts-control {
    border: none;
}

.jrfgf-zip .ginput_container .ts-control .item, .jrfgf-zip .ginput_container .ts-control input {
    font-size: 16px;
    font-weight: bold;
}

/* .jrfgf-zip .ginput_container input {
    text-align: center;
    font-weight: bold;
    background: url("../images/magnifying-glass.png") no-repeat scroll 10px 50% transparent;
    display: block;
    padding-left: 30px !important;
    padding-right: 30px !important;
} */

/* the background when hovering*/
.ts-dropdown .active {
background-color: #e8ffe8 !important;
}

/* the highlighted bit while typing */
.ts-dropdown [data-selectable] .highlight {
background: rgba(6, 232, 11, 0.3) !important;
}

/* Mobile Fields */
@media screen and (max-width: 768px) { 
    .jrfgf-zip .ginput_container , .jrfgf-zip .ginput_container input  {
        width: 100% !important;
    }

    .jrfgf-zip .ginput_container .ts-wrapper {
        width: 100% !important;
    }
}





.jrfgf_form_wrapper h3.gsection_title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-family: var(--jrfgf-primary-font-family);
    margin-top: 30px;
}

.jrfgf_form_wrapper .gsection {
    border-bottom: 0 !important;
}

/**
 * Progress Bar
 **/
.jrfgf_form_wrapper .gf_progressbar_percentage {
    background-color: var(--jrfgf-primary-color) !important;
    height: 8px !important;    
}

.jrfgf_form_wrapper .gf_progressbar_title {
    display: none;
}

.jrfgf_form_wrapper .gf_progressbar_percentage span {
    display: none !important;
}

/**
 * Form Buttons
 **/
.jrfgf_form_wrapper .gform_page_footer {
    margin-top: 30px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/*Hide the original save link*/
.jrfgf_form_wrapper .gform_page_footer .gform_save_link {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}



.jrfgf_form_wrapper .gform_page_footer .gform_next_button, 
.jrfgf_form_wrapper .gform_page_footer .gform_button, 
.jrfgf_form_container .form_saved_message input[type="submit"] {
    background-color: var(--jrfgf-primary-color);
    border-color: var(--jrfgf-primary-color);
    color: black !important;
    font-weight: 600;
    outline: none !important;
    text-transform: uppercase;
    float: right;
    padding-left: 30px;
    padding-right: 30px;
}

.jrfgf_form_wrapper #gf_coupon_button {
    background-color: var(--jrfgf-primary-color);
    border-color: var(--jrfgf-primary-color);
    color: black;
    font-weight: 600;
    outline: none !important;
    padding-left: 30px;
    padding-right: 30px;
}

.jrfgf_form_wrapper .gform_page_footer .gform_next_button:hover,
.jrfgf_form_wrapper .gform_page_footer .gform_button:hover,
.jrfgf_form_wrapper #gf_coupon_button:hover,
.jrfgf_form_container .form_saved_message input[type="submit"]:hover {
    background-color: var(--jrfgf-button-hover-color);
    border-color: var(--jrfgf-button-hover-color);
}

.jrfgf_form_wrapper .gform_page_footer .gform_previous_button {
    background-color: #ffffff;   
    color: #000000;
    outline: none !important;
    border: 1px solid #CCC;
    border-radius: 3px;
    color: #CCC;
    text-transform: uppercase;
}

.jrfgf_form_wrapper .gform_page_footer .gform_previous_button:hover {
    background-color: #fbfbfb !important;   
}

.jrfgf-go-button .gform_page_footer {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.jrfgf-go-button .gform_page_footer .gform_next_button {
    background-color: var(--jrfgf-primary-color);
    width: calc(25% - 12px);
    color: black !important;
    text-align: center;
    font-weight: bold;
    border-color: var(--jrfgf-primary-color);
    border-radius: 10px;
}

.jrfgf-go-button .gform_page_footer .gform_next_button:hover {
    background-color: var(--jrfgf-button-hover-color);
    border-color: var(--jrfgf-button-hover-color);
    color: black !important;
}



/*Mobile buttons*/
@media screen and (max-width: 768px) { 
    .jrfgf-go-button .gform_page_footer .gform_next_button {
        width: 100% !important;
    }
    .jrfgf_form_wrapper .gform_page_footer .gform_next_button, 
    .jrfgf_form_wrapper .gform_page_footer .gform_previous_button,
    .jrfgf_form_wrapper .gform_page_footer .gform_button {
        width: 100%;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/**
 * Datepicker
 **/

.jrfgf_form_wrapper .gravity-theme.ui-datepicker {
    border-color: #666 !important;
}

.jrfgf_form_wrapper .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
    background-color: transparent;
    box-shadow: none;
    border: 0;
    color: #cfd3d9;
}

.jrfgf_form_wrapper .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default { 
    border-radius: 3px;
}

.jrfgf_form_wrapper  .gravity-theme.ui-datepicker .ui-datepicker-calendar a.ui-state-default:focus, 
.jrfgf_form_wrapper  .gravity-theme.ui-datepicker .ui-datepicker-calendar a.ui-state-default:hover {
    box-shadow: 0 0.125rem 0.125rem rgba(58,58,87,.06);
    border-radius: 3px;
    border-color: var(--jrfgf-primary-color);
}


.jrfgf_form_wrapper  .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default.ui-state-active {
    background-color: var(--jrfgf-primary-color);
    border-color: var(--jrfgf-primary-color);
    color: #fff;
}




/**
 * Radio buttons
 * Add class jrfgf-choice to any radio field to apply
 **/

/* Hides the default radio input */
.jrfgf-choice input[type="radio"] {
    position: absolute;
    visibility: hidden;
    left: -9999px;
}

/* Styles the label to look like a button */
.jrfgf-choice input[type="radio"] + label {
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0;
    border: 1px solid var(--jrfgf-primary-color);
    background-color: transparent;
    color: #8bc647;    
    transition: background-color 0.3s ease;
    max-width: 100% !important;
}

/* Changes the label style when the radio is checked */
.jrfgf-choice input[type="radio"]:checked + label {
    background-color: var(--jrfgf-primary-color); /* Darker shade of green for checked state */
    color: white;
}

/* Optional: hover effect for the label */
.jrfgf-choice label:hover {
    background-color: var(--jrfgf-button-hover-color);
}

/* Optional: focus style for accessibility */
.jrfgf-choice input[type="radio"]:focus + label {
    box-shadow: 0 0 0 2px rgba(139, 198, 71, 0.5);
}

.jrfgf-choice .gchoice {
    padding: 0 !important;
}

.jrfgf-choice .gfield_radio {
    display: flex !important;
}


/**
 * Card styled checkboxes
 **/
 .jrfgf-card-choice input[type="radio"] {
    position: absolute;
    visibility: hidden;
    left: -9999px;
}
/* Styles the label to look like a button */
.jrfgf-card-choice input[type="radio"] + label {
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;    
    background-color: rgba(253, 253, 253, 0.9);
    border: 1px solid #abb1a5;
    border-radius: 2px;      
    transition: background-color 0.3s ease;
    width: 100%;  
    margin-bottom: 25px !important;
}

/*Add the word OR between the card options */
/* .jrfgf-card-choice .ginput_container .gfield_radio .gchoice:first-child {
    position: relative;
}

.jrfgf-card-choice .ginput_container .gfield_radio .gchoice:first-child::after  {
    content: 'or';
    left: 5px;
    position: absolute;
    bottom: 0;
    font-size: 15px;
    text-transform: uppercase;
} */



/* Changes the label style when the radio is checked */
.jrfgf-card-choice input[type="radio"]:checked + label {
    background-color: var(--jrfgf-primary-color); /* Darker shade of green for checked state */
    color: white;
    border: 1px solid var(--jrfgf-primary-color);
}

 /* .jrfgf-card {
    border: 1px solid #ddd; 
    padding: 15px;
    border-radius: 8px; /
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /
    margin: 10px; 
    background-color: #fff; 
} */

.jrfgf-card-choice .jrfgf-title {
    font-size: 1.2em; 
    font-weight: 700; 
    margin-bottom: 5px; 
}

.jrfgf-card-choice .jrfgf-title span {
    font-weight: 400;
    font-style: italic;
    font-size: 80%;
}

.jrfgf-card-choice .jrfgf-subtext {
    font-size: 1em;   
    opacity: .9;  
} 

/**
 * Normal checkboxes
 **/
/*checkboxes*/
.jrfgf-styled-checkbox input[type="checkbox"] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}
  
.jrfgf-styled-checkbox input[type="checkbox"] {
      position: absolute;
      left: -9999px;
}
.jrfgf-styled-checkbox input[type="checkbox"] + label:before {
    content: "\2714";
    border: 2px solid #ccc;
    border-radius: 0.2em;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.5em;
    vertical-align: middle;
    color: transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    line-height: 15px;
    background-color: #fff;
    text-align: center;
}
  
.jrfgf-styled-checkbox input[type="checkbox"] + label:active:before {
    transform: scale(0);
}
  
.jrfgf-styled-checkbox input[type="checkbox"]:checked + label:before {
    background-color: var(--jrfgf-primary-color);
    border-color: var(--jrfgf-primary-color);
    color: #fff;
}


/**
 * Validation errors
 **/
.jrfgf_form_wrapper .gform_validation_errors {
    display: none !important;
}

.jrfgf-zip .gfield_validation_message {
    width: calc(25% - 12px) !important;  
    text-align: center;  
    margin: 10px auto;    
}

.jrfgf_form_wrapper .gfield_validation_message,
.jrfgf-zip .gfield_validation_message { 
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;    
    font-weight: bold;
}

/**
 * Text after submit button
***/
.jrfgf_submit_notice {
    text-align: center;
    font-size: 10px;
    font-style: italic;
    margin-top: 50px;
    margin-bottom: 0 !important;
    
}


/**
 * Save quote button
 **/
.jrfgf_save_quote_button_wrapper {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.jrfgf_save_quote_button_wrapper a {
    padding: 5px 20px;
    border: 1px solid #000;
    text-align: center;
    font-size: 16px;    
    color: black !important;
    border-radius: 4px;
}

.jrfgf_save_quote_button_wrapper a:hover {
    background-color: #fbfbfb;
}

/**
 * GF Save and Continue screen
 **/

.jrfgf_form_container .form_saved_message {
    background-color: white;
    padding: 50px;
    -webkit-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    -moz-box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
    box-shadow: 1px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;

}

.jrfgf_form_container .form_saved_message svg {
    margin: 0 auto;
    text-align: center;
    width: 50px;
    display: block;
    margin-bottom: 20px;
    fill: var(--jrfgf-primary-color);
}

.jrfgf_form_container .form_saved_message .form_saved_message_emailform .gform_resume_email_label {
    display: none !important;
}

@media screen and (min-width: 990px) { 
    .jrfgf_form_container .form_saved_message_emailform { 
        width: 50%;
        margin: 0 auto;
    }

    
}

.jrfgf_form_container .form_saved_message_emailform input[type=submit] {
    width: 100%;
    margin: 0 !important;
}


.jrfgf_form_container code {
    padding: 5px;
    margin-bottom: 20px;
    color: black;
    width: 100%;
    display: block;
    text-align: center;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.jrfgf_form_container code a {
    color: black !important;
    font-size: 18px;
}

/**
 * Dimensions Fields
 */
.jrfgf-dimensions-fields {
    margin-top: 30px;
    margin-bottom: 30px;
}

.jrfgf-dimensions-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 20px; /* Adds spacing between rows */
}

.jrfgf-dimension-field {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jrfgf-dimension-field.label {
    flex: 0 0 70%;
}

.jrfgf-dimension-field label {
    font-size: 12px;
    margin-bottom: 4px;
    color: #333;
}

.jrfgf-dimension-field input[type="text"],
.jrfgf-dimension-field input[type="number"] {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    outline: none !important;
}

.jrfgf-dimension-field input[type="text"]::placeholder,
.jrfgf-dimension-field input[type="number"]::placeholder {
    font-style: italic;
    color: #CCC;
    opacity: 0.7;
}

.input-with-suffix {
    display: flex;
    align-items: center;
}

.input-with-suffix input[type="number"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    width: 100%;
    outline: none !important;
}

.input-with-suffix .suffix {
    padding: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    color: #555;
}

.jrfgf-add-item-button {
    padding: 8px 16px;
    color: black;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: 2px solid black;
    align-self: flex-end;
    flex: 0 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: bold;
}

.jrfgf-add-item-button:hover {
    background-color: rgb(245, 245, 245);
}

.jrfgf-dimensions-validation-errors {
    color: red;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/** Custom render **/
.jrfgf-custom-option {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: block;
}

.jrfgf-custom-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jrfgf-custom-option-title {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #495c68;
}

.jrfgf-custom-option-price {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    color: #000;
}

.jrfgf-custom-option-description {
    font-size: 14px;
    margin-top: 5px;
    color: #6c757d;
    text-align: left;
}

.jrfgf-custom-option:hover {
    background-color: #f8f9fa;
}

/* Image choices start here */
.jrfgf_image_choices .gfield-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .jrfgf_image_choices .gfield-choice-input+label {
      max-width: 100% !important;
  }
  
  .jrfgf_image_choices .gchoice label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 250px; 
  }
  
  .jrfgf_image_choices .gchoice label div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .jrfgf_image_choices .gchoice label img {
    margin-bottom: 10px;
  }
  
  .jrfgf_form_wrapper .jrfgf_image_choices .gchoice label p {
    margin: 0;
    font-size: 20px !important;
    color: black;
      font-weight: bold;
  }
  
  .jrfgf_image_choices .gchoice input:checked + label {
    border-color: #FFF800 ;
    background-color: #fff80014;
    box-shadow: 0 4px 8px rgba(255, 248, 170, 0.6);
  }
  
  .jrfgf_image_choices .gfield_radio {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; 
  }
  
  .jrfgf_image_choices .gfield_radio {
    justify-content: center;
  }
  
  




