/* Runtime component ownership. */

/* BEGIN source style.css:321-690 shared-typography-panels-shelves */
/* Shared Typography */
h1,
h2,
h3 {
    color: var(--text);
    letter-spacing: 0;
    line-height: 1.16;
}

h1 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 4.7rem);
    font-weight: 800;
}

h2 {
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 2.2vw, 2.35rem);
    font-weight: 700;
}

h3 {
    margin: 28px 0 14px;
    font-size: 1.15rem;
    font-weight: 650;
}

p,
li {
    color: rgba(239, 244, 255, 0.86);
}

/* Shared Panels And Cards */
.page-hero,
.content,
.content-account,
.card,
.film-purchase-panel,
.about,
.creator-panel,
.legal-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 26, 45, 0.72);
    box-shadow: var(--shadow);
}

.about,
.legal-panel {
    max-width: var(--layout-document-panel);
    margin: 0;
    padding: 34px;
}

.card {
    padding: 24px;
    margin: 16px 0;
}

.content,
.content-account {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 22px;
    margin-top: 24px;
}

/* Application Shelves */
.home-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    min-height: 320px;
    margin-bottom: 34px;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(9, 13, 22, 0.96), rgba(12, 31, 59, 0.72) 48%, rgba(9, 13, 22, 0.5)),
        url("/static/digital-silk/camera.png") right 80px center / 220px auto no-repeat,
        url("/static/digital-silk/film.png") right 280px bottom 52px / 120px auto no-repeat;
    box-shadow: var(--shadow);
}

.home-hero h1 {
    margin-bottom: 14px;
}

