/* start greenhydro registration from plugin wizard.css */








.ghr-wizard {
    --ghr-green: #3CB043;
    --ghr-green-dark: #329939;
    --ghr-blue: #1B4F72;
    --ghr-accent: #2E86C1;
    --ghr-bg: #eef4fb;
    --ghr-card: #ffffff;
    --ghr-border: #d7dee6;
    --ghr-text: #2c3e50;
    --ghr-muted: #7b8794;
    --ghr-error: #C0392B;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    background: var(--ghr-bg);
    color: var(--ghr-text);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.ghr-wizard *,
.ghr-wizard *::before,
.ghr-wizard *::after {
    box-sizing: border-box;
}

.ghr-eyebrow {
    color: var(--ghr-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .06em;
    font-size: 13px;
    text-transform: uppercase;
}

.ghr-title {
    color: var(--ghr-blue);
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0 20px;
}

/* Progress */
.ghr-progress {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    gap: 4px;
}

.ghr-progress-step {
    flex: 1;
    position: relative;
    text-align: right;
    padding-left: 4px;
}

.ghr-progress-step:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 35px;
    background-image: url('https://ghagtech.com/wp-content/uploads/2026/08/forn-arrow-grey.png');
    background-size: 100%;
    width: 114px;
    height: 19px;
    background-repeat: no-repeat;
    border: unset;
    background-position: center;
}


.ghr-progress-step.is-complete:not(:first-child)::after {
  background-image: url('https://ghagtech.com/wp-content/uploads/2026/08/blue-arrow.png');}

.ghr-progress-step.is-active:not(:first-child)::after {
	 background-image: url('https://ghagtech.com/wp-content/uploads/2026/08/arrow-form-green.png');
   
}

.ghr-progress-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #55606c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ghr-progress-step.is-active .ghr-progress-dot {
    background: var(--ghr-green);
}

.ghr-progress-step.is-complete .ghr-progress-dot {
    background: var(--ghr-blue);
}

.ghr-progress-label {
    display: block;
    font-size: 12px;
    color: var(--ghr-muted);
    margin-top: 6px;
}

li.ghr-progress-step.is-complete span.ghr-progress-pct {
    color: #1B4F72;
}

select.ghr-input {
    position: relative;
    appearance: none;
}

.ghr-field {
    position: relative;
}


span.ghr-progress-pct {
    padding-top: 5px;
    padding-left: 4px;
    display: block;
    font-size: 14px;
    color: #666666;
    font-weight: 700;
}

.ghr-progress-step.is-active .ghr-progress-pct,
.ghr-progress-step.is-active .ghr-progress-label {
    color: var(--ghr-green);
}

/* Cards */
.ghr-card {
    background: var(--ghr-card);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 18px;
    /* box-shadow: 0 1px 3px rgba(27, 79, 114, .06); */
}

.ghr-card-title {
    color: var(--ghr-blue);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
}

/* Steps */
.ghr-step {
    display: none;
}

.ghr-step.is-active {
    display: block;
}

/* Fields */
.ghr-row {
    display: grid;
    gap: 16px 20px;
}

.ghr-row-2 {
    grid-template-columns: 1fr 1fr;
}

.ghr-field {
    margin-bottom: 16px;
}

.ghr-label {
    display: block;
    color: #666666;
    margin-bottom: 6px;
    font-family: Arial;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.ghr-req {
    color: var(--ghr-error);
}

.ghr-help {
    display: block;
    font-size: 12px;
    color: var(--ghr-muted);
    margin-bottom: 6px;
}

.ghr-input {
    width: 100%;
    min-height: 44px;
    padding: 10px !important;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
    opacity: 1;
    border-radius: 8px !important;
    border: 1px solid #1B4F72 !important;
    color: #666666;
}

.ghr-input:focus {
    outline: none;
    border-color: var(--ghr-green);
    box-shadow: 0 0 0 3px rgba(60, 176, 67, .15);
}

.ghr-textarea {
    min-height: 90px;
    resize: vertical;
}

.ghr-field.has-error .ghr-input,
.ghr-field.has-error .ghr-radio-group,
.ghr-field.has-error .ghr-check-group {
    border-color: var(--ghr-error);
}

.ghr-error {
    display: none;
    color: var(--ghr-error);
    font-size: 12px;
    margin-top: 4px;
}

.ghr-field.has-error .ghr-error,
.ghr-consent.has-error .ghr-error {
    display: block;
}

/* Radio / checkbox groups */
.ghr-radio-group {
    display: flex;
    gap: 22px;
    padding-top: 4px;
}

.ghr-radio, .ghr-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    min-height: 24px;
}

.ghr-radio input, .ghr-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--ghr-green);
    margin: 0;
}

.ghr-check-group {
    display: grid;
    gap: 10px 16px;
    padding-top: 4px;
}

.ghr-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ghr-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ghr-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ghr-check-group-stack {
    display: block;
    padding-top: 0;
}

.ghr-cat-block {
    margin-bottom: 10px;
}

