.grey-bg {
    background-color: #5B5C61;
}
form input[type="text"] {
    width: 100%;
}
form#faqSearchForm input[type="text"] {
    padding-right: 40px;
}

img.faqSearchIcon {
    position: absolute;
    width: 23px;
    height: 23px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
img.faqCategoryImage {
    width: 100px;
    height: 100px;
}

#accordion .singleAccordion:first-of-type {
    border-top: 1px solid #707070;
}

.accordionLink {
    font-family: fs-elliot-bold, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 19px;
    line-height: 27px;
    color: #373737;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;

    display: block;
    width: 100%;
    cursor: pointer;
    background-image: url('../img/greyPlusIcon.svg');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 20px;
    -webkit-transition: background-image .3s ease;
    -moz-transition: background-image .3s ease;
    -o-transition: background-image .3s ease;
    transition: background-image .3s ease;

    border-bottom: 1px solid #707070;
}
.accordionLink[aria-expanded="true"] {
    background-image: url('../img/greyMinusIcon.svg');
    border-bottom: none;
}
.accordionLink[aria-expanded="true"] + div.collapse {
    border-bottom: 1px solid #707070;
}

.read-more-button {
    display: inline-block;

    padding-top: 8px;
    padding-right: 48px;
    padding-bottom: 10px;
    padding-left: 16px;

    border: 1px solid #9D9D9D;
    text-decoration: none;
}
.read-more-button:hover {
    text-decoration: none;
}
span.error {
    display: block;
}
.grey-bg span.error {
    color: white;
    background-color: red;
}

.three-col-grid .three-col-grid-item.faq-grid-item {
    margin-bottom: 80px;
}