/* YILMEX Crypto ↔ EUR Converter — frontend 0.7.7 */

.ycc-root {
    --ycc-hero: #05080c;
    --ycc-bg: #0b0f14;
    --ycc-card: #11161c;
    --ycc-card-2: #131a22;
    --ycc-field: #080d13;
    --ycc-blue: #4da3ff;
    --ycc-blue-hover: #6bb6ff;
    --ycc-blue-deep: #1a6fd4;
    --ycc-gold: #d6b45a;
    --ycc-gold-soft: #f0d78a;
    --ycc-white: #ffffff;
    --ycc-text: rgba(255, 255, 255, 0.74);
    --ycc-muted: rgba(255, 255, 255, 0.52);
    --ycc-border: rgba(77, 163, 255, 0.28);
    --ycc-border-soft: rgba(255, 255, 255, 0.08);
    --ycc-danger: #ffb6b6;
    --ycc-warn: #e7cd82;
    --ycc-live: #3dd68c;

    width: 100%;
    color: var(--ycc-white);
    font-family: Lato, Arial, sans-serif;
    overflow-x: clip;
    background:
        radial-gradient(ellipse 70% 55% at 78% 42%, rgba(77, 163, 255, 0.12), transparent 58%),
        radial-gradient(ellipse 40% 35% at 88% 68%, rgba(214, 180, 90, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 12% 18%, rgba(77, 163, 255, 0.06), transparent 50%),
        var(--ycc-hero);
}

.ycc-root *,
.ycc-root *::before,
.ycc-root *::after {
    box-sizing: border-box;
}

.ycc-root button,
.ycc-root input {
    font-family: inherit;
}

/* Never let display utilities override hide state */
.ycc-root .ycc-is-hidden,
.ycc-root [hidden] {
    display: none !important;
}

.ycc-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 80px 0 56px;
}

.ycc-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px 40px;
    align-items: center;
}

.ycc-main {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.ycc-hero {
    max-width: 640px;
    margin: 0 0 28px;
    text-align: left;
}

.ycc-eyebrow {
    margin: 0 0 14px;
    color: var(--ycc-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ycc-title {
    margin: 0 !important;
    color: var(--ycc-white) !important;
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 700 !important;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.ycc-title-accent {
    display: inline-block;
    background-image: linear-gradient(
        110deg,
        #8ec8ff 0%,
        #4da3ff 22%,
        #ffffff 45%,
        #6bb6ff 62%,
        #d6b45a 82%,
        #4da3ff 100%
    );
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    animation: ycc-gradient-shift 7s ease-in-out infinite;
}

@keyframes ycc-gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.ycc-lead {
    margin: 16px 0 0;
    max-width: 46ch;
    color: var(--ycc-text);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

.ycc-card {
    position: relative;
    background:
        radial-gradient(circle at 92% 0%, rgba(77, 163, 255, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(18, 24, 32, 0.97), rgba(14, 19, 26, 0.99));
    border: 1px solid rgba(108, 148, 196, 0.34);
    border-radius: 20px;
    padding: 22px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(90, 140, 200, 0.12),
        0 0 24px rgba(70, 130, 200, 0.1),
        inset 0 1px 0 rgba(170, 200, 240, 0.1);
    backdrop-filter: blur(8px);
}

.ycc-card.is-loading {
    opacity: 0.9;
}

.ycc-converter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 12px;
    align-items: end;
}

.ycc-field-label {
    display: none;
}

.ycc-field-row {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 16px;
    background: rgba(8, 13, 19, 0.92);
    border: 1px solid var(--ycc-border-soft);
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ycc-field-row:focus-within {
    border-color: rgba(77, 163, 255, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.08) !important;
    outline: none !important;
}

/* Kill Theme/Elementor/browser red focus & invalid outlines */
.ycc-root input,
.ycc-root input:focus,
.ycc-root input:focus-visible,
.ycc-root input:active,
.ycc-root input:hover,
.ycc-root input:invalid,
.ycc-root input:required,
.ycc-root input:user-invalid,
.ycc-root textarea:focus,
.elementor-widget-shortcode .ycc-root input:focus,
.elementor-widget-shortcode .ycc-root input:invalid {
    outline: none !important;
    outline-width: 0 !important;
    outline-color: transparent !important;
    box-shadow: none !important;
    border-color: transparent !important;
    --tw-ring-color: transparent !important;
}

.ycc-root .ycc-field-row:focus-within,
.elementor-widget-shortcode .ycc-root .ycc-field-row:focus-within {
    border-color: rgba(77, 163, 255, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.08) !important;
}

.ycc-amount,
.ycc-output {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    opacity: 1 !important;
    font-family: inherit !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
}

/* Beat Elementor / Blocksy / global form styles that force dark input text */
.ycc-root input.ycc-amount,
.ycc-root input[data-ycc-amount],
.ycc-root .ycc-output[data-ycc-output],
.elementor-widget-shortcode .ycc-root input.ycc-amount,
.elementor-widget-shortcode .ycc-root .ycc-output {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    opacity: 1 !important;
    font-family: inherit !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
}

.ycc-root input.ycc-amount::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45) !important;
}

.ycc-root input.ycc-amount:-webkit-autofill,
.ycc-root input.ycc-amount:-webkit-autofill:hover,
.ycc-root input.ycc-amount:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    transition: background-color 99999s ease-out;
    box-shadow: 0 0 0 1000px #0b121a inset !important;
}

.ycc-root button,
.ycc-root input,
.ycc-root .ycc-chip {
    pointer-events: auto !important;
}

.ycc-output {
    padding-left: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
}

.ycc-asset {
    position: relative;
    flex: 0 0 auto;
}

/* Legacy coin/EUR chips beside amounts — removed from UI; chips below remain */
.ycc-field-row > .ycc-asset,
.ycc-asset--legacy {
    display: none !important;
}

.ycc-unit {
    flex: 0 0 auto;
    margin-right: 6px;
    color: var(--ycc-blue);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1.2;
    user-select: none;
}

.ycc-coin-trigger,
.ycc-fiat-chip,
.ycc-coin-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--ycc-border);
    background: rgba(77, 163, 255, 0.08);
    color: var(--ycc-white);
    white-space: nowrap;
}

.ycc-coin-trigger {
    cursor: pointer;
}

.ycc-coin-trigger:hover,
.ycc-coin-trigger[aria-expanded="true"] {
    border-color: var(--ycc-blue-hover);
    background: rgba(77, 163, 255, 0.14);
}

.ycc-coin-icon {
    --ycc-icon-bg: #4da3ff;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ycc-icon-bg);
    color: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.25);
}

