:root {
    --ajc-red-1: #f23838;
    --ajc-red-2: #ff6a3d;
    --ajc-red-3: #b21616;
    --ajc-bg: #fff6f3;
    --ajc-card: #ffffff;
    --ajc-text: #241718;
    --ajc-muted: #73585a;
    --ajc-ok: #188a4e;
    --ajc-border: #ffd2c8;
    --ajc-shadow: 0 16px 36px rgba(178, 22, 22, 0.12);
}

.ajc-app {
    max-width: 1180px;
    margin: 24px auto;
    padding: 20px;
    color: var(--ajc-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", sans-serif;
    background: radial-gradient(circle at 80% 10%, #ffd7ce 0%, rgba(255, 215, 206, 0) 38%), linear-gradient(145deg, #fff7f2, #fff0eb 42%, #ffe6de);
    border-radius: 24px;
    box-shadow: var(--ajc-shadow);
}

.ajc-app.ajc-chat-mode .ajc-hero,
.ajc-app.ajc-chat-mode #ajc-home-onboarding {
    display: none !important;
}

.ajc-app.ajc-chat-mode .ajc-chat-panel {
    margin-top: 0;
    min-height: calc(100vh - 60px);
}

.ajc-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
}

.ajc-hero-single {
    display: block;
}

.ajc-badge {
    display: inline-block;
    margin: 0 0 8px;
    background: linear-gradient(120deg, var(--ajc-red-1), var(--ajc-red-2));
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
}

.ajc-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 10px;
    border: 1px solid #f3c2b5;
    border-radius: 999px;
    background: #fff8f5;
}

.ajc-lang-switch label {
    font-size: 13px;
    color: #703f3f;
    font-weight: 600;
}

.ajc-lang-switch select {
    border: 1px solid #efb8aa;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 13px;
    background: #fff;
    color: #2e1d1d;
}

.ajc-lang-switch-pricing {
    margin-bottom: 12px;
}

.ajc-hero h1 {
    margin: 0;
    font-size: clamp(1.4rem, 1.8vw + 1rem, 2.15rem);
    line-height: 1.2;
}

.ajc-subtitle {
    margin: 8px 0 0;
    color: var(--ajc-muted);
}

.ajc-status-panel {
    min-width: 260px;
    border: 1px solid var(--ajc-border);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.ajc-status-title {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ajc-muted);
}

.ajc-limit {
    margin: 8px 0;
    font-weight: 700;
    color: var(--ajc-red-3);
}

.ajc-user-line {
    margin: 0;
    color: var(--ajc-muted);
    font-size: 14px;
}

.ajc-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
}

.ajc-grid-home {
    grid-template-columns: 1.35fr 0.8fr;
}

.ajc-card {
    background: var(--ajc-card);
    border: 1px solid var(--ajc-border);
    border-radius: 18px;
    padding: 16px;
}

.ajc-card h2,
.ajc-card h3 {
    margin-top: 0;
}

.ajc-form {
    display: grid;
    gap: 10px;
}

.ajc-form label {
    font-weight: 600;
    font-size: 14px;
}

.ajc-form input,
.ajc-form select,
.ajc-chat-form textarea {
    border: 1px solid #f6b7a7;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 16px;
    width: 100%;
    background: #fff;
    color: var(--ajc-text);
}

.ajc-form input:focus,
.ajc-form select:focus,
.ajc-chat-form textarea:focus {
    outline: 2px solid #ffc7b7;
    border-color: var(--ajc-red-1);
}

.ajc-mobile-wheel {
    display: none;
}

.ajc-mobile-picker-display {
    display: none;
    cursor: pointer;
}

.ajc-mobile-wheel.is-open {
    display: block;
}

.ajc-wheel-columns {
    display: grid;
    gap: 10px;
}

.ajc-wheel-columns-date {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ajc-wheel-columns-time {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ajc-wheel-column {
    position: relative;
    border: 1px solid #f6b7a7;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffaf7, #fff2ed);
    padding: 8px;
    overflow: hidden;
}

.ajc-wheel-column::before,
.ajc-wheel-column::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 24px;
    pointer-events: none;
    z-index: 2;
}

.ajc-wheel-column::before {
    top: 0;
    background: linear-gradient(180deg, rgba(255, 248, 244, 0.96), rgba(255, 248, 244, 0));
}

.ajc-wheel-column::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 248, 244, 0.96), rgba(255, 248, 244, 0));
}

.ajc-wheel-column-label {
    display: block;
    margin-bottom: 6px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a3a3a;
}

.ajc-wheel-column select {
    width: 100%;
    height: 132px;
    border: none;
    border-radius: 10px;
    background: transparent;
    padding: 8px 4px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: #381f1f;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
}

