.gfield--type-donation-amount-buttons input[type="radio"],
.gfield--type-choice.clickable-buttons input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.gfield--type-donation-amount-buttons .ginput_container.ginput_container_radio .gfield_radio,
.gfield--type-choice.clickable-buttons .ginput_container.ginput_container_radio .gfield_radio {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .5rem;
}

.gfield--type-donation-amount-buttons .gfield_radio .gchoice,
.gfield--type-choice.clickable-buttons .gfield_radio .gchoice {
    display: inline-block;
}

.gfield--type-donation-amount-buttons .gfield_radio label,
.gfield--type-choice.clickable-buttons .gfield_radio label {
    background-color: #ddd;
    padding: .5rem 1rem;
    font-family: inherit;
    font-size: 1em;
    border-radius: 8px;
    color: #232323;
    max-width: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.gfield--type-donation-amount-buttons .gfield_radio label:hover,
.gfield--type-choice.clickable-buttons .gfield_radio label:hover {
  background-color: #B8BED1;
  color: #000000;
}

.gfield--type-donation-amount-buttons .gfield_radio input[type="radio"] + label,
.gfield--type-choice.clickable-buttons .gfield_radio input[type="radio"] + label {
    max-width: 100%;
}

.gfield--type-donation-amount-buttons .gfield_radio input[type="radio"]:focus + label,
.gfield--type-choice.clickable-buttons .gfield_radio input[type="radio"]:focus + label {
    border: 1px dashed #444;
}

.gfield--type-donation-amount-buttons .gfield_radio input[type="radio"]:checked + label,
.gfield--type-choice.clickable-buttons .gfield_radio input[type="radio"]:checked + label {
    background-color: #002395;
    color: #ffffff;
}

.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single > .chosen-single {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: inherit;
    /* padding: 9px 12px; */
    line-height: normal;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxI…9pbnRzPSIzLjU0IDUuMzMgMi40OCA2LjgyIDEuNDEgNS4zMyAzLjU0IDUuMzMiLz48L3N2Zz4=) no-repeat;
    background-position: right 8px center;
    border-radius: 4px;
    padding-left: 12px;
    color: rgb(85, 85, 85);
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEuNDEgNC42NyAyLjQ4IDMuMTggMy41NCA0LjY3IDEuNDEgNC42NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIzLjU0IDUuMzMgMi40OCA2LjgyIDEuNDEgNS4zMyAzLjU0IDUuMzMiLz48L3N2Zz4=) no-repeat;
    background-position: right 8px center;
    background-size: 17px;
}

.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single > .chosen-single .chosen-search-input {
    padding: 8px 20px 8px 5px;
}


.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single > .chosen-single > div > b {
    display: none;
}

.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single.chosen-with-drop > .chosen-single {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single > .chosen-single,
.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single.chosen-with-drop > .chosen-drop,
.gform_wrapper.gravity-theme .gfield.gfield--type-select .ginput_container_select .chosen-container-single.chosen-with-drop > .chosen-drop .chosen-search-input {
    border: 1px solid rgb(204, 204, 204);
}

.border-b {
    border-bottom-width: 1px;
}

.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox .gchoice {
    display: flex;
    margin-bottom: 0.25rem;
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input {
    appearance:none;
    margin:0;
    padding:0;
    border-radius: 5px;
    background: white;
    transition: .3s all ease-in-out;
    opacity: 0;
    position: fixed;
    width: 0;
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input,
.gchoice label {
    cursor:pointer;
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input:checked {
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input:checked + label {
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox .gchoice label {
    position: relative;
    padding-left: 2rem;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input + label:before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    line-height: 1.1rem;
    border: 1px solid #c5c9d2;
    transition: .15s all ease-in-out;
    color: #002395;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input[type="checkbox"].gfield-choice-input + label:before { 
    border-radius: 5px;
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input[type="radio"].gfield-choice-input + label:before {
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input + label:before {
    content: "";
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input:checked + label:before {
    background-color: #002395;
    border-color: #002395;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' class='svg svg-icon'%3E%3Cpath d='M7.629,14.566c0.125,0.125,0.291,0.188,0.456,0.188c0.164,0,0.329-0.062,0.456-0.188l8.219-8.221c0.252-0.252,0.252-0.659,0-0.911c-0.252-0.252-0.659-0.252-0.911,0l-7.764,7.763L4.152,9.267c-0.252-0.251-0.66-0.251-0.911,0c-0.252,0.252-0.252,0.66,0,0.911L7.629,14.566z' style='stroke: %23ffffff; fill: %23ffffff;'%3E%3C/path%3E%3C/svg%3E");
}
.gform_wrapper.gravity-theme .gfield.gfield--type-checkbox input.gfield-choice-input:checked + label {
    color: #002395;
}

.gform_wrapper.gravity-theme .gfield--type-checkbox.columns-2 .ginput_container.ginput_container_checkbox {
    column-count: 2;
    column-fill: auto;
}