/* Wage Calculator - main.css */

/* Wage Page */
.wage-area {
  padding-top: 40px;
  padding-bottom: 80px;
}

.wage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.custom__dropdown-btn {
  font-size: 16px;
  line-height: 24px;
}

.custom__dropdown-wage--mobile {
  display: none;
}

.custom__dropdown-btn,
.custom__dropdown-btn:hover,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  padding: 8px 60px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: transparent;
  color: #334155;
  box-shadow: none;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000;
  text-decoration: underline;
}

.dropdown-menu {
  border: none;
  padding: 24px 32px;
  flex-direction: column;
  gap: 12px;
  width: 193px;
  background: #fff;
  color: #344054 !important;
  border-radius: 8px;
  box-shadow: 0px 6px 16px 4px rgba(16, 24, 40, 0.08);
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: transparent;
  text-decoration: underline;
}

.dropdown-menu--social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #344054;
  padding: 0;
}

.dropdown-menu--social a img {
  width: 24px;
  height: 24px;
}

.dropdown-menu--social a span {
  flex: 1;
  display: block;
}

.wage__form-chart {
  margin-top: 40px;
  width: 100%;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .wage__form-chart {
    flex-direction: row;
  }
  .wage__form .form-select {
    font-size: 14px;
  }
}

.wage__form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .wage__form {
    padding: 40px 24px;
    width: 360px;
    flex-shrink: 0;
  }
}

.wage__chart {
  flex: 1;
}

.input__item-title,
.salary__card-title {
  display: block;
  color: #344054;
  font-weight: 600;
  margin-bottom: 8px !important;
  letter-spacing: -0.7px;
}

.input__item-title {
  display: block;
}

.input__item-title button {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.form-select--current,
.form-select--current:focus {
  color: #334155;
  font-weight: 500;
}

.form-select--destination,
.form-select--destination:focus {
  color: #334155;
  font-weight: 500;
}

.input__items {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

/* Wage Tab */
#wageCalculatorTab {
  background: rgba(236, 236, 240, 0.5882352941);
  margin-bottom: 20px;
  padding: 3px 5px;
  border-radius: 12px;
}
#wageCalculatorTab li {
  flex: 1;
}
#wageCalculatorTab li .nav-link {
  background-color: transparent;
  border: 1px solid transparent;
  color: #717182;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
#wageCalculatorTab li .nav-link svg {
  width: 18px;
}
#wageCalculatorTab li .nav-link:focus,
#wageCalculatorTab li .nav-link.active {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.tab-content {
  background: #fff;
}
.tab-content a,
.tab-content button,
.tab-content p {
  color: #64748b;
}
.tab-content .salary-tab__content {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .tab-content .salary-tab__content {
    flex-direction: row;
  }
}
.tab-content .salary-highlight-area,
.tab-content .salary-chart-area {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
}
@media (min-width: 992px) {
  .tab-content .salary-highlight-area,
  .tab-content .salary-chart-area {
    padding: 25px;
  }
}
.tab-content .salary-chart-area {
  width: 100%;
}
.tab-content .salary-chart-area .salary-chart {
  margin-top: 30px;
  height: 280px;
}
.tab-content .salary-highlight-area {
  width: 100%;
}
@media (min-width: 1200px) {
  .tab-content .salary-highlight-area {
    max-width: 300px;
  }
}
.tab-content .salary-tab__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tab-content .salary-tab__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #64748b;
}
.tab-content .salary-tab__desc button {
  text-decoration: underline;
  color: #334155;
  padding: 0;
  font-weight: 600;
}

.salary-highlight__items p {
  color: #64748b;
  margin-bottom: 15px;
}
.salary-highlight__items p:last-of-type {
  margin-bottom: 0;
}
.salary-highlight__items p span {
  font-weight: 600;
  color: #108188;
}

/* Modal Area */
.custom__modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px;
  padding-bottom: 10px;
}

.modal-dialog {
  max-width: 655px;
}

.modal-content {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
}

.custom__modal-body {
  padding-left: 32px;
  padding-right: 57px;
  padding-bottom: 36px;
}

.modal__close-btn {
  width: 24px;
  height: 24px;
}

.chart__modal-descs p,
.chart__modal-descs p a {
  color: #475467;
}

.chart__modal-descs p a {
  font-weight: 600;
}

.chart__modal-descs p {
  margin-bottom: 12px;
}

.chart__modal-descs p:last-of-type {
  margin-bottom: 0;
}

