/* Version 3 Texas Baptist with AI */

:root {
  --font-primary: "questa-sans", sans-serif;
  --font-secondary: "questa-sans", sans-serif;
  --color-text: #000;
  --color-primary: #00567d;
  --color-primary-hover: #0091bc;
  --color-muted: #2e3b3d;
  --color-background: #ffffff;
  --color-header: #f9fbfb;
  --color-footer-link: #11ac4c;
  --border-radius: 5px;
  --space-small: 0.5rem;
  /* Small spacing */
  --space-medium: 1rem;
  /* Medium spacing */
  --space-large: 1.5rem;
  /* Large spacing */
}

body {
  font: normal 17px var(--font-primary);
  line-height: 1.222;
  color: var(--color-muted);
}

.contentContainer,
.wrapper {
  max-width: 1340px;
}

main {
  margin-top: 6.875rem;
  /* 110px */
  padding-top: 1.25rem;
  /* 20px */
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-medium);
  /* Using spacing variable */
  font-weight: 700;
  line-height: 1.1111111111em;
}

h1 {
  font-size: 38px;
  letter-spacing: -0.03em;
}

.formContainer h1::after {
  content: "";
  display: block;
  width: 4rem;
  border-bottom: 2px solid rgb(17 172 76 / 1);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

h2,
h3 {
  letter-spacing: -0.015em;
}

.formContainer h2 {
  padding-top: var(--space-medium);
  /* Using spacing variable */
}

.formItemContainer {
  min-width: 20%;
}

#JobSeekers .formItemContainer
{
  min-width: 10%;
}
.formLabel {
  color: var(--color-muted);
  font-weight: 600;
  margin-top: var(--space-medium);
  /* Using spacing variable */
}

input,
select,
textarea {
  font: normal 1rem var(--font-primary);
  line-height: 1.5;
}

input[maxlength="3"] {
  width: 50px !important;
}

input[maxlength="5"] {
  width: 70px !important;
}

input[maxlength="10"] {
  width: 120px !important;
}

input[type="text"],
input[type="password"],
textarea,
select {
  border-radius: var(--border-radius);
  padding: 0.625rem;
  /* 10px */
}

input[type="text"],
input[type="password"],
textarea {
  width: 20rem;
  /* 320px */
}

.btn {
  display: inline-block;
  /* Consistent button styles */
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
  border-radius: var(--border-radius);
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  color: var(--color-primary-hover);
}

input[type="submit"],
.btn,
a.linkButton,
label.linkButton,
button,
input[type="file"] {
  background-color: #ffffff;
  border: 1px solid var(--color-primary-hover);
  color: var(--color-primary-hover);
  border-radius: var(--border-radius);
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

input[type="submit"]:hover,
a.linkButton:hover,
label.linkButton:hover,
button:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

input[type="submit"].inline,
.linkButton.inline {
  padding: 0.25rem 0.5rem;
  /* 4px 8px */
  border-radius: var(--border-radius);
}

input#tbName,
input#tbEmailAddress {
  width: 41.5625rem;
  /* 665px */
}

input.date {
  width: 7.5rem;
  /* 120px */
}

#Login input#tbEmailAddress {
  width: 20rem;
  /* 320px */
}

.listHeaderRow {
  font-weight: 600;
}

.listHeaderRow .listHeaderColumn {
  padding: 0.625rem 0.3125rem;
  /* 10px 5px */
  background: #f9fbfb;
  vertical-align: middle;
}

.listHeaderRow a {
  text-decoration: none;
  color: var(--color-primary);
}

.listHeaderRow a:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

.listRow .listColumn {
  padding: 0.625rem 0.3125rem;
  /* 10px 5px */
}

.listRow a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
}

.listRow a:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

div.listRow a[class*="inline"] {
  color: #ffffff;
}

.small {
  font-size: 0.8rem;
  /* 80% */
  font-weight: 400;
}

.text-muted {
  color: var(--color-muted) !important;
}

#modified.formItemContainer,
.formItemContainer:has(.formButtonContainer) {
  width: 100%;
}

#state.formItemContainer {
  min-width: auto;
}

/* #region CustomInputs */
label i.cb-checked {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}

label i.cb-checked:after {
  background-color: var(--color-primary);
}

label i.rb-selected {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}

label i.rb-selected:after {
  background-color: var(--color-primary);
}

/* #endregion */

