/*--------------------------------------------------------------
#### Bills of Interest
--------------------------------------------------------------*/

.sf-field-taxonomy-bill-session label,
.sf-field-taxonomy-bill-position label,
.sf-field-taxonomy-bill-status label {
  /* width: 100%; */
  position: relative;
}
.sf-field-taxonomy-bill-session label::after,
.sf-field-taxonomy-bill-position label::after,
.sf-field-taxonomy-bill-status label::after {
  content: "";
  background-image: url('../images/down-bills-select-arrow.png');
  background-repeat: no-repeat;
  background-position: 93% 57%;
  background-size: 14px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

select::-ms-expand {
    display: none;
}

.sf-input-select {
  font-size: 13px;
  background-color: #ffffff;
  border: 1px solid #557b83;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  padding-left: 3px;
  position: relative;
}

/* Just remove submit from search and filter widgets in Bills of Interest form */
body.page-template-bills-of-interest .sf-field-submit {
  display: none;
}

.bills-table {
  border: solid 1px #7F9DA1;
}

.bills-table .row {
  display: flex;
}
.bills-table .row.green-background {
  background-color: #edf1f1;
}

.bills-table .cell {
  padding: 0;
}

.bills-table .bills-table__title {
  height: 54px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #557B83;
  text-transform: uppercase;
  /* hyphens: auto; */
}

.bills-table .bill-title,
.bills-table .bill-description,
.bills-table .bill-issue,
.bills-table .bill-arise-position,
.bills-table .bill-status {
  display: table-cell;
}

.bills-table__title.mobile {
  width: 100%;
  height: auto;
  justify-content: center;
  text-align: center;
  padding: 10px;
  align-items: center;
  display: none;
}

.bills-table .bill-title {
  width: 23.5%;
}
.bills-table .bill-description {
  width: 26.5%;
}
.bills-table .bill-issue {
  width: 16.66%;
}
.bills-table .bill-arise-position {
  width: 16.66%;
}
.bills-table .bill-status {
  width: 16.66%;
}

.bills-table .row .cell {
  border-top: 1px solid #A9BDC1;
  border-left: 1px solid #A9BDC1;
}
.bills-table .row:first-child .cell {
  border-top: none;
}
.bills-table .row .cell:first-child {
  border-left: none;
}
.bills-table .row .cell:last-child {
  border-right: none;
}

.bills-table .bills-table__content {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  letter-spacing: -.01rem;
  line-height: 24px;
  hyphens: auto;
}

.bills-table .separator {
  margin: 19px 0;
  border: none;
  display: none;
  min-height: 2px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .bills-table {
    border: none;
  }
  .bills-table .bills-table__content-container {
    border: solid 1px #7F9DA1;
  }
  .bills-table .bills-table__title-container {
    display: none;
  }
  .bills-table__title.mobile {
    display: block;
  }
  .bills-table .row {
    flex-direction: column;
  }

  .bills-table .bills-table__content-container .cell {
    display: flex;
    flex-direction: column;
  }
  .bills-table .bills-table__content {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .bills-table .separator.mobile {
    display: block;
  }
  .bills-table .row .cell {
    border: none;
  }
}