.custom-tooltip {
  --bs-tooltip-bg: #fff;
  --bs-tooltip-color: #475467;
  background: #fff;
  opacity: 1;
  padding: 12px;
  z-index: 99;
  position: relative;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  box-shadow: 5px 5px 40px 1px rgba(16, 24, 40, 0.15);
  border-radius: 8px;
}
.custom-tooltip .tooltip-inner {
  text-align: left;
}

.highcharts-title {
  display: none;
}

.destination-job-name {
  color: #108188;
  font-weight: 700;
}

.share-to-btn:hover {
  background: #D2DEFF;
}

.highcharts-credits {
  display: none;
}

.custom-tooltip-wide .tooltip-inner {
  min-width: 210px;
  white-space: nowrap;
}

.custom-tooltip-2 .tooltip-inner {
  min-width: 250px;
}

/* Form elements */
.form-select {
  padding: 9px 14px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.form-select:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

.form-switch {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-switch .form-check-input {
  width: 44px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #108188;
  border-color: #108188;
}

.form-check-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #344054;
}

/* wage__header-title */
.wage__header-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
}

.site-header img,
.site-header svg {
  width: auto;
  height: auto;
  max-width: none;
  object-fit: unset;
}


#header {
  padding: 1.25rem 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  position: relative;
  width: 100%;
  z-index: 9998;
}
#headerimg {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}
#headerimg h1 {
  margin: 0;
  line-height: 1;
}
#headerimg h1 a {
  display: inline-block;
  font-size: 0; 
}
#headerimg .description {
  display: none;
}
hr:first-of-type {
  display: none; 
}

#footer { display: none; }
hr:last-of-type { display: none; }

#headerimg h1 {
  margin: 0;
  line-height: 0;
  font-size: 0;
}


/* =====================
   NECA
   ===================== */

body.neca #header {
  background: #000 !important;
  box-shadow: none;
}
body.neca #headerimg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.neca .wage-neca-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
body.neca .wage-neca-nav a {
  color: #B0B0B0;
  font-family: Epilogue, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-decoration: none;
}
body.neca .wage-neca-nav a.active {
  color: #F5C518;
  border-bottom: 2px solid #F5C518;
  padding-bottom: 2px;
}
body.neca .form-check-input:checked {
  background-color: #F5C518 !important;
  border-color: #F5C518 !important;
}
body.neca .salary-highlight__items p span {
  color: #F5C518 !important;
}
body.neca .destination-job-name {
  color: #F5C518 !important;
}
body.neca .wage-neca-footer {
  background: #1A1A1A;
  padding: 12px 32px;
  display: flex;
  justify-content: center;
}
body.neca .wage-neca-footer__inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
body.neca .wage-neca-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #D4D4D4;
  font-family: Epilogue, sans-serif;
  font-size: 11px;
  max-width: 525px;
}
body.neca .wage-neca-footer__copy a {
  color: #D4D4D4;
  text-decoration: underline;
}
body.neca .wage-neca-footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Epilogue, sans-serif;
  font-size: 13px;
  font-weight: 500;
}
body.neca .wage-neca-footer__links a {
  color: #D4D4D4;
  text-decoration: none;
}
body.neca .wage-neca-footer__links a:hover {
  text-decoration: underline;
}
body.neca .wage-neca-footer__links-divider {
  width: 1px;
  height: 14px;
  background: #D4D4D4;
}
body.neca .wage-neca-footer__julius {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: #D4D4D4;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

body.neca .wage-neca-footer__julius img {
  width: 67.5px;
  height: auto;
  max-height: none;
}

body.neca,
body.neca main {
  background: #000;
  color: #fff;
}
body.neca .wage__header-title {
  color: #fff;
}
body.neca .custom__dropdown-btn {
  background: transparent !important;
  border-color: #fff !important;
  color: #fff !important;
}
body.neca .custom__dropdown-btn:hover img {
  filter: brightness(0);
}
body.neca .wage__form {
  background: #1a1a1a;
  border-color: #333;
}
body.neca .input__item-title,
body.neca .salary__card-title {
  color: #fff;
}
body.neca .form-select {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #444;
}
body.neca .tab-content {
  background: #1a1a1a;
}
body.neca .tab-content a,
body.neca .tab-content button,
body.neca .tab-content p {
  color: #ccc;
}
body.neca .tab-content .salary-highlight-area,
body.neca .tab-content .salary-chart-area {
  background: #1a1a1a;
  border-color: #333;
}
body.neca .salary-tab__title {
  color: #fff;
}
body.neca #wageCalculatorTab {
  background: #1a1a1a;
}
body.neca #wageCalculatorTab li .nav-link {
  color: #999;
}
body.neca #wageCalculatorTab li .nav-link.active {
  background: #F5C518;
  color: #000;
  border-color: #F5C518;
}
body.neca .salary-highlight__items p {
  color: #ccc;
}
body.neca .form-check-label {
  color: #fff;
}

