/* Job List Styling */
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
* {
  box-sizing: border-box;
}

.job-list_block {
  padding: 40px 0 80px 0;
}
@media only screen and (max-width: 767px) {
  .job-list_block {
    padding: 40px 0;
  }
}

#mobile-header {
  display: none;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  #mobile-header {
    display: block;
  }
}
#mobile-header .mobile-searchBar {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  /* Responsive design */
}
#mobile-header .mobile-searchBar .search-container {
  width: 300px;
  max-width: 600px;
  position: relative;
}
@media only screen and (max-width: 380px) {
  #mobile-header .mobile-searchBar .search-container {
    width: 260px;
  }
}
#mobile-header .mobile-searchBar .search-bar {
  width: 100%;
  padding: 20px 20px 20px 60px;
  border-radius: 50px;
  color: #000000;
  background: rgb(255, 255, 255);
  box-shadow: 0px 1px 3px 1px #e2e2e2;
  border: 1px solid #cfcdcd;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5em;
  height: auto;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
  height: auto;
}
#mobile-header .mobile-searchBar .plj-mobile-filter-nav {
  width: 48px;
  height: 48px;
  position: relative;
  text-align: right;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-header .mobile-searchBar .plj-mobile-filter-nav img {
  height: auto;
  padding: 10px;
}
#mobile-header .mobile-searchBar .plj-mobile-filter-nav .plj-filter-count {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  top: -15px;
  right: -10px;
  background-color: #489fdf;
  color: #fff;
  line-height: 30px;
  font-size: 12px;
  text-align: center;
}
#mobile-header .mobile-searchBar .search-bar:focus {
  border-color: #000000;
}
#mobile-header .mobile-searchBar .search-bar::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
#mobile-header .mobile-searchBar .search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9;
  transition: all 0.3s ease;
}
#mobile-header .mobile-searchBar .close-search {
  display: none;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 9;
  transition: all 0.3s ease;
  line-height: 1em;
}
#mobile-header .mobile-searchBar .search-container:focus-within .search-icon {
  transform: translateY(-50%) scale(1.1);
}
#mobile-header .mobile-searchBar .search-icon svg {
  width: 100%;
  height: 100%;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}
#mobile-header
  .mobile-searchBar
  .search-container:focus-within
  .search-icon
  svg {
  stroke: #667eea;
}
@media (max-width: 640px) {
  #mobile-header .mobile-searchBar .search-bar {
    padding: 18px 18px 18px 55px;
    font-size: 15px;
  }
  #mobile-header .mobile-searchBar .search-icon {
    left: 20px;
    width: 18px;
    height: 18px;
  }
}
#mobile-header .mobileHeader-popup {
  background: linear-gradient(
    360deg,
    rgb(238, 238, 238) 0%,
    rgb(255, 255, 255) 50%,
    rgb(228, 228, 228) 100%
  );
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Source Sans Pro", "Arial", "Sans-Serif";
  min-height: 100vh;
  overflow-y: auto;
  z-index: 999999;
}
#mobile-header .mobileHeader-popup .head {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
  padding: 30px 20px;
  background-color: #fff;
}
#mobile-header .mobileHeader-popup .head h2 {
  font-family: "Red Hat Display";
  font-size: 35px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}
