.ts-accordion-item-top{
    display: grid;
    grid-template-columns: 75px auto 75px;
    align-items: center;
}

.ts-accordion-item{
    padding: 2rem 0;
    border-bottom: 2px solid black;
}

.vendor-image{
    align-self: center;
    justify-self: center;
    padding: 15px;
    max-width: 200px;
}

.chevron-james{
    width: 50px;
    height: 50px;
    background: #3155a4;
    align-self: center;
    justify-self: center;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.top-image{
    max-width: 250px;
}

.chevron-james-jr{
    position: absolute;
    left: 15px;
    top: 10px;
    height: 20px;
    width: 20px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(135deg);
    transition: all ease 0.5s;
}

.chevron-james.open .chevron-james-jr{
    transform: rotate(-45deg);
    top: 20px;
}

.accordion-content{
    max-height: 0px;
    transition: all ease 0.5s;
    overflow: hidden;
    color: white;
    background: linear-gradient(0deg,rgba(91, 121, 181, 1) 0%, rgba(49, 85, 164, 1) 100%);
}
.content-wrapper{
     padding: 3rem 5rem;
     font-size: 18px;
}

.content-wrapper a{
    color: white;
    text-decoration: underline;
    
}

.ts-title{
    font-size: 24px;
}

.accordion-content.open{
    max-height: 1000px;
}

.title-area .title{
    font-size: 24px;
    font-weight: 700;
}

.title-area{
    display: flex;
    justify-content: space-between;
}

.pagination-accordion{
    text-align: center;
}

a.currentPage.active.numbers{
    color: black;
    font-weight: 700;
}

@media screen and (max-width: 767px){

    .title-area{
        display: block;
    }
    .ts-accordion-item-top{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .ts-accordion-item{
        border-bottom: none;
    }
    .chevron-james{
        width: 100%;
        height: 35px;
        background: #3155a4;
        align-self: center;
        justify-self: center;
        position: relative;
        padding: 10px;
        cursor: pointer;
    }
    
    .chevron-james-jr{
        height: 15px;
        width: 15px;  
        left: calc(50% - 8px);     
    }
    .chevron-james.open .chevron-james-jr{
        top: 15px;
    }
}