/**
 * -----------------------------------------------------------------------------
 * New Colors - Source: Figma (these names will not change in Figma as they come
 * from the Figma library, we should standardize around them).
 * -----------------------------------------------------------------------------
 */
/* Custom breakpoints for mobile carousel */
/* Navy icons */
body.custom-pay-page .field--item article.node > .content.container {
  padding: 36px 16px;
  width: auto;
}
@media (min-width: 768px) {
  body.custom-pay-page .field--item article.node > .content.container {
    padding: 36px 24px;
  }
}
@media (min-width: 1024px) {
  body.custom-pay-page .field--item article.node > .content.container {
    padding: 36px 64px;
  }
}

article.component-pay-and-benefits-calcu {
  margin-bottom: 94px;
  /**
   * --------------------------------
   * The full-time and part-time tabs
   * --------------------------------
   */
  /**
    * -----------------------------
    * Rank tabbing
    * -----------------------------
   */
  /* Hide all charts by default */
  /* Show the right chart when the radio is checked - Going to 20 to ensure it should always work */
  /* Style active row */
}
article.component-pay-and-benefits-calcu .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
}
article.component-pay-and-benefits-calcu .tab-input {
  position: absolute;
  opacity: 0;
}
article.component-pay-and-benefits-calcu .tab-input:focus + .tab-label {
  z-index: 1;
}
article.component-pay-and-benefits-calcu .tab-input:checked + .tab-label {
  border-bottom: 10px solid rgb(0, 118, 169);
  color: rgb(247, 247, 247);
  cursor: pointer;
  font-weight: bold;
}
@media (min-width: 768px) {
  article.component-pay-and-benefits-calcu .tab-input:checked + .tab-label {
    border-bottom: 4px solid rgb(0, 118, 169);
  }
}
article.component-pay-and-benefits-calcu input#tab-enlisted:checked ~ #enlisted-content,
article.component-pay-and-benefits-calcu input#tab-officer:checked ~ #officer-content {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  article.component-pay-and-benefits-calcu input#tab-enlisted:checked ~ #enlisted-content,
  article.component-pay-and-benefits-calcu input#tab-officer:checked ~ #officer-content {
    gap: 24px;
    grid-template-columns: 1fr auto;
  }
}
@media (min-width: 1440px) {
  article.component-pay-and-benefits-calcu input#tab-enlisted:checked ~ #enlisted-content,
  article.component-pay-and-benefits-calcu input#tab-officer:checked ~ #officer-content {
    gap: 88px;
  }
}
article.component-pay-and-benefits-calcu .tab-label {
  bottom: -1px;
  color: rgb(91, 94, 96);
  cursor: pointer;
  font-family: "Liberator-Light", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
  padding: 10px 8px;
  position: relative;
  text-align: center;
  -webkit-transition: background 0.1s, color 0.1s;
  transition: background 0.1s, color 0.1s;
}
@media (min-width: 768px) {
  article.component-pay-and-benefits-calcu .tab-label {
    font-size: 24px;
    padding: 24px 8px;
    width: auto;
  }
}
article.component-pay-and-benefits-calcu .tab-label:hover, article.component-pay-and-benefits-calcu .tab-label:active {
  color: rgb(247, 247, 247);
}
article.component-pay-and-benefits-calcu .tab-content {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-bottom: 1px solid rgb(247, 247, 247);
  border-top: 1px solid rgb(247, 247, 247);
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  padding-top: 9rem;
  width: 100%;
}
@media (min-width: 768px) {
  article.component-pay-and-benefits-calcu .tab-content {
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
    padding: 24px 0;
  }
}
article.component-pay-and-benefits-calcu .tab-content > .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
article.component-pay-and-benefits-calcu .time-toggle {
  position: absolute;
  opacity: 0;
}
article.component-pay-and-benefits-calcu .time-toggle:focus + .toggle-group .toggle-btn {
  z-index: 1;
}
article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .tab-content .rank-pay .rank-ft-total {
  display: block;
}
article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .tab-content .rank-pay .rank-pt-total {
  display: none;
}
article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .tab-content .rank-details .chart-container.full-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .tab-content .rank-details .chart-container.full-time {
    display: grid;
  }
}
article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .tab-content .rank-details .chart-container.part-time {
  display: none;
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .tab-content .rank-pay .rank-ft-total {
  display: none;
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .tab-content .rank-pay .rank-pt-total {
  display: block;
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .tab-content .rank-details .chart-container.full-time {
  display: none;
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .tab-content .rank-details .chart-container.part-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .tab-content .rank-details .chart-container.part-time {
    display: grid;
  }
}
article.component-pay-and-benefits-calcu .toggle-group {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0; /* No gap between buttons */
  overflow: hidden; /* keep the notch from poking out */
  position: absolute;
  left: 0;
  top: 8.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  article.component-pay-and-benefits-calcu .toggle-group {
    left: unset;
    right: 0;
    top: 2rem;
  }
}
article.component-pay-and-benefits-calcu .toggle-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 118, 169);
  border-right: none;
  color: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Liberator-Medium", Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 2.1px;
  line-height: 1;
  padding: 8px 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
article.component-pay-and-benefits-calcu .time-toggle.ft-toggle:checked ~ .toggle-group .ft-toggle-btn {
  background-color: rgb(0, 118, 169);
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .toggle-group .pt-toggle-btn {
  border: 1px solid rgb(0, 118, 169);
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .toggle-group .pt-toggle-btn::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%);
}
article.component-pay-and-benefits-calcu .time-toggle.pt-toggle:checked ~ .toggle-group .pt-toggle-btn::after {
  background: unset;
}
article.component-pay-and-benefits-calcu .notched-tab {
  display: none;
  border: none;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%);
  /* Border behind the cut shape */
  /* Inner content background mask */
}
article.component-pay-and-benefits-calcu .notched-tab::before {
  background: rgb(0, 118, 169);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2px), calc(100% - 2px) 100%, 0% 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}