/* #region Header */
header * {
  transition: background-color 0.5s ease-in-out, margin 0.5s ease-in-out,
    max-width 0.5s ease-in-out;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-header);
  overflow: visible;
  z-index: 9999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

#boardLogo {
  flex-shrink: 0;
}

#boardLogo a {
  text-decoration: none;
}

#boardLogo img {
  height: 60px;
}

.right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.accountInfo {
  margin: -20px 0 0;
}

.accountInfo a {
  font-size: 14px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  padding: 0 0.5rem;
  margin: 0;
  line-height: 24px;
}

.accountInfo a:hover {
  background-color: var(--color-primary-hover);
}

.accountInfo a:first-of-type {
  display: none;
}

/* #endregion */

/* #region Menu */
nav {
  width: auto;
  background-color: transparent;
  float: right;
  clear: right;
}

nav span,
nav a {
  font-size: 1.1875rem;
  /* 19px */
  white-space: nowrap;
  line-height: 26px;
}

nav ul ul a {
  font-size: 0.9375rem;
  /* 15px */
  line-height: 28px;
}

nav > ul > li:hover,
nav > ul a:hover {
  background-color: transparent;
}

nav > ul > li {
  color: var(--color-muted);
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  /* 4px 4px 4px 16px */
}

nav a:hover {
  color: var(--color-text);
}

nav > ul > li > a,
nav > ul > li > span {
  padding: 0.125rem 0.625rem;
  /* 2px 10px */
}

nav ul li > ul {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  padding: 0.5rem 1rem;
  /* 8px 16px */
  background-color: var(--color-background);
  overflow: hidden;
  opacity: 0;
  max-height: 0px;
  box-shadow: 0 6px 21px -5px #333;
  transition: max-height 0.1s ease, opacity 0.1s ease;
}

nav ul li:hover > ul {
  max-height: 800px;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.7s ease;
}

/* #endregion */

/* #region Footer */
footer {
  background-color: var(--color-header);
  color: var(--color-muted);
}

footer #boardLogo {
  max-width: 247px;
  padding: 0.5rem 0;
  float: left;
}

footer .social p {
  margin-top: 0;
}

footer .footerHeader {
  color: var(--color-text);
  font-weight: bold;
  padding-top: var(--space-medium);
  /* Using spacing variable */
}

footer .subfooter {
  margin-top: var(--space-medium);
  /* Using spacing variable */
  text-align: left;
}

footer .links {
  text-align: left;
  width: 100%;
}

footer ul {
  margin: 0.75em -1em;
  padding: 0 1em;
  list-style: none;
}

footer li {
  line-height: 1.5em;
  font-size: 18px;
  margin: 10px 0 19px;
}

footer a:hover {
  color: var(--color-primary);
}

footer .social {
  text-align: right;
  display: block;
}

footer .social .fa {
  background: none;
  font-size: 29px;
  color: #465558;
  margin: 14px;
}

footer .social .x-twitterIcon {
  background: transparent
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/txbX.svg")
    center center;
  height: 27px;
  width: 27px;
  border: 1px solid #ffffff;
  margin: 0px 14px 14px;
  background-color: transparent;
  background-size: 27px;
  border-radius: 0;
  font-size: 29px;
}

footer .social .x-twitterIcon:hover {
  background: transparent
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/txbXGreen.svg")
    center center;
  height: 27px;
  width: 27px;
  border: 1px solid #ffffff;
  margin: 0px 14px 14px;
  background-color: transparent;
  background-size: 27px;
  border-radius: 0;
  font-size: 29px;
}

footer .fa:hover {
  border: none;
  color: var(--color-footer-link);
}

footer .subfooter a {
  text-decoration: none;
  text-transform: uppercase;
}

footer .address {
  width: 100%;
  position: relative;
}

footer .address .footLogo,
footer .address .footCopy {
  display: inline-block;
}

footer .address img {
  text-align: left;
  max-width: 175px;
  margin-top: -9px;
}

footer .address .footCopy {
  position: absolute;
  bottom: -13px;
}

footer .address .footCopy p {
  display: inline-block;
}

footer .termsPriv {
  text-align: right;
}

/* #endregion */

/* #region HomePage */
.homeContainer {
  padding: var(--space-medium) var(--space-small);
  /* Using spacing variables */
}

.homeContainer .wrapper {
  z-index: 999;
}