#mobile-header .mobileHeader-popup .head img {
  height: auto;
  width: 35px;
}
#mobile-header .mobileHeader-popup .popup-search-section {
  padding: 10px 20px;
}
#mobile-header .mobileHeader-popup .popup-search-section .mobilestates {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: start;
  font-family: "Red hat display";
  padding: 10px 0;
}
#mobile-header .mobileHeader-popup .popup-search-section .mobilestates ul {
  padding: 0;
  margin: 0;
}
#mobile-header .mobileHeader-popup .popup-search-section .mobilestates h2 {
  font-size: 16px;
  font-weight: 600;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .state-list {
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .state-list
  .mylist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  align-items: start;
  list-style: none;
  flex-wrap: wrap;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .state-list
  .mylist
  li {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: #c8102e;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 15px 30px;
  background-color: #fff;
  color: #000;
  border: 1px solid #e2e2e2;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .state-list
  .mylist
  .selected {
  background-color: #489fdf;
  color: #fff;
  border: none;
}
#mobile-header .mobileHeader-popup .popup-search-section .mobilestates .cities {
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
  overflow: hidden;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .cities
  h1 {
  font-size: 16px;
  font-weight: 600;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .cities
  .custom-select-wrapper {
  width: 100%;
  min-width: unset;
  margin-top: 10px;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .cities
  .custom-select-wrapper
  .custom-options {
  position: relative;
  z-index: 99;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .departments-list {
  padding: 15px 0;
  border-bottom: 1px solid #e2e2e2;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .departments-list
  .mylist1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  align-items: start;
  list-style: none;
  flex-wrap: wrap;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .departments-list
  .mylist1
  li {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: #c8102e;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 15px 30px;
  background-color: #fff;
  color: #000;
  border: 1px solid #e2e2e2;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .departments-list
  .mylist1
  .selected {
  background-color: #489fdf;
  color: #fff;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .status-list {
  padding: 10px 0;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .status-list
  .mylist2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  align-items: start;
  list-style: none;
  flex-wrap: wrap;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .status-list
  .mylist2
  li {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: #c8102e;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 15px 30px;
  background-color: #fff;
  color: #000;
  border: 1px solid #e2e2e2;
}
#mobile-header
  .mobileHeader-popup
  .popup-search-section
  .mobilestates
  .status-list
  .mylist2
  .selected {
  background-color: #489fdf;
  color: #fff;
}
#mobile-header .buttonbox {
  padding: 20px;
  background-color: #fff;
}
#mobile-header .buttonbox #mobile-filter-button {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: #c8102e;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  width: 100%;
}
#mobile-header .buttonbox #mobile-clear-filters {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: transparent;
  color: #c8102e;
  border: 1px solid #c8102e;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 12px;
}
#mobile-header .buttonbox #mobile-clear-filters:hover {
  background-color: #c8102e;
  color: #fff;
}
#search-bar {
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  font-family: "Red Hat Display";
  /* Responsive design */
}
@media screen and (max-width: 1024px) {
  #search-bar {
    display: none;
  }
}
#search-bar .search-container {
  width: 340px;
  max-width: 600px;
  position: relative;
}
#search-bar .search-bar {
  width: 100%;
  padding: 20px 20px 20px 60px;
  border-radius: 50px;
  color: #000000;
  background: rgb(255, 255, 255);
  box-shadow: 0px 1px 3px 1px #e2e2e2;
  border: 1px solid #cfcdcd;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5em;
  height: auto;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
  height: auto;
}
#search-bar .search-bar:focus {
  border-color: #000000;
}
#search-bar .search-bar::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
#search-bar .search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9;
  transition: all 0.3s ease;
}
#search-bar .close-search {
  display: none;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 9;
  transition: all 0.3s ease;
  line-height: 1em;
}
#search-bar .search-container:focus-within .search-icon {
  transform: translateY(-50%) scale(1.1);
}
#search-bar .search-icon svg {
  width: 100%;
  height: 100%;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}
#search-bar .search-container:focus-within .search-icon svg {
  stroke: #667eea;
}
@media (max-width: 640px) {
  #search-bar .search-bar {
    padding: 18px 18px 18px 55px;
    font-size: 15px;
  }
  #search-bar .search-icon {
    left: 20px;
    width: 18px;
    height: 18px;
  }
}
#search-bar .search-bar-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
#search-bar .search-bar-container .plj-filter_field select,
#search-bar .search-bar-container .plj-filter_field ::picker(select) {
  font-family: "Red Hat Display";
  font-weight: 400;
  background-color: #fff;
  color: #000;
  position: relative;
  box-shadow: 0px 1px 3px 1px #e2e2e2;
  border: 1px solid #cfcdcd;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  padding: 15px 20px;
  line-height: 1.5em;
  min-width: 125px;
  max-width: 145px;
  height: auto;
}
#search-bar .search-bar-container .plj-filter_field.departments select {
  padding-right: 45px;
}
#search-bar .search-bar-container #filter-button {
  padding: 16px 15px;
  border-radius: 30px;
  background-color: #c8102e;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  padding: 16px 20px;
  border: none;
  font-size: 14px;
  font-family: "Red Hat Display";
  font-weight: 600;
}
#search-bar .search-bar-container #clear-filters {
  padding: 16px 20px;
  border-radius: 30px;
  background-color: transparent;
  color: #c8102e;
  border: 1px solid #c8102e;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

#search-bar .search-bar-container #clear-filters:hover {
  background-color: #c8102e;
  color: #fff;
}

.job-number__container {
  padding-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .job-number__container {
    padding: 10px 20px;
  }
}
.job-number__container span {
  font-family: "Red Hat Display";
  font-size: 15px;
  line-height: 22px;
  color: #616161;
}

