.vs-list-dropdown-image-sections {
    margin-top: 32px;
    display: flex;
    padding:16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-radius:16px;
    background: #F8F7F5;
}

.vs-list-dropdown-image-sections__image-container {
    display: none;
}

.vs-list-dropdown-image-sections__image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.vs-list-dropdown-image-sections__image--active {
    display: block;
}

.vs-list-dropdown-image-sections__dropdowns {
    width: 100%;
}

.vs-list-dropdown-image-sections__dropdown{
    display: flex;
    flex-direction: column;
}


.vs-list-dropdown-image-sections__dropdown-button {
    width: 100%;
    display: flex;
    padding: 12px 20px;
    justify-content: space-between;
    border: 0;
    background-color: #F8F7F5;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.vs-list-dropdown-image-sections__dropdown-button {
    border-top: 1px solid #DCD5CC;
}

.vs-list-dropdown-image-sections__dropdown-button.unbordered{
    border: none;
}

.vs-list-dropdown-image-sections__dropdown-button[aria-expanded="true"] h4 {
    color: #cd0c2e;
}

.vs-list-dropdown-image-sections__dropdown-button[aria-expanded="true"] .vs-list-dropdown-image-sections__icon{
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(19%) sepia(75%) saturate(2331%) hue-rotate(329deg) brightness(101%) contrast(122%);
}

.vs-list-dropdown-image-sections__dropdown-button:focus {
    outline: 0;
}

.vs-list-dropdown-image-sections__icon {
    margin-left: 8px;
    font-size: 0.9em;
}

/* Dropdown content animación */
.vs-list-dropdown-image-sections__dropdown-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}


.vs-list-dropdown-image-sections__dropdown-button[aria-expanded="true"].vs-list-dropdown-image-sections__dropdown-content {
    margin-bottom: 8px;
}



.vs-list-dropdown-image-sections__image-mobile-wrapper {
    padding-inline: 20px;
}

.vs-list-dropdown-image-sections__image-mobile {
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.35s ease, opacity 0.3s ease;
}

.vs-list-dropdown-image-sections__image-mobile--open {
    height: 192px;
    border-radius: 8px;
    opacity: 1;
    margin-block: 8px;
    object-fit: cover;
}

.vs-list-dropdown-image-sections__list {
    list-style:none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    margin-bottom: 8px;
}
.vs-list-dropdown-image-sections__body-wrapper{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vs-list-dropdown-image-sections__list-title{
    display: flex;
    padding: 12px 20px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.vs-list-dropdown-image-sections__list-title h5{
    color: #262626;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.vs-list-dropdown-image-sections__body{
    display: flex;
    padding: 0 20px 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

@media (min-width: 768px) {
    .vs-list-dropdown-image-sections {
        padding: 0;
        display: flex;
        flex-direction: row;
        border: none;
    }

    .vs-list-dropdown-image-sections__image{
        border-radius: 16px;
    }

    .vs-list-dropdown-image-sections__image-container {
        height: 710px;
        align-self: stretch;
        width: 100%;
        display: block;
        flex: 1;
        position: relative;
        min-height: 200px;
        border-radius: 8px;
    }

    .vs-list-dropdown-image-sections__dropdowns {

        display: flex;
        padding:64px 48px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        flex: 1 0 0;
        align-self: stretch;
    }

    .vs-list-dropdown-image-sections__image-mobile {
        display: none !important;
    }

    .vs-list-dropdown-image-sections__dropdown-button {
        display: flex;
        padding: 12px 0;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        align-self: stretch;
    }
}
