.noty_theme__mint.noty_bar .noty_body {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  text-align: center;
}
:root {
  --yellow: #F0B51D; /*header*/
  --darkGrey: #3E3E3C; /*header button*/
  --mediumGrey: #555553; /*footer*/
  --lightGrey: #B7B7B7;


  --blue: #41A9DE;
  --lightBlue: #5DBBEA;
  --red: #F71000;
 
  --lightGrey2: #E9E5E6;
  
  --darkGrey2: #2A302C;
  


  --maxWidth: 1420px;
  --size05: 0.5rem;
  --size1: 1rem;
  --size15: 1.5rem;
  --size2: 2rem;
}
* {
  box-sizing: border-box;
}
html {
  font-family: 'Oswald', sans-serif;
  color: var(--darkGrey2);
  font-size: 16px;
  /*font-size: 14px;*/
}
html.navOpen {
  height: 100vh;
  overflow: hidden;
}
.manu-content {
  width: 100vw;
  overflow: hidden;
}
.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.content.grey {
  background-color: var(--lightGrey);
}
.inner-content {
  width: 100%;
  max-width: var(--maxWidth);
  align-self: center;
  flex: 1;
  padding: 0 var(--size1);
  margin: 0 auto;
}
.page-content {
  display: flex;
  margin-top: var(--size1);
  margin-bottom: var(--size1);
}
.page-content.column {
  flex-direction: column;;
}
.side-content {
  flex: 2;
  min-width: 260px;
  max-width: 320px;
}
.button {
  background-color: var(--darkGrey);
  padding: 0.5rem 2rem;
  border: none;
  box-shadow: none;
  -webkit-appearance:  none;
  border-radius: 0;
  height: 2.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  white-space: nowrap;
}
.button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
}
.button.small {
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 500;
}
.button.large {
  height: 4rem;
  font-size: 2rem;
}
.button.blue {
  background-color: var(--blue);
  color: white;
}
.button.white {
  background-color: white;
  color: var(--blue);
}
.button.yellow {
  background-color: var(--yellow);
  color: var(--darkGrey);
}
a {
  text-decoration: none;
  color: var(--darkGrey);
  transition: all 0.2s linear;
}
a:hover {
  color: var(--yellow);
}
p, li { font-size: 1.25rem; line-height: 1.3; }
p.small { font-size: 1rem; }
p + p, li + li { margin-top: 1rem; }
h1 { font-size: 2.4rem; line-height: 1.2; }
h2 { font-size: 2.2rem; line-height: 1.2; }
h3 { font-size: 2rem; line-height: 1.2; }
h4 { font-size: 1.8rem; line-height: 1.2; }
h5 { font-size: 1.6rem; line-height: 1.2; }
.mt2 { margin-top: var(--size2); }
.mb2 { margin-bottom: var(--size2); }
.ml2 { margin-left: var(--size2); }
.mr2 { margin-right: var(--size2); }
.mt1 { margin-top: var(--size1); }
.mb1 { margin-bottom: var(--size1); }
.ml1 { margin-left: var(--size1); }
.mr1 { margin-right: var(--size1); }
.mthalf { margin-top: var(--size05); }
.mbhalf { margin-bottom: var(--size05); }
.mlhalf { margin-left: var(--size05); }
.mrhalf { margin-right: var(--size05); }
.bold { font-weight: 500; }
.bolder { font-weight: 600; }
.boldest { font-weight: 800; }
.light { font-weight: 300; }
.caps { text-transform: uppercase; }
.underline { text-decoration: underline; }
.white-text { color: white; }
.blue-text { color: var(--blue); }
.red-text { color: var(--red); }
.grey-text { color: var(--darkGrey); }
.yellow-text { color: var(--yellow); }
.mini-text { font-size: 0.875rem; }
.center-text { text-align: center; }
.input-container {
  display: flex;
  align-items: center;
  background-color: white;
  width: 100%;
}
.input {
  height: 3.125rem;
  /*height: 50px;*/
  padding: 0.5rem;
  font-size: 1.25rem;
  border: none;
  box-shadow: none;
  font-family: 'Oswald', sans-serif;
  width: 100%;
  background-color: white;
  -webkit-appearance: none;
}
textarea.input {
  height: 10rem;
  resize: vertical;
  min-height: 6rem;
  max-height: 100rem;
}
.input-icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-icon {
  border: none;
  box-shadow: none;
  font-size: 1.75rem;
  color: var(--mediumGrey);
}
.job-icon {
  font-size: 2rem;
  top: 3px;
  position: relative;
}
.flex {
  display: flex;
}
.flex.center {
  align-items: center;
}
.flex.column {
  flex-direction: column;
}
ul.list {
  margin-left: 1.25rem;
}
ul.list li {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
}
ul.list li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: -15px;
  background-color: black;
  height: 6px;
  width: 6px;
  border-radius: 100%;
}
ul.list.blue li:before {
  background-color: var(--blue);
}
/* locations */
.location-container {
  position: relative;
}
.location-suggestions {
  background-color: white;
  position: absolute;
  top: 50px;
  left: -1px;
  width: calc(100% + 2px);
  z-index: 1;
  border: 1px solid var(--lightGrey2);
}
.suggestion {
  padding: 1rem;
  font-size: 1.25rem;
  color: var(--mediumGrey);
  cursor: pointer;
  transition: all 0.2s linear;
}
.suggestion:hover {
  color: var(--darkGrey2);
  background-color: var(--lightGrey);
}
.remove-location {
  padding: 0 0.5rem;
  cursor: pointer;
  color: black;
  font-size: 1.25rem;
  transition: all 0.2s linear;
}
.remove-location:hover {
  color: darkred;
}

