/*
Theme Name: Divi Child Theme
Description: A child theme to house custom coding which modifies the Divi parent theme by Elegant Themes. Includes default line numbers where the code was taken from in the parent theme.
Author:   Brad Dalton http://wpsites.net
Template: Divi
*/

@import url("../Divi/style.css");

/* Target the job location specification item */
.awsm-job-specification-item.awsm-job-specification-job-location {
    position: relative;
    padding-left: 25px; /* Space for the icon */
    font-size: 14px; /* Adjust font size as needed */
}

/* Add Font Awesome location icon */
.awsm-job-specification-item.awsm-job-specification-job-location::before {
    content: "\f3c5"; /* Font Awesome location icon (map-marker) */
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is being used */
    font-weight: 900; /* Use solid icons */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px; /* Adjust the icon size */
    color: #000; /* Set icon color */
}
/* Target the job type specification item */
.awsm-job-specification-item.awsm-job-specification-job-type {
    position: relative;
    padding-left: 25px; /* Space for the icon */
    font-size: 14px; /* Adjust font size as needed */
}

/* Add Font Awesome briefcase icon */
.awsm-job-specification-item.awsm-job-specification-job-type::before {
    content: "\f0b1"; /* Font Awesome briefcase icon (job) */
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is being used */
    font-weight: 900; /* Use solid icons */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px; /* Adjust the icon size */
    color: #000; /* Set icon color */
}
