.related-app-wrapper .items.tiles,
.partner-apps-wrapper .partner-apps-tiles,
.app-listing-wrapper .partner-apps-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
}

.related-app-wrapper .items.tiles .item,
.partner-apps-wrapper .items.tiles .item,
.app-listing-wrapper .items.tiles .item {
    padding: 0;
}

.related-app-wrapper .items.tiles .list-item.container,
.partner-apps-wrapper .items.tiles .list-item.container,
.app-listing-wrapper .items.tiles .list-item.container {
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
}

.related-app-wrapper .items.tiles .list-item.container:hover,
.partner-apps-wrapper .items.tiles .list-item.container:hover,
.app-listing-wrapper .items.tiles .list-item.container:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 -1px 32px -15px rgba(0, 0, 0, 0.3);
}

.related-app-wrapper .items.tiles .list-item.container.tiles,
.partner-apps-wrapper .items.tiles .list-item.container.tiles,
.app-listing-wrapper .items.tiles .list-item.container.tiles {
    padding: 20px;
    width: 275px;
    flex-direction: column;
}

.related-app-wrapper .items.tiles .app-status-title,
.partner-apps-wrapper .items.tiles .app-status-title,
.app-listing-wrapper .items.tiles .app-status-title {
    display: none;
}

.related-app-wrapper .items.tiles .status-icon-label,
.partner-apps-wrapper .items.tiles .status-icon-label,
.app-listing-wrapper .items.tiles .status-icon-label {
    justify-content: flex-start;
}

.related-app-wrapper .items.list,
.partner-apps-wrapper .items.list,
.app-listing-wrapper .items.list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.related-app-wrapper .list-item.container,
.partner-apps-wrapper .list-item.container,
.app-listing-wrapper .list-item.container {
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
    padding: 30px 24px;
}

.related-app-wrapper .list-item.container:hover,
.partner-apps-wrapper .list-item.container:hover,
.app-listing-wrapper .list-item.container:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 -1px 32px -15px rgba(0, 0, 0, 0.3);
}

.related-app-wrapper .list-item.container.list,
.partner-apps-wrapper .list-item.container.list,
.app-listing-wrapper .list-item.container.list {
    flex-direction: row;
}

.full-list.list .related-app-wrapper .items.list .item .list-item.container.list .app-logo-wrapper .additional-grid,
.full-list.list .partner-apps-wrapper .items.list .item .list-item.container:host .app-logo-wrapper .additional,
.full-list.list .app-listing-wrapper .items.list .item .list-item.container:host .app-logo-wrapper .additional {
    display: flex;
    margin-left: 0;
    height: 16px;
}

.partner-apps-wrapper .app-settings-wrapper,
.app-listing-wrapper .full-list.partner-apps.tiles .app-settings-wrapper,
.app-listing-wrapper .full-list.partner-apps.list .app-settings-wrapper {
    display: flex;
    padding: 0;
    align-items: center ;
}

.partner-apps-wrapper .app-settings-wrapper .app-settings__title,
.app-listing-wrapper .app-settings-wrapper .app-settings__title {
    font-size: 22px;
    line-height: 36px;
    font-weight: 700;
    color: var(--lwc-colorTextDefault);
    margin-bottom: 0;
}

.partner-apps-wrapper .app-settings-wrapper .pd-settings__search-sort__wrapper,
.app-listing-wrapper .app-settings-wrapper .pd-settings__search-sort__wrapper {
    justify-content: flex-end;
}

.no-results {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    color: var(--lwc-colorTextWeak);
}

.partner-apps-wrapper .items.list .partner-apps-tiles .item,
.app-listing-wrapper .items.list .partner-apps-tiles .item {
    width: 100%;
}

.partner-apps-wrapper .list-item.container.list .app-logo-wrapper .additional.additional-grid,
.app-listing-wrapper .list-item.container.list .app-logo-wrapper .additional.additional-grid {
    flex-direction: column;
    margin-left: 0;
}

.partner-apps-wrapper .full-list.container.partner-apps.list .items.list .partner-apps-tiles .list-item.container .additional,
.app-listing-wrapper .full-list.container.partner-apps.list .items.list .partner-apps-tiles .list-item.container .additional {
    align-items: flex-start;
}

.app-listing-wrapper .no-results {
    flex-direction: column;
    align-items: center;
}

@media (max-width: 767px) {
    .related-app-wrapper .items.tiles,
    .partner-apps-wrapper .partner-apps-tiles,
    .app-listing-wrapper .partner-apps-tiles {
        justify-content: center;
    }

    .app-listing-wrapper .full-list.partner-apps.tiles .app-settings-wrapper,
    .app-listing-wrapper .full-list.partner-apps.list .app-settings-wrapper {
        margin-bottom: 0;
    }

    .related-app-wrapper .items.list,
    .app-listing-wrapper .items.list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .related-app-wrapper .list-item.container.list,
    .partner-apps-wrapper .list-item.container.list,
    .app-listing-wrapper .list-item.container.list {
        width: 275px;
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .partner-apps-wrapper .items.list .partner-apps-tiles .item,
    .app-listing-wrapper .items.list .partner-apps-tiles .item {
        width: 275px;
    }

    .partner-apps-wrapper .app-settings-wrapper .sortby-view-buttons-wrapper,
    .app-listing-wrapper .app-settings-wrapper .sortby-view-buttons-wrapper {
        width: 180px;
        margin-left: auto;
    }
}

@media (max-width: 375px) {
    .partner-apps-wrapper .app-settings-wrapper,
    .app-listing-wrapper .app-settings-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .partner-apps-wrapper .app-settings-wrapper .sortby-view-buttons-wrapper,
    .app-listing-wrapper .app-settings-wrapper .sortby-view-buttons-wrapper {
        width: 100%;
        margin-left: 0;
    }
}