/* header */
header {
  background-color: var(--yellow);
  padding: var(--size05);
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
header .inner-content {
  display: flex;
  align-items: center;
  margin-top:16px;
  /* background-color: coral; */
}
header .logo,
footer .logo {
  width: 165px;
  height: auto;
}
header nav {
  margin-left: auto;
}
header nav ul,
footer nav ul {
  display: inline-flex;
  align-items: center;
}
header nav ul li a,
footer nav ul li a {
  color: var(--darkGrey2);
  text-decoration: none;
  font-size: 1.25rem;
  padding: 5px 15px;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
header nav ul li a:hover,
header nav ul li.active a {
  color: #000000;
  text-shadow: 0px 0px 3px white;
}
header nav ul li a.button:hover {
  color: white;
  text-shadow: 0px 0px 3px white;
}
nav li + li {
  margin-top: 0;
}
.nav-menu {
  display: none;
  margin-left: auto;
}
.login-as-button {
  display: block;
}
.login-as-link {
  display: none;
}
header .languages {
  display: flex;
  justify-content: flex-end;
  margin-top:0;
}
header .languages a {
  /* margin-left:10px; */
  color: var(--darkGrey2);
}
header .languages a:hover,
header .languages a.active {
  color: var(--red);
}

/* footer */
footer {
  background-color: var(--mediumGrey);
  padding: var(--size05);
  display: flex;
  justify-content: center;
}
footer .inner-content {
  display: flex;
  align-items: center;
  /* background-color: coral; */
}
footer .text-container {
  margin-left: auto;
  display:flex;
  flex-direction:column;
  align-items: flex-end;
}
footer .text {
  font-weight: 300;
  text-align: center;
  color: var(--lightGrey);
}
footer .languages {
  font-size: 14px;
  display:flex;
  align-items: center;
  margin-top:5px;
  color: var(--lightGrey);
}
footer .languages a {
  margin-left:10px;
  color: var(--lightGrey);
}
footer .languages a:hover,
footer .languages a.active {
  color: var(--yellow);
}
footer .logo {
  width: 165px;
  height: auto;
}
footer nav {
  margin-left: 40px;
}
footer nav ul li a {
  color: var(--lightGrey);
}
footer nav ul li a:hover {
  color: var(--lightGrey2);
}

/* home */
.categories-container {
  flex: 2;
  background-color: var(--blue);
  padding: var(--size05);
}
.jobs-container {
  flex: 5;
  margin: 0 1rem;
  background-color: var(--lightGrey2);
  /*padding: 1rem;*/
  padding: var(--size1);
}
.alerts-container {
  flex: 2;
  min-width: 260px;
}
.categories {
  margin-top: 0.25rem;
}
.category {
  font-size: 1.25rem;
  color: white;
  margin: 0;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.2s linear;
}
.category:hover {
  color: var(--lightGrey2);
}
.category:last-of-type {
  margin-bottom: 0;
}
.category.active {
  color: black;
  padding: 0.25rem;
  background-color: var(--yellow);
}
.category-display {
  margin-right: 1rem;
  flex: 1;
}
.remove-category {
  margin-left: auto;
}
.top-categories,
.all-categories {
  padding: 0 0.75rem 0.75rem 0.75rem;
}
.top-categories-title,
.all-categories-title {
  background-color: var(--yellow);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.top-categories-title {
  margin-top: 0;
}
.jobs {
  margin-top: 1.25rem;
}
.job-preview {
  background-color: white;
  border-radius: 0.75rem;
  padding: var(--size05);
  margin-bottom: 1rem;
  border: 1px solid var(--lightGrey2);
  transition: all 0.2s linear;
}
.job-preview:last-of-type {
  margin-bottom: 0;
}
.job-preview:hover {
  border-color: var(--yellow);
}
.job-preview .logo {
  margin-right: var(--size1);
  width: 120px;
  height: auto;
  border: 2px solid var(--lightGrey2);
  border-radius: 0.75rem;
}
.job-preview .no-logo {
  margin-right: var(--size1);
  width: 120px;
  height: 90px;
  border: 2px solid var(--lightGrey2);
  border-radius: 0.75rem;
}
.job-preview .info {
  flex: 1;
}
.job-link {
  color: black;
  text-decoration: none;
}
.job-preview .title {
  margin-bottom: 0.25rem;
}
.job-preview .company,
.job-preview .location {
  font-weight: 300;
  line-height: 1.3;
  font-size: 1.25rem;
}
/*.post-a-job-button {
  margin-bottom: var(--size1);
}*/
.alerts-container a {
  /*width: 100%;*/
  /*margin-bottom: 2rem;*/
}
.job-alerts {
  background-color: var(--lightGrey2);
  padding: var(--size1);
  position: relative;
}
form.alert-form > .input {
  width: 100%;
  margin-bottom: var(--size1);
}
form.alert-form .location-container {
  margin-bottom: var(--size1);
}
.job-alerts .button {
  font-size: 1.75rem;
  margin-bottom: 0;
  width: 100%;
}
.alerts-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.alert-blurb {
  margin-bottom: 1rem;
  font-weight: 200;
}
.your-industrys-job-board {
  background-color: var(--lightGrey2);
  padding: var(--size1);
  text-align: center;
}
.your-industrys-job-board .title {
  font-weight: 500;
  margin: var(--size05) 0;
  text-transform: uppercase;
}
.your-industrys-job-board p {
  font-size: 1.5rem;
  font-weight: 200;
}
.magazines-container {
  padding: var(--size1);
  background-color: var(--lightGrey2);
}

/* banner overlay */
.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-overlay .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: var(--size1);
  position:relative;
}
.banner-container img.banner-img {
  width: 100%;
  height: auto;
  max-width: 1920px;
}
.banner-overlay h1 {
  margin-top: var(--size1);
  text-align:center;
}
.banner-logo {
  width: 566px;
  height: auto;
}
.search {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
}
.search .inputs {
  display: flex;
  align-items: center;
  border: 10px solid rgb(97 94 94 / 75%);
  width: 100%;
  margin-bottom: 1rem;
}
.search .inputs .input,
.search .inputs .button {
  height: 3.125rem;
  flex: 1;
}
.search .checkboxes {
  width: 100%;
  display: flex;
  align-items: center;
}
.search .checkboxes .checkbox {
  margin-right: 1rem;
}
.checkbox,
.radio-button {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  height: 25px;
}
.search .checkboxes .checkbox:last-of-type {
  margin-right: 0;
}
.search .checkboxes .checkbox span {
  font-size: 1.25rem;
  color: white;
}
.search-keywords-container,
.search .location-container {
  flex: 2;
  margin-right: 3px;
}
#search-location {
  width: 100%;
}
.search-distance-container,
#search-button {
  flex: 1;
}
.search-distance-container {
  margin-right: 3px;
}
/*search2*/
.search2 {
  display: none;
}
.search2 .search {
  margin-top: 0;
}
.search2 .search .checkboxes .checkbox span {
  color: var(--darkGrey);
}
.search2 .inputs {
  background-color: var(--mediumGrey);
}
/* blackfriday 2023 */
a.black-friday-special-link {
  position: absolute;
  top: var(--size1);
  right: var(--size1);
  transition: all 0.3s linear;
}
a.black-friday-special-link:hover {
  transform: scale(1.05);
}

