.colapsable-container {
    margin-left: unset;
    margin-right: unset;
}

    .colapsable-container .colapsable-header {
        padding: 0px;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border: none;
        transition: background-color 0.3s;
        position: relative;
    }

    .colapsable-container .colapsable-icon {
        position: absolute;
        margin-right: 10px;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
        max-width: 25%;
    }

    .colapsable-container .colapsable-container .colapsable-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .colapsable-container .colapsable-content {
        max-height: 0;
        overflow: hidden;
        display: block;
        padding: 0 0px;
        transition: max-height 0.5s ease-in-out, padding 0.3s ease;
    }

