/* T-Shirt Designer MC v20 */

#tsd-designer-wrapper {
    margin: 30px 0 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --acc: #e94560;
    --border: #ddd;
    color: #222;
}

/* LAYOUT */
.tsd-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
@media (max-width: 768px) { .tsd-layout { flex-direction: column; } }

/* CANVAS – groß */
.tsd-canvas-wrap {
    flex: 2 1 auto;
    max-width: 680px;
    min-width: 0;
}
.tsd-canvas-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
    touch-action: none;
}
.tsd-canvas-container > div:not(.tsd-side-thumb) {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
}
.tsd-canvas-container canvas {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none;
}

/* SIDEBAR */
.tsd-sidebar {
    width: 420px;
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 768px) { .tsd-sidebar { width: 100%; flex: none; } }

/* UPLOAD */
.tsd-upload-zone {
    min-height: 64px;
    border: 2px dashed var(--border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
    background: #fafafa;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}
.tsd-upload-zone:hover, .tsd-upload-zone.drag-over {
    border-color: var(--acc); background: #fff5f7;
}
.tsd-upload-zone svg { width: 22px; height: 22px; fill: #555; }
.tsd-upload-zone span { font-size: 13px; color: #444; font-weight: 500; }

.tsd-progress-bar { height: 4px; background: #eee; border-radius: 2px; overflow: hidden; }
.tsd-progress-fill { height: 100%; background: var(--acc); animation: tsd-prog 1s linear infinite; }
@keyframes tsd-prog { 0%{width:0%} 50%{width:70%} 100%{width:90%} }

/* TEXT INPUT */
#tsd-text-input {
    height: 46px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
#tsd-text-input:focus { outline: none; border-color: var(--acc); }
#tsd-text-input::placeholder { color: #555; opacity: 1; }

/* SELECT */
#tsd-font-family {
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

/* SLIDER LABELS */
.tsd-row-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
    margin-bottom: -2px;
    margin-top: 6px;
}
input[type="range"] {
    width: 100%;
    height: 16px;
    margin: 0;
    accent-color: var(--acc);
}

/* FARBFELDER – viereckig */
.tsd-color-presets {
    display: flex;
    gap: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 6px 0;
    width: 100%;
}
.tsd-color-dot {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.18) !important;
    transition: transform .15s, box-shadow .15s;
    display: block !important;
    margin: 0 2px !important;
}
#tsd-designer-wrapper span.tsd-color-dot,
#tsd-designer-wrapper .tsd-color-dot {
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
}
.tsd-color-dot:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 0 0 2px var(--acc) !important;
}
.tsd-color-dot.active {
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 2px var(--acc), 0 0 0 4px rgba(233,69,96,0.2) !important;
    border-color: #fff !important;
}

/* EFFEKT-BUTTONS */
.tsd-effect-row { display: flex; gap: 5px; padding-top: 2px; }
.tsd-effect-btn {
    flex: 1;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    font-size: 12px; font-weight: 600;
    color: #555; transition: all .15s;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 32px !important;
    vertical-align: middle;
    box-sizing: border-box;
}
.tsd-effect-btn:hover { border-color: var(--acc); color: var(--acc); }
.tsd-effect-btn.active { background: var(--acc); border-color: var(--acc); color: #fff; }

/* UNDO */
.tsd-btn-undo {
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    font-size: 12px; font-weight: 600;
    color: #555; width: 100%;
    transition: all .15s;
    margin-top: 4px;
}
.tsd-btn-undo:hover { border-color: var(--acc); color: var(--acc); }

/* WOOCOMMERCE IN SIDEBAR */
#tsd-wc-slot {
    margin-top: 12px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    width: 100%;
    box-sizing: border-box;
}
#tsd-wc-slot .cart,
#tsd-wc-slot form.cart {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    width: 100% !important;
}
#tsd-wc-slot .single_add_to_cart_button {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
}
#tsd-wc-slot .quantity { flex: 0 0 auto !important; }

/* FLATSOME-FIX */
body.tsd-active .woocommerce-product-gallery { display: none !important; }
body.tsd-active .product .col-left,
body.tsd-active .product .product-images { display: none !important; }
body.tsd-active .product .col-right,
body.tsd-active .product .entry-summary,
body.tsd-active .product div.summary {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    padding-left: 0 !important;
}

/* MOBILE */
@media (max-width: 600px) {
    .tsd-canvas-container { width: 100% !important; padding-bottom: 100% !important; }
    .tsd-canvas-wrap { width: 100% !important; max-width: 100% !important; }
}

/* SPINNER */
.tsd-loading {
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.55);
    display: flex; align-items: center; justify-content: center; z-index: 10;
}
.tsd-spinner {
    width: 28px; height: 28px;
    border: 3px solid #eee; border-top-color: var(--acc);
    border-radius: 50%; animation: tsd-spin .7s linear infinite;
}
@keyframes tsd-spin { to { transform: rotate(360deg); } }