/* checkboxes / radio buttons */
/* Hide the browser's default checkbox */
.checkbox input,
.radio-button input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.radio-button .checkmark {
  border-radius: 50%;
  border: 1px solid var(--mediumGrey);
}
/* On mouse-over, add a grey background color */
.checkbox:hover input:not(:checked) ~ .checkmark:after{
  display: block;
  border-color: var(--darkGrey);
}
.radio-button:hover input:not(:checked) ~ .checkmark:after {
  display: block;
  border-color: white;
}
/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark,
.radio-button input:checked ~ .checkmark {
  background-color: var(--yellow);
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after,
.radio-button input:checked ~ .checkmark:after {
  display: block;
  /*border-color: black;*/
}
/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid black;
  /*border: solid var(--lightGrey2);*/
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radio-button .checkmark:after {
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: white;
}
span.checkbox-text {
  margin-left: 35px;
}
/* blue variant */
.checkbox.blue input:checked ~ .checkmark {
  background-color: var(--blue);
}
.radio-button.blue input:checked ~ .checkmark {
  background-color: white;
  border-color: var(--blue);
}
.checkbox.blue input:checked ~ .checkmark:after{
  border-color: white;
}
.radio-button.blue input:checked ~ .checkmark:after {
  background-color: var(--blue);
}
.checkbox.blue:hover input:not(:checked) ~ .checkmark:after {
  /*border-color: var(--blue);*/
  border-color: rgba(65, 169, 222, 0.5);
}
.radio-button.blue:hover input:not(:checked) ~ .checkmark:after {
  /*background-color: var(--mediumGrey);*/
  background-color: rgba(65, 169, 222, 0.5);
}

/* contact */
.contact-form {
  margin-bottom: 1rem;
  position: relative;
}
.contact-form .inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--size1);
}
.contact-form .input {
  border: 2px solid var(--lightGrey2);
}
.need-help {
  margin: 1rem 0;
  font-size: 1.25rem;
}
.contact-form label {
  margin: 0.75rem 0;
  font-size: 1.25rem;
}
.contact-asterik {
  margin: 1rem 0 1.5rem 0;
  font-size: 1.25rem;
}
#contact-button {
  padding: 0.5rem 4rem;
  color: white;
}
.emergency-services {
  font-size: 2rem;
  margin-top: 2rem;
}

