/* region Radio Buttons */
/*
*   ____           _ _          ____        _   _
*  |  _ \ __ _  __| (_) ___    | __ ) _   _| |_| |_ ___  _ __  ___
*  | |_) / _` |/ _` | |/ _ \   |  _ \| | | | __| __/ _ \| '_ \/ __|
*  |  _ < (_| | (_| | | (_) |  | |_) | |_| | |_| || (_) | | | \__ \
*  |_| \_\__,_|\__,_|_|\___/   |____/ \__,_|\__|\__\___/|_| |_|___/
*
*/

.gform_wrapper .gfield.buttonized .gfield_radio .gchoice,
.gform_wrapper .gfield.buttonized .gfield_checkbox .gchoice {
    position: relative;
    text-align: center;
}
.gform_wrapper .gfield.buttonized input[type="radio"],
.gform_wrapper .gfield.buttonized input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}
.gform_wrapper .gfield.buttonized .gfield_radio label,
.gform_wrapper .gfield.buttonized .gfield_checkbox label {
    display: block !important;
    position: relative;
    max-width: 100%;
    padding: 1em;
    font-size: 48px;
    border: 7px solid #3f3f3f;
    background-color: #dcd5ce;
    cursor: pointer;
}
.gform_wrapper .gfield.buttonized input[type="radio"]:focus+label,
.gform_wrapper .gfield.buttonized input[type="checkbox"]:focus+label {
    border-color: #040404;
}
.gform_wrapper .gfield.buttonized input[type="radio"]:checked+label,
.gform_wrapper .gfield.buttonized input[type="checkbox"]:checked+label {
    border-color: #040404;
    background-color: #d7d7d7;
    overflow: hidden;
}
.gform_wrapper .gfield.buttonized input[type="radio"]:checked+label::before,
.gform_wrapper .gfield.buttonized input[type="checkbox"]:checked+label::before {
    content: '';
    display: block;
    position: absolute;
    top: -.75em;
    right: -.75em;
    left: auto;
    width: 1.5em;
    height: 1.5em;
    background-color: #e1b653;
    border-radius: 0;
    border: 0;
    transform: rotate(45deg);
}
.gform_wrapper .gfield.buttonized .gfield_radio label::before,
.gform_wrapper .gfield.buttonized .gfield_checkbox label::before {
    display: none;
}

/* endregion */

/* region Checkboxes */
/*
*    ____ _               _    _
*   / ___| |__   ___  ___| | _| |__   _____  _____  ___
*  | |   | '_ \ / _ \/ __| |/ / '_ \ / _ \ \/ / _ \/ __|
*  | |___| | | |  __/ (__|   <| |_) | (_) >  <  __/\__ \
*   \____|_| |_|\___|\___|_|\_\_.__/ \___/_/\_\___||___/
*
*/

.ginput_container_checkbox,
.ginput_container_consent {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.ginput_container_checkbox label,
.ginput_container_consent label  {
    padding-left: 34px;
    position: relative;
    z-index: 100;
    cursor: pointer;
    color: var(--color-grey-dark);
    font-size: 16px;
    line-height: 24px;
    display: block;
    color: black;
}

.ginput_container_checkbox input[type="checkbox"],
.ginput_container_consent input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 0;
    width: 0;
}

.ginput_container_checkbox label::before,
.ginput_container_consent label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f00c";
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    left: 4px;
    position: absolute;
    color: white;
    z-index: 10;
    top: 1px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.ginput_container_checkbox label::after,
.ginput_container_consent label::after {
    content: " ";
    width: 24px;
    height: 24px;
    border-radius: 2px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    position: absolute;
    left: 0;
    top: 0;
}

.ginput_container_checkbox input[type="checkbox"]:checked + label::before,
.ginput_container_consent input[type="checkbox"]:checked + label::before {
    opacity: 1;
}

.ginput_container_checkbox input[type="checkbox"]:checked + label::after,
.ginput_container_consent input[type="checkbox"]:checked + label::after {
    background-color: var(--color-orange);
}

.ginput_container_checkbox .gchoice {
    margin-bottom: 10px;
}

/* endregion */