.columns {
  display: flex;
  gap: 30px;
  width: 100%;
}

.columns__content {
  flex: 1;
  min-width: 0;
}
.job-page h1 {
  display: block !important;
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}

.job-filters-title {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

#job-filters {
  display: flex;
  width: 360px;
  max-width: 100%;
  padding: 30px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
}

.job-filters-name {
  color: #1e1e26;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
}

#job-filters .form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

#jobs-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.job-item {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 28px 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
}

.job-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.job-item-specialization {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.job-item-salary {
  color: #de3327;
  font-family: "Myriad Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.job-item-employment_types {
  display: flex;
  align-items: center;
  gap: 30px;
}

.job-item-employment_type {
  color: #848484;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-item-description {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.job-item-requirements {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 270px;
}

.job-item-requirements-title {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.job-item-requirements-description * {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.job-item-requirements-description ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-item-requirements-description ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 14px;
}

.job-item-requirements-description ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efdecd;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}

.job-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
  width: 100%;
}

.btn-link {
  display: flex;
  height: 46px;
  width: 202px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  border: 1px solid #38221d;
  color: #38221d;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: unset;
}

.btn {
  display: flex;
  width: 202px;
  height: 46px;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  background: #38221d;
  color: #fff;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  cursor: pointer;
}

.btn:hover {
  background: #805c53;
}

.btn-link:hover {
  color: #fff;
  background: #805c53;
  border-color: #805c53;
}

.page_job input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 1px;
  border: 1px solid #38221d;
  margin: 0px;
  top: 1px;
}

.page_job input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-image: url("/catalog/view/theme/desktop/image/icons/check.svg");
  background-repeat: no-repeat;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
  margin: auto;
}

.page_job input[type="checkbox"]:checked {
  background: #38221d;
}

.page_job input[type="checkbox"]:checked::after {
  width: 9px;
  height: 9px;
}

.page_job .checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#job-filters label {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

#job-filters .job-filters-cnt {
  color: #848484;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.page_job .footer {
  margin-top: 80px;
}

#get-job {
  display: none;
  width: 498px;
  padding: 30px 20px;
  background: #fff;
  margin: auto;
  border-radius: 10px;
}
.mfp-ready #get-job {
  display: block;
}

.job-modal__content {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: flex-start;
}
#job-response-form {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}

.job-modal__title {
  color: #45494e;
  font-family: "Myriad Pro";
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
}
#get-job .form-file-group {
  position: relative;
}

#get-job .form-file-group input {
  position: absolute !important;
  width: 100%;
  height: 46px;
  opacity: 0 !important;
  z-index: 1;
}

#get-job .form-file-group .file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #848484;
  opacity: 0.5;
  color: #1b1b29;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#get-job .btn {
  width: 100%;
}
.page_job .form-group.required label::after {
  content: "*";
  color: #de3327;
  font-family: "Gotham Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 4px;
}
#get-job .checkbox a {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#get-job .form-group .form-control {
  padding: 15px;
  height: 53px;
  border-radius: 5px;
  color: #1b1b29;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#get-job .form-group textarea.form-control {
  height: 100px;
}

#get-job .form-group label,
#get-job .form-file-group label {
  color: #2c2c2c;
  font-family: "Myriad Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
  position: relative;
  display: block;
}

#get-job .job-modal__close {
  position: absolute;
  right: 0px;
  top: -5px;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  opacity: 0.7;
  background: #f8f8f8;
}
#get-job .job-modal__close:hover {
  opacity: 1;
}
#get-job .checkbox label {
  display: flex;
  gap: 7px;
  margin-bottom: -5px;
}
#file-list {
  padding-left: 25px;
  margin: 5px 0px;
}
#file-list li {
  font-family: "Myriad Pro";
  color: #848484;
}