/* packages */
.packages-container {
  flex: 5;
  margin-right: 2rem;
}
.companies-container {
  flex: 2;
  background-color: var(--lightGrey2);
  padding: var(--size1);
  display: flex;
  flex-direction: column;
  max-width: 320px;
}
.companies {
  display: flex;
  flex-direction: column;
}
.job-board-logo {
  margin-top: 1.5rem;
  /* width: 100%;
  height: auto;
   */
   max-width: 100%;
   height: auto;
}
.grey img.job-board-logo {
  filter: grayscale(1);
}
.gc-logo {
  max-width: 200px;
}
.blue-board {
  background-color: var(--blue);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 1rem 0;
  text-align: center;
}
.blue-board h2{
  margin-bottom: 0.75rem;
}
.blue-board h2:last-of-type {
  margin-bottom: 0;
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--size1);
  margin-top: 2rem
}
.package {
  background-color: white;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s linear;
  cursor: pointer;
}
.package:hover {
  box-shadow: 2px 2px 5px 2px var(--mediumGrey);
  transform: scale(1.065);
}
.package .inner {
  padding: var(--size1);
  display: flex;
  flex-direction: column;
}
.package footer {
  background-color: var(--blue);
  display: flex;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  justify-content: flex-start;
  margin-top: auto;
}
.package img {
  max-width: 160px;
  height: auto;
}
.package .button.blue {
  margin-left: auto;
}
.package .total {
  color: white;
  font-size: 1.25rem;
  margin-left: auto;
}
.package.grey,
.package.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--size1);
  font-size: 1.65rem;
  text-align: center;
  line-height: 1.3;
  color: white;
}
.package.grey {
  background-color: var(--darkGrey);
  text-transform: uppercase;
}
.package.avatar {
  background-color: var(--blue);
  color: white;
}
.package.avatar span.separator {
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.avatar-container {
  background-color: var(--darkGrey);
  border-radius: 100%;
  border: 0.5rem solid var(--lightBlue);
  padding: 1.25rem;
  margin-bottom: 0.5rem;
}
.package-avatar {
    width: 100px;
}

/* about us */
.about-us-container {
  flex: 5;
  margin-right: 2rem;
}
.about-us-img {
  /*width: 500px;*/
  height: auto;
  max-width: 100%;
  margin-bottom: 1rem;
}
.about-page p,
.about-page li {
  font-weight: 200;
}

/* job */
.job {
  padding: var(--size1);
  background-color: white;
}
.job a.button.blue {
    margin:auto;
    width:200px;
}
.job-description {
  margin: var(--size1) 0;
  line-height: 1.3;
}
.job-description, .job-description * {
	color: var(--darkGrey2) !important;
	font-family: 'Arial', 'Oswald', sans-serif !important;
	font-size: 12pt !important;
}
.job-location-start {
  display: flex;
  align-items: center;
  color: var(--darkGrey);
  margin-top: var(--size05);
}
.job-location {
  margin-right: 1rem;
}
.job-start {
  margin-left: auto;
}
.job-share {
	margin-top: var(--size05);
}
.job-share-link {
	font-size: 3rem;
	margin-right: 0.5rem;
}

/* apply */
body.apply-page .job {
  background-color: var(--lightGrey);
}
.form-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--size1);
}
.apply-page .input-container {
  flex-direction: column;
  margin-bottom: 1rem;
  align-items: flex-start;
  background-color: transparent;
}
.apply-page .input-container label,
label.apply-label {
  padding: 0.5rem;
}
#submit-apply {
  margin-top: 1rem;
}
.question-title {
  margin: 0.75rem 0 0.5rem 0;
}
.question {
  margin-bottom: 1.5rem;
}
.question .options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.question .option {
  margin-bottom: 0.5rem;
}
.question .option:last-of-type {
  margin-bottom: 0;
}
.questions .checkmark {
  background-color: white;
}
.apply-icons {
  display: flex;
  flex-direction: column;
}
.apply-icons .icons {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background-color: #FFFFFF;
}
.apply-icon {
  margin-right: 0.5rem;
  filter: grayscale(1);
  transition: all 0.2s linear;
  width: 34px;
  height: auto;
  cursor: pointer;
}
.apply-icon:last-of-type {
  margin-right: 0;
}
.apply-icon:hover {
  filter: grayscale(0);
}
.file-input {
  display: none;
}
.attachment-container {
  background-color: #FFFFFF;
  padding: 0.5rem;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--mediumGrey);
}
.attachment-name {
  margin: 0 0.5rem;
}
.attachment-remove-icon {
  margin-left: auto;
  font-size: 1.25rem;
  color: #000000;
  cursor: pointer;
  transition:  all 0.2s linear;
}
.attachment-remove-icon:hover {
  color: darkred;
  transform: scale(1.1);
}
.files-container .input-container label {
  cursor: pointer;
  position: relative;
}
.apply-icon-small {
  width: 30px;
  height: auto;
}
.fa.fa-plus {
  position: absolute;
  top: 9px;
  right: -10px;
}