article.component-pay-and-benefits-calcu .notched-tab::after {
  background: rgb(0, 0, 0);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0% 100%);
  content: "";
  inset: 1px;
  position: absolute;
  z-index: -1;
}
article.component-pay-and-benefits-calcu .rank-toggle {
  position: absolute;
  opacity: 0;
}
article.component-pay-and-benefits-calcu .tab-content > .rank-selector {
  display: none;
}
article.component-pay-and-benefits-calcu .tab-content .component-rank > .rank-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  article.component-pay-and-benefits-calcu .tab-content > .rank-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  article.component-pay-and-benefits-calcu .tab-content .component-rank > .rank-selector {
    display: none;
  }
}
article.component-pay-and-benefits-calcu .component-rank .rank-details {
  display: none;
}
article.component-pay-and-benefits-calcu .component-rank.rank-1 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .tab .rank-details-1 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .tab .rank-details-1 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .tab .rank-details-2 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .tab .rank-details-2 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .tab .rank-details-3 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .tab .rank-details-3 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .tab .rank-details-4 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .tab .rank-details-4 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .tab .rank-details-5 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .tab .rank-details-5 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .tab .rank-details-6 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .tab .rank-details-6 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .tab .rank-details-7 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .tab .rank-details-7 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .tab .rank-details-8 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .tab .rank-details-8 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .tab .rank-details-9 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .tab .rank-details-9 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .tab .rank-details-10 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .tab .rank-details-10 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .tab .rank-details-11 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .tab .rank-details-11 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .tab .rank-details-12 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .tab .rank-details-12 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .tab .rank-details-13 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .tab .rank-details-13 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .tab .rank-details-14 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .tab .rank-details-14 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .tab .rank-details-15 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .tab .rank-details-15 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .tab .rank-details-16 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .tab .rank-details-16 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .tab .rank-details-17 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .tab .rank-details-17 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .tab .rank-details-18 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .tab .rank-details-18 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .tab .rank-details-19 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .tab .rank-details-19 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .tab .rank-details-20 .rank-details,
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .tab .rank-details-20 .rank-details {
  display: block;
}
article.component-pay-and-benefits-calcu .rank-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: rgb(1, 14, 19);
  border: 1px solid rgb(65, 95, 107);
  color: rgb(247, 247, 247);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Liberator-Heavy", Helvetica, sans-serif;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
  -webkit-transition: background-color 0.2s, border 0.2s;
  transition: background-color 0.2s, border 0.2s;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-label {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 16px;
  width: 135px;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-label .rank-code {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-style: normal;
  font-weight: 420;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 32px;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-label .rank-title {
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-pay {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: rgb(2, 42, 58);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  font-weight: bold;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  gap: 16px;
  line-height: 40px;
  min-width: 220px;
  padding: 12px 16px;
  position: relative;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-pay::after {
  -ms-flex-item-align: center;
  align-self: center;
  color: rgb(247, 247, 247);
  content: "+";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-left: auto;
}
@media (min-width: 1024px) {
  article.component-pay-and-benefits-calcu .rank-row > .rank-pay::after {
    content: "";
    border: solid rgb(247, 247, 247);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    position: absolute;
    right: 2.5rem;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
article.component-pay-and-benefits-calcu .rank-row > .rank-pay .rank-total {
  padding-top: 4px;
}
article.component-pay-and-benefits-calcu .rank-row > .rank-pay .rank-pt-total {
  display: none;
}
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .rank-selector label[for=enlisted-rank-1],
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .rank-selector label[for=officer-rank-1],
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .tab .rank-selector label[for=enlisted-rank-1],
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .tab .rank-selector label[for=officer-rank-1] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .rank-selector label[for=enlisted-rank-1] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .rank-selector label[for=officer-rank-1] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .tab .rank-selector label[for=enlisted-rank-1] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .tab .rank-selector label[for=officer-rank-1] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-1:checked ~ .tab .rank-selector label[for=enlisted-rank-1] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-1:checked ~ .tab .rank-selector label[for=officer-rank-1] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .rank-selector label[for=enlisted-rank-2],
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .rank-selector label[for=officer-rank-2],
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .tab .rank-selector label[for=enlisted-rank-2],
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .tab .rank-selector label[for=officer-rank-2] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .rank-selector label[for=enlisted-rank-2] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .rank-selector label[for=officer-rank-2] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .tab .rank-selector label[for=enlisted-rank-2] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .tab .rank-selector label[for=officer-rank-2] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-2:checked ~ .tab .rank-selector label[for=enlisted-rank-2] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-2:checked ~ .tab .rank-selector label[for=officer-rank-2] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .rank-selector label[for=enlisted-rank-3],
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .rank-selector label[for=officer-rank-3],
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .tab .rank-selector label[for=enlisted-rank-3],
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .tab .rank-selector label[for=officer-rank-3] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .rank-selector label[for=enlisted-rank-3] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .rank-selector label[for=officer-rank-3] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .tab .rank-selector label[for=enlisted-rank-3] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .tab .rank-selector label[for=officer-rank-3] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-3:checked ~ .tab .rank-selector label[for=enlisted-rank-3] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-3:checked ~ .tab .rank-selector label[for=officer-rank-3] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .rank-selector label[for=enlisted-rank-4],
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .rank-selector label[for=officer-rank-4],
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .tab .rank-selector label[for=enlisted-rank-4],
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .tab .rank-selector label[for=officer-rank-4] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .rank-selector label[for=enlisted-rank-4] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .rank-selector label[for=officer-rank-4] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .tab .rank-selector label[for=enlisted-rank-4] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .tab .rank-selector label[for=officer-rank-4] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-4:checked ~ .tab .rank-selector label[for=enlisted-rank-4] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-4:checked ~ .tab .rank-selector label[for=officer-rank-4] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .rank-selector label[for=enlisted-rank-5],
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .rank-selector label[for=officer-rank-5],
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .tab .rank-selector label[for=enlisted-rank-5],
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .tab .rank-selector label[for=officer-rank-5] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .rank-selector label[for=enlisted-rank-5] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .rank-selector label[for=officer-rank-5] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .tab .rank-selector label[for=enlisted-rank-5] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .tab .rank-selector label[for=officer-rank-5] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-5:checked ~ .tab .rank-selector label[for=enlisted-rank-5] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-5:checked ~ .tab .rank-selector label[for=officer-rank-5] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .rank-selector label[for=enlisted-rank-6],
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .rank-selector label[for=officer-rank-6],
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .tab .rank-selector label[for=enlisted-rank-6],
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .tab .rank-selector label[for=officer-rank-6] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .rank-selector label[for=enlisted-rank-6] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .rank-selector label[for=officer-rank-6] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .tab .rank-selector label[for=enlisted-rank-6] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .tab .rank-selector label[for=officer-rank-6] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-6:checked ~ .tab .rank-selector label[for=enlisted-rank-6] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-6:checked ~ .tab .rank-selector label[for=officer-rank-6] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .rank-selector label[for=enlisted-rank-7],
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .rank-selector label[for=officer-rank-7],
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .tab .rank-selector label[for=enlisted-rank-7],
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .tab .rank-selector label[for=officer-rank-7] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .rank-selector label[for=enlisted-rank-7] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .rank-selector label[for=officer-rank-7] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .tab .rank-selector label[for=enlisted-rank-7] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .tab .rank-selector label[for=officer-rank-7] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-7:checked ~ .tab .rank-selector label[for=enlisted-rank-7] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-7:checked ~ .tab .rank-selector label[for=officer-rank-7] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .rank-selector label[for=enlisted-rank-8],
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .rank-selector label[for=officer-rank-8],
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .tab .rank-selector label[for=enlisted-rank-8],
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .tab .rank-selector label[for=officer-rank-8] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .rank-selector label[for=enlisted-rank-8] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .rank-selector label[for=officer-rank-8] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .tab .rank-selector label[for=enlisted-rank-8] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .tab .rank-selector label[for=officer-rank-8] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-8:checked ~ .tab .rank-selector label[for=enlisted-rank-8] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-8:checked ~ .tab .rank-selector label[for=officer-rank-8] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .rank-selector label[for=enlisted-rank-9],
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .rank-selector label[for=officer-rank-9],
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .tab .rank-selector label[for=enlisted-rank-9],
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .tab .rank-selector label[for=officer-rank-9] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .rank-selector label[for=enlisted-rank-9] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .rank-selector label[for=officer-rank-9] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .tab .rank-selector label[for=enlisted-rank-9] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .tab .rank-selector label[for=officer-rank-9] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-9:checked ~ .tab .rank-selector label[for=enlisted-rank-9] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-9:checked ~ .tab .rank-selector label[for=officer-rank-9] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .rank-selector label[for=enlisted-rank-10],
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .rank-selector label[for=officer-rank-10],
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .tab .rank-selector label[for=enlisted-rank-10],
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .tab .rank-selector label[for=officer-rank-10] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .rank-selector label[for=enlisted-rank-10] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .rank-selector label[for=officer-rank-10] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .tab .rank-selector label[for=enlisted-rank-10] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .tab .rank-selector label[for=officer-rank-10] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-10:checked ~ .tab .rank-selector label[for=enlisted-rank-10] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-10:checked ~ .tab .rank-selector label[for=officer-rank-10] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .rank-selector label[for=enlisted-rank-11],
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .rank-selector label[for=officer-rank-11],
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .tab .rank-selector label[for=enlisted-rank-11],
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .tab .rank-selector label[for=officer-rank-11] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .rank-selector label[for=enlisted-rank-11] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .rank-selector label[for=officer-rank-11] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .tab .rank-selector label[for=enlisted-rank-11] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .tab .rank-selector label[for=officer-rank-11] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-11:checked ~ .tab .rank-selector label[for=enlisted-rank-11] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-11:checked ~ .tab .rank-selector label[for=officer-rank-11] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .rank-selector label[for=enlisted-rank-12],
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .rank-selector label[for=officer-rank-12],
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .tab .rank-selector label[for=enlisted-rank-12],
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .tab .rank-selector label[for=officer-rank-12] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .rank-selector label[for=enlisted-rank-12] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .rank-selector label[for=officer-rank-12] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .tab .rank-selector label[for=enlisted-rank-12] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .tab .rank-selector label[for=officer-rank-12] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-12:checked ~ .tab .rank-selector label[for=enlisted-rank-12] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-12:checked ~ .tab .rank-selector label[for=officer-rank-12] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .rank-selector label[for=enlisted-rank-13],
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .rank-selector label[for=officer-rank-13],
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .tab .rank-selector label[for=enlisted-rank-13],
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .tab .rank-selector label[for=officer-rank-13] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .rank-selector label[for=enlisted-rank-13] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .rank-selector label[for=officer-rank-13] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .tab .rank-selector label[for=enlisted-rank-13] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .tab .rank-selector label[for=officer-rank-13] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-13:checked ~ .tab .rank-selector label[for=enlisted-rank-13] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-13:checked ~ .tab .rank-selector label[for=officer-rank-13] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .rank-selector label[for=enlisted-rank-14],
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .rank-selector label[for=officer-rank-14],
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .tab .rank-selector label[for=enlisted-rank-14],
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .tab .rank-selector label[for=officer-rank-14] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .rank-selector label[for=enlisted-rank-14] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .rank-selector label[for=officer-rank-14] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .tab .rank-selector label[for=enlisted-rank-14] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .tab .rank-selector label[for=officer-rank-14] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-14:checked ~ .tab .rank-selector label[for=enlisted-rank-14] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-14:checked ~ .tab .rank-selector label[for=officer-rank-14] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .rank-selector label[for=enlisted-rank-15],
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .rank-selector label[for=officer-rank-15],
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .tab .rank-selector label[for=enlisted-rank-15],
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .tab .rank-selector label[for=officer-rank-15] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .rank-selector label[for=enlisted-rank-15] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .rank-selector label[for=officer-rank-15] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .tab .rank-selector label[for=enlisted-rank-15] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .tab .rank-selector label[for=officer-rank-15] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-15:checked ~ .tab .rank-selector label[for=enlisted-rank-15] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-15:checked ~ .tab .rank-selector label[for=officer-rank-15] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .rank-selector label[for=enlisted-rank-16],
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .rank-selector label[for=officer-rank-16],
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .tab .rank-selector label[for=enlisted-rank-16],
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .tab .rank-selector label[for=officer-rank-16] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .rank-selector label[for=enlisted-rank-16] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .rank-selector label[for=officer-rank-16] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .tab .rank-selector label[for=enlisted-rank-16] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .tab .rank-selector label[for=officer-rank-16] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-16:checked ~ .tab .rank-selector label[for=enlisted-rank-16] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-16:checked ~ .tab .rank-selector label[for=officer-rank-16] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .rank-selector label[for=enlisted-rank-17],
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .rank-selector label[for=officer-rank-17],
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .tab .rank-selector label[for=enlisted-rank-17],
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .tab .rank-selector label[for=officer-rank-17] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .rank-selector label[for=enlisted-rank-17] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .rank-selector label[for=officer-rank-17] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .tab .rank-selector label[for=enlisted-rank-17] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .tab .rank-selector label[for=officer-rank-17] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-17:checked ~ .tab .rank-selector label[for=enlisted-rank-17] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-17:checked ~ .tab .rank-selector label[for=officer-rank-17] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .rank-selector label[for=enlisted-rank-18],
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .rank-selector label[for=officer-rank-18],
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .tab .rank-selector label[for=enlisted-rank-18],
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .tab .rank-selector label[for=officer-rank-18] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .rank-selector label[for=enlisted-rank-18] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .rank-selector label[for=officer-rank-18] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .tab .rank-selector label[for=enlisted-rank-18] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .tab .rank-selector label[for=officer-rank-18] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-18:checked ~ .tab .rank-selector label[for=enlisted-rank-18] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-18:checked ~ .tab .rank-selector label[for=officer-rank-18] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .rank-selector label[for=enlisted-rank-19],
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .rank-selector label[for=officer-rank-19],
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .tab .rank-selector label[for=enlisted-rank-19],
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .tab .rank-selector label[for=officer-rank-19] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .rank-selector label[for=enlisted-rank-19] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .rank-selector label[for=officer-rank-19] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .tab .rank-selector label[for=enlisted-rank-19] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .tab .rank-selector label[for=officer-rank-19] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-19:checked ~ .tab .rank-selector label[for=enlisted-rank-19] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-19:checked ~ .tab .rank-selector label[for=officer-rank-19] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .rank-selector label[for=enlisted-rank-20],
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .rank-selector label[for=officer-rank-20],
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .tab .rank-selector label[for=enlisted-rank-20],
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .tab .rank-selector label[for=officer-rank-20] {
  background-color: rgb(0, 79, 113);
  border: 1px solid rgb(232, 176, 15);
}
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .rank-selector label[for=enlisted-rank-20] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .rank-selector label[for=officer-rank-20] .rank-label,
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .tab .rank-selector label[for=enlisted-rank-20] .rank-label,
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .tab .rank-selector label[for=officer-rank-20] .rank-label {
  background-color: rgb(0, 79, 113);
}
article.component-pay-and-benefits-calcu #enlisted-rank-20:checked ~ .tab .rank-selector label[for=enlisted-rank-20] .rank-pay::after,
article.component-pay-and-benefits-calcu #officer-rank-20:checked ~ .tab .rank-selector label[for=officer-rank-20] .rank-pay::after {
  content: "-";
  font-size: 50px;
}
article.component-pay-and-benefits-calcu .rank-selector {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
article.component-pay-and-benefits-calcu .rank-selector-label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 18px;
  margin-bottom: 8px;
}
article.component-pay-and-benefits-calcu .rank-selector-label .rank-column {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 160px;
}
article.component-pay-and-benefits-calcu .rank-selector-label .pay-column {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  gap: 16px;
}