body{
    .vacancy-card{
        background: #eeeeee;
        border-radius: 0;
        border: solid 1px #dddddd;
        padding: 0;
        margin-bottom: 20px;
    }

    .vacancy-card .card-header{
        background-color: transparent;
        border: 0;
    }

    .vacancy-card .card-header .card-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vacancy-card .card-header .card-title small{
        text-align: right;
        color: #a7a7a7;
        font-size: 0.9rem;
    }

    .btn-primary.custom{
        background: #58bcad;
        color: #000000;
        font-size: 20px;
        margin-top: 10px;
        display: inline-block;
        border: 0;
        border-radius: 2px;
        padding: .5rem 2rem !important;
        float: right;
    }

    /* Gravity form styling for the Vacancy form */
    #vacancy-form{
        h2{
            margin-bottom: 1rem !important; /* override previous !important */
        }

        .gform_heading{
            display: none;
        }

        .gform_button{
            width: 100%;
            background: #58bcad;
            color: #000000;
            font-size: 20px;
            margin-top: 10px;
            display: inline-block;
            border: 0;
            border-radius: 2px;
            padding: .5rem 2rem !important;
            float: right;
        }

        .gform_fields{
            grid-row-gap: 1rem;
        }

        .gfield_required{
            margin-left: -.1rem;
            color: red;
            opacity: .5;
        }

        .ginput_container{
            input{
                font-size: .8rem;
                background-color: rgba(255, 255, 255, 0.8);
                border: 0;
                padding:.5rem;
            }
        }

        .gfield_label{
            font-size: .8rem;
            margin-bottom: .3rem;
        }

        .gfield_description{
            font-size: .75rem;
            margin-top: .25rem;
        }

        .gfield_validation_message{
            color: red;
            opacity: .5;
        }

        .gform_submission_error{
            font-size: .8rem;
            background-color: rgba(255, 0, 0, .2);
            border: solid 1px rgba(255, 0, 0, .2);
            padding: .5rem;
            text-align: center;
        }

        .gform_validation_errors {
            outline: 0 !important;
        }

        .gfield--type-fileupload{
            input{
                /* Visually hide but accessible */
                position: absolute;
                left: -9999px;
            }

            label{
                &.filename{
                    width: 75%;
                    display: inline-block;
                    color: #131332;
                    text-align: left;
                    border-radius: 4px;
                    cursor: pointer;
                    font-size: .8rem;
                    transition: background 0.2s;
                    background-color: rgba(255, 255, 255, 0.8);
                    border: 0;
                    padding:.5rem;

                    &:hover, &:focus{
                        background: rgba(255, 255, 255, 0.4);
                    }
                }
            }
        }
    }
}