/* Custom CSS from the support team. */

/*
*  Ticket 8450119
*  In Composer, the footer width is conflicting with a 100% width value from the application css.
*  07/11/16 - James B
*/

.fsElementActionButtonContainer {
    width: auto;
}

/* End Section */

/*
*  Ticket 8450118
*  New style for directory layout, minimal layout
*  07/15/16 - Sean L
*  08/11/16 - Kara F. (same ticket)
*/

.fsDirectory.minimal {
.fsConstituentItem {
    background: none;
  	display: flex;
    flex-wrap: wrap;
  	border-bottom: 1px solid black;
  	margin-bottom: 0;
  	padding: 5px 0;
    &:nth-child(odd) {
      background-color: #f1f2f2;
    }

    > h3, > div {
      display: table-cell;
    	/*width: 25%;*/
    	margin: 0;
    	color: inherit;
    	font-size: 16px;

      @media screen and (max-width: $bp-huge) {
        display: block;
        width: 100%;
      }
    }
  }
}

/* End Section */


/*
*  Ticket 8450973
*  fsAccount bar is overlapping header nav because nav is position fixed for sticky scroll.
*  07/19/16 - James B
*/

body.fsAccountBarVisible #fsHeader {
    margin-top: 45px;
}

/* End Section */



/*
*  Ticket 8454545
*  Parent portal page grid layout in table.
*  08/08/16 - James B
*  Ticket 8682660
*  04/14/17 - James B
*/

.parent-portal-table td {
    padding: 0 3px;
    max-width: 90px;
}

.parent-portal-table .fsTwoColumnLayout > .fsDiv,
.parent-portal-table .fsThreeColumnLayout > .fsDiv {
    margin-bottom: 0;
}

@media (min-width:800px) {
    .parent-portal-table .fsTwoColumnLayout .fsStyleColumn-1 {
        padding-right: 5px;
    }
    .parent-portal-table .fsTwoColumnLayout .fsStyleColumn-2 {
        padding-left: 5px;
    }
}

/* End Section */


/*
*  Ticket 8465408
*  Changes to constituent popup styling.
*  10/04/16 - James B
*/

.ui-dialog .fsProfileSection.fsStyleAutoclear {
    clear: both;
}

.ui-dialog .fsBiography .fsProfileSectionFieldName {
    display: none;
}

.ui-dialog .fsBiography .fsProfileSectionFieldValue {
    width: 100%;
}

/* End Section */

.hide-news {
display: none;
}

/* 9404459 - 07/28/23 - CMS-15281 - Jon B */
.slick-track {
  padding-left: 0;
}

/* End Section */

/* 
*  Ticket 9411203
*  Add new green button style
*  08/11/23 - James B
*/


 .fs_style_40 {
    display: inline-block;
    margin: 0 0 10px;
    padding: 10px 20px;
    background: #5d9732;
    color: #fff;
    outline: 0;
    border-radius: 4px;
    border: solid 1px #5d9732;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: .3s;
}
 .fs_style_40:hover {
   background: #fff;
    color: #5d9732;
 }