.homeContainer h2 {
  color: #ffffff;
  text-align: center;
  font-size: 3rem;
  /* Using rem for consistent font size */
  font-weight: bold;
  padding: 0;
  text-shadow: 1px 1px #000000;
  margin: var(--space-medium) 0;
  /* Using spacing variable */
}

.homeButtons {
  display: inline-block;
  background-color: transparent;
  padding: 20px 0;
  margin: 0;
}

.homeButtons input[type="text"],
.homeButtons input[type="submit"],
.homeButtons a {
  border-radius: var(--border-radius);
  font-size: initial;
  height: auto;
  padding: 0.75rem 1.5rem;
  /* 12px 24px */
}

.homeButtons input[type="submit"],
.homeButtons a {
  background-color: #ffffff;
  border: 1px solid var(--color-primary-hover);
  color: var(--color-primary-hover);
  border-radius: var(--border-radius);
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

.homeButtons input[type="submit"]:hover,
.homeButtons a:hover {
  color: var(--color-primary);
}

.homeJS {
  background: -webkit-linear-gradient(
      rgba(16, 24, 25, 0.7),
      rgba(16, 24, 25, 0.7)
    ),
    url(https://siteresource.blob.core.windows.net/assets/prod/draw/hero1.jpg)
      no-repeat;
  background: -o-linear-gradient(rgba(16, 24, 25, 0.7), rgba(16, 24, 25, 0.7)),
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/hero1.jpg")
      no-repeat;
  background: -moz-linear-gradient(rgba(16, 24, 25, 0.7), rgba(16, 24, 25, 0.7)),
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/hero1.jpg")
      no-repeat;
  background: linear-gradient(rgba(16, 24, 25, 0.7), rgba(16, 24, 25, 0.7)),
    url(https://siteresource.blob.core.windows.net/assets/prod/draw/hero1.jpg)
      no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 130px 20px;
  position: relative;
}

.homeJS * {
  transition: opacity 0s !important;
}

.homeJS h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
  text-shadow: none;
  padding-top: 12rem;
}

.homeJS h2 {
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  text-shadow: none;
  text-align: left;
  padding-bottom: 4rem;
  max-width: 700px;
}

.homeJS .homeButtons {
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.homeJS #keywords {
  width: 33%;
  padding-left: 3%;
  margin-left: 0;
}

.homeJS p {
  color: #ffffff;
  text-align: left;
}

.homeJS a:hover {
  color: var(--color-primary);
}

.homeFeatured {
  background-color: var(--color-background);
}

.homeFeatured h3 {
  font-size: 3rem;
  /* Using rem for consistent font size */
  margin: 30px 0;
  color: var(--color-text);
  font-weight: 700;
}

.featuredJob {
  border-radius: var(--border-radius);
  text-align: left;
  padding: 0 0.625rem;
  /* 10px */
}

.featuredJob:hover {
  border: 1px solid var(--color-primary);
  background-color: none;
  box-shadow: inset 0px 0px 10px 0px rgba(58, 167, 221, 1);
  transition: box-shadow 0.2s ease-in-out;
}

.featuredJob .postedSince {
  display: none;
}

.slick-slider .slick-list {
  padding: 30px 0;
}

.slick-prev,
.slick-next {
  top: calc(50% + 50px);
}

.slick-dots li button {
  box-shadow: none;
}

.grey {
  background-color: #f3f3f3;
}

.homeCTA {
  background-color: #ffffff;
  padding: 0;
}

.homeCTA h3 {
  color: #00567d;
  text-align: left;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 19px;
  font-size: 23px;
}

.ltBluebox {
  background-color: #f3f6f6;
  position: relative;
  padding: 40px;
  margin: 40px;
  max-width: 500px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.homeMap {
  padding: 0;
  height: 500px;
}

.mapCTA {
  text-align: center;
  text-transform: capitalize;
}

.homeEmp {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/tech2.jpg")
      no-repeat;
  background-position: center 80%;
  background-size: cover;
  text-align: center;
}

/* #endregion */

/* #region Non-Home Page customizations */
#JobSearch #locationRadius {
  clear: left;
}

#JobSearch #btnSearch,
#JobSearch #btnSearch2,
#JobSearch #btnReset,
#JobSearch #btnReset2 {
  margin-top: 43px;
}

#JobSearch #jobList .premium {
  border-left: 10px solid var(--color-primary) !important;
}

#JobSearch #jobList {
  border-top: none;
}

#JobSearch #jobList .listRow {
  width: 100%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.12);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #dddddd;
}