/* Pulsierender Farb-Badge über färbbarer Grafik */
.tsd-color-badge {
    position: absolute;
    z-index: 999;
    background: #e94560;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: tsd-pulse-badge 1.4s ease-in-out infinite;
}
.tsd-color-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #e94560;
    border-bottom: none;
}
@keyframes tsd-pulse-badge {
    0%, 100% { transform: scale(1);   box-shadow: 0 2px 8px rgba(233,69,96,0.4); }
    50%       { transform: scale(1.08); box-shadow: 0 4px 16px rgba(233,69,96,0.7); }
}

/* ================================================================
   SEITEN-THUMBNAIL (Vorne/Hinten umschalten) – v2.16
================================================================ */
.tsd-side-thumb {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    width: 64px !important;
    z-index: 20 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: 2px solid #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
    background: #ccc !important;
    transition: transform .15s !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}
.tsd-side-thumb:hover {
    transform: scale(1.07) !important;
    box-shadow: 0 3px 14px rgba(0,0,0,0.5) !important;
}
.tsd-side-thumb img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}
.tsd-side-thumb-placeholder {
    width: 100% !important;
    aspect-ratio: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #888 !important;
    font-size: 20px !important;
    background: #e8e8e8 !important;
}
.tsd-side-thumb span {
    display: block !important;
    text-align: center !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    background: rgba(0,0,0,0.6) !important;
    padding: 2px 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}


/* ================================================================
   ON-CANVAS FLOATING UI  (v3.4.9)
================================================================ */

/* ---- Kamera-Badge: oben rechts ---- */
#tsd-upload-badge {
    position: absolute;
    z-index: 190;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    border: none;
    transition: transform .15s, box-shadow .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    pointer-events: auto;
    /* Kein Überlappen mit Canvas-Handles durch klaren z-index-Bereich */
}
#tsd-upload-badge:hover,
#tsd-upload-badge:active {
    transform: scale(1.12);
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

/* ---- T-Badge: direkt unter dem Kamera-Badge ---- */
#tsd-t-badge {
    position: absolute;
    z-index: 190;
    top: 62px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #111;
    font-size: 20px;
    font-weight: 900;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    border: none;
    transition: transform .15s, box-shadow .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    pointer-events: auto;
}
#tsd-t-badge:hover,
#tsd-t-badge:active {
    transform: scale(1.12);
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
/* Pulsierendes Glühen wenn noch kein Text vorhanden */
#tsd-t-badge.tsd-t-pulse {
    animation: tsd-t-pulse 2.2s ease-in-out infinite;
}
@keyframes tsd-t-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(0,0,0,0.35); }
    50%       { box-shadow: 0 3px 18px rgba(233,69,96,0.6), 0 0 0 5px rgba(233,69,96,0.15); }
}

/* ---- Floating Toolbar (bei Text-Selektion) ---- */
#tsd-float-bar {
    position: absolute;
    z-index: 200;
    display: none;
    align-items: center;
    gap: 6px;
    background: rgba(30,30,30,0.92);
    border-radius: 22px;
    padding: 5px 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.45);
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .15s, transform .15s;
    opacity: 0;
    transform: translateY(4px);
    touch-action: manipulation;
}
#tsd-float-bar.tsd-flt-visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
#tsd-float-bar::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom: none;
    border-top-color: rgba(30,30,30,0.92);
}

.tsd-flt-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .12s, background .12s;
    flex-shrink: 0;
}
.tsd-flt-btn:active { transform: scale(0.88); }

#tsd-float-color {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
}
#tsd-float-color:hover { background: rgba(255,255,255,0.22); }
#tsd-float-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
    display: block;
}

#tsd-float-font {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: Georgia, serif;
    letter-spacing: -1px;
    line-height: 1;
}
#tsd-float-font:hover { background: rgba(255,255,255,0.22); }

/* ---- Compact Color Picker ---- */
#tsd-float-cpk {
    position: absolute;
    z-index: 100000;
    display: none;
    flex-wrap: wrap;
    gap: 4px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.20);
    max-width: 260px;
    pointer-events: auto;
    animation: tsd-flt-fadein .12s ease;
}
#tsd-float-cpk.tsd-flt-open { display: flex; }

.tsd-flt-swatch {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    flex-shrink: 0;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    transition: transform .12s, box-shadow .12s;
}
.tsd-flt-swatch:hover,
.tsd-flt-swatch:active {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px #e94560;
}
@media (max-width: 768px) {
    .tsd-flt-swatch { width: 38px; height: 38px; }
    #tsd-float-cpk {
        /* 6 Swatches à 38px + 5×4px gap + 2×8px padding = 272px */
        max-width: 272px;
    }
}

/* ---- Font Modal – kein Header ---- */
#tsd-font-modal-ov {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: tsd-flt-fadein .15s ease;
    touch-action: none;
    overscroll-behavior: contain;
}
#tsd-font-modal-ov.tsd-fnt-open { display: flex; }

/* Desktop: transparentes Overlay */
#tsd-font-modal-ov.tsd-fnt-desktop {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
    align-items: flex-start;
    justify-content: flex-start;
    touch-action: auto;
}
#tsd-font-modal-ov.tsd-fnt-desktop #tsd-font-modal {
    pointer-events: auto;
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    border: 1px solid #e8e8e8;
}

