/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 21 2025 | 14:52:02 */
/* Target mobile screens */
#gform_wrapper_3[data-form-index="0"].gform-theme {
	--gf-color-primary: rgb(101,184,145) !important;
	--gf-field-pg-prog-bar-bg-color-blue: rgb(101,184,145) !important;
}


@media only screen and (max-width: 767px) {
  /* Target the container of your image choices */
	.gform-theme--framework .gfield--type-image_choice .gchoice {
		inline-size: 160px;
		max-inline-size: 160px;
		min-inline-size: 160px;
	}
  
	.gform_wrapper .gfield.gfield_contains_required .ginput_container_imagechoice {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns of equal width */
    gap: 10px; /* Space between items */
  }
  
  /* Target the individual image choice items */
  .gform_wrapper .gfield.gfield_contains_required .ginput_container_imagechoice .image-choices-choice {
    width: 100% !important; /* Force width to 100% of its grid cell */
    transform: none !important; /* Remove any scaling */
  }
  
  /* Make the images themselves smaller */
  .gform_wrapper .image-choices-choice-image-wrap img {
    max-width: 90% !important;
    height: auto !important;
  }
}