.accordion-usp-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 1rem;
    gap: 10px;
    display: none;
}

@media (max-width:767.98px) {
    .accordion-usp-controls {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        margin-bottom: 1rem;
        gap: 10px;
        display: flex;
    }
}

.accordion-usp-btn {
    text-transform: uppercase;
    background-color: transparent;
    color: #7f7f7f;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    display: none;
    max-height: 0;
}

.usp-item {
    margin-bottom: 10px;
    background-color: inherit;
}

.usp-header {
    outline: none;
    background-color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.usp-header:focus{
    outline: none;
    box-shadow: none;
}

@media (max-width:767.98px) {
    .usp-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease;
        background-color: inherit;
    }

    .usp-content.active {
        max-height: 1000px;
        outline: none;
    }
}

.usp-content {
    background-color: inherit;
}

.usp-content.active {
    outline: none;
}

.usp-content-inner {
    padding: 0;
}

.accordion-usp-btn.visible {
    display: block;
}

.accordion-usp-btn.expand-btn:after{
    display: block;
    content: url(../img/rebrand/chevron-down-gray50.svg);
    width: 10px;
    height: auto;
    letter-spacing: 1px;
    position: absolute;
    top: -2px;
    right: -15px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.accordion-usp-btn.collapse-btn:after{
    display: block;
    content: url(../img/rebrand/chevron-down-gray50.svg);
    transform: rotate(180deg);
    width: 10px;
    height: auto;
    letter-spacing: 1px;
    position: absolute;
    top: 1px;
    right: -15px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}