.ycc-coin-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.ycc-coin-icon[data-coin="BTC"] { --ycc-icon-bg: #F7931A; }
.ycc-coin-icon[data-coin="ETH"] { --ycc-icon-bg: #627EEA; }
.ycc-coin-icon[data-coin="SOL"] { --ycc-icon-bg: #9945FF; }
.ycc-coin-icon[data-coin="XRP"] { --ycc-icon-bg: #2B2F36; }
.ycc-coin-icon[data-coin="BNB"] { --ycc-icon-bg: #F0B90B; color: #ffffff; }
.ycc-coin-icon[data-coin="ADA"] { --ycc-icon-bg: #0033AD; }
.ycc-coin-icon[data-coin="SUI"] { --ycc-icon-bg: #4DA2FF; }
.ycc-coin-icon[data-coin="LINK"] { --ycc-icon-bg: #2A5ADA; }
.ycc-coin-icon[data-coin="LTC"] { --ycc-icon-bg: #345D9D; }
.ycc-coin-icon[data-coin="TRX"] { --ycc-icon-bg: #EF0027; }

.ycc-coin-icon--option {
    width: 22px;
    height: 22px;
}

.ycc-coin-icon--option svg {
    width: 13px;
    height: 13px;
}

.ycc-coin-icon--chip {
    width: 16px;
    height: 16px;
}

.ycc-coin-icon--chip svg {
    width: 10px;
    height: 10px;
}

.ycc-coin-icon--orb {
    width: 58%;
    height: 58%;
    max-width: 72px;
    max-height: 72px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 8px 24px rgba(0, 0, 0, 0.35);
}

.ycc-coin-icon--orb svg {
    width: 62%;
    height: 62%;
}

.ycc-orb-coin .ycc-orb-face {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 0;
}

.ycc-coin-symbol,
.ycc-coin-option-symbol,
.ycc-coin-chip {
    font-weight: 700;
}

.ycc-coin-name,
.ycc-coin-option-name {
    color: var(--ycc-text);
    font-size: 13px;
}

.ycc-coin-option-name {
    margin-left: auto;
}

.ycc-chevron {
    width: 8px;
    height: 8px;
    margin-left: 2px;
    border-right: 2px solid var(--ycc-blue);
    border-bottom: 2px solid var(--ycc-blue);
    transform: rotate(45deg) translateY(-2px);
}

.ycc-fiat-mark {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(77, 163, 255, 0.18);
    color: #cfe6ff;
    font-size: 12px;
    font-weight: 700;
}

.ycc-coin-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    width: min(300px, 78vw);
    max-height: 320px;
    overflow: auto;
    padding: 8px;
    border: 1px solid var(--ycc-border-soft);
    border-radius: 14px;
    background: var(--ycc-card-2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.ycc-coin-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--ycc-white);
    cursor: pointer;
    text-align: left;
}

.ycc-coin-option:hover,
.ycc-coin-option:focus-visible,
.ycc-coin-option[aria-selected="true"] {
    background: rgba(77, 163, 255, 0.12);
    outline: none;
}

.ycc-coin-option[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
}

.ycc-swap {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid var(--ycc-border-soft);
    border-radius: 14px;
    background: #0d151e;
    color: var(--ycc-blue);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.ycc-swap:hover {
    border-color: var(--ycc-blue);
    background: #101a26;
    transform: scale(1.04);
}

.ycc-swap.is-swapped {
    transform: rotate(180deg);
}

.ycc-swap.is-swapped:hover {
    transform: rotate(180deg) scale(1.04);
}

.ycc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.ycc-chip {
    min-height: 34px;
    padding: 0 12px 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 13, 19, 0.7);
    color: var(--ycc-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ycc-chip:hover {
    border-color: rgba(77, 163, 255, 0.45);
    color: var(--ycc-white);
}

.ycc-chip.is-active {
    color: var(--ycc-white);
    border-color: rgba(77, 163, 255, 0.7);
    background: rgba(77, 163, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.18), 0 0 18px rgba(77, 163, 255, 0.12);
}

.ycc-chip[aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
}

.ycc-meta {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ycc-border-soft);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.ycc-meta-main {
    min-width: 0;
}

.ycc-rate-label {
    margin-bottom: 4px;
    color: var(--ycc-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ycc-rate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ycc-white);
    font-size: 15px;
    font-weight: 700;
}

.ycc-rate::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ycc-live);
    box-shadow: 0 0 0 3px rgba(61, 214, 140, 0.18);
    flex: 0 0 auto;
}

.ycc-rate.is-idle::before {
    background: var(--ycc-muted);
    box-shadow: none;
}

.ycc-rate.is-error::before {
    background: var(--ycc-danger);
    box-shadow: 0 0 0 3px rgba(255, 182, 182, 0.16);
}

.ycc-updated,
.ycc-attribution,
.ycc-disclaimer {
    margin: 6px 0 0;
    color: var(--ycc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.ycc-attribution a {
    color: #8cc4ff;
    text-decoration: none;
}

.ycc-attribution a:hover {
    text-decoration: underline;
}

.ycc-status {
    margin-top: 8px;
    min-height: 1.2em;
    color: var(--ycc-warn);
    font-size: 13px;
}

.ycc-status.is-error {
    color: var(--ycc-danger);
}

.ycc-meta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.ycc-retry,
.ycc-refresh {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ycc-retry {
    border: 1px solid var(--ycc-border);
    background: rgba(77, 163, 255, 0.12);
    color: var(--ycc-white);
}

.ycc-retry:hover {
    background: rgba(77, 163, 255, 0.2);
}

.ycc-refresh {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ycc-white);
}

.ycc-refresh:hover {
    border-color: rgba(77, 163, 255, 0.45);
    background: rgba(77, 163, 255, 0.1);
}

.ycc-disclaimer {
    margin-top: 14px;
    text-align: left;
}

/* Decorative exchange visual */
.ycc-visual {
    position: relative;
    min-height: 420px;
    pointer-events: none;
    user-select: none;
}

.ycc-visual-glow {
    position: absolute;
    inset: 12% 8% 18% 12%;
    background:
        radial-gradient(circle at 62% 38%, rgba(77, 163, 255, 0.28), transparent 42%),
        radial-gradient(circle at 38% 68%, rgba(214, 180, 90, 0.2), transparent 40%);
    filter: blur(18px);
    animation: ycc-glow-pulse 6s ease-in-out infinite;
}

@keyframes ycc-glow-pulse {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.ycc-arrow {
    position: absolute;
    height: 56px;
    overflow: visible;
    opacity: 0.72;
    filter: drop-shadow(0 10px 20px rgba(12, 28, 52, 0.4));
}

.ycc-arrow path {
    fill: rgba(62, 98, 150, 0.48);
}

.ycc-arrow-a {
    top: 28%;
    left: 2%;
    width: 84%;
    z-index: 1;
    animation: ycc-arrow-drift 8s ease-in-out infinite;
}

.ycc-arrow-a path {
    fill: rgba(74, 114, 172, 0.5);
}

.ycc-arrow-b {
    top: 52%;
    left: 12%;
    width: 84%;
    z-index: 1;
    animation: ycc-arrow-drift 9s ease-in-out infinite reverse;
}

.ycc-arrow-b path {
    fill: rgba(58, 94, 146, 0.44);
}

@keyframes ycc-arrow-drift {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.58;
    }
    50% {
        transform: translateX(6px);
        opacity: 0.82;
    }
}

.ycc-orb {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22), transparent 28%),
        radial-gradient(circle at 70% 72%, rgba(0, 0, 0, 0.45), transparent 42%),
        linear-gradient(160deg, #1a2430 0%, #0b121a 55%, #151d28 100%);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ycc-orb-rings {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(160, 190, 230, 0.18);
    box-shadow:
        0 0 0 7px rgba(120, 160, 210, 0.04),
        inset 0 0 0 1px rgba(160, 190, 230, 0.08);
    pointer-events: none;
}

.ycc-orb-rings::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(140, 175, 220, 0.12);
}

.ycc-orb-face {
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ycc-orb-eur {
    width: clamp(88px, 12.5vw, 118px);
    height: clamp(88px, 12.5vw, 118px);
    top: 16%;
    right: 14%;
    z-index: 3;
    color: #f4f8ff;
    box-shadow:
        0 0 0 1px rgba(77, 163, 255, 0.18),
        0 0 30px rgba(77, 163, 255, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    animation: ycc-float-a 5.5s ease-in-out infinite;
}

.ycc-orb-eur .ycc-orb-face {
    font-size: clamp(30px, 4vw, 40px);
}

.ycc-orb-coin {
    width: clamp(98px, 14vw, 132px);
    height: clamp(98px, 14vw, 132px);
    left: 16%;
    bottom: 18%;
    z-index: 3;
    color: var(--ycc-gold-soft);
    box-shadow:
        0 0 0 1px rgba(214, 180, 90, 0.22),
        0 0 32px rgba(214, 180, 90, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: ycc-float-b 6.4s ease-in-out infinite;
}

.ycc-orb-coin .ycc-orb-face {
    font-size: clamp(20px, 2.8vw, 26px);
}

.ycc-orb-coin.is-switching .ycc-orb-face {
    opacity: 0;
    transform: scale(0.86);
}

@keyframes ycc-float-a {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes ycc-float-b {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 16px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ycc-title-accent,
    .ycc-visual-glow,
    .ycc-arrow-a,
    .ycc-arrow-b,
    .ycc-orb-eur,
    .ycc-orb-coin {
        animation: none !important;
    }
}

@media (max-width: 980px) {
    .ycc-stage {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ycc-visual {
        order: -1;
        min-height: 250px;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .ycc-orb-eur {
        width: 92px;
        height: 92px;
        top: 12%;
        right: 16%;
    }

    .ycc-orb-coin {
        width: 104px;
        height: 104px;
        left: 18%;
        bottom: 14%;
    }

    .ycc-arrow {
        height: 42px;
    }

    .ycc-lead {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .ycc-shell {
        width: min(1180px, calc(100% - 32px));
        padding: 56px 0 36px;
    }

    .ycc-converter {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ycc-swap {
        margin: 0 auto;
    }

    .ycc-coin-name {
        display: none;
    }

    .ycc-amount,
    .ycc-output {
        font-size: 20px;
    }

    .ycc-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .ycc-meta-actions {
        justify-content: stretch;
    }

    .ycc-refresh,
    .ycc-retry {
        flex: 1 1 auto;
    }

    .ycc-visual {
        min-height: 210px;
    }
}