body.neca {
  font-family: 'Epilogue', sans-serif;
}

body.neca .wage__header-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.84px;
  color: #fff;
}

/* Title Wage Calculator */
body.neca .wage__header-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.84px;
  color: #fff;
}

/* Nav */
body.neca .wage-neca-nav a {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

/* Footer copyright */
body.neca .wage-neca-footer__copy {
  font-family: 'Epilogue', sans-serif;
  font-size: 11px;
  font-weight: 400;
}

/* Footer links */
body.neca .wage-neca-footer__links a {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* Footer powered by */
body.neca .wage-neca-footer__julius {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

body.neca #wageCalculatorTab li .nav-link {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  padding: 8px 16px;
  color: #B0B0B0;
}
body.neca #wageCalculatorTab li .nav-link.active {
  background: #F5C518;
  color: #000;
  border-color: #F5C518;
}

body.neca .salary-tab__desc button {
  color: #F5C518;
  display: flex;
  height: 20px;
  padding: 2px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-family: 'Epilogue', sans-serif;
}

body.neca .salary-tab__desc button::before {
  content: '→';
  display: none;
  color: #F5C518;
}

body.neca .salary-tab__desc button:hover::before {
  display: inline;
}

body.neca .salary-tab__desc button:hover {
  text-decoration: underline;
}

body.neca .salary-highlight__items p {
  font-size: 13px;
  line-height: 150%;
  font-family: 'Epilogue', sans-serif;
}

body.neca .salary-tab__desc {
  font-size: 13px;
  font-family: 'Epilogue', sans-serif;
}

body.neca .custom__dropdown-btn {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #fff;
}

body.neca .custom__dropdown-btn:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
}

body.neca #wageCalculatorTab li .nav-link:hover {
  color: #F5C518;
}
body.neca #wageCalculatorTab li .nav-link:hover svg path {
  stroke: #F5C518;
}

body.neca .input__item-title {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24px;
  line-height: 24px;
  color: #fff;
}

body.neca .custom__dropdown-btn img {
  display: none;
}

body.neca .salary-tab__title {
  font-family: 'Epilogue', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  color: #fff;
}

body.neca #wageCalculatorTab li .nav-link.active:hover {
  color: #000;
}
body.neca #wageCalculatorTab li .nav-link.active:hover svg path {
  stroke: #000;
}

body.neca .form-select {
  background-color: #fff;
  color: #2A2A2A;
}

body.neca .dropdown-menu {
  background: #fff;
  color: #2A2A2A;
}

body.neca #wageCalculatorTab li .nav-link:focus {
  background: #F5C518;
  color: #000;
  border-color: #F5C518;
  outline: none;
  box-shadow: none;
}

body.neca,
body.neca * {
  border-radius: 0 !important;
}

body.neca #wageCalculatorTab {
  padding: 4px;
}

body.neca .custom__dropdown-btn {
  min-width: 140px;
  padding: 16px 7px;
  gap: 10px;
}

body.neca .form-check-input {
  border-radius: 2em !important;
}

@media (min-width: 992px) {
  body.neca .input__item--benefits {
    padding-top: 160px;
  }
}

body.neca .custom__dropdown-btn {
  justify-content: center;
  text-align: center;
}

body.neca .btn:first-child:active,
body.neca :not(.btn-check) + .btn:active,
body.neca .btn.show {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
}

body.neca .custom__dropdown-btn.show,
body.neca .custom__dropdown-btn:active,
body.neca .custom__dropdown-btn.show:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {
  body.neca .wage__header-title {
    font-size: 32px;
  }
}

body.neca .btn:first-child:active,
body.neca :not(.btn-check) + .btn:active {
  padding: 16px 7px !important;
  min-width: 140px !important;
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  box-shadow: none !important;
}

html.neca-loading body {
  background: #000 !important;
}

body.neca .salary-chart {
  overflow: visible;
}
body.neca #chart-progression {
  overflow: visible;
}

body.neca .input__item-title button {
  border-radius: 50% !important;
}

body.neca .tooltip,
body.neca .tooltip-inner,
body.neca .tooltip .tooltip-inner {
  border-radius: 8px !important;
}

body.neca .tooltip {
  pointer-events: none !important;
}

body.neca .tab-content {
  background: #000;
}

body.neca .tab-content .salary-tab__content {
  gap: 12px;
}

