.elementor-3366 .elementor-element.elementor-element-81fb2c6{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-879ce86 *//* =========================================
   GREEN RABBIT CAREER FORM
========================================= */

.grx-career-form {
    --grx-green: #098742;
    --grx-green-dark: #066b35;
    --grx-dark: #063b25;
    --grx-text: #1e3027;
    --grx-muted: #718078;
    --grx-soft: #f4faf6;
    --grx-border: #dce9e1;

    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;

    background: #ffffff;
    border: 1px solid #e3ede7;
    border-radius: 24px;

    box-shadow: 0 22px 70px rgba(20, 70, 43, 0.08);

    font-family: inherit;
}


/* =========================================
   HEADER
========================================= */

.grx-career-head {
    position: relative;
    overflow: hidden;

    margin-bottom: 38px;
    padding: 32px 34px;

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(80, 204, 126, 0.23),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #063b25 0%,
            #08763d 100%
        );

    color: #ffffff;
}


.grx-career-head::after {
    content: "";

    position: absolute;
    right: -60px;
    bottom: -100px;

    width: 220px;
    height: 220px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
}


.grx-career-tag {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 14px;
    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;

    background: rgba(255,255,255,.1);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
}


.grx-career-head h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}


.grx-career-head p {
    position: relative;
    z-index: 2;

    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   SECTION
========================================= */

.grx-career-section {
    margin-bottom: 24px;
    padding: 27px;

    border: 1px solid var(--grx-border);
    border-radius: 18px;

    background: #ffffff;
}


.grx-career-last {
    margin-bottom: 20px;
}


/* =========================================
   SECTION TITLE
========================================= */

.grx-section-title {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 24px;
}


.grx-section-title > span {
    display: flex;
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf7ef;
    color: var(--grx-green);

    font-size: 13px;
    font-weight: 700;
}


.grx-section-title h4 {
    margin: 0 0 3px;

    color: var(--grx-dark);

    font-size: 18px;
    font-weight: 700;
}


.grx-section-title p {
    margin: 0;

    color: var(--grx-muted);

    font-size: 12px;
}


/* =========================================
   GRID
========================================= */

.grx-career-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 19px;
}


/* =========================================
   FIELDS
========================================= */

.grx-field {
    min-width: 0;
}


.grx-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--grx-text);

    font-size: 13px;
    font-weight: 600;
}


.grx-field label em {
    color: var(--grx-green);

    font-style: normal;
}


/* =========================================
   INPUTS
========================================= */

.grx-career-form input[type="text"],
.grx-career-form input[type="email"],
.grx-career-form input[type="tel"],
.grx-career-form input[type="url"],
.grx-career-form select,
.grx-career-form textarea {

    box-sizing: border-box;

    width: 100%;
    max-width: 100%;

    min-height: 52px;

    margin: 0;
    padding: 0 15px;

    border: 1px solid #dbe6df;
    border-radius: 10px;

    background: #fbfdfc;

    color: #26372e;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.grx-career-form input::placeholder,
.grx-career-form textarea::placeholder {
    color: #9aa8a0;
}


.grx-career-form textarea {
    min-height: 150px;

    padding: 14px 15px;

    line-height: 1.6;

    resize: vertical;
}


.grx-career-form input:focus,
.grx-career-form select:focus,
.grx-career-form textarea:focus {

    border-color: var(--grx-green);

    background: #ffffff;

    box-shadow: 0 0 0 4px rgba(9, 135, 66, .08);
}


.grx-message-field {
    margin-top: 22px;
}


/* =========================================
   PREMIUM FILE UPLOAD
========================================= */

.grx-upload-box {

    position: relative;

    display: grid;

    grid-template-columns: 58px minmax(0, 1fr) auto;

    align-items: center;

    gap: 18px;

    min-height: 145px;

    padding: 24px 26px;

    box-sizing: border-box;

    overflow: hidden;

    border: 1.5px dashed #8fc9a6;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #f7fcf9 0%,
            #eef9f2 100%
        );

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.grx-upload-box:hover {

    border-color: var(--grx-green);

    background: #f1faf5;

    box-shadow:
        0 8px 28px rgba(9, 135, 66, .08);
}


/* upload icon */

.grx-upload-icon {

    display: flex;

    width: 58px;
    height: 58px;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #dff4e7;

    color: var(--grx-green);
}


.grx-upload-icon svg {

    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* upload content */

.grx-upload-content {
    min-width: 0;
}


.grx-upload-content strong {

    display: block;

    margin-bottom: 5px;

    color: var(--grx-dark);

    font-size: 15px;
    font-weight: 700;
}


.grx-upload-content span {

    display: block;

    margin-bottom: 5px;

    color: #687970;

    font-size: 13px;
}


.grx-upload-content small {

    display: block;

    color: #93a098;

    font-size: 11px;
}


/* button */

.grx-upload-action {

    position: relative;

    z-index: 2;
}


.grx-upload-btn {

    display: inline-flex;

    min-height: 42px;

    padding: 0 18px;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--grx-green);

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 7px 18px rgba(9, 135, 66, .16);
}


/* file name */

.grx-file-name {

    grid-column: 2 / 4;

    display: none;

    margin-top: -3px;

    padding: 10px 12px;

    border: 1px solid #dce9e1;
    border-radius: 8px;

    background: #ffffff;

    color: #526159;

    font-size: 12px;

    word-break: break-word;
}


/* =========================================
   HIDE NATIVE CHOOSE FILE
========================================= */

.grx-upload-box .wpcf7-form-control-wrap {

    position: absolute !important;

    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;

    z-index: 10;
}


.grx-upload-box input[type="file"],
.grx-upload-box .grx-file-input {

    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    opacity: 0 !important;

    cursor: pointer !important;

    font-size: 0 !important;
}


/* CF7 validation for upload */

.grx-upload-box .wpcf7-not-valid-tip {

    position: absolute;

    left: 16px;
    bottom: 6px;

    z-index: 20;

    margin: 0;

    font-size: 11px;

    color: #d94343;

    pointer-events: none;
}


/* =========================================
   BOTTOM
========================================= */

.grx-career-bottom {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 20px 23px;

    border-radius: 15px;

    background: var(--grx-soft);
}


/* =========================================
   CONSENT
========================================= */

.grx-consent {

    max-width: 620px;

    color: #68766e;

    font-size: 12px;
    line-height: 1.6;
}


.grx-consent .wpcf7-list-item {
    margin: 0;
}


.grx-consent label {

    display: flex;

    align-items: flex-start;

    gap: 8px;
}


.grx-consent input[type="checkbox"] {

    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: var(--grx-green);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.grx-submit-wrap {
    flex: 0 0 auto;
}


.grx-submit-wrap input[type="submit"] {

    min-width: 190px;
    min-height: 52px;

    padding: 0 25px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0a9549,
            #066e36
        );

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 10px 22px rgba(8, 128, 62, .18);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}


.grx-submit-wrap input[type="submit"]:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(8, 128, 62, .25);
}