#JobSearch #jobList .listRow .logo {
  display: inline-block;
  float: none;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#JobSearch #jobList .listRow .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#JobSearch #jobList .listRow .abstract {
  width: calc(100% - 200px);
  padding-right: 10px;
}

#JobSearch #jobList .socialContainer {
  display: block;
  width: 35%;
}

#JobSearch #searchAI input + label:first-of-type,
#ResumeSearch #searchAI input + label:first-of-type {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

#JobSearch #searchAI input + label:last-of-type,
#ResumeSearch #searchAI input + label:last-of-type {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

#JobSearch #searchAI input:checked + label,
#ResumeSearch #searchAI input:checked + label {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.dashBadge .fa {
  color: var(--color-primary);
}

#jobList a,
#jobList a:link,
#jobList a:visited,
#Job a,
#Job a:link,
#Job a:visited {
  color: var(--color-primary);
}

#jobList a:hover,
Job a:hover {
  color: var(--color-primary);
}

#JobSeeker #salary,
#JobSeeker #salaryPeriod,
#secretQuestion,
#secretAnswer {
  display: none;
}

#Job #fixedBtns {
  position: fixed;
  top: 108px;
  background-color: var(--color-background);
}

#Job #relativeBtns {
  position: relative;
  top: 0;
  background-color: transparent;
}

#Job #btnApply,
#Job #btnApplyBtm,
#Job #btnPost {
  background-color: #de703a;
}

#Job #btnApply:hover,
#Job #btnApplyBtm:hover,
#Job #btnPost:hover {
  background-color: #dc6f3a;
}

input#btnPostOptions:disabled {
  background-image: none;
  background: #cccccc;
}

.slick-track {
  margin: 0 auto;
}

.featuredEmployers {
  width: calc(100% - 40px);
}

#RegisterEmployer #dateFormat,
#RegisterEmployer #timeZone,
#RegisterContact #timeZone {
  display: none;
}

#Purchase .listColumn {
  padding: 12px 6px;
}

.contentBlock p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.contentBlock ul {
  margin-top: 0;
}

.contentBlock #cbMore ~ label:after {
  content: "[ + ] Show More";
}

.contentBlock #cbMore:checked ~ label:after {
  content: "[ - ] Show Less";
}

#EmployerDefaults #htmlJobDescription {
  display: none;
}

#Employer #lblFreePostingDays,
#EmployerDefaults #lblFreePostingDays {
  font-size: 0.8rem;
  /* 80% */
  vertical-align: middle;
}

#Employer #htmlJobDescription {
  display: none;
}

#EmployerJobs .listRow .title {
  width: 100%;
  max-width: 100%;
}

#subject input[type="text"] {
  width: 450px;
}

#insertMerge {
  clear: left;
}

#lblCompensation,
div#salary,
div#salaryPeriod {
  display: none;
}

#Job[data-user-context="jobSeeker"] .customFields .formLabel span {
  display: none;
}

/* #endregion */

/* #region #JobSeeker_Info */
#JobSeeker_Info .container {
  background-color: var(--color-background);
}

#JobSeeker_Info .container .wrapper {
  text-align: center;
}

#JobSeeker_Info .linkButton,
#JobSeeker_Info input[type="submit"] {
  min-width: 180px;
}

#JobSeeker_Info .container:nth-of-type(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://siteresource.blob.core.windows.net/assets/prod/draw/js.jpg")
      no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: 108px;
  padding: 120px 0;
  overflow: hidden;
}

#JobSeeker_Info .container:nth-of-type(1) h1 {
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px #333;
  font-size: 5rem;
  /* Using rem for consistent font size */
}

#JobSeeker_Info .container:nth-of-type(1) h2 {
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px #333;
  font-size: 3rem;
  /* Using rem for consistent font size */
}

#JobSeeker_Info .container p {
  max-width: 80%;
  text-align: center;
  padding: 10px;
  line-height: 28px;
  font-size: 1.125rem;
  /* Using rem */
  margin: 20px auto;
}

#JobSeeker_Info .container:nth-of-type(2) {
  padding: var(--space-small) 0;
}

#JobSeeker_Info .js_Info {
  background-color: #f3f3f3;
  position: relative;
  padding: 20px 20px;
  margin: 10px;
  margin-bottom: 40px;
}

