.jobs {
  background-color: #f8f9fa;
  color: #2e3134;
  padding-top: 100px;
}

.job {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.job .favourite {
  position: absolute;
  bottom: 5%;
  right: 13%;
  color: darkred;
  cursor: pointer;
}

.jobs aside {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.05);
  top: 10%;
}

.jobs .mobile-filter-toggle {
  display: none;
}

.range-slider {
  width: 100%;
}

.jobs .main-info h4 {
  cursor: pointer;
}

.jobs .main-info .hearth {
  float: right;
  cursor: pointer;
}

.jobs .date {
  display: inline-block;
  background: #fdd010;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px;
  line-height: 16px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  margin-right: 10px;
}

.jobs .date > span {
  display: block;
  background: #ffffff;
  color: #303c42;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 2px 3px;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (70px));
  height: 5px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #fdd010;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #fdd010;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #fdd010;
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #fdd010;
}
.range-slider__range:active::-moz-range-thumb {
  background: #fdd010;
}
.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #fdd010;
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 50px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #fdd010;
  padding: 5px 10px;
  margin-left: 8px;
}
.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #fdd010;
  border-bottom: 7px solid transparent;
  content: "";
}

::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

.form-control:disabled,
.form-control[readonly] {
  opacity: 0.5;
}

.white.ftco-navbar-light {
  background-color: #f8f9fa !important;
}
.white.ftco-navbar-light.scrolled {
  background-color: #fff !important;
}

.job-side {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px 0 rgb(0 0 0 / 5%);
  top: 10%;
  height: 100%;
}

.cst-card {
  background-color: #fff;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.job-picture {
  background-position: 0% 60% !important;
  height: 55vh;
  min-height: 250px;
  max-height: 500px;
}

.job-picture:before {
  background: #000;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: 0;
}

.job-picture h2 {
  margin-top: 35%;
  color: #fff;
  font-size: 4rem;
  text-transform: capitalize;
}

.job-share-buttons {
  list-style: none;
  padding: 0;
  font-size: 1.8rem;
}

.job-share-button {
  display: inline-block;
}

.facebook-i {
  color: #3b5998;
}

.whatsup-i {
  color: #25d366;
}

.linkedin-i {
  color: #0077b5;
}

.instagram-i {
  color: #e4405f;
}

.twitter-i {
  color: #55acee;
}

.job-side .btn-primary {
  max-width: 100%;
  font-size: 0.7rem;
}

.text-underline {
  border-top: 2px solid #f0493e;
  width: 25%;
  transition: all 0.25s ease;
}

.font-smallest {
  font-size: 0.8rem !important;
}

h4 > a:hover ~ div.text-underline {
  width: 50%;
}

.range-slider__value {
  top: 2px;
}

@media (max-width: 992px) {
  .jobs {
    padding-top: 0;
  }
  .jobs .mobile-filter-toggle {
    display: block;
  }
  .jobs aside {
    background-color: #fff;
    position: relative;
    display: none;
  }

  .jobs aside.show {
    display: block;
  }

  .job-side {
    margin-bottom: 10%;
    height: 100%;
  }
  .job-picture {
    background-position: 50% 50% !important;
    height: 30vh;
    min-height: 250px;
    max-height: 500px;
  }

  .job-picture h2 {
    margin-top: 25%;
    font-size: 2.5rem;
  }

  .qliiq-points div {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .job-side > .py-3 {
    text-align: center;
  }

  .job-side p {
    display: inline-block;
    padding: 0px 15px;
  }

  .job-side a {
    display: block;
    width: auto;
  }
}
.qliiq-points ul {
  list-style: none;
}

.qliiq-points ul:not(.job-share-buttons) :before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #fdd010;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em;
}

.job-card {
  transition: border 0.15s ease;
  cursor: pointer;
}
.job-card:hover {
  border-color: #f0493e;
}

.job-cover-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.job-cover-image-container .brand-name {
  padding-top: 1rem;
  padding-right: 1rem;
  color: #999;
  font-size: 1.2rem;
}

.job-cover-image-container img {
  width: 100%;
}

.job-cover-image-container .brand-logo {
  width: auto;
  max-height: 75px;
  padding-top: 1rem;
  padding-right: 1rem;
}