/*job description*/
.job-description p {
  font-size: 1rem;
}
.job-description ol {
  list-style-type: decimal;
  margin: 0.875rem 0 0 1.25rem;
}
.job-description ul {
  list-style-type: square;
  margin: 0.875rem 0 0 1.25rem;
}
.job-description li {
  line-height: 1.3;
}
span#indeed_button {
  opacity: 0;
  position: absolute;
  top: -10000px;
  left: -10000px;
}
/* .job-description p + p {
  margin-top: 0;
} */

/*employers*/
.employers-page .inner-content {
  max-width: 1000px;
}
.lightgrey-background {
  background-color: var(--lightGrey2);
}
.employers-tags-container {
  padding: var(--size15);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 1.85rem;
}
.employers-tag {
  line-height: 1.3;
}
.employers-tag-separator {
  margin: 0 5px;
  width: 2px;
  height: 24px;
  display: inline-block;
  background-color: var(--darkGrey);
}
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}
/*.right-audience .left {
  display: flex;
  flex-direction: column;
}*/
.right-audience .right,
.job-board .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-audience .banner-logo {
  width: 320px;
  height: auto;
}
.employers-page p {
  font-weight: 200;
}
img.people-img,
img.job-boards-img,
img.social-img,
img.search-engines-img,
img.google-search-img {
  width: 100%;
  height: auto;
}
/* img.job-boards-img {
  min-width:380px;
} */
.employers-job-board-container {
  padding: var(--size15);
  display: flex;
  flex-direction: column;
}
img.job-board-logos {
  width: 700px;
  height: auto;
  align-self: center;
  max-width: 100%;
}
.red-box,
.yellow-box {
  padding: var(--size05);
  border: 2px solid black;
  align-self: flex-start;
  font-size: 1.825rem;
  color: white;
  background-color: var(--red);
  letter-spacing: 0.7px;
}
.yellow-box {
  color: black;
  background-color: var(--yellow);
}
.job-board .left,
.social-media-container .left,
.search-engines .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* .job-board .left h2 {
  white-space: nowrap;
} */
.social-media-container,
.google-rating-container,
.buy-now-container {
  padding: var(--size15);
}
img.stars-img {
  width: 141px;
  height: auto;
  margin-bottom: 0.5rem;
}
a.blue-link {
  color: var(--lightBlue);
}
img.heart-image {
  margin-left: 5px;
}
img.google-search-img {
  margin-top: 1rem;
}
ul.disc {
  margin-top: 1rem;
  list-style-type: disc;
  margin-left: 1.5rem;
}
.postings h2 {
  padding: var(--size15);
  text-align: center;
}
.postings li {
  font-weight: 200;
}
.job-posting-credits,
.monthly-job-postings {
  display: flex;
  flex-direction: column;
}
.job-posting-credits h2 {
  background-color: var(--mediumGrey);
}
.job-posting-credits .inner {
  margin-right: 0.5rem;
}
.job-posting-credits .inner {
    margin-right: 0.5rem;
    max-width: calc(500px - 0.5rem);
    align-self: flex-end;
}
.job-posting-credits {
  display: flex;
  flex-direction: column;
}
.job-posting-credits ul,
.monthly-job-postings ul {
    height: 180px;
}
html[lang='fr-ca'] .job-posting-credits ul,
html[lang='fr-ca'] .monthly-job-postings ul {
    height: 260px;
}
.monthly-job-postings h2 {
  background-color: var(--yellow);
}
.monthly-job-postings .inner {
  margin-left: 0.5rem;
  max-width: calc(500px - 0.5rem);
  align-self: flex-start;
}
.two-column.postings {
  grid-gap: unset;
  margin-bottom: var(--size1);
}
.select-container {
  display: flex;
  align-items: center;
  margin: 0 0 var(--size15) 0;
}
.select-text {
  margin-right: 1rem;
  font-size: 1.25rem;
}
select,
input[type='number'] {
  height: 3rem;
  width: 6rem;
  font-size: 1.5rem;
  text-align: center;
  /*color: var(--yellow);*/
  /*border-color: var(--yellow);*/
  border-width: 5px;
  font-weight: 800;
  -webkit-appearance:none;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
}
input[type='number'] {
  background: none;
  border: 5px solid var(--mediumGrey);
}
.posting {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 12px solid var(--lightGrey);
  font-size: 1rem;
  align-items: center;
  font-size: 1.5rem;
  margin-top: var(--size15);
}
.posting .price {
  font-size: 3rem;
  text-transform: uppercase;
}
.you-save span {
  font-weight: 600;
  text-transform: uppercase;
}
.monthly-total {
  font-size: 1.65rem;
}
.you-save2 {
  font-size: 3.8rem;
}
.posting .button {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}
.posting .details {
  height: 80px;
  display: flex;
  align-items: center;
}
.why-choose-mjs ul {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.why-choose-mjs ul:last-of-type {
    margin-bottom: 0;
}
.employers-tags-row {
  text-align: center;
}
.employers-tags-row .employers-tag {
  display: inline-block;
  transition: all 0.3s linear;
}
.employers-tags-row .employers-tag:hover {
  /*transform: translate(1px, -1px);*/
  transform: scale(1.05);
}
img.black-friday-2022-product {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* promotions */
a.promotions-link {
  margin-bottom: var(--size15);
  display: flex;
}
img.promotion-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}
.promotions-info {
  /* display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap:var(--size15);
  margin-bottom:var(--size15); */
  display:flex;
  justify-content: center;
  margin-bottom: var(--size15);
}
.promotion-info {
  padding: var(--size15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--lightGrey);
  max-width: 600px;
  width: 100%;
}
.promotion-info h1 {
  margin-bottom: var(--size1);
}
.specials {
  margin:var(--size15) 0;
  display: flex;
  justify-content: center;
}
.specials .posting {
  max-width: 600px;
  width: 100%;
}
.buy-now-link {
  padding:2rem;
  margin-bottom:2rem;
  color:white;
  background-color: var(--yellow);
  font-size:3rem;
  width:100%;
  display:flex;
  align-items:center;
  justify-content: center;
  border-radius: 1rem;
}
.buy-now-link:hover {
  color: white;
  text-decoration: underline;
}
.buy-now-link:first-of-type {
  margin-top:2rem;
}



.no-result {
  padding: var(--size1);
  text-align: center;
  margin: 1rem 0;
}
/* loader */
.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.75)
}
.loader {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #565656, 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.5), -1.8em -1.8em 0 0em rgba(86,86,86, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.7), 1.8em -1.8em 0 0em #565656, 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.5), 1.8em -1.8em 0 0em rgba(86,86,86, 0.7), 2.5em 0em 0 0em #565656, 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.5), 2.5em 0em 0 0em rgba(86,86,86, 0.7), 1.75em 1.75em 0 0em #565656, 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.5), 1.75em 1.75em 0 0em rgba(86,86,86, 0.7), 0em 2.5em 0 0em #565656, -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.5), 0em 2.5em 0 0em rgba(86,86,86, 0.7), -1.8em 1.8em 0 0em #565656, -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.5), -1.8em 1.8em 0 0em rgba(86,86,86, 0.7), -2.6em 0em 0 0em #565656, -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.5), -2.6em 0em 0 0em rgba(86,86,86, 0.7), -1.8em -1.8em 0 0em #565656;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #565656, 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.5), -1.8em -1.8em 0 0em rgba(86,86,86, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.7), 1.8em -1.8em 0 0em #565656, 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.5), 1.8em -1.8em 0 0em rgba(86,86,86, 0.7), 2.5em 0em 0 0em #565656, 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.5), 2.5em 0em 0 0em rgba(86,86,86, 0.7), 1.75em 1.75em 0 0em #565656, 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.5), 1.75em 1.75em 0 0em rgba(86,86,86, 0.7), 0em 2.5em 0 0em #565656, -1.8em 1.8em 0 0em rgba(86,86,86, 0.2), -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.5), 0em 2.5em 0 0em rgba(86,86,86, 0.7), -1.8em 1.8em 0 0em #565656, -2.6em 0em 0 0em rgba(86,86,86, 0.2), -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.5), -1.8em 1.8em 0 0em rgba(86,86,86, 0.7), -2.6em 0em 0 0em #565656, -1.8em -1.8em 0 0em rgba(86,86,86, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(86,86,86, 0.2), 1.8em -1.8em 0 0em rgba(86,86,86, 0.2), 2.5em 0em 0 0em rgba(86,86,86, 0.2), 1.75em 1.75em 0 0em rgba(86,86,86, 0.2), 0em 2.5em 0 0em rgba(86,86,86, 0.2), -1.8em 1.8em 0 0em rgba(86,86,86, 0.5), -2.6em 0em 0 0em rgba(86,86,86, 0.7), -1.8em -1.8em 0 0em #565656;
  }
}
.loader.white {
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load6 1.1s infinite ease;
  animation: load6 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load6 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load6 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
.loader.small {
  font-size: 6px;
}
div#google_translate_element {
  margin: 0 auto;
  background: var(--yellow);
  padding: 0.25rem;
  border-radius: 0.25rem;
}


