.appCenter {
    --appCenter-radius: var(--wcfBorderRadiusContainer);
    --appCenter-radius-sm: var(--wcfBorderRadius);
    --appCenter-card-background: var(--wcfContentContainerBackground);
    --appCenter-card-border: var(--wcfContentBorderInner);
    --appCenter-nested-background: var(--wcfContentBackground);
}

.appCenterCatalogItem,
.appCenterPanelCard,
.appCenterIssueItem,
.appCenterVersionCard {
    border: 1px solid var(--appCenter-card-border);
    background-color: var(--appCenter-card-background);
}

.appCenterPanelCard .appCenterIssueItem {
    background-color: var(--appCenter-nested-background);
}

.appCenterOverview,
.appCenterDetail {
    padding-bottom: 48px;
}

.appCenter > :not(.pageHeaderContainer) {
    color: var(--wcfContentText);
}

.appCenter .pageHeaderContainer {
    color: var(--wcfHeaderText);
}

.appCenter .pageHeaderContainer .appCenterEyebrow,
.appCenter .pageHeaderContainer .appCenterHeroLead,
.appCenter .pageHeaderContainer h1 {
    color: var(--wcfHeaderText);
}

.appCenter .pageHeaderContainer .appCenterDetailFacts span:not(.badge):not(.appCenterPriceBadge) {
    color: rgba(var(--wcfHeaderText-rgb) / 0.82);
}

.appCenter .pageHeaderContainer .appCenterDetailGithubLink {
    color: var(--wcfHeaderLink);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.appCenter .pageHeaderContainer .appCenterDetailGithubLink:hover {
    color: var(--wcfHeaderLinkActive);
    text-decoration: underline;
}

.appCenter .pageHeaderContainer .appCenterHeroBannerSearch input[type="search"] {
    background-color: var(--wcfHeaderSearchBoxBackground);
    border-color: rgba(var(--wcfHeaderText-rgb) / 0.22);
    color: var(--wcfHeaderSearchBoxText);
}

.appCenter .pageHeaderContainer .appCenterHeroBannerSearch input[type="search"]::placeholder {
    color: var(--wcfHeaderSearchBoxPlaceholder);
}

.appCenter > .section {
    margin-top: 0;
}

.appCenterEyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
}

.appCenterHeroBanner,
.appCenterDetailHeader {
    position: relative;
    z-index: auto;
    margin: 0 0 16px;
    padding: 24px;
    padding-top: 24px;
    border: 0;
    border-radius: var(--appCenter-radius);
}

.appCenterHeroBanner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 20px;
    align-items: end;
}

.appCenterHeroBannerContent {
    min-width: 0;
}

.appCenterHeroBannerSearch {
    align-self: center;
    min-width: 0;
}

.appCenterHeroBannerSearch input[type="search"] {
    width: 100%;
    margin: 0;
}

.appCenterHeroBanner h1,
.appCenterDetailHeader h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.appCenterHeroLead {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: .9;
}

.appCenterCatalogToolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 0 16px;
}

.appCenterCatalogToolbar .contentInteractionButtonContainer {
    flex: 0 0 auto;
    margin-left: 0;
}

.appCenterViewToggle .button {
    min-width: 38px;
    padding-left: 10px;
    padding-right: 10px;
}

.appCenterViewToggle .button fa-icon {
    display: block;
}

.appCenterSearchEmpty {
    margin: 8px 0 0;
    color: var(--wcfContentDimmedText);
    font-size: 14px;
}

.appCenterCatalog {
    display: grid;
    gap: 12px;
}