.ghr-cat-title {
    color: #34495e;
    font-size: 12px;
    font-weight: 700;
    margin: 2px 0 6px;
}

.ghr-cat-options {
    padding-top: 0;
}

.ghr-check.is-disabled {
    opacity: .45;
    cursor: not-allowed;
}

.ghr-check.is-disabled input {
    pointer-events: none;
}

.ghr-secondary-hint {
    margin-top: 6px;
}

/* Consent rows */
.ghr-consent {
    margin-bottom: 12px;
}

.ghr-consent-check {
    align-items: flex-start;
}

.ghr-consent-check span {
    line-height: 1.4;
}

/* Upload */
.ghr-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px dashed var(--ghr-border);
    border-radius: 8px;
    padding: 22px;
    cursor: pointer;
    color: var(--ghr-muted);
    font-size: 13px;
    text-align: center;
    transition: border-color .15s;
}

.ghr-upload-box:hover {
    border-color: var(--ghr-green);
}

.ghr-upload-icon {
    font-size: 22px;
    color: var(--ghr-accent);
}

.ghr-upload-list {
    margin-top: 8px;
}

.ghr-upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f2f7fc;
    border: 1px solid var(--ghr-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    margin-top: 6px;
}

.ghr-upload-item a {
    color: var(--ghr-accent);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ghr-upload-remove {
    background: none;
    border: none;
    color: var(--ghr-error);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.ghr-upload-item.is-uploading {
    opacity: .7;
}

/* Repeatable rows */
.ghr-repeat-row {
    border: unset;
    border-radius: 0px;
    padding: 0px;
    margin-bottom: 16px;
    background: #fff;
}

.ghr-repeat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ghr-repeat-title {
    font-weight: 700;
    color: var(--ghr-blue);
}

.ghr-repeat-remove {
    background: none;
    border: none;
    color: #1b4f72 !important;
    cursor: pointer;
    font-size: 13px;
    border: 1px solid #1b4f72 !important;
}

/* Buttons */
.ghr-btn {
    cursor: pointer;
    font-family: Arial;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    width: 114px;
    padding-right: 15px !important;
    padding-left: 15px !important;
    border-radius: 4px !important;
    height: 40px;
}

.ghr-btn-primary {
    background: var(--ghr-green) !important;
    color: #fff !important;
    border: none !important;
}

.ghr-btn-primary:hover {
    background: var(--ghr-green-dark);
}

.ghr-btn-outline {
    background: #fff;
    color: #1b4f72 !important;
    border: 1px solid #1B4F72 !important;
}

.ghr-btn-outline:hover {
    background: #1b4f72;
    color: #ffffff !important;
    border: 1px solid #1B4F72 !important;
}

.ghr-btn-ghost {
    background: #fff;
    color: #3CB043 !important;
    border: 1px solid #3CB043 !important;
}

.ghr-btn-ghost:hover {
    background: #3cb043;
    color: #ffffff !important;
    border: 1px solid #3CB043 !important;
}

.ghr-btn-add {
    background: var(--ghr-green) !important;
    color: #fff !important;
    border: none !important;
}

.ghr-btn-add:hover {
    background: var(--ghr-green-dark);
}

/* Nav */
.ghr-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.ghr-nav-left, .ghr-nav-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ghr-status {
    text-align: right;
    font-size: 12px;
    color: var(--ghr-muted);
    min-height: 18px;
    margin-top: 8px;
    padding-right: 4px;
}

.ghr-status.is-error {
    color: var(--ghr-error);
}

.ghr-status.is-success {
    color: var(--ghr-green);
}

/* Review */
.ghr-review-group {
    margin-bottom: 20px;
}

.ghr-review-group h3 {
    color: var(--ghr-blue);
    font-size: 15px;
    border-bottom: 2px solid var(--ghr-green);
    padding-bottom: 6px;
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghr-review-edit {
    background: var(--ghr-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
}

.ghr-review-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px dotted #e4e9ef;
}

.ghr-review-item .ghr-review-key {
    color: #666;
    font-weight: 600;
}

.ghr-review-item .ghr-review-val {
    text-align: right;
    word-break: break-word;
    color: #666;
	font-weight: 400;
}

.ghr-review-sub {
    font-weight: 700;
    color: var(--ghr-blue);
    margin: 12px 0 4px;
    font-size: 13px;
}

/* Success */
.ghr-success-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(27, 79, 114, .1);
}

.ghr-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ghr-green);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ghr-success-card h2 {
    color: var(--ghr-blue);
}

.ghr-reference {
    font-size: 15px;
    margin-top: 12px;
}

/* Crop picker */
.ghr-croppicker {
    position: relative;
}

.ghr-croppicker .ghr-crop-toggle {
    width: 100%;
    min-height: 44px;
    border: 1px solid #1B4F72;
    display: flex;
    align-items: center;
    color: var(--ghr-text) !important;
    text-align: left;
    font-size: 14px;
    box-shadow: none !important;
    justify-content: space-between;
    opacity: 1;
    border-radius: 8px;
    padding: 10px;
    border-width: 1px;
}

.ghr-crop-toggle:hover {
    background: #fff !important;
}

.ghr-croppicker .ghr-crop-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 102, 153, .15) !important;
    border-color: #9bbdd8 !important;
    background: #fff;
}

