﻿
/* Forms */

.gform_wrapper label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.gform_wrapper input[type="button"],
.gform_wrapper input[type="color"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="datetime"],
.gform_wrapper input[type="datetime-local"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="file"],
.gform_wrapper input[type="month"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="reset"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="submit"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="text"],
.gform_wrapper input[type="time"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="week"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 0.4375rem 0.9375rem 0.5rem;
    margin: 0 0 0 0;
    vertical-align: bottom;
}

.gform_wrapper textarea {
    height: 6rem;
}

.gform_wrapper input[type="button"],
.gform_wrapper input[type="submit"] {
    width: auto;
    background: #BA0C2F;
    color: #fff;
    border: 1px solid #BA0C2F;
    cursor: pointer;
}

.gform_wrapper input[type="reset"] {
    width: auto;
    background: #fff;
    color: #BA0C2F;
    border: 1px solid #BA0C2F;
    cursor: pointer;
    margin-left: 1rem;
}

.gform_wrapper input[type="button"]:hover,
.gform_wrapper input[type="submit"]:hover {
    background: #BA0C2F;
    border-color: #BA0C2F;
}

.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="image"],
.gform_wrapper input[type="radio"] {
    width: auto;
}

.gform_wrapper input[type="file"] {
    padding: 0.25rem;
}

.gform_wrapper select {
    height: 2.625rem;
}

.gform_wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gform_wrapper h1,
.gform_wrapper h2,
.gform_wrapper h3,
.gform_wrapper h4,
.gform_wrapper h5,
.gform_wrapper h6 {
    margin-bottom: 0;
}

.gform_wrapper input[type="checkbox"] {
    margin-right: 0.8125rem;
}

.gform_wrapper input[type="radio"] {
    margin-right: 1rem;
}

.gform_wrapper .gfield_required {
    color: #BA0C2F;
    margin-left: 0.5rem;
}

.gform_wrapper .gfield_list thead {
    color: inherit;
    background-color: #fff;
}

.gform_wrapper .gfield_list tbody tr {
    background-color: transparent;
    border: none;
}

    .gform_wrapper .gfield_list tbody tr td {
        padding: 0;
    }

.gform_wrapper .gfield_list thead th {
    padding: 0;
}

.gform_wrapper .gfield_list .gfield_list_cell {
    padding-right: 1rem;
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
    font-weight: normal;
}

.gform_wrapper .gsection_title {
    border-bottom: 2px solid #BA0C2F;
    padding-bottom: 0.5rem;
}

.gform_wrapper .gfield_visibility_hidden {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.gform_wrapper .ginput_complex label {
    font-weight: normal;
}

.gform_wrapper .gfield_description {
    font-size: 0.9375rem;
    font-style: italic;
}

/* Chosen https://harvesthq.github.io/chosen/ */

.chosen-container {
    width: 100% !important;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .chosen-container * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .chosen-container .chosen-drop {
        position: absolute;
        top: 100%;
        z-index: 1010;
        width: 100%;
        border: 1px solid #d9d9d9;
        border-top: 0;
        background: #fff;
        clip: rect(0, 0, 0, 0);
        -webkit-clip-path: inset(100% 100%);
        clip-path: inset(100% 100%);
    }

    .chosen-container.chosen-with-drop .chosen-drop {
        clip: auto;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .chosen-container a {
        cursor: pointer;
    }

    .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
        margin-right: 4px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: normal;
        color: #999999;
    }

        .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
            content: ":";
            padding-left: 2px;
            vertical-align: top;
        }

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0.4375rem 0.9375rem 0.5rem 1.125rem;
    height: 42px;
    border: 1px solid #d9d9d9;
    background-clip: padding-box;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px;
}

    .chosen-container-single .chosen-single :after {
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 6px solid #3c3c3c;
        position: absolute;
        top: 17px;
        right: 6px;
        content: "";
        z-index: 1;
    }