#job-post {
  width: 100%;
  font-family: "Source Sans Pro", "Arial", "Sans-Serif";
}
@media screen and (max-width: 760px) {
  #job-post {
    padding: 10px;
  }
}
#job-post ul.all-job {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#job-post ul.all-job .job-box a {
  background-color: #f7f7f7;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  cursor: pointer;
}
#job-post ul.all-job .job-box a:hover {
  border: 1px solid #489fdf;
}
#job-post ul.all-job .job-box a:hover h3 {
  text-decoration: underline;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box a {
    padding: 20px;
  }
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box a {
    flex-direction: column;
    align-items: start;
  }
}
#job-post ul.all-job .job-box .job-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  width: 60%;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box .job-title-box {
    width: 100%;
  }
}
#job-post ul.all-job .job-box .job-title-box h3 {
  color: #489fdf;
  font-family: "Source Sans Pro", "Arial", "Sans-Serif";
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
#job-post ul.all-job .job-box .job-title-box h3 a {
  text-decoration: none;
  font-family: "Source Sans Pro", "Arial", "Sans-Serif";
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box .job-title-box h3 {
    font-size: 20px;
    font-weight: 600;
  }
}
#job-post ul.all-job .job-box .job-title-box .job-designation-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}
#job-post ul.all-job .job-box .job-title-box .job-designation-box img {
  width: 20px;
}
#job-post ul.all-job .job-box .job-title-box .job-designation-box span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box .job-title-box .job-designation-box span {
    font-size: 16px;
    font-weight: 500;
  }
}
#job-post ul.all-job .job-box .job-location-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  width: 30%;
  justify-content: start;
}
#job-post ul.all-job .job-box .job-location-box img.location-icon {
  width: 16px;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box .job-location-box {
    width: 100%;
  }
}
#job-post ul.all-job .job-box .job-location-box p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  #job-post ul.all-job .job-box .job-location-box p {
    font-size: 16px;
    font-weight: 500;
  }
}

#pagination {
  padding: 60px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#pagination .page-numbers {
  font-family: "Source Sans Pro", "Arial", "Sans-Serif";
  border: 1px solid #d4d4d4;
  height: 55px;
  width: 55px;
  border-radius: 55px;
  line-height: 55px;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
@media only screen and (max-width: 380px) {
  #pagination .page-numbers {
    height: 36px;
    width: 36px;
    border-radius: 36px;
    line-height: 36px;
    font-size: 14px;
  }
}
#pagination .page-numbers.current {
  border: 1.5px solid #489fdf;
}

/* plj-filter_loader */
.loader-wrapper {
  display: flex;
  justify-content: center;
}

.plj-filter_loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #274573;
  display: none;
}

.plj-filter_loader:before,
.plj-filter_loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}

