.faqList {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    
}

.faqListItem {

}

.faqTitle {
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    color: #575756;
  	font-size: 18px;
  	/*flex: 1 1 80%; */
    word-wrap: break-word;
  	white-space: normal;
  	text-align: left;
}

@media (min-width: 1400px) {
  .faqTitle {
  	font-size: 20px;	
  }
}

.listDividerHover {
    position: relative;
    overflow: hidden;
}

.listDividerHover:hover {
    background-color: rgb(217 221 220/0.2)!important;
}

.listDividerHover:focus {
    background-color: rgb(217 221 220/0.2)!important;
}

.backgroundColourClicked {
    background-color: rgb(217 221 220/0.2)!important;
}

.listDividerHover:hover::before {
    left: 0;
    transform: translateX(0);
}

.listDividerHover::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: -100%;
    transform: translateX(0);
    z-index: 1;
    width: 100%;
    background-color: #575756;
    transition: left 0.6s ease-in-out;
    will-change: left;
}

.faqButton {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 24px 16px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  	border-radius: 0!important;
  	/*text-wrap: wrap; */
}

.faqButton.noBorderBottom {
    border-bottom: none;
}

.bgTransparent {
    background-color: transparent!important;
}

.faqAnswer {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s opacity ease-in;
    font-family: "Rubik", sans-serif;
    max-height: 0;
    color: #575756;
}

.faqAnswer.is-visible {
    visibility: visible;
    opacity: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    max-height: fit-content;
    padding: 12px 24px;
}

.faqChevron {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .faqTitle {
        font-size: 16px;
      	
    }
    .faqButton {
        padding: 24px 8px;
    }
}