.chosen-container-single .chosen-default {
    color: #999;
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 1px;
}

    .chosen-container-single .chosen-single abbr:hover {
        background-position: -42px -10px;
    }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

    .chosen-container-single .chosen-single div b {
        display: block;
        width: 100%;
        height: 100%;
    }

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .chosen-container-single .chosen-search input[type="text"] {
        padding: 0.4375rem 3rem 0.5rem 1.1875rem;
        width: 100%;
        height: auto;
        outline: 0;
        border: 1px solid #d9d9d9;
        border-left: 0;
        border-right: 0;
    }

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    -webkit-clip-path: inset(100% 100%);
    clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}

    .chosen-container .chosen-results li {
        display: none;
        margin: 0;
        padding: 7px 0 8px 18px;
        list-style: none;
        line-height: inherit;
        word-wrap: break-word;
        -webkit-touch-callout: none;
    }

        .chosen-container .chosen-results li.active-result {
            display: list-item;
            cursor: pointer;
        }

        .chosen-container .chosen-results li.disabled-result {
            display: list-item;
            color: #ccc;
            cursor: default;
        }

        .chosen-container .chosen-results li.highlighted {
            background-color: #1e90ff;
            color: #fff;
        }

        .chosen-container .chosen-results li.no-results {
            display: list-item;
        }

        .chosen-container .chosen-results li.group-result {
            display: list-item;
            font-weight: bold;
            cursor: default;
        }

        .chosen-container .chosen-results li.group-option {
            padding-left: 15px;
        }

        .chosen-container .chosen-results li em {
            font-style: normal;
            text-decoration: underline;
        }

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: text;
}

    .chosen-container-multi .chosen-choices li {
        float: left;
        list-style: none;
    }

        .chosen-container-multi .chosen-choices li.search-field {
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }

            .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
                margin: 1px 0;
                padding: 0;
                height: 25px;
                outline: 0;
                border: 0 !important;
                background: transparent !important;
                color: #999;
                font-size: 100%;
                font-family: sans-serif;
                line-height: normal;
                width: 25px;
            }

        .chosen-container-multi .chosen-choices li.search-choice {
            position: relative;
            margin: 3px 5px 3px 0;
            padding: 3px 20px 3px 5px;
            border: 1px solid #d9d9d9;
            max-width: 100%;
            background-color: #eeeeee;
            background-size: 100% 19px;
            background-repeat: repeat-x;
            background-clip: padding-box;
            color: #333;
            line-height: 13px;
            cursor: default;
        }

            .chosen-container-multi .chosen-choices li.search-choice span {
                word-wrap: break-word;
            }

            .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
                position: absolute;
                top: 4px;
                right: 3px;
                display: block;
                width: 12px;
                height: 12px;
                font-size: 1px;
            }

                .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
                    background-position: -42px -10px;
                }

        .chosen-container-multi .chosen-choices li.search-choice-disabled {
            padding-right: 5px;
            border: 1px solid #ccc;
            background-color: #e4e4e4;
            color: #666;
        }

        .chosen-container-multi .chosen-choices li.search-choice-focus {
            background: #d4d4d4;
        }

            .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
                background-position: -42px -10px;
            }

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #d9d9d9;
}

    .chosen-container-active.chosen-with-drop .chosen-single div {
        border-left: none;
        background: transparent;
    }

        .chosen-container-active.chosen-with-drop .chosen-single div b {
            background-position: -18px 2px;
        }

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
}

    .chosen-container-active .chosen-choices li.search-field input[type="text"] {
        color: #222 !important;
    }

.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default;
}

    .chosen-disabled .chosen-single {
        cursor: default;
    }

    .chosen-disabled .chosen-choices .search-choice .search-choice-close {
        cursor: default;
    }

.chosen-rtl {
    text-align: right;
}

    .chosen-rtl .chosen-single {
        overflow: visible;
        padding: 0 8px 0 0;
    }

        .chosen-rtl .chosen-single span {
            margin-right: 0;
            margin-left: 26px;
            direction: rtl;
        }

    .chosen-rtl .chosen-single-with-deselect span {
        margin-left: 38px;
    }

    .chosen-rtl .chosen-single div {
        right: auto;
        left: 3px;
    }

    .chosen-rtl .chosen-single abbr {
        right: auto;
        left: 26px;
    }

    .chosen-rtl .chosen-choices li {
        float: right;
    }

        .chosen-rtl .chosen-choices li.search-field input[type="text"] {
            direction: rtl;
        }

        .chosen-rtl .chosen-choices li.search-choice {
            margin: 3px 5px 3px 0;
            padding: 3px 5px 3px 19px;
        }

            .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
                right: auto;
                left: 4px;
            }

    .chosen-rtl.chosen-container-single .chosen-results {
        margin: 0 0 4px 4px;
        padding: 0 4px 0 0;
    }

    .chosen-rtl .chosen-results li.group-option {
        padding-right: 15px;
        padding-left: 0;
    }

    .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
        border-right: none;
    }

    .chosen-rtl .chosen-search input[type="text"] {
        padding: 4px 5px 4px 20px;
        direction: rtl;
    }