.plj-filter_loader:after {
  color: #ff3d00;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

.apply-job-btn a {
  display: inline-block;
  margin: 20px 0;
  padding: 14px 36px;
  border: none;
  background: #ce1b1b;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24), 0px 3px 6px rgba(0, 0, 0, 0.12);
}

/* Single Job Page */
.single-job_title {
  text-align: center;
}
article.job-container ul {
  padding-top: 0;
  margin-top: 0;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
@media only screen and (max-width: 600px) {
  .job-list_filters {
    flex-wrap: wrap;
  }
  .job-list_filters .plj-filter_field input,
  .job-list_filters .plj-filter_field select {
    width: 100%;
  }
}
.custom-select-wrapper {
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  min-width: 135px;
  user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .custom-select-wrapper {
    min-width: 100%;
    width: 100%;
  }
}

.custom-select-trigger {
  padding: 16px 48px 16px 20px;
  border-radius: 30px;
  border: 1px solid #cfcdcd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease;
}
.custom-select-trigger:hover {
  border-color: #489fdf;
}
.custom-select-trigger:focus {
  outline: none;
  border-color: #489fdf;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.6665 6L7.99984 11.3333L13.3332 6' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-options {
  display: none;
  position: absolute;
  flex-direction: column;
  top: 110%;
  left: 0;
  width: 100%;
  border: 1px solid #cfcdcd;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 100;
  max-height: 350px;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .custom-options {
    max-height: 250px;
    border-radius: 8px;
  }
}

.custom-option {
  padding: 14px 20px;
  font-size: 15px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
.custom-option:last-child {
  border-bottom: none;
}
.custom-option:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .custom-option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.custom-option:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .custom-option:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

.custom-option:hover,
.custom-option.selected {
  background-color: #489fdf;
  color: #fff;
}

.custom-select-wrapper.open .custom-options {
  display: flex;
}

@media screen and (max-width: 1024px) {
  .mobileHeader-popup
    .popup-search-section
    .mobilestates
    .cities
    .custom-select-wrapper {
    margin-top: 15px;
  }
  .mobileHeader-popup
    .popup-search-section
    .mobilestates
    .cities
    .custom-select-wrapper
    .custom-select-trigger {
    padding: 16px 48px 16px 20px;
    font-size: 16px;
    border-radius: 25px;
  }
  .mobileHeader-popup
    .popup-search-section
    .mobilestates
    .cities
    .custom-select-wrapper
    .custom-options
    .custom-option {
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* Job Application Form  Styling*/

.job-application-container {
  padding: 40px 20px 0 20px;
}
.job-application-header {
  text-align: center;
}
#job-application-form {
  max-width: 850px;
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#job-application-form .form-group {
  margin-bottom: 24px;
}

#job-application-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

#job-application-form .form-group label .required {
  color: #dc3545;
  margin-left: 4px;
}

#job-application-form .form-group input[type="text"],
#job-application-form .form-group input[type="email"],
#job-application-form .form-group input[type="tel"],
#job-application-form .form-group input[type="url"],
#job-application-form .form-group select,
#job-application-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#job-application-form .form-group input[type="text"]:focus,
#job-application-form .form-group input[type="email"]:focus,
#job-application-form .form-group input[type="tel"]:focus,
#job-application-form .form-group input[type="url"]:focus,
#job-application-form .form-group select:focus,
#job-application-form .form-group textarea:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#job-application-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

#job-application-form .form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 2px dashed #ced4da;
  border-radius: 4px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out;
}

#job-application-form .form-group input[type="file"]:hover {
  border-color: #80bdff;
  background-color: #e9ecef;
}

#job-application-form .form-group small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6c757d;
}

#job-application-form .form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  vertical-align: middle;
}

#job-application-form .form-group label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

#job-application-form .form-group button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #c8102e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, transform 0.1s ease-in-out;
}

#job-application-form .form-group button[type="submit"]:hover {
  background-color: #0056b3;
}

#job-application-form .form-group button[type="submit"]:active {
  transform: scale(0.98);
}

#job-application-form .form-group button[type="submit"]:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

/* Success/Error Messages */
#job-application-form .form-message {
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 4px;
  font-size: 14px;
}

#job-application-form .form-message.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

#job-application-form .form-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  #job-application-form {
    margin: 20px;
    padding: 24px;
  }

  #job-application-form .form-group input[type="text"],
  #job-application-form .form-group input[type="email"],
  #job-application-form .form-group input[type="tel"],
  #job-application-form .form-group input[type="url"],
  #job-application-form .form-group select,
  #job-application-form .form-group textarea {
    font-size: 16px;
  }
}

/* Loading State */
#job-application-form.loading {
  opacity: 0.6;
  pointer-events: none;
}

#job-application-form.loading button[type="submit"]::after {
  content: "...";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

/* Thank you page styles (hjm-thankyou) */
.hjm-thankyou {
  max-width: 980px;
  margin: 48px auto;
  padding: 40px 20px;
}

.hjm-thankyou__hero {
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 48px 28px;
  box-shadow: 0 8px 24px rgba(12, 30, 50, 0.06);
}

.hjm-thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
}

.hjm-thankyou__title {
  font-size: 28px;
  margin: 0 0 12px;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.2;
}

.hjm-thankyou__content {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.hjm-thankyou__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hjm-cta-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.08s ease, box-shadow 0.12s ease;
  border: 1px solid transparent;
}

.hjm-cta-primary {
  background: #c8102e;
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 165, 164, 0.16);
}

.hjm-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 164, 0.18);
}

.hjm-cta-secondary {
  background: transparent;
  color: #0f172a;
  border: 1px solid #e6eef0;
}

.hjm-cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 18, 22, 0.04);
}

/* Responsive */
@media (max-width: 640px) {
  .hjm-thankyou {
    margin: 24px auto;
    padding: 20px;
  }

  .hjm-thankyou__title {
    font-size: 22px;
  }

  .hjm-thankyou__content {
    font-size: 15px;
  }

  .hjm-thankyou__actions {
    flex-direction: column;
    gap: 10px;
  }
}
