.hidden {
  display: none;
}

.bnpp-expandable {
  background-color: #F3F9F7;
  padding: 18px 92px 18px 92px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.bnpp-expandable-main {
    display: flex;
}

.bnpp-fix-item {
    width: 30%;
    padding-right: 5%;
}

.bnpp-fix-item h3 {
    font-family: BNPP Sans Condensed;
    font-weight: 400;
    font-size: 48px;
    line-height: 49px;
    letter-spacing: 0%;
    color: #1D1D1B;
    margin-bottom: 42px;
}

.bnpp-fix-item p {
    font-family: BNPP Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #1D1D1B;
}

.bnpp-expandable-item {
    display: flex;
    width: 70%;
    justify-content: center;
}

.bnpp-component-expandable {
    padding-left: 2%;
    width: 25%;
}

.bnpp-button-expandable {
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #008252;
    padding: 18px 25px 24px 25px;
}

.bnpp-button-expandable .title-button {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.bnpp-button-expandable .title-button span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.bnpp-button-expandable .title-button img {
    transition: transform .7s ease-in-out;
}

.bnpp-button-expandable::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border: 3px solid #008252;
    border-radius: 3px;
    transition: 300ms;
}

.bnpp-button-expandable:hover::after {
    opacity: 1;
}

.bnpp-button-expandable:hover {
    border: none;
    margin-top: 1px;
    margin-bottom: 1px;
}

.bnpp-button-expandable:hover .title-button {
    font-family: BNPP Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -1.5%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: #008259;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.enable .title-button img {
    transform: rotate(180deg);
    filter: invert(37%) sepia(55%) saturate(894%) hue-rotate(116deg) brightness(89%) contrast(101%);
}

.enable .title-button span {
    font-family: BNPP Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -1.5%;
    text-align: center;
    color: #008252;
}

.bnpp-button-expandable .body-button {
    font-family: BNPP Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1.5%;
    text-align: left;
}

.bnpp-button-expandable-all {
    background-color: #F3F9F7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
}

.bnpp-button-expandable-all span{
    font-family: BNPP Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-align: center;
    color: #008252;
    padding-right: 5px;
}

@media (max-width: 825px) { 
    .bnpp-button-expandable {
        padding: 20px;

        .title-button {
            width: 100%;
            justify-content: space-between;
        }
    }

    .bnpp-expandable {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .bnpp-expandable-main {
        flex-direction: column;
    }

    .bnpp-fix-item {
        width: 100%;
        padding-right: 0;
    }

    .bnpp-expandable-item {
        width: 100%;
        flex-direction: column;
    }

    .bnpp-component-expandable {
        padding-left: 0;
        padding-bottom: 1%;
        width: 100%;
    } 
}