#JobSeeker_Info .grid > .gc-t-1-2:nth-of-type(1) > .js_Info,
#JobSeeker_Info .grid > .gc-t-1-2:nth-of-type(2) > .js_Info,
#JobSeeker_Info .grid > .gc-p-1-1:nth-of-type(1) > .js_Info,
#JobSeeker_Info .grid > .gc-p-1-1:nth-of-type(2) > .js_Info {
  margin-bottom: 10px;
}

#JobSeeker_Info .js_Info ul {
  text-align: left;
  margin-bottom: 60px;
  padding-left: 20px;
}

#JobSeeker_Info .js_Info ul li {
  margin-bottom: 10px;
}

#JobSeeker_Info .js_Info div:last-child {
  position: absolute;
  bottom: 15px;
  width: 100%;
  margin-left: -20px;
}

.fa-bell-o,
.fa-user-o,
.fa-file-text-o {
  font-size: 3.125rem;
  /* 50px */
  background-color: none;
  color: #666666;
}

/* #endregion */

/* #region FAQ pages */
#faqJS h1,
#faqEmp h1 {
  padding-bottom: var(--space-medium);
  /* Using spacing variable */
}

#faqJS .container:nth-of-type(1),
#faqEmp .container:nth-of-type(1) {
  padding: var(--space-medium);
  text-align: left;
  min-height: 580px;
}

#faqJS .topic,
#faqEmp .topic {
  padding-top: var(--space-small);
  /* Using spacing variable */
  padding-bottom: var(--space-small);
  /* Using spacing variable */
  border-bottom: 1px solid #dddddd;
  position: relative;
}

#faqJS .topic .question,
#faqEmp .topic .question {
  font-size: 1.2rem;
  /* Using rem for consistent font size */
  cursor: pointer;
  padding-left: 25px;
}

#faqJS .topic .reveal,
#faqEmp .topic .reveal {
  display: none;
}

#faqJS .topic .details,
#faqEmp .topic .details {
  display: none;
}

.marginL20-10 {
  margin-left: 20px;
}

.marginL30-20 {
  margin-left: 30px;
}

.marginL10-5 {
  margin-left: 10px;
}

i.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 14px;
}

i.arrow.up {
  top: 19px;
  transform: rotate(-135deg);
}

/* #endregion */

/* #region NON Billing */

#BoardSettings #currencyFormat,
#BoardSettings #invoiceLogoUrl,
#EmailSettings #lblEmployerNotifications,
#EmailSettings #employerPurchase,
#EmployerDefaults #invoiceTerms,
#EmployerDefaults #invoicing,
invoiceTerms {
  display: none;
}

#Employer #invoiceTerms {
  display: none;
}

#Employers #credits,
#employerList #available,
#employerList #balance,
a#lnkPurchase,
#btnPurchase,
#Employer #invoicing {
  display: none;
}

.dashBadge:nth-of-type(5) a.dashLink,
.dashBadge:nth-of-type(5) .badgeHeading,
.dashBadge:nth-of-type(5) .badgeColumn1,
.dashBadge:nth-of-type(5) .badgeColumn2 {
  display: none;
}

#Job .modalInner .contentBlock p {
  display: none;
}

/* #endregion */

