/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 21 2023 | 09:40:05 */
.gchoice {
    z-index:9;
    position:relative;
    margin:0 0 10px 0;
    padding:0;
    height:70px;
    width: 100%!important;
	text-transform:capitalize;
	font-weight:600;
	color:#000;
}
input.gfield-choice-input {
    z-index:2;
    appearance:none;
    margin:0;
    padding:0;
    width: 100%;
    border-radius: 5px;
    height:100%;
    background: #f1f1f1!important;
    transition: .3s all ease-in-out;
    position:absolute;
    background:#dfe1e5;
    position:absolute;
}
input.gfield-choice-input:hover,
.gchoice label:hover {
    cursor:pointer;
}
input.gfield-choice-input:checked {
    background:#ff0000;
}
input.gfield-choice-input:checked + label {
    color:#000;
}
.gchoice label {
    z-index:3;
    font-weight:700;
    color:#000;
    display:block;
    position: absolute;
    padding: 0 0 0 30px;
    top: 50%;
    transform: translateY(-50%);
    width:100%;
    overflow:visible;
}
input.gfield-choice-input + label:after {
    content: "";
    position: absolute;
    right: -10px;
 /*   transform: translateY(-50%);*/
    width: 30px;
    height: 30px;
    border: 2px solid #c5c9d2;
    z-index: 99;
/*    top: 50%;*/
    transition: .3s all ease-in-out;
    color: #0e6153;
    font-size: 25px;
    text-align: center;
    line-height: 22px;
    font-weight: 500;
}
input[type="checkbox"].gfield-choice-input + label:after { 
    border-radius: 5px;
}
input[type="radio"].gfield-choice-input + label:after {
    border-radius:50px;
}
input.gfield-choice-input:checked + label:after {
    content: "\2713";
    border: 2px solid #0e6153;
}


.gform_wrapper select {
	background: #f1f1f1!important;
}
input[type=email], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
	background: #f1f1f1!important;
}

.nodisplay
{
	display:none!important;
	
}
.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large
{
	min-height:50px!important;
}

