:root {
    --navy: #172e81;
    --gold: #ebbf14;
    --cream: #e9ecef;
    --white: #FFFFFF;
    --cyan: #00adef;
    --gray-100: #e9ecef;
    --gray-200: #ced4d9;
    --gray-700: #5f6368;
    --gray-dark: #2f2f2f;
    --text: #2f2f2f;
    --font-display: 'HelveticaNeueLTStd-Bd', Helvetica, Arial, sans-serif;
    --font-body: 'HelveticaNeueLTStd-Roman', Helvetica, Arial, sans-serif;
    --font-headers: 'Helvetica Neue LT Std', Helvetica, Arial, sans-serif;
    --radius: 6px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 8px rgba(10,31,68,0.08);
    --shadow-md: 0 6px 24px rgba(10,31,68,0.13);
    --transition: 0.25s ease;
}




.comreq_block {
  margin: 0 auto;
}

.comreq_header {
  border-top: 4px solid var(--gold);
  padding: 32px 0 16px;
}

.comreq_program-label {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.comreq_main-heading {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.comreq_intro {
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px;
}

.comreq_link {
  color: var(--navy);
  
}

.comreq_link--accent {
  /*font-weight: 600;*/
}

.comreq_button {
  display: inline-block;
  font-weight: 700;
  
  
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 3px;
}

.comreq_button--primary {
  background-color: var(--gold);
  color: var(--navy);
}

.comreq_tabs {
  display: flex;
  border-bottom: 3px solid var(--navy);
  margin-bottom: 0;
}

.comreq_tab-button {
  background: var(--cream);
  color: var(--navy);
  border: none;
  padding: 14px 28px;
  
  font-weight: 700;
  
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  margin-right: 5px;
}

.comreq_tab-button--active {
  background: var(--navy);
  color: var(--white);
}

.comreq_panel {
    padding: 2% 0 0 0;
}

.comreq_panel--hidden {
  display: none;
}

.comreq_text {
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 12px;
}

.comreq_text--inverted{
  color: var(--white);
}

.comreq_card-title-h4--inverted{
  color: var(--white);
  font-size: 20px;

}

.comreq_section-heading,
.comreq_card-title {
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin: 3% 0 2% 0;
}

.comreq_table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.comreq_specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comreq_specs-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.comreq_specs-table th,
.comreq_specs-table td {
  font-size: 1.1em;
  text-align: left;
  padding: 10px 14px;
  vertical-align: top;
}

.comreq_specs-table ul {
  margin-left: 21px;
}

.comreq_specs-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.comreq_specs-table tbody tr:nth-child(even) {
  /*background: var(--cream);*/
}

.comreq_table-key {
  font-weight: 700;
  color: var(--navy);
}

.comreq_table-highlight {
  background: var(--cream);
}

.comreq_alert {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 0;
}

.comreq_alert-title {
  
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.comreq_alert-text {
  
  color: var(--text);
  margin: 0 0 10px;
}

.comreq_list {
  
  line-height: 2;
  margin: 0;
  padding-left: 18px;
}

.comreq_list--plain {
  color: var(--text);
}

.comreq_card {
  background: var(--white);
  padding: 24px;
}

.comreq_card--accent-top {
  border-top: 4px solid var(--gold);
}

.comreq_card--grey {
  background: var(--gray-100);
}

.comreq_card--dark {
  background: var(--navy);
  color: var(--white);
}

.comreq_card--dark .comreq_card-title,
.comreq_card--dark .comreq_section-heading {
  color: var(--gold);
}

.comreq_card--dark p,
.comreq_card--dark li,
.comreq_card--dark .comreq_caption {
  color: var(--white);
}

.comreq_caption {
  color: var(--gray-700);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.comreq_list--white {
  color: var(--white);
  margin: 0 0 16px;
}

.comreq_section-highlight {
  
  font-weight: 700;
  text-transform: uppercase;

  color: var(--navy);
  margin: 0;
}

.comreq_help {
  background: var(--gray-100);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  color: var(--text);
}

.comreq_help p {
  margin: 0 0 4px;
  
}

.comreq_help-meta {
  color: var(--text);
}

.comreq_actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.comreq_action-link {
  display: inline-block;
  
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
}

.comreq_action-link--ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.comreq_action-link--ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.comreq_action-link--primary {
  background: var(--gold);
  color: var(--navy)!important;
  border: 2px solid transparent;
}


.comreq_card--dark a {
  color: var(--gold)!important;
}


.comreq_card--dark a:hover{
  color: var(--white) !important;
}

.comreq_action-link:hover,
.comreq_button:hover {
  opacity: 0.9;
}

.comreq_grid{
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

@media (max-width: 680px) {
  .comreq_grid {
    grid-template-columns: 1fr;
  }
  .comreq_actions {
    width: 100%;
    justify-content: flex-start;
  }
}


.compReqBgBanner{
        background-position-x: 200px;
    background-color: #ebecee;
}

.noMarTop{
    margin-top: 0 !important;
}

/*table with filter*/

  /* Filter Controls */
  .comReqDinTabl_controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--gray-100);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
  }

  .comReqDinTabl_fieldGroup {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
  }

  .comReqDinTabl_label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
    
  }

  .comReqDinTabl_input,
  .comReqDinTabl_select {
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);

    color: var(--text);
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .comReqDinTabl_input:focus,
  .comReqDinTabl_select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(23, 46, 129, 0.15);
  }
  .comReqDinTabl_srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

