/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
/* Background color of the application */
--colorAppBackground: transparent;

/*
* Darker primary color
* WARNING - This can be set in the Ashby admin under theme settings!
* If you modify, you should make sure your colors work with the settings there.
*/
--colorPrimary900: darkorange;

/*
* Lighter primary color
* WARNING - This can be set in the Ashby admin under theme settings!
* If you modify, you should make sure your colors work with the settings there.
*/
--colorPrimary600: orange;

/* The max width of job board container */
--widthMaxContent: 800px;

/* The max width of application form section */
--widthMaxJobBoard: 800px;

/* The max width of subscription preferences container */
--widthMaxSubscriptionPreferences: 600px;

/* Container border radius */
--borderRadiusContainer: 10px;

/* Border radius of control elements (e.g. input boxes) */
--borderRadiusControl: 10px;

/* Button border radius */
--borderRadiusButton: 10px;

/* Font families */
--fontFamily: "Whitney SSm", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

body {
	background-color: transparent;
}

.ashby-job-board-heading {
	color: #F2EEE6;
}

.ashby-department-heading-level {
	color: #F2EEE6;
}

.ashby-job-posting-brief {
	background-color: transparent;
}

.ashby-job-posting-brief-title {
	color: #00BBA8;
}

.ashby-job-posting-brief-details p {
    color: #A6A7B8;
}

.ashby-job-posting-brief:hover {
	background-color: #00BBA81F;
}

.ashby-job-posting-heading {
	color: #F2EEE6;
}

.ashby-job-posting-left-pane,
.ashby-job-posting-description-container,
.ashby-application-form-autofill-pane,
.ashby-application-form-autofill-input-root,
.ashby-application-form-container {
    background-color: transparent;
}

.ashby-job-posting-left-pane h2,
.ashby-job-posting-description h2,
.ashby-application-form-question-title,
.ashby-application-form-autofill-input-title {
    color: #F2EEE6;
}

.ashby-job-posting-left-pane p,
.ashby-job-posting-description p,
.ashby-application-form-autofill-input-description {
    color: #A6A7B8;
}

.ashby-job-posting-left-pane>* {
    border-color: #F2EEE624;
}

.ashby-application-form-autofill-input-root {
	border-color: #F2EEE624;
}

.ashby-application-form-container input,
.ashby-application-form-container textarea {
    border-color: #F2EEE624;
    color: #F2EEE6;
}

.ashby-application-form-input-autocomplete-popup {
    background-color: #1A1B3A;
}

.ashby-application-form-input-autocomplete-popup .ashby-application-form-input-autocomplete-popup-result {
    color: #F2EEE6;
}

.ashby-job-posting-description {
    color: #A6A7B8;
}

@media only screen and (max-width: 767px) {

	.ashby-job-posting-right-pane nav {
		background-color: transparent;
	}

}