#tsd-font-modal {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px 18px 0 0;
    width: 100%;
    max-width: 520px;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: tsd-fnt-slide .2s ease;
    position: relative;
}
@media (min-width: 769px) {
    #tsd-font-modal {
        max-width: 260px;
        border-radius: 12px;
        max-height: 70vh;
        animation: tsd-flt-fadein .15s ease;
    }
}
@keyframes tsd-fnt-slide {
    from { transform: translateY(60px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Schließen-Button schwebend oben rechts im Modal */
#tsd-font-modal-x {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(240,240,240,0.9);
    color: #555;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
#tsd-font-modal-x:hover { background: #e0e0e0; }

#tsd-font-modal-list {
    overflow-y: auto;
    flex: 1;
    padding: 8px 0 16px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.tsd-fnt-item {
    display: flex;
    align-items: center;
    padding: 10px 40px 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    gap: 10px;
    min-height: 52px;
    transition: background .1s;
    touch-action: manipulation;
}
.tsd-fnt-item:hover,
.tsd-fnt-item:active { background: #fef6f7; }
.tsd-fnt-item.tsd-fnt-active { background: #fdeef1; }
.tsd-fnt-item.tsd-fnt-active .tsd-fnt-name { color: #e94560; font-weight: 700; }

.tsd-fnt-preview {
    font-size: 24px;
    line-height: 1.2;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #222;
}
.tsd-fnt-name {
    font-size: 10px;
    color: #aaa;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    flex-shrink: 0;
    min-width: 50px;
    text-align: right;
}
@media (min-width: 769px) {
    .tsd-fnt-item    { padding: 7px 36px 7px 12px; min-height: 44px; }
    .tsd-fnt-preview { font-size: 20px; }
    .tsd-fnt-name    { font-size: 10px; min-width: 44px; }
}
@media (max-width: 480px) {
    .tsd-fnt-item    { padding: 12px 44px 12px 14px; min-height: 60px; }
    .tsd-fnt-preview { font-size: 26px; }
}

@keyframes tsd-flt-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ================================================================
   BOGEN-MODAL (v3.4.11)
================================================================ */
#tsd-float-arch-modal {
    display: none;
    position: fixed;
    z-index: 9998;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    min-width: 300px;
    max-width: 360px;
    animation: tsd-flt-fadein .15s ease;
    pointer-events: auto;
    touch-action: manipulation;
}
#tsd-float-arch-modal.tsd-arch-open { display: block; }

.tsd-arch-text-row {
    margin-bottom: 10px;
    display: flex;
    gap: 6px;
}
.tsd-arch-text-row input {
    flex: 1;
    box-sizing: border-box;
    padding: 8px 10px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 16px !important;
    outline: none;
}
.tsd-arch-text-row input:focus { border-color: #e94560; }
#tsd-am-text-ok {
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    padding: 0 12px;
    cursor: pointer;
    line-height: 1;
    touch-action: manipulation;
}
.tsd-arch-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.tsd-arch-btn {
    flex: 1;
    height: 34px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all .12s;
    touch-action: manipulation;
}
.tsd-arch-btn:hover  { border-color: #e94560; color: #e94560; }
.tsd-arch-btn.active { background: #e94560; border-color: #e94560; color: #fff; }

.tsd-arch-slider-wrap { padding-top: 8px; }
.tsd-arch-slider-wrap.tsd-arch-hidden { display: none; }
.tsd-arch-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}
.tsd-arch-label span:last-child { font-weight: 600; color: #444; }
.tsd-arch-slider-wrap input[type="range"] {
    width: 100%;
    accent-color: #e94560;
}

/* Bogen-Icon in Floating Bar */
#tsd-float-arch {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
}
#tsd-float-arch:hover { background: rgba(255,255,255,0.22); }
#tsd-float-arch svg { pointer-events: none; }


/* iOS Zoom-Fix: Fabric hidden textarea braucht font-size >= 16px */
.canvas-container textarea {
    font-size: 16px !important;
    opacity: 0 !important;
}

/* ── Mobile Text-Edit Modal ── */
#tsd-mobile-text-ov {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}
#tsd-mobile-text-modal {
    background: #fff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 600px;
    padding: 20px 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#tsd-mobile-text-input {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
    padding: 14px 16px;
    border: 2px solid #e94560;
    border-radius: 12px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.4;
    min-height: 90px;
    resize: none;
    display: block;
}
#tsd-mobile-text-btns {
    display: flex;
    gap: 10px;
}
#tsd-mobile-text-btns button {
    flex: 1;
    height: 46px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
#tsd-mobile-text-cancel {
    background: #f0f0f0;
    color: #555;
}
#tsd-mobile-text-ok {
    background: #e94560;
    color: #fff;
}

/* Mobile: Arch-Modal unten am Bildschirmrand – überdeckt den Text nicht */
@media (max-width: 768px) {
    #tsd-float-arch-modal.tsd-arch-open {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        box-sizing: border-box;
    }
}