/* #region Media Queries */
@media only screen and (max-width: 1023px) {
  #boardLogo {
    max-width: 340px;
  }

  nav span,
  nav a {
    font-size: 1rem;
    /* 16px */
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.125rem 0.375rem;
    /* 2px 6px */
  }

  footer .social {
    margin-top: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 920px) {
  #boardLogo {
    max-width: 280px;
    margin-top: 0.75rem;
    /* 12px */
  }

  nav span,
  nav a {
    font-size: 0.9375rem;
    /* 15px */
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.125rem 0.3125rem;
    /* 2px 5px */
  }

  #JobSearch #jobList .socialContainer {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  header {
    position: relative;
    background-color: var(--color-background);
    overflow: visible;
    z-index: 9999;
    height: auto;
  }

  header .accountInfo {
    display: none;
  }

  .mainHeader {
    height: auto;
  }

  #boardLogo {
    max-width: 240px;
    padding: 1.125rem 0.625rem;
    /* 18px 10px */
    float: none;
    margin-top: 0;
  }

  .menuButton {
    top: 18px;
  }

  .menuButton span {
    background-color: var(--color-text);
  }

  nav {
    margin-top: 0;
    float: none;
    clear: left;
    position: static;
  }

  nav ul li:hover > ul {
    padding: 0;
    background-color: var(--color-background);
    border-top: 1px solid #505050;
  }

  nav li a,
  nav li span {
    border-bottom: 1px solid #505050;
  }

  nav > ul > li > a,
  nav > ul > li > span {
    padding: 0.375rem 0.75rem;
    /* 6px 12px */
  }

  nav ul ul > li > a,
  nav ul ul > li > span {
    padding: 0.375rem 0.625rem;
    /* 6px 10px */
  }

  nav > ul > li:first-child > a,
  nav > ul > li:first-child > span {
    border-top: 1px solid #505050;
  }

  nav ul li {
    padding: 0;
  }

  nav > ul > li:last-child {
    display: block;
  }

  nav > ul > li:last-child a {
    border: none;
  }

  nav li {
    overflow: hidden;
  }

  nav li:hover {
    overflow: visible;
  }

  .menuShow ul ul {
    display: block;
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    transition: max-height 0.1s ease, opacity 0.1s ease;
  }

  .menuShow ul li:hover > ul {
    max-height: 800px;
    opacity: 1;
    transition: max-height 1s ease, opacity 1s ease;
  }

  .menuShow li {
    background: var(--color-background);
  }

  main {
    margin: 0;
  }

  footer .links {
    margin: auto;
    text-align: left;
  }

  footer .address,
  footer .termsPriv {
    text-align: center;
  }

  footer .address {
    margin-top: 10px;
    white-space: normal;
  }

  footer .address .footLogo,
  footer .address .footCopy {
    display: block;
  }

  footer .address .footCopy {
    position: relative;
    bottom: 0;
  }

  footer .address .footCopy p {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .homeJS {
    padding-top: 60px;
  }

  .hideMobile {
    display: none;
  }

  .homeButtons {
    width: 90%;
  }

  .homeButtons input[type="text"],
  .homeButtons input[type="submit"],
  .homeButtons a {
    width: 100%;
    margin: 4px auto;
  }

  .homeMap {
    padding: 0 10px;
  }

  #JobSeeker_Info .container:nth-of-type(1) {
    margin-top: auto;
  }

  #JobSeeker_Info .container:nth-of-type(1) h1 {
    font-size: 300%;
    margin: 40px 0;
  }

  #JobSeeker_Info .container:nth-of-type(1) h2 {
    font-size: 220%;
    margin: 40px 0;
  }

  #JobSearch #jobList .listRow .logo {
    margin: 10px 0;
    display: block;
    position: relative;
  }

  #JobSearch #jobList .listRow .logo img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  #JobSearch #jobList .listRow .abstract {
    width: auto;
    padding-right: 0;
  }

  #JobSearch #jobList .socialContainer {
    width: auto;
  }

  #Job #fixedBtns {
    top: 0;
    z-index: 999;
  }

  .customFields tbody tr td {
    display: block;
  }

  .customFields input[type="checkbox"],
  .customFields input[type="checkbox"] + label {
    float: left;
  }

  .customFields input[type="checkbox"] {
    clear: left;
  }

  .customFields input[type="checkbox"] + label {
    padding: 0 30px 0 0;
  }

  #faqJS .topic .question,
  #faqEmp .topic .question {
    font-size: 100%;
  }

  #faqJS .topic .details,
  #faqEmp .topic .details {
    font-size: 90%;
  }

  .marginL20-10 {
    margin-left: 10px;
  }

  .marginL30-20 {
    margin-left: 20px;
  }

  .marginL10-5 {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .homeJS {
    padding-top: 30px;
  }

  .homeJS h1 {
    font-size: 2.5rem;
    /* 40px */
  }

  .homeContainer h2 {
    font-size: 1.875rem;
    /* 30px */
  }

  .homeJS #keywords {
    width: 100%;
  }

  #boardLogo {
    width: 240px;
    max-width: calc(94% - 36px);
    padding: 1.125rem 0.625rem;
    /* 18px 10px */
    float: none;
  }

  #JobSeeker_Info .container:nth-of-type(1) {
    padding: 0.625rem;
    /* 10px */
  }

  #JobSeeker_Info .container:nth-of-type(1) h1 {
    font-size: 2.6rem;
    /* 260%; */
    margin: 0;
  }

  #JobSeeker_Info .container:nth-of-type(1) h2 {
    font-size: 2rem;
    /* 200%; */
    margin: 0;
  }
}

/* #endregion */