.ajc-wheel-column select:focus {
    outline: 2px solid #ffc7b7;
    outline-offset: -2px;
}

.ajc-wheel-column option {
    padding: 7px 0;
}

.ajc-wheel-actions {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}

.ajc-wheel-done-btn {
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(120deg, var(--ajc-red-1), var(--ajc-red-2));
    color: #fff;
}

.ajc-time-row,
.ajc-place-row {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
}

.ajc-place-row button,
.ajc-primary-btn,
.ajc-secondary-btn,
.ajc-pay-btn {
    border: none;
    border-radius: 14px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

.ajc-primary-btn {
    background: linear-gradient(120deg, var(--ajc-red-1), var(--ajc-red-2));
    color: #fff;
    box-shadow: 0 10px 20px rgba(242, 56, 56, 0.24);
}

.ajc-primary-btn:hover,
.ajc-pay-btn:hover,
.ajc-place-row button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.ajc-place-row button,
.ajc-pay-btn {
    background: #ffe1d9;
    color: #8b1a1a;
}

.ajc-secondary-btn {
    background: #f2f2f2;
    color: #333;
}

.ajc-map {
    height: 290px;
    border-radius: 14px;
    border: 1px solid var(--ajc-border);
}

.ajc-selected-place {
    margin: 0;
    color: var(--ajc-muted);
    font-size: 13px;
}

.ajc-flow-note {
    margin: 10px 0 0;
    color: #8b1a1a;
    font-size: 13px;
    font-weight: 600;
}

.ajc-place-results {
    max-height: 180px;
    overflow: auto;
    display: grid;
    gap: 8px;
}

.ajc-place-item {
    border: 1px solid var(--ajc-border);
    border-radius: 12px;
    padding: 8px;
    background: #fff8f5;
    color: #2b1a1a !important;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.ajc-place-item-text {
    color: #1a0f0f !important;
    -webkit-text-fill-color: #1a0f0f !important;
    opacity: 1 !important;
}

.ajc-app button.ajc-place-item {
    color: #2b1a1a !important;
    background: #fff8f5 !important;
    -webkit-text-fill-color: #2b1a1a !important;
}

#ajc-place-results .ajc-place-item,
#ajc-place-results .ajc-place-item * {
    color: #2b1a1a !important;
    -webkit-text-fill-color: #2b1a1a !important;
    opacity: 1 !important;
}

.ajc-place-item:hover {
    background: #ffece7;
}

.ajc-small {
    color: var(--ajc-muted);
    font-size: 13px;
}

.ajc-pay-grid {
    display: grid;
    gap: 8px;
}

.ajc-payment-result {
    margin-top: 10px;
    font-size: 13px;
    color: var(--ajc-muted);
    white-space: pre-wrap;
}

.ajc-chat-panel {
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--ajc-border);
    border-radius: 18px;
    padding: 16px;
}

.ajc-chat-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 12px;
    align-items: start;
}

.ajc-chat-main {
    min-width: 0;
    position: relative;
}

.ajc-chat-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 10px;
}

.ajc-chat-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.ajc-chat-head h2 {
    margin: 0;
}

.ajc-model-tier {
    margin: 0;
    color: var(--ajc-muted);
    font-size: 13px;
}