.home-hero p {
    max-width: var(--layout-text);
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.eyebrow {
    margin-bottom: 12px !important;
    color: var(--lime) !important;
    font-size: 0.78rem !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.film-shelf {
    position: relative;
    width: 100%;
    margin: 0;
}

.spotlight-shelf {
    width: 100%;
    min-height: 456px;
}

.spotlight-shelf .shelf-heading h2 {
    font-size: 1.5rem;
    font-weight: 650;
}

.spotlight-shelf .image-preview {
    gap: 16px;
    padding: 0 4px 32px;
    scroll-behavior: smooth;
}

.spotlight-shelf .poster-card {
    flex-basis: 240px;
    min-width: 240px;
    max-width: 240px;
}

.spotlight-shelf .poster-card img {
    width: 240px;
    height: 330px !important;
}

.spotlight-shelf .poster-title {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 650;
}

@media (min-width: 1024px) {
    .spotlight-shelf .poster-card {
        flex-basis: 292px;
        min-width: 292px;
        max-width: 292px;
    }

    .spotlight-shelf .poster-card img {
        width: 292px;
        height: 398px !important;
    }
}

.shelf-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.shelf-heading h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 650;
}

.shelf-controls {
    display: flex;
    gap: 8px;
}

.shelf-controls button {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border-color: rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    background: rgba(51, 65, 85, 0.72);
    color: #cbd5e1;
    font-size: 1.35rem;
    line-height: 1;
}

.shelf-controls button:hover {
    background: rgba(71, 85, 105, 0.86);
    color: #fff;
}

.spotlight-shelf .shelf-controls {
    position: absolute;
    inset: 50% -2px auto -2px;
    z-index: 2;
    justify-content: space-between;
    pointer-events: none;
}

.spotlight-shelf .shelf-controls button {
    pointer-events: auto;
}

.shelf-dots {
    position: absolute;
    bottom: 4px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.shelf-dots button {
    width: 8px;
    height: 8px;
    min-height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.shelf-dots button.active {
    width: 28px;
    background: rgba(255, 255, 255, 0.75);
}

.featured-shelf {
    max-width: none;
    padding: 20px 16px;
    border-radius: 16px;
    background: rgba(16, 33, 59, 0.72);
    box-shadow: 0 0 0 1px rgba(47, 128, 255, 0.16);
}

.featured-shelf .image-preview {
    gap: 20px;
}

.featured-shelf .poster-card {
    flex-basis: 220px;
    min-width: 220px;
    max-width: 220px;
}

.featured-shelf .poster-card img {
    width: 220px;
    height: 335px !important;
}

.discovery-queue {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 22px 0 34px;
    padding: 24px 28px;
    border: 1px solid rgba(102, 192, 244, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(23, 35, 58, 0.96), rgba(31, 63, 103, 0.88) 52%, rgba(17, 26, 45, 0.96)),
        radial-gradient(62% 180% at 84% 50%, rgba(102, 192, 244, 0.2), transparent 58%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 16px 34px rgba(0, 0, 0, 0.34);
}

.discovery-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.discovery-copy p:last-child {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.discovery-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 176px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 4px;
    border: 1px solid rgba(47, 128, 255, 0.55);
    background: linear-gradient(180deg, #347dff, #1e55b7);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 22px rgba(0, 0, 0, 0.24);
}

.discovery-button:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.image-preview {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 0 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.image-preview::-webkit-scrollbar {
    display: none;
}

.poster-card,
.image-preview > a,
.image-preview > div,
.film-card {
    display: flex;
    flex: 0 0 205px;
    flex-direction: column;
    gap: 10px;
    min-width: 205px;
    max-width: 205px;
    margin: 0 !important;
    color: var(--text);
    scroll-snap-align: start;
}

.poster-card img,
.image-preview img,
.film-card img {
    width: 205px;
    height: 318px !important;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    transition: transform 180ms ease, filter 180ms ease;
}

.poster-card:hover img,
.image-preview a:hover img {
    transform: translateY(-3px);
    filter: brightness(1.07);
}

.poster-title,
.image-preview span {
    color: var(--muted);
    font-size: 0.88rem;
}

/* END source style.css:321-690 shared-typography-panels-shelves */

/* BEGIN source style.css:1153-1225 buttons-actions */
button,
.btn,
.filter-button,
.btn-submit,
.purchase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid rgba(47, 128, 255, 0.55);
    border-radius: 6px;
    background: linear-gradient(180deg, #347dff, #1e55b7);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 150ms ease, filter 150ms ease, background 150ms ease;
}

button:hover,
.btn:hover,
.filter-button:hover,
.btn-submit:hover,
.purchase-btn:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.account-cta,
.account-cta:link,
.account-cta:visited {
    border-color: rgba(47, 128, 255, 0.55);
    background: linear-gradient(180deg, #347dff, #1e55b7);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 22px rgba(0, 0, 0, 0.24);
}

.account-cta:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.account-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.btn-cancel,
.purchase-btn.gray {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.btn-buy,
.purchase-btn,
.purchase-btn.green {
    border-color: rgba(201, 255, 38, 0.36);
    background: linear-gradient(180deg, #9ed02f 0%, #5c7e10 100%);
}

.btn-action,
.purchase-btn.blue {
    border-color: rgba(47, 128, 255, 0.55);
    background: linear-gradient(180deg, #347dff, #1e55b7);
}

.btn-danger,
.btn-submit.btn-danger {
    border-color: rgba(255, 91, 79, 0.5);
    background: linear-gradient(180deg, #e45a48, #9e241b);
}

.remove-tag {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--danger);
    cursor: pointer;
    font-weight: 800;
}

.remove-tag:hover {
    background: rgba(255, 91, 79, 0.12);
    color: #ff847b;
}
/* END source style.css:1153-1225 buttons-actions */

/* BEGIN source style.css:1298-1771 player */
.player {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #05070c;
    box-shadow: var(--shadow);
}

.dual-stream-player {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-color: rgba(47, 128, 255, 0.28);
    background: #05070c;
}

.dual-stream-player .player-stage {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(47, 128, 255, 0.15), transparent 40%),
        #05070c;
}

.dual-stream-player .player-stage > * {
    grid-area: 1 / 1;
    min-width: 0;
    min-height: 0;
}

.dual-stream-player .player-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #05070c;
}

.dual-stream-player audio {
    display: none;
}

.dual-stream-player .player-controls {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 3px;
    padding: 24px 14px 10px;
    background: linear-gradient(180deg, transparent, rgba(5, 7, 12, 0.72) 36%, rgba(5, 7, 12, 0.98));
    opacity: 1;
    transition: opacity 160ms ease;
}

.dual-stream-player .progress-layer {
    position: relative;
    z-index: 1;
    width: 100%;
}

.dual-stream-player .progress-bar {
    position: relative;
    display: grid;
    align-items: center;
    height: 12px;
}

.dual-stream-player .progress-bar::before,
.dual-stream-player .progress-bar .buffered,
.dual-stream-player .progress-bar .played {
    position: absolute;
    left: 0;
    height: 4px;
    border-radius: 999px;
}

.dual-stream-player .progress-bar::before {
    content: "";
    right: 0;
    background: rgba(255, 255, 255, 0.18);
}

.dual-stream-player .progress-bar .buffered {
    width: 0;
    background: rgba(255, 255, 255, 0.28);
}

.dual-stream-player .progress-bar .played {
    width: 0;
    background: var(--blue);
    box-shadow: 0 0 16px rgba(47, 128, 255, 0.38);
}

.dual-stream-player .player-range {
    position: relative;
    z-index: 2;
    width: 100%;
    accent-color: var(--blue);
    cursor: pointer;
}

.dual-stream-player.menu-open .seek {
    pointer-events: none;
}

.dual-stream-player .seek {
    height: 12px;
    margin: 0;
    opacity: 0.001;
}

.dual-stream-player .player-control-row {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
}

.dual-stream-player .player-control-group {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.dual-stream-player .ctrl-group {
    position: relative;
    display: inline-flex;
}

.dual-stream-player .player-btn {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.dual-stream-player .player-btn:hover {
    background: rgba(47, 128, 255, 0.22);
    color: #fff;
    transform: scale(1.04);
}

.dual-stream-player .player-btn:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.dual-stream-player .player-btn.cc,
.dual-stream-player .player-btn.settings {
    font-size: 0.75rem;
}

.dual-stream-player .player-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.dual-stream-player .icon-play {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
}

.dual-stream-player .play.is-playing .icon-play {
    width: 15px;
    height: 16px;
    margin-left: 0;
    border: 0;
}

.dual-stream-player .play.is-playing .icon-play::before,
.dual-stream-player .play.is-playing .icon-play::after {
    content: "";
    position: absolute;
    top: 0;
    width: 5px;
    height: 16px;
    border-radius: 1px;
    background: currentColor;
}

.dual-stream-player .play.is-playing .icon-play::before {
    left: 1px;
}

.dual-stream-player .play.is-playing .icon-play::after {
    right: 1px;
}

.dual-stream-player .icon-volume {
    width: 20px;
    height: 18px;
}

.dual-stream-player .icon-volume::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 13px;
    height: 12px;
    border-radius: 1px;
    background: currentColor;
    clip-path: polygon(0 32%, 42% 32%, 100% 0, 100% 100%, 42% 68%, 0 68%);
}

.dual-stream-player .icon-volume::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 3px;
    width: 8px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: 0;
    border-radius: 0 12px 12px 0;
    opacity: 0.78;
}

.dual-stream-player .icon-cast {
    width: 20px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.dual-stream-player .icon-cast::before,
.dual-stream-player .icon-cast::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-radius: 0 8px 0 0;
}

.dual-stream-player .icon-cast::before {
    width: 7px;
    height: 7px;
}

.dual-stream-player .icon-cast::after {
    width: 12px;
    height: 12px;
}

.dual-stream-player .icon-fullscreen::before,
.dual-stream-player .icon-fullscreen::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-color: currentColor;
    border-style: solid;
}

.dual-stream-player .icon-fullscreen::before {
    border-width: 2px 0 0 2px;
}

.dual-stream-player .icon-fullscreen::after {
    border-width: 0 2px 2px 0;
}

.dual-stream-player .popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    display: none;
    gap: 6px;
    min-width: 170px;
    max-width: min(260px, 80vw);
    padding: 10px;
    border: 1px solid rgba(47, 128, 255, 0.36);
    border-radius: 6px;
    background: rgba(11, 22, 41, 0.98);
    box-shadow: var(--shadow);
    color: var(--text);
    z-index: 40;
}

.dual-stream-player .volume-popup {
    right: auto;
    left: 0;
    min-width: 190px;
}

.dual-stream-player .popup-title {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dual-stream-player .popup-list {
    display: grid;
    gap: 6px;
}

.dual-stream-player .popup-item {
    padding: 8px 10px;
    border-radius: 4px;
    color: var(--muted);
    white-space: nowrap;
    cursor: pointer;
}

.dual-stream-player .popup-item:hover {
    background: var(--blue-soft);
    color: var(--text);
}

.dual-stream-player .vol-slider-wrap {
    padding: 6px 2px 10px;
}

.dual-stream-player .vol-slider {
    opacity: 1;
}

.dual-stream-player google-cast-launcher {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .dual-stream-player {
        min-height: 0;
    }

    .dual-stream-player .player-controls {
        padding: 10px;
    }

    .dual-stream-player .player-control-row,
    .dual-stream-player .player-control-right {
        flex-wrap: wrap;
    }

    .dual-stream-player .player-control-row {
        align-items: flex-start;
    }

    .dual-stream-player .player-control-right {
        justify-content: flex-end;
    }

    .dual-stream-player .player-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
        padding: 0;
        font-size: 0.72rem;
    }
}

.film-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.purchase-option,
.action-item,
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.purchase-label {
    color: var(--text);
    font-size: 1rem;
    font-weight: 750;
}

.purchase-desc,
.film-info div,
.celltext {
    color: var(--muted);
}

.purchase-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-tag {
    min-width: 86px;
    padding: 9px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--lime);
    text-align: center;
    font-weight: 800;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.thumb,
.thumb-down {
    width: 32px;
    fill: var(--muted);
    cursor: pointer;
    transition: transform 160ms ease, fill 160ms ease;
}

.thumb:hover,
.thumb-down:hover {
    transform: scale(1.12);
}

.thumb.active {
    fill: #60d394;
}

.thumb-down.active {
    fill: var(--danger);
}

/* END source style.css:1298-1771 player */

/* BEGIN source style.css:2864-2884 form-fields */
}
table,
.analytics-container {
width: 100%;
}

.analytics-container {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
}

.cell {
border: 0;
}

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

/* END source style.css:2864-2884 form-fields */

/* BEGIN source style.css:3075-3078 paypal-container */
.paypal-button-container {
    width: min(560px, 100%);
    margin: 0;
}
/* END source style.css:3075-3078 paypal-container */

/* BEGIN source style.css:3109-3195 dialogs */
#overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(2px);
}

dialog,
.dialog {
    max-width: min(640px, calc(100vw - 32px));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #10182a;
    color: var(--text);
    box-shadow: var(--shadow);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(3px);
}

.dlg-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    font-family: system-ui, sans-serif;
}

.dlg-window {
    position: absolute;
    min-width: 360px;
    max-width: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #10182a;
    color: var(--text);
    box-shadow: var(--shadow);
}

.dlg-title,
.dlg-footer {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.dlg-title {
    padding: 9px 12px;
    border-bottom: 1px solid var(--line);
    cursor: move;
    user-select: none;
    font-weight: 700;
}

.dlg-body {
    display: flex;
    gap: 14px;
    padding: 18px;
    color: var(--text);
}

.dlg-icon {
    width: 40px;
    text-align: center;
    font-size: 36px;
    line-height: 1;
}

.dlg-message {
    flex: 1;
}

.dlg-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid var(--line);
}

.dlg-footer button {
    min-width: 80px;
}

/* END source style.css:3109-3195 dialogs */

/* BEGIN source style.css:3235-3240 mobile-shared-grid */
    .content,
    .content-account,
    .film-body,
    .analytics-container {
        grid-template-columns: 1fr;
    }
/* END source style.css:3235-3240 mobile-shared-grid */

/* BEGIN source style.css:3413-3454 mobile-cards-shelves */
    .poster-card,
    .image-preview > a,
    .image-preview > div,
    .film-card {
        flex-basis: 160px;
        min-width: 160px;
    }

    .poster-card img,
    .image-preview img,
    .film-card img {
        width: 160px;
        height: 242px !important;
    }

    .spotlight-shelf {
        min-height: 0;
    }

    .spotlight-shelf .poster-card {
        flex-basis: 240px;
        min-width: 240px;
    }

    .spotlight-shelf .poster-card img {
        width: 240px;
        height: 330px !important;
    }

    .featured-shelf .poster-card {
        flex-basis: 180px;
        min-width: 180px;
    }

    .featured-shelf .poster-card img {
        width: 180px;
        height: 274px !important;
    }

    .shelf-controls {
        display: none;
    }
/* END source style.css:3413-3454 mobile-cards-shelves */

/* BEGIN source style.css:3475-3481 mobile-form-fields */
    .inputfield {
        grid-template-columns: 1fr;
    }

    .inputtext {
        text-align: left;
    }
/* END source style.css:3475-3481 mobile-form-fields */