.ghr-croppicker .ghr-acc-head:hover {
    background: #fff;
    color: #1b4f72;
}

.ghr-croppicker.has-value .ghr-crop-toggle-value {
    color: var(--ghr-text);
}

.ghr-croppicker:not(.has-value) .ghr-crop-toggle-value {
    color: #7f8c9a;
}

.ghr-croppicker .ghr-crop-toggle-arrow,
.ghr-croppicker .ghr-acc-arrow {
    font-size: 16px;
    line-height: 1;
    color: #6f7f8f;
    transition: transform .2s ease;
}

.ghr-croppicker.is-open .ghr-crop-toggle-arrow,
.ghr-croppicker .ghr-acc-head.is-open .ghr-acc-arrow {
    transform: rotate(180deg);
}

.ghr-croppicker .ghr-crop-panel {
    margin-top: 6px;
    border: 1px solid var(--ghr-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.ghr-croppicker .ghr-crop-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--ghr-border);
    padding: 8px 12px;
}

.ghr-croppicker .ghr-crop-search-icon {
    color: #5f6f7f;
    font-size: 16px;
}

.ghr-croppicker .ghr-crop-search {
    border: none !important;
    box-shadow: none;
    margin: 0;
    min-height: 30px;
    padding-top: 10px !important;
    padding-right: 15px !important;
    padding-bottom: 10px !important;
    padding-left: 15px !important;
    opacity: 1;
}

.ghr-croppicker .ghr-crop-search:focus {
    border: 0;
    box-shadow: none;
}

.ghr-croppicker .ghr-accordion {
    max-height: 420px;
    overflow-y: auto;
}

.ghr-croppicker .ghr-acc-item {
    border-bottom: 1px solid var(--ghr-border);
}

.ghr-croppicker .ghr-acc-item:last-child {
    border-bottom: none;
}

.ghr-croppicker .ghr-acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 0;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #1c4562;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.ghr-croppicker .ghr-acc-body {
    padding: 2px 14px 10px;
    display: grid;
    gap: 8px;
}

.ghr-croppicker .ghr-crop-option {
    font-size: 14px;
    color: #2f3d4a;
}

select.ghr-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.91732 5.25001L7.00065 8.16667L4.08398 5.25001' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

span.ghr-progress-dot span img {
    display: none;
}

button.ghr-btn.ghr-btn-ghost {
    width: fit-content;
}

.ghr-form:has(section.ghr-step.is-active[data-step='1']) button[data-action="back"] {
    display: none;
}

li.ghr-progress-step.is-complete span.text {
    display: none;
}

li.ghr-progress-step.is-complete img {
    display: block;
}

.ghr-card>div:last-child {
    margin-bottom: 0 !important;
}


.ghr-progress-step[data-step-indicator="1"] {
    flex: 0 !important;
    max-width: fit-content !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

button.ghr-btn.ghr-btn-add {
    width: fit-content;
}

/* Upload extras */

.ghr-upload-sub {
    font-size: 11px;
    color: var(--ghr-muted);
}

.ghr-upload-box.is-dragover {
    border-color: var(--ghr-green);
    background: #eef8ef;
}

/* Mobile */
@media (max-width: 768px) {
    .ghr-progress-step:not(:first-child)::after {
        top: 19px;
         left: auto;
        right: 48%;
        width: 38px;
        height: 12px;
    }
	.ghr-eyebrow{
		    justify-content: center;
	}
    span.ghr-progress-pct {
        padding-top: 5px;
        font-size: 12px;
        padding-left: 0;
    }

    .ghr-row {
        gap: 2px 20px;
    }

    .ghr-review-item {
        gap: 5px;
        flex-direction: column;
    }

    .ghr-review-item .ghr-review-val {
        text-align: left;
    }

    .ghr-progress-dot {
        width: 24px;
        height: 24px;
    }

    .ghr-card {
        border-radius: 10px;
        padding: 16px;
    }

    .ghr-row-2 {
        grid-template-columns: 1fr;
    }

    .ghr-cols-3, .ghr-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ghr-title {
        font-size: 22px;
		text-align: center;
    }

    .ghr-progress-label {
        display: none;
    }

    .ghr-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .ghr-nav-left, .ghr-nav-right {
        justify-content: space-between;
    }

    .ghr-btn {
        flex: 1;
        justify-content: center;
    }
}




.ghr-croppicker .ghr-acc-body{
	padding:0;
}
[data-acc-body] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

[data-acc-head] {
    cursor: pointer;
}

[data-acc-head .ghr-acc-arrow {
    display: inline-block;
    transition: transform 0.35s ease;
}

[data-acc-head.is-open .ghr-acc-arrow {
    transform: rotate(180deg);
}




/* end greenhydro registration from plugin wizard.css */