.ajc-messages {
    max-height: 460px;
    overflow: auto;
    background: linear-gradient(180deg, #fffaf8, #fff2ed);
    border: 1px solid var(--ajc-border);
    border-radius: 14px;
    padding: 12px;
    display: grid;
    gap: 10px;
}

.ajc-msg {
    max-width: min(90%, 760px);
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 15px;
    line-height: 1.45;
    white-space: pre-wrap;
}

.ajc-msg code {
    background: rgba(36, 23, 24, 0.08);
    padding: 1px 5px;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
}

.ajc-msg-pre {
    margin: 8px 0 0;
    padding: 10px;
    border-radius: 10px;
    background: #fff2ed;
    border: 1px solid #f5c5b7;
    overflow: auto;
    white-space: pre;
}

.ajc-msg-pre code {
    background: transparent;
    padding: 0;
}

.ajc-msg-user {
    margin-left: auto;
    background: linear-gradient(120deg, #ff6f5d, #f03d3d);
    color: #fff;
}

.ajc-msg-assistant {
    margin-right: auto;
    background: #fff;
    border: 1px solid #f6c4b8;
}

.ajc-msg-system {
    margin: 0 auto;
    background: #fff4ed;
    border: 1px dashed #f5b8aa;
    color: #7e4141;
    text-align: center;
}

.ajc-chat-form {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 10px;
    align-items: end;
}

.ajc-chat-tip {
    margin: 0;
    grid-column: 1 / -1;
    color: #6d4242;
    font-size: 13px;
}

.ajc-free-limit-line {
    margin: 0 0 10px;
    color: #6f3f43;
    font-weight: 600;
    font-size: 13px;
}

.ajc-top-access {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 10px;
    padding: 8px 10px;
    border: 1px solid #f4d4ca;
    border-radius: 12px;
    background: #fff8f4;
}

.ajc-chat-access {
    border: 1px solid #f6d4cb;
    background: #fff7f3;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 10px;
}

.ajc-chat-access-title {
    margin-top: 12px;
    margin-bottom: 6px;
}

.ajc-main-upsell {
    margin-bottom: 10px;
    border: 1px solid #f5c5b7;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffaf7, #ffece6);
    padding: 12px;
}

.ajc-main-upsell h3 {
    margin-top: 0;
    margin-bottom: 6px;
}

.ajc-main-upsell .ajc-pay-grid {
    margin-top: 8px;
}

.ajc-main-pay-btn {
    width: 100%;
}

.ajc-msg-loading {
    padding: 10px;
    background: #fffaf8;
    border: 1px solid #f2d0c7;
}

.ajc-inline-loader {
    display: grid;
    justify-items: center;
    gap: 4px;
}

.ajc-loader-visual {
    width: min(84vw, 174px);
    height: min(84vw, 174px);
    margin: 0 auto 2px;
}

.ajc-solar-system {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

.ajc-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 999px;
    border: 1px dashed #f3baa9;
    transform: translate(-50%, -50%);
    animation-name: ajc-orbit-spin;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.ajc-orbit .ajc-planet-node {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

.ajc-orbit-1 { width: 34px; height: 34px; animation-duration: 3.2s; }
.ajc-orbit-2 { width: 47px; height: 47px; animation-duration: 4.4s; }
.ajc-orbit-3 { width: 61px; height: 61px; animation-duration: 5.8s; }
.ajc-orbit-4 { width: 76px; height: 76px; animation-duration: 7s; }
.ajc-orbit-5 { width: 91px; height: 91px; animation-duration: 9.6s; }
.ajc-orbit-6 { width: 107px; height: 107px; animation-duration: 12.2s; }
.ajc-orbit-7 { width: 124px; height: 124px; animation-duration: 15.8s; }
.ajc-orbit-8 { width: 140px; height: 140px; animation-duration: 18.6s; }
.ajc-orbit-9 { width: 158px; height: 158px; animation-duration: 22s; }

.ajc-planet-node {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(120, 35, 35, 0.1);
}

.ajc-sun-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff2b3, #ffb84d 60%, #ff8a2f);
    box-shadow: 0 0 14px rgba(255, 154, 50, 0.45);
    z-index: 2;
}

.ajc-planet-mercury { background: #b8b8c8; }
.ajc-planet-venus { background: #ffe0a6; }
.ajc-planet-earth { background: #4aa7f0; }
.ajc-planet-mars { background: #eb6b5e; }
.ajc-planet-jupiter { background: #d8a66e; }
.ajc-planet-saturn { background: #ccb386; }
.ajc-planet-rahu { background: #7a5bcf; }
.ajc-planet-ketu { background: #5f96a8; }
.ajc-planet-moon { background: #f4f4ff; }

.ajc-planet-node.is-focus {
    transform: translate(-50%, -50%) scale(1.55);
    box-shadow: 0 0 0 4px rgba(242, 56, 56, 0.18), 0 0 14px rgba(242, 56, 56, 0.6);
}

.ajc-graha-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #fff8f4 0%, #ffe9e1 70%);
    border: 1px solid #f3c6b9;
}

.ajc-graha-dot {
    border-radius: 999px;
    background: linear-gradient(120deg, #ef6b5b, #d83b3b);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(120, 35, 35, 0.12);
    animation: ajc-graha-pulse 1.8s ease-in-out infinite;
}

.ajc-graha-dot.is-focus {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(242, 56, 56, 0.2), 0 0 16px rgba(242, 56, 56, 0.58);
}

.ajc-zodiac-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 999px;
}

.ajc-wheel-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px dashed #f0b7a8;
}

.ajc-wheel-ring-1 {
    width: 56px;
    height: 56px;
    animation: ajc-orbit-spin 3.4s linear infinite;
}

.ajc-wheel-ring-2 {
    width: 100px;
    height: 100px;
    animation: ajc-wheel-reverse 6.4s linear infinite;
}

.ajc-wheel-ring-3 {
    width: 150px;
    height: 150px;
    animation: ajc-orbit-spin 11s linear infinite;
}

.ajc-wheel-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 76px;
    transform-origin: top center;
    transform: translate(-50%, -100%);
    background: linear-gradient(180deg, rgba(242, 56, 56, 0.8), rgba(242, 56, 56, 0.06));
    border-radius: 2px;
    animation: ajc-beam-sweep 2.2s linear infinite;
}

.ajc-wheel-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, #ffe9be, #ffad53);
    box-shadow: 0 0 14px rgba(255, 144, 40, 0.44);
}

.ajc-planet-loader-title {
    margin: 0;
    font-weight: 700;
    color: #7a2525;
    font-size: 12px;
    text-align: center;
}

.ajc-planet-focus-text {
    margin: 0;
    font-size: 12px;
    color: #8e4646;
    text-align: center;
}

@keyframes ajc-orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ajc-wheel-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes ajc-beam-sweep {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes ajc-graha-pulse {
    0%, 100% { opacity: 0.56; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.06); }
}

.ajc-home-info-card {
    display: grid;
    align-content: start;
    gap: 10px;
}

.ajc-home-points {
    margin: 0;
    padding-left: 18px;
    color: #543f42;
}

.ajc-home-pricing-btn {
    text-decoration: none;
    display: inline-flex;
    width: fit-content;
}

.ajc-pricing-cta-card {
    display: grid;
    align-content: center;
    gap: 10px;
}

.ajc-pricing-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(120deg, var(--ajc-red-1), var(--ajc-red-2));
    color: #fff !important;
    max-width: 220px;
    box-shadow: 0 10px 20px rgba(242, 56, 56, 0.24);
}

.ajc-pricing-link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.ajc-pricing-shell {
    max-width: 1120px;
    margin: 24px auto;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--ajc-border);
    background: radial-gradient(circle at 88% 8%, #ffd2c7 0%, rgba(255, 210, 199, 0) 35%), #fff6f2;
    color: var(--ajc-text);
    box-shadow: var(--ajc-shadow);
}

.ajc-pricing-title {
    margin: 6px 0;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
}

.ajc-pricing-subtitle {
    margin: 0 0 14px;
    color: var(--ajc-muted);
}

.ajc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ajc-pricing-card {
    border: 1px solid var(--ajc-border);
    background: #fff;
    border-radius: 16px;
    padding: 14px;
}

.ajc-pricing-card-premium {
    background: linear-gradient(180deg, #fff8f5, #ffece5);
}

.ajc-pricing-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.ajc-pricing-number {
    margin: 0;
    font-weight: 800;
    font-size: 1.6rem;
    color: #8b1a1a;
}

.ajc-pricing-tag {
    margin: 2px 0 0;
    color: #7a3f3f;
    font-size: 13px;
}

.ajc-pricing-list {
    margin: 8px 0 0;
    padding-left: 18px;
}

.ajc-pricing-feature-grid {
    margin-top: 14px;
    border: 1px solid #f4cfc4;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.ajc-feature-head {
    padding: 10px;
    font-weight: 700;
    background: #fff0ea;
    border-bottom: 1px solid #f4cfc4;
}

.ajc-feature-row {
    padding: 9px 10px;
    border-top: 1px solid #f8ddd5;
}

.ajc-pricing-cta-row {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ajc-pricing-purchase-cta,
.ajc-pricing-chat-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ajc-highlight {
    box-shadow: 0 0 0 3px rgba(242, 56, 56, 0.35);
    border-radius: 12px;
}

@media (max-width: 980px) {
    .ajc-hero,
    .ajc-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .ajc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .ajc-pricing-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ajc-status-panel {
        min-width: auto;
    }

    .ajc-chat-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .ajc-chat-layout {
        grid-template-columns: 1fr;
    }

    .ajc-chat-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .ajc-app {
        padding: 12px;
        border-radius: 14px;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-native-datetime {
        display: none;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-picker-display {
        display: block;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-wheel.is-open {
        display: block;
    }

    .ajc-time-row,
    .ajc-place-row {
        grid-template-columns: 1fr;
    }

    .ajc-map {
        height: 240px;
    }

    .ajc-top-access {
        align-items: flex-start;
        flex-direction: column;
    }

    .ajc-lang-switch {
        width: 100%;
        justify-content: space-between;
    }

    .ajc-wheel-columns-date,
    .ajc-wheel-columns-time {
        gap: 8px;
    }

    .ajc-wheel-column {
        padding: 6px;
        border-radius: 12px;
    }

    .ajc-wheel-column select {
        height: 124px;
        font-size: 16px;
    }
}

@media (max-width: 921px) {
    .ajc-form.ajc-mobile-wheel-enabled .ajc-native-datetime {
        display: none;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-picker-display {
        display: block;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-wheel.is-open {
        display: block;
    }
}

@media (pointer: coarse) {
    .ajc-form.ajc-mobile-wheel-enabled .ajc-native-datetime {
        display: none;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-picker-display {
        display: block;
    }

    .ajc-form.ajc-mobile-wheel-enabled .ajc-mobile-wheel.is-open {
        display: block;
    }
}
