﻿.career-list-page .career-items {
  margin-top: 100px;
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  .career-list-page .career-items {
    margin-top: 80px;
  }
}
.career-list-page .career-items #career-item-list .positions .position {
  margin-bottom: 90px;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .title {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 768px) {
  .career-list-page .career-items #career-item-list .positions .position .info-container .title {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.career-list-page .career-items #career-item-list .positions .position .info-container .title .career-title {
  font-size: 18px;
  font-weight: 600;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .title span {
  font-size: 14px;
  padding: 4px 10px;
  background: var(--background);
  border: 1px solid #D1AD8E;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .title span:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #376061;
  display: inline-block;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .description {
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
  color: var(--text-second);
}
.career-list-page .career-items #career-item-list .positions .position .info-container .career-footer {
  margin-block: 20px;
  color: var(--text-second);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .career-footer .career-jobtype:before {
  content: "\e938";
  font-family: "icomoon";
  margin-right: 5px;
  color: #98A2B3;
  font-weight: normal;
}
.career-list-page .career-items #career-item-list .positions .position .info-container .career-footer .career-location:before {
  content: "\e91d";
  font-family: "icomoon";
  margin-right: 5px;
  color: #98A2B3;
  font-weight: normal;
}
.career-list-page .career-items #career-item-list .positions .position .info-container a.read-more {
  font-weight: 500;
  background: var(--primary-color);
  padding: 9px 18px;
  color: #fff;
  border-radius: 40px;
  display: block;
  width: max-content;
}

.page.career-application-complete-page {
  margin-block: 50px;
  text-align: center;
}

.career-full-page .page-title {
  margin-top: 40px;
}
.career-full-page .career-body {
  padding: 20px;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
.career-full-page #career-application-form .fieldset .title {
  font-size: 16px;
  text-align: center;
  border-color: var(--primary-color);
  margin-inline: 20px;
}
.career-full-page #career-application-form .fieldset .form-fields {
  padding-top: 55px;
  max-width: 480px;
  margin: auto;
}
.career-full-page #career-application-form .fieldset .form-fields .file-input {
  position: relative;
  border: 0;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  transition: border-color 0.3s ease;
  width: 100%;
  border-radius: 9px;
  border: 2px dashed #d6d3d1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-full-page #career-application-form .fieldset .form-fields .file-input .label {
  position: absolute;
  pointer-events: none;
  cursor: pointer;
}
.career-full-page #career-application-form .fieldset .form-fields .file-input .label:before {
  content: "\e912";
  font-family: "icomoon";
  color: #6b7280;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.career-full-page #career-application-form .fieldset .form-fields .file-input .button {
  display: none;
}
.career-full-page #career-application-form .fieldset .form-fields .file-input input {
  position: relative;
  opacity: 0;
  padding-block: 54px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.career-full-page #career-application-form .fieldset .form-fields .application-submit-button {
  font-size: 14px;
  background: var(--primary-color);
  padding: 12px 20px;
  border: none;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}
.career-full-page #career-application-form .fieldset .form-fields .application-submit-button:hover {
  opacity: 0.9;
}