.chosen-container-single .chosen-search:before {
    font-family: 'gnl-ui-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    position: absolute;
    top: 13px;
    right: 16px;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
    .chosen-rtl .chosen-search input[type="text"],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type="text"],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span {
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important;
    }
}

/* Form Validation */
.gform_wrapper .validation_error {
    color: #fff;
    background-color: #BA0C2F;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error input {
    border-color: #BA0C2F;
}

.gform_wrapper .validation_message {
    color: #BA0C2F;
    font-style: italic;
    font-size: 0.875rem;
}


/* Form Flexbox Layout */
.gform_body {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: 1.5rem;
}

.gform_fields {
    display: flex;
    flex-wrap: wrap;
}

    .gform_fields .gfield,
    .gform_fields .gfield.full {
        margin: 0.5rem;
        width: 100%;
    }
        .gform_fields .gfield.single {
            width: calc(10% - 1rem);
        }
        .gform_fields .gfield.name {
            width: calc(45% - 1rem);
        }

        .gform_fields .gfield.speciesmix {
            width: calc(33% - 1rem);
        }

        .gform_fields .gfield.small {
            width: calc(25% - 1rem);
        }

        .gform_fields .gfield.medium {
            width: calc(50% - 1rem);
        }

        .gform_fields .gfield.large {
            width: calc(75% - 1rem);
        }

    .gform_fields .gsection h2 {
        margin: 0.5rem 0;
    }

    .gform_fields .gfield.inline ul {
        display: flex;
    }

        .gform_fields .gfield.inline ul li {
            justify-content: space-evenly;
            margin-right: 2rem;
        }

    .gform_fields .gfield .gfield_chainedselect {
        display: flex;
    }

        .gform_fields .gfield .gfield_chainedselect span {
            width: 50%;
            margin: 0 0.5rem;
            padding: 0;
        }

            .gform_fields .gfield .gfield_chainedselect span:nth-child(1) {
                margin-left: 0;
            }

            .gform_fields .gfield .gfield_chainedselect span:nth-child(2) {
                margin-right: 0;
            }

    .gform_fields .ginput_complex {
        display: flex;
        flex-wrap: wrap;
        margin: -0.5rem;
    }

        .gform_fields .ginput_complex .ginput_full {
            width: calc(100% - 1rem);
            margin: 0.5rem;
        }

        .gform_fields .ginput_complex .ginput_left,
        .gform_fields .ginput_complex .ginput_right {
            width: calc(50% - 1rem);
            margin: 0.5rem;
        }

    .gform_fields .gfield_checkbox li {
        display: flex;
    }

        .gform_fields .gfield_checkbox li input {
            margin-top: 0.4375rem;
        }

    .gform_fields .gfield.headertext {
        text-transform: uppercase;
        border-bottom: 1px solid #BA0C2F;
        padding-bottom: 0.5rem;
        font-weight: 600;
    }

.gpnf-add-entry {
    color: white;
    background-color: #BA0C2F;
    display: inline-block;
    padding: 0.625rem 0.75rem 0.6875rem 0.875rem;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}


/* HTML Block style */

.gform_wrapper .gfield_html ul {
    padding-left: 20px !important;
    list-style-type:disc;
    }

 body #gform_wrapper_4 table.gfield_list tr td.gfield_list_20_cell1, td.gfield_list_22_cell1, td.gfield_list_24_cell1 {
    width: 15%;
} 

body #gform_wrapper_4 table.gfield_list tr td.gfield_list_20_cell2, td.gfield_list_22_cell2, td.gfield_list_24_cell2  {
    width: 25%;
} 

body #gform_wrapper_4 table.gfield_list tr td.gfield_list_20_cell3, td.gfield_list_22_cell3, td.gfield_list_24_cell3  {
    width: 45%;
} 

body #gform_wrapper_4 table.gfield_list tr td.gfield_list_20_cell4, td.gfield_list_22_cell4, td.gfield_list_24_cell4  {
    width: 15%;
} 


body #gform_wrapper_4 .gform_body .gform_fields .gfield .gfield_consent_label{

    display: inline-block;
    max-width: calc(100% - 32px);
    vertical-align: top;

}

/* Seedling request form - Checkbox style */
body .gform_wrapper .gform_body .gform_fields #field_5_27.gfield .gfield_checkbox li input[type=checkbox] {
	margin-bottom: 15px;
}