.appCenterCatalogItem {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "icon title aside"
        "icon desc aside";
    gap: 6px 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: var(--appCenter-radius);
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.appCenterCatalogItem:hover {
    border-color: color-mix(in srgb, var(--wcfContentLink) 24%, var(--appCenter-card-border));
    background-color: var(--wcfTabularBoxBackgroundActive);
}

.appCenterCatalogIcon {
    grid-area: icon;
    display: block;
    text-decoration: none;
    align-self: center;
}

.appCenterIcon {
    object-fit: cover;
    border-radius: 22%;
}

.appCenterIconCatalog {
    width: 68px;
    height: 68px;
}

.appCenterCatalogTitleRow {
    grid-area: title;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
}

.appCenterCatalogTitleRow h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.appCenterCatalogTitleRow h2 a {
    color: var(--wcfContentHeadlineLink, var(--wcfContentLink));
    text-decoration: none;
}

.appCenterCatalogTitleRow h2 a:hover {
    color: var(--wcfContentHeadlineLinkActive, var(--wcfContentLinkActive));
}

.appCenterCatalogDescription {
    grid-area: desc;
    margin: 0;
    color: var(--wcfContentDimmedText);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.appCenterCatalogAside {
    grid-area: aside;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.appCenterCatalog:not(.appCenterCatalogGrid) .appCenterCatalogItem {
    grid-template-rows: auto minmax(calc(2 * 1.55 * 1em), calc(2 * 1.55 * 1em));
    align-items: center;
}

.appCenterCatalog:not(.appCenterCatalogGrid) .appCenterCatalogDescription {
    min-height: calc(2 * 1.55 * 1em);
}

.appCenterCatalog:not(.appCenterCatalogGrid) .appCenterCatalogAside {
    flex-shrink: 0;
    min-width: 180px;
}

.appCenterCatalogStoreLinks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    width: auto;
}

.appCenterCatalogStoreLinks .button {
    justify-content: center;
    white-space: nowrap;
}

.appCenterDetailsLink {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--wcfContentLink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.appCenterDetailsLink:hover {
    color: var(--wcfContentLinkActive);
    text-decoration: underline;
}

.appCenterCatalogGrid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.appCenterCatalogGrid .appCenterCatalogItem {
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    grid-template-areas:
        "icon title"
        "icon desc"
        "spacer spacer"
        "aside aside";
    gap: 8px 16px;
    align-items: start;
    align-content: start;
    padding: 20px;
    height: 100%;
    min-height: 0;
}

.appCenterCatalogGrid .appCenterCatalogItem::after {
    content: "";
    display: block;
    grid-area: spacer;
    min-height: 0;
}

.appCenterCatalogGrid .appCenterCatalogIcon {
    grid-area: icon;
    align-self: start;
    justify-self: start;
}

.appCenterCatalogGrid .appCenterIconCatalog {
    width: 88px;
    height: 88px;
}

.appCenterCatalogGrid .appCenterCatalogTitleRow {
    align-items: flex-start;
}

.appCenterCatalogGrid .appCenterCatalogDescription {
    -webkit-line-clamp: 4;
}

.appCenterCatalogGrid .appCenterCatalogAside {
    grid-area: aside;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding-top: 14px;
    border-top: 1px solid var(--wcfContentBorderInner);
}

.appCenterCatalogGrid .appCenterCatalogStoreLinks {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

.appCenterCatalogGrid .appCenterCatalogStoreLinks .button {
    width: 100%;
}

.appCenterCatalogGrid .appCenterDetailsLink {
    align-self: flex-end;
}

.appCenterBackLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--wcfContentDimmedLink);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s ease;
}

.appCenterBackLink:hover {
    color: var(--wcfContentLink);
}

.appCenterDetailFacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    margin-top: 10px;
}

.appCenterDetailFacts span:not(.badge):not(.appCenterPriceBadge) {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.appCenterPriceBadge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.appCenterPriceBadgeFree {
    background-color: #2f9e44;
    color: #ffffff;
}

.appCenterPriceBadgePaid {
    background-color: #1971c2;
    color: #ffffff;
}

.appCenter .pageHeaderContainer .appCenterPriceBadgeFree {
    background-color: #37b24d;
    color: #ffffff;
}

.appCenter .pageHeaderContainer .appCenterPriceBadgePaid {
    background-color: #228be6;
    color: #ffffff;
}

.appCenterMetaRow,
.appCenterAvailability {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.appCenterAvailabilityInline {
    margin-top: 14px;
}

.appCenterDetailHeader {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
    gap: 28px;
    align-items: center;
}

.appCenterDetailHeaderMain {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    min-width: 0;
}

.appCenterDetailHeaderCopy {
    min-width: 0;
}

.appCenterIconHero {
    width: 96px;
    height: 96px;
    border-radius: 22%;
}

.appCenterDetailHeader h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin: 0;
}

.appCenterDetailHeaderActions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-self: end;
    width: 100%;
    max-width: 240px;
}

.appCenterDetailHeaderStoreActions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appCenterDetailHeaderActions .button {
    width: 100%;
    justify-content: center;
}

.appCenterReportIssueButton,
.appCenterReportIssuePanelButton {
    background-color: #c92a2a;
    border-color: #b02525;
    color: #ffffff;
    white-space: normal;
}

html:not(.touch) .appCenterReportIssueButton:hover,
html:not(.touch) .appCenterReportIssuePanelButton:hover,
html:not(.touch) .appCenterReportIssueButton:focus,
html:not(.touch) .appCenterReportIssuePanelButton:focus {
    background-color: #a61e1e;
    border-color: #962018;
    color: #ffffff;
}

.appCenterReportIssuePanelButton {
    flex-shrink: 0;
}

.appCenterDetailGallery {
    position: relative;
    margin: 0 0 24px;
    padding: 12px 0;
}

.appCenterDetailGalleryCompact {
    padding-top: 0;
}

.appCenterDetailGalleryTrack {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.appCenterDetailShot {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    scroll-snap-align: center;
}

.appCenterDetailShot img {
    display: block;
    width: 156px;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    border-radius: var(--wcfBorderRadiusContainer);
    border: 1px solid var(--wcfContentBorderInner);
    background: var(--wcfContentContainerBackground);
    transition: transform .18s ease;
}

.appCenterDetailShot:hover img {
    transform: scale(1.03);
}

.appCenterDetailShotIpad img,
.appCenterDetailShotMac img {
    width: 216px;
    aspect-ratio: 4 / 3;
    border-radius: var(--wcfBorderRadius);
}

.appCenterTabNav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--wcfContentBorderInner);
}

.appCenterTabButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 4px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--wcfContentDimmedText);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
}

.appCenterTabButton:hover {
    color: var(--wcfContentText);
}

.appCenterTabButton.active {
    color: var(--wcfContentText);
    border-color: var(--wcfContentLink);
}

.appCenterTabBadge {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--wcfStatusInfoBackground);
    border: 1px solid var(--wcfStatusInfoBorder);
    color: var(--wcfStatusInfoText);
    font-size: 11px;
    line-height: 20px;
    text-align: center;
}

.appCenterTabPanel[hidden] {
    display: none !important;
}

.appCenterPanelCard {
    margin-bottom: 16px;
    padding: 22px 24px;
    border-radius: var(--appCenter-radius);
}

.appCenterPanelCard h2,
.appCenterVersionHead h2 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--wcfContentHeadlineText, var(--wcfContentText));
}

.appCenterPanelCardFooter {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--wcfContentBorderInner);
    color: var(--wcfContentDimmedText);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.appCenterPanelCardFooter:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.appCenterIssuePanelHead {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 16px;
}

.appCenterIssuePanelActions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 14px;
    margin-left: auto;
}

.appCenterIssuePanelHead h2 {
    margin: 0;
}

.appCenterIssuePanelLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13px;
    font-weight: 600;
}

.appCenterIssueList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.appCenterIssueItem {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border-radius: var(--appCenter-radius-sm);
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease;
}

.appCenterIssueItem:hover {
    border-color: color-mix(in srgb, var(--wcfContentLink) 24%, var(--appCenter-card-border));
    background-color: var(--wcfTabularBoxBackgroundActive);
}

.appCenterIssueItemHighlight {
    border-color: color-mix(in srgb, var(--wcfContentLink) 42%, var(--appCenter-card-border));
    background-color: var(--wcfTabularBoxBackgroundActive);
}

.appCenterIssueHeader {
    min-width: 0;
}

.appCenterIssueTitle {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    color: var(--wcfContentHeadlineLink, var(--wcfContentLink));
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.appCenterIssueTitle:hover {
    color: var(--wcfContentHeadlineLinkActive, var(--wcfContentLinkActive));
    text-decoration: underline;
}

.appCenterIssueTitleStatic {
    color: var(--wcfContentText);
    cursor: default;
}

.appCenterIssueNumber {
    flex: 0 0 auto;
    color: var(--wcfContentDimmedText);
    font-size: 14px;
    font-weight: 600;
}

.appCenterIssueTitleText {
    min-width: 0;
}

.appCenterIssueSourceBadge {
    display: inline-block;
    flex: 0 0 auto;
    padding: 2px 8px;
    border-radius: 999px;
    background: #1d76db;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    cursor: default;
}

.appCenterIssueLabels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.appCenterIssueLabel {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--issue-label-color, #999999);
    color: var(--issue-label-text-color, #ffffff);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.appCenterIssueType {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--issue-type-color, #6e7781);
    color: var(--issue-type-text-color, #ffffff);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.appCenterIssueBody {
    margin: 0;
    padding-top: 2px;
    color: var(--wcfContentText);
    font-size: 14px;
    line-height: 1.6;
}

.appCenterIssueFacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.appCenterIssueMilestone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--wcfContentDimmedText);
    font-size: 12px;
    font-weight: 600;
}

.appCenterIssueMeta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    padding-top: 12px;
    border-top: 1px solid var(--wcfContentContainerBorder);
    color: var(--wcfContentDimmedText);
    font-size: 12px;
    line-height: 1.4;
}