@media only screen and (max-width: 1200px){
  /*html {
    font-size: 15px;
  }*/
  .banner-logo {
    width: 50vw
  }
  .banner-overlay h1 {
    font-size:3vw;
  }
  .packages {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-container .search {
    display: none;
  }
  .search2 {
    display: block;
  }
  button#search-button {
    max-width: 120px;
  }
  .search .checkboxes {
    padding: 0 1rem;
  }
} /* 1200px */
@media only screen and (max-width: 900px){
  :root {
    --size05: 0.25rem;
    --size1: 0.5rem;
    --size15: 0.75rem;
  }
  /*html {
    font-size: 14px;
  }*/
  .banner-logo {
    /*width: 50vw;*/
  }
  .banner-overlay h1 {
    /*font-size:4vw;*/
    margin-top:0.5rem;
  }
  .banner-overlay .inner {
    padding: 0.5rem;
  }
  .page-content {
    flex-direction: column;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .main-content {
    margin-right:0;
    margin-bottom: 1rem;
  }
  .side-content {
    max-width: 100%;
    flex: 1;
  }
  .companies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    align-items: center;
  }
  .packages {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .text {
    font-size:0.875rem;
  }
  footer nav ul li a {
    font-size: 1.15rem;
  }
  footer nav {
    margin-left: 1.5rem;
  }
  .jobs-container {
    order: 1;
    margin: 1rem 0 0.5rem 0;
    /*padding:  0.5rem;*/
  }
  .jobs {
    margin-top: 0.5rem;
  }
  .job-preview {
    margin-bottom: 0.5rem;
  }
  .categories-container {
    order: 3;
  }
  .alerts-container {
    order: 2;
    margin-bottom: 0.5rem;
  }
  .top-categories, .all-categories {
    padding: 0.5rem;
  }
} /* 900px */
@media only screen and (max-width: 768px){
  /*header nav.closed {
    display: none;
  }*/
  header nav {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100vh;
    background-color: var(--yellow);
    /*box-shadow: -2px 2px 1px 0px rgb(0 0 0 / 50%);*/
    transition: all 0.2s linear;
    border-left: 1px solid var(--mediumGrey);
  }
  header nav.closed {
    transform: translate(226px);
  }
  header nav.open {
    transform: translate(0px);
  }
  .login-as-button {
    display: none;
  }
  .login-as-link {
    display: flex;
  }
  .nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #555553d4;
    z-index: 2;
  }
  .nav-menu {
    display: block;
    margin-left: auto;
    font-size: 1.5rem;
    cursor: pointer;
  }
  header nav ul, footer nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  header nav ul li {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--mediumGrey);
  }
  header nav ul li a {
    padding: 0.5rem;
    text-align: right;
    flex: 1;
  }
  footer .inner-content {
    flex-direction: column;
  }
  footer nav {
    margin-left: 0;
    display: flex;
    margin: 1rem 0;
  }
  footer nav ul {
    flex-direction: row;
  }
  footer .text {
    margin-left: unset;
  }
  .search-keywords-container,
  .search .location-container {
    flex: 1;
    margin: 0;
  }
  .input {
    font-size: 1rem;
  }
  .search2 .inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.25rem;
    background-color: rgb(97 94 94);
    border-width: 0.25rem;
  }
  button#search-button {
    max-width: unset;
  }
  .search-distance-container {
    margin-right: 0
  }
  .banner-overlay h1 {
    font-size: 3.2vw;
  }
  .form-inputs {
    grid-template-columns: 1fr;
  }
  .text-resume-container {
    margin-top: 1rem;
  }

  .employers-page .two-column {
    grid-template-columns: 1fr;
  }
  .social-media-container .left {
    order: 2;
  }
  .social-media-container .right {
    order: 1;
  }
  .monthly-job-postings {
    margin-top: 1rem;
  }
  .job-posting-credits .inner,
  .monthly-job-postings .inner {
    margin: 0 1rem;
    max-width: 500px;
    align-self: center;
  }
  .job-posting-credits ul, .monthly-job-postings ul {
    height: unset;
  }
  .job-board .left h2 {
    white-space: normal;
  }
  #contact-button {
    width: 100%;
  }
} /* 768px */
@media only screen and (max-width: 700px){
  .packages {
    grid-template-columns: repeat(2, 1fr);
  }
} /* 700px */
@media only screen and (max-width: 550px){
  .companies {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages {
    grid-template-columns: 1fr;
  }
  header .logo, footer .logo {
    width: 140px;
    height: auto;
  }
  .job-preview .logo {
    width: 90px;
  }
  .job-preview .no-logo {
    width: 90px;
    height: 68px;
  }
  .job-preview .title {
    font-size: 1.65rem;
    margin-bottom: 0;
  }
  .job-preview .company,
  .job-preview .location {
    line-height: 1.1;
    font-size: 1rem;
  }
  header nav {
    top: 0;
  }
  .contact-form .inputs {
    grid-template-columns: 1fr;
  }
  .search2 .checkboxes,
  .search-distance-container {
    display: none;
  }
  .search2 .inputs {
    grid-template-columns:  1fr;
    margin-bottom: 0;
  }
  .search .inputs .input,
  .search .inputs .button {
    /*height: 1.875rem;*/
    flex: 1;
  }
  .input-icon-container {
    width: 30px;
    height: 30px;
  }
  .input-icon {
    font-size: 1.25rem;
  }
  .jobs-container {
    margin-top: 0;
  }
  .search2 ul.location-suggestions {
    /*top: 34px;*/
  }
  .job-alerts .button {
    width: 100%;
  }
  .banner-overlay h1 {
    display: none;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 45px;
  }
  .content {
    margin-top: 45px;
  }
} /* 550px */
@media only screen and (max-width: 400px){
  .companies {
    grid-template-columns: 1fr;
  }
  .top-categories h4,
  .all-categories-title {
    text-align: center;
  }
  .category-display {
    margin:0;
    text-align: center;
  }
} /* 400px */
@media only screen and (max-width:  350px){
  .job-preview .flex.center {
    flex-direction: column;
  }
  .job-preview .info {
    /* align-self: flex-start; */
     margin-top: 0.5rem; 
  }
}


