/*
 * Announcement Widget
 */

.announcement-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 15px;
  text-decoration: underline;
}

.announcement-body-text {
  line-height: 1.225;
  margin: 0 0 15px;
  padding: 8px 0 3px;
}

.announcement-body-text p {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}

/*
 * Announcement Widget - Important State
 */

.announcement.is-important .announcement-body-text {
  border: solid red 1px;
}

/*
 * Partners Widget
 */

.partners-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 15px;
  text-decoration: underline;
}

.partner-item {
  margin: 0 0 15px;
}

/**
 * Footer Menu
 */

.footer-menu {
  margin: 100px 0 50px;
}

/**
 * Page Top Partial
 */

 .fr-page-top-table {
  height: 100%;
  background: white;
  border-left: solid 1px #f0f0f0;
  border-right: solid 1px #f0f0f0;
}
.page-template-generic .fr-page-top-table {
  border-left: 0;
}
.page-template-homepage-with-logo .fr-page-top-table {
  border: 0;
}
.page-template-homepage-with-logo #td_main_content_column {
  padding-left: 0;
  padding-right: 0;
}

/**
 * Card container
 */

.fr-card {
  padding: 17px 17px 28px 20px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  border: solid 1px #d6d6d6;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}
.fr-card-dual-column {
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.fr-card-dual-column .fr-card-col-left {
  padding-right: 20px;
}
.fr-card-dual-column .fr-card-col-right .fr-button {
  margin: 60px 0;
}
.fr-card-content {
  display: block;
  padding-top: 15px;
}
.fr-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.fr-card-title, .fr-card-content {
  line-height: 1.3;
}

/**
 * Button
 */

.fr-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 50px;
  line-height: 46px;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  border: 0;
  white-space: nowrap;
  box-sizing: border-box;
  border: solid 2px #000;
}
.fr-button.fr-variant-primary {
  background-color: #000;
  color: #fff;
}
.fr-button.fr-variant-secondary {
  background-color: #fff;
  color: #000;
}
.fr-button-icon-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.fr-button-icon-label .fr-icon {
  margin-right: 17px;
}
.fr-button.fr-variant-primary.fr-cta {
  background-color: #247133;
  border-color: #247133;
}

/**
 * Alphabetized table
 */
 .fr-alphabetized-table {
  border-spacing: 0;
}
.fr-alphabetized-table thead td, .fr-alphabetized-table th {
  padding: 0;
}
.fr-alphabetized-table thead td, .fr-alphabetized-table th {
 background-color: #4a4a4a;
 color: #fff;
 font-weight: bold;
}
.fr-alphabetized-table thead td {
 font-size: 18px;
 height: 54px;
 border-right: solid 1px #979797;
 border-bottom: solid 1px #979797;
 padding-left: 30px;
 padding-right: 30px;
 white-space: nowrap;
}
.fr-alphabetized-table thead td:last-child {
 border-right: 0;
}
.fr-alphabetized-table th {
 text-align: left;
 font-size: 20px;
 height: 40px;
 font-weight: 900;
 padding-left: 15px;
 padding-top: 0;
 padding-bottom: 0;
 background-color: #535554;
 text-transform: uppercase;
}
.fr-alphabetized-table tbody td {
 vertical-align: top;
 padding: 15px 30px 15px 30px;
 border-right: solid 1px #979797;
 border-bottom: solid 1px #979797;
}
.fr-alphabetized-table tbody td:first-child {
 font-size: 16px;
 border-left: solid 1px #979797;
}

/* MOBILE CUSTOMIZATIONS */
@media screen and (max-width: 875px) {
  .fr-alphabetized-table th {
    padding-left: 10px;
  }
  .fr-alphabetized-table thead td {
    padding: 10px 15px;
    white-space: normal;
    height: auto;
  }
  .fr-alphabetized-table tbody td {
    padding: 15px 5px 15px 15px;
  }
}