.appCenterText {
    color: var(--wcfContentText);
    font-size: 15px;
    line-height: 1.7;
}

.appCenterVersionTimeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.appCenterVersionItem {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 16px;
    position: relative;
    padding-bottom: 18px;
}

.appCenterVersionItem:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8px;
    bottom: 0;
    width: 2px;
    background: var(--wcfContentBorderInner);
}

.appCenterVersionMarker {
    width: 18px;
    height: 18px;
    margin-top: 22px;
    border-radius: 50%;
    border: 3px solid var(--wcfContentBorder);
    background: var(--wcfContentContainerBackground);
}

.appCenterVersionItem:first-child .appCenterVersionMarker {
    border-color: var(--wcfButtonPrimaryBackground);
    background: var(--wcfButtonPrimaryBackground);
}

.appCenterVersionCard {
    padding: 18px 20px;
    border-radius: var(--appCenter-radius-sm);
}

.appCenterVersionHead {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    margin-bottom: 10px;
}

.appCenterVersionTitleRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.appCenterVersionTitleRow h2 {
    margin: 0;
}

.appCenterVersionDate {
    color: var(--wcfContentDimmedText);
    font-size: 13px;
    font-weight: 600;
}

.appCenterVersionText {
    line-height: 1.5;
}

.appCenterGalleryNav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 1px solid var(--wcfContentBorderInner);
    border-radius: 50%;
    background: var(--wcfContentContainerBackground);
    color: var(--wcfContentText);
    cursor: pointer;
}

.appCenterGalleryNavPrev {
    left: 0;
}

.appCenterGalleryNavNext {
    right: 0;
}

.appCenterLightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(var(--wcfContentText-rgb) / .82);
    backdrop-filter: blur(8px);
}

.appCenterLightbox[hidden] {
    display: none !important;
}

.appCenterLightboxImage {
    max-width: min(92vw, 520px);
    max-height: 88vh;
    border-radius: var(--wcfBorderRadiusContainer);
}

.appCenterLightboxClose {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--wcfContentBorderInner);
    border-radius: 50%;
    background: var(--wcfContentContainerBackground);
    color: var(--wcfContentText);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 900px) {
    .appCenterHeroBanner {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .appCenterHeroBannerSearch {
        align-self: stretch;
    }

    .appCenterDetailHeader {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 20px;
    }

    .appCenterDetailHeaderActions {
        max-width: none;
    }

    .appCenterCatalogGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .appCenterHeroBanner {
        padding: 18px 16px;
    }

    .appCenterCatalogToolbar {
        justify-content: flex-end;
    }

    .appCenterDetailHeader {
        padding: 18px 16px;
    }

    .appCenterDetailHeaderMain {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .appCenterCatalogItem {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "icon title"
            "desc desc"
            "aside aside";
        gap: 8px 12px;
        padding: 16px;
        align-items: start;
    }

    .appCenterCatalog:not(.appCenterCatalogGrid) .appCenterCatalogDescription {
        min-height: 0;
    }

    .appCenterCatalogGrid .appCenterCatalogItem {
        grid-template-columns: 72px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "icon desc"
            "aside aside";
    }

    .appCenterCatalogGrid .appCenterIconCatalog {
        width: 72px;
        height: 72px;
    }

    .appCenterCatalog:not(.appCenterCatalogGrid) .appCenterCatalogAside {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    .appCenterIconCatalog,
    .appCenterIconHero {
        width: 64px;
        height: 64px;
    }

    .appCenterCatalogGrid .appCenterIconCatalog {
        width: 72px;
        height: 72px;
    }

    .appCenterDetailShot img {
        width: 124px;
    }

    .appCenterGalleryNav {
        display: none;
    }
}