/* =========================================
   CF7 ERRORS
========================================= */

.grx-career-form .wpcf7-not-valid:not([type="file"]) {

    border-color: #e76464 !important;
}


.grx-career-form .wpcf7-not-valid-tip {

    margin-top: 5px;

    color: #d64343;

    font-size: 11px;
}


.grx-career-form .wpcf7-spinner {

    margin: 10px;
}


.grx-career-form .wpcf7-response-output {

    margin: 20px 0 0 !important;

    padding: 13px 16px !important;

    border-radius: 10px;

    font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .grx-career-form {

        padding: 28px;

        border-radius: 20px;
    }


    .grx-career-head {

        padding: 27px;
    }


    .grx-career-head h2 {

        font-size: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .grx-career-form {

        width: 100%;

        padding: 14px;

        border-radius: 15px;

        box-shadow: none;
    }


    .grx-career-head {

        margin-bottom: 16px;

        padding: 23px 19px;

        border-radius: 14px;
    }


    .grx-career-tag {

        margin-bottom: 11px;

        font-size: 9px;

        letter-spacing: .9px;
    }


    .grx-career-head h2 {

        font-size: 25px;

        line-height: 1.25;
    }


    .grx-career-head p {

        font-size: 13px;

        line-height: 1.6;
    }


    .grx-career-section {

        margin-bottom: 15px;

        padding: 20px 16px;

        border-radius: 14px;
    }


    .grx-career-grid {

        grid-template-columns: 1fr;

        gap: 17px;
    }


    .grx-section-title {

        align-items: flex-start;

        margin-bottom: 20px;
    }


    .grx-section-title > span {

        flex-basis: 37px;

        width: 37px;
        height: 37px;

        border-radius: 10px;
    }


    .grx-section-title h4 {

        font-size: 16px;
    }


    .grx-career-form input[type="text"],
    .grx-career-form input[type="email"],
    .grx-career-form input[type="tel"],
    .grx-career-form input[type="url"],
    .grx-career-form select {

        min-height: 50px;

        font-size: 14px;
    }


    /* resume upload mobile */

    .grx-upload-box {

        grid-template-columns: 50px minmax(0,1fr);

        gap: 13px;

        min-height: auto;

        padding: 20px 17px;
    }


    .grx-upload-icon {

        width: 50px;
        height: 50px;
    }


    .grx-upload-action {

        grid-column: 1 / -1;

        width: 100%;
    }


    .grx-upload-btn {

        width: 100%;

        min-height: 44px;

        box-sizing: border-box;
    }


    .grx-file-name {

        grid-column: 1 / -1;

        width: 100%;

        margin-top: 0;

        box-sizing: border-box;
    }


    /* bottom */

    .grx-career-bottom {

        display: block;

        padding: 17px;
    }


    .grx-consent {

        margin-bottom: 17px;
    }


    .grx-submit-wrap,
    .grx-submit-wrap input[type="submit"] {

        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .grx-career-form {

        padding: 10px;
    }


    .grx-career-head {

        padding: 20px 16px;
    }


    .grx-career-head h2 {

        font-size: 22px;
    }


    .grx-career-section {

        padding: 18px 14px;
    }


    .grx-upload-box {

        grid-template-columns: 42px minmax(0,1fr);

        padding: 17px 14px;
    }


    .grx-upload-icon {

        width: 42px;
        height: 42px;

        border-radius: 11px;
    }


    .grx-upload-icon svg {

        width: 22px;
        height: 22px;
    }


    .grx-upload-content strong {

        font-size: 14px;
    }


    .grx-upload-content span {

        font-size: 12px;
    }

}/* End custom CSS */