/**
 * Kudos Gallery — field UI (form) + display grid (single post).
 */

/* ==========================================================================
   Form field
   ========================================================================== */

.sk-kg-field {
    margin: 18px 0 28px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    font-family: inherit;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.sk-kg-field *,
.sk-kg-field *::before,
.sk-kg-field *::after {
    box-sizing: border-box;
}

.sk-kg-label {
    display: block;
    font-weight: 600;
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.4;
}

.sk-kg-help {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.5;
}

/* Author note above the tile grid — calls out upload duration expectations. */
.sk-kg-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
    font-size: 12px;
    line-height: 1.5;
}

.sk-kg-note-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: #b45309;
}

.sk-kg-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 32px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    text-align: center;
    outline: none;
    width: 100%;
    max-width: 100%;
}

.sk-kg-dropzone:hover,
.sk-kg-dropzone:focus-visible {
    border-color: #D4A84A;
    box-shadow: 0 2px 8px rgba(212, 168, 74, 0.12);
}

.sk-kg-dropzone:hover .sk-kg-icon,
.sk-kg-dropzone:focus-visible .sk-kg-icon {
    background: #fdf6e3;
    color: #8a6418;
    transform: translateY(-1px);
}

.sk-kg-dropzone.is-dragover {
    background: linear-gradient(189deg, #E6BE5A 0%, #D4A84A 62%);
    border-color: #B5832A;
    border-style: solid;
    transform: scale(1.005);
    box-shadow: 0 4px 16px rgba(181, 131, 42, 0.25);
}

.sk-kg-dropzone.is-dragover .sk-kg-drop-text,
.sk-kg-dropzone.is-dragover .sk-kg-drop-sub {
    color: #fff;
}

.sk-kg-dropzone.is-dragover .sk-kg-hint {
    color: rgba(255, 255, 255, 0.85);
}

.sk-kg-dropzone.is-dragover .sk-kg-icon {
    background: #fff;
    color: #D4A84A;
}

/* Native file input — fully hidden, never receives layout but still focusable
   programmatically when triggered by JS. */
.sk-kg-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sk-kg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 6px;
    border-radius: 50%;
    background: #eff6ff;
    color: #D4A84A;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sk-kg-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.sk-kg-drop-text {
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sk-kg-drop-sub {
    font-size: 13px;
    color: #475569;
}

.sk-kg-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 0.01em;
}

.sk-kg-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
}

.sk-kg-tiles:empty {
    display: none;
}

.sk-kg-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #1f2937;
    cursor: grab;
    user-select: none;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: opacity 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    min-width: 0;
}

.sk-kg-tile:hover {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.sk-kg-tile:active {
    cursor: grabbing;
}

.sk-kg-tile-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sk-kg-tile.is-dragging {
    opacity: 0.4;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
}

.sk-kg-tile.is-drop-target {
    box-shadow: 0 0 0 3px #2271b1 inset, 0 4px 12px rgba(34, 113, 177, 0.25);
}

.sk-kg-tile.is-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

/* First-frame video preview when no poster is available — covers the tile
   the same way background-image thumbs do. */
.sk-kg-tile .sk-kg-tile-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #1f2937;
    pointer-events: none;
    display: block;
}

.sk-kg-tile .sk-kg-tile-video::-webkit-media-controls,
.sk-kg-tile .sk-kg-tile-video::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

/* Play badge — matches single-post style (round, flex-centered SVG,
   subtle ring + shadow). */
.sk-kg-tile .sk-kg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background 0.15s ease, transform 0.15s ease;
}

.sk-kg-tile:hover .sk-kg-play {
    background: rgba(15, 23, 42, 0.85);
    transform: translate(-50%, -50%) scale(1.05);
}

.sk-kg-tile .sk-kg-play svg {
    width: 14px;
    height: 14px;
    margin-left: 1px; /* optical centering of the triangle */
    fill: #fff;
    display: block;
}

/* Remove button — high specificity + explicit resets so BuddyBoss / theme
   `.button` styles can't blow it out (forced height/padding/letter-spacing). */
.sk-kg-field button.sk-kg-remove,
.sk-kg-tile > button.sk-kg-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1.5px solid #fff !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, 0.78) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    font-family: inherit !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease !important;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
}

.sk-kg-field button.sk-kg-remove:hover,
.sk-kg-field button.sk-kg-remove:focus-visible,
.sk-kg-tile > button.sk-kg-remove:hover,
.sk-kg-tile > button.sk-kg-remove:focus-visible {
    background: rgba(220, 38, 38, 0.95) !important;
    border-color: #fff !important;
    transform: scale(1.1);
    outline: none !important;
}

.sk-kg-tile-loading {
    cursor: default;
}

.sk-kg-tile-loading .sk-kg-tile-thumb {
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    animation: sk-kg-shimmer 1.4s ease-in-out infinite;
}

@keyframes sk-kg-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sk-kg-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: sk-kg-spin 0.7s linear infinite;
}

@keyframes sk-kg-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .sk-kg-field {
        padding: 12px;
        border-radius: 8px;
    }

    .sk-kg-tiles {
        grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
        gap: 8px;
    }

    .sk-kg-tile .sk-kg-play {
        width: 32px;
        height: 32px;
    }

    .sk-kg-tile .sk-kg-play svg {
        width: 12px;
        height: 12px;
    }

    .sk-kg-field button.sk-kg-remove,
    .sk-kg-tile > button.sk-kg-remove {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        font-size: 16px !important;
    }

    .sk-kg-dropzone {
        padding: 22px 14px;
        gap: 2px;
    }

    .sk-kg-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 4px;
    }

    .sk-kg-icon svg {
        width: 24px;
        height: 24px;
    }

    .sk-kg-drop-text {
        font-size: 14px;
    }

    .sk-kg-drop-sub {
        font-size: 12px;
    }
}

/* ==========================================================================
   Single-post gallery + lightbox content
   ========================================================================== */

.sk-kudos-gallery {
    display: grid;
    /* Smaller tiles so a row holds more items and the section feels lighter.
       auto-fit + justify-content centers any partial row. */
    grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

/* Single item — full width of the content column with a 16:9 frame. */
.sk-kudos-gallery[data-count="1"] {
    grid-template-columns: 1fr;
    justify-content: stretch;
}

.sk-kudos-gallery[data-count="1"] .sk-kg-item {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
}

/* Two items — 50/50 side-by-side with a softer aspect for taller media. */
.sk-kudos-gallery[data-count="2"] {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
}

.sk-kudos-gallery[data-count="2"] .sk-kg-item {
    aspect-ratio: 4 / 3;
}

.sk-kg-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: zoom-in;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sk-kg-item:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

.sk-kg-item .sk-kg-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
}

/* When the thumb is a real <img> (single-post gallery — lazy loaded), make
   it cover the tile like the background-image span does. */
.sk-kg-item img.sk-kg-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 0;
}

/* Inline-video preview (used when no server-generated poster is available).
   Covers the tile like .sk-kg-thumb but is a real <video> element so the
   browser auto-fetches and displays the first frame. */
.sk-kg-item .sk-kg-thumb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #1f2937;
    pointer-events: none;
    display: block;
    /* Hide the OS native video controls / overlays in case the browser
       tries to show them on the muted preview element. */
}

.sk-kg-item .sk-kg-thumb-video::-webkit-media-controls,
.sk-kg-item .sk-kg-thumb-video::-webkit-media-controls-panel,
.sk-kg-item .sk-kg-thumb-video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

/* Videos: keep the photo-grid look (no full-area dark overlay), just a small
   play badge centered so mixed image/video galleries feel uniform. */
.sk-kg-item.sk-kg-item-video {
    cursor: pointer;
}

.sk-kg-item.sk-kg-item-video .sk-kg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.62);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.sk-kg-item.sk-kg-item-video .sk-kg-play svg {
    width: 18px;
    height: 18px;
    /* Optical alignment — triangle's visual mass leans right of center,
       so nudge a hair right for true visual centering. */
    margin-left: 2px;
    fill: #fff;
    display: block;
}

.sk-kg-item.sk-kg-item-video:hover .sk-kg-play {
    background: rgba(15, 23, 42, 0.88);
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.28);
}

/* Tiny "video" tag in the bottom-left so videos are identifiable at a glance
   even before hovering — keeps tiles otherwise visually consistent with
   image tiles. */
.sk-kg-item.sk-kg-item-video::before {
    content: "VIDEO";
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
    line-height: 1.4;
}

.sk-kg-thumb-fallback {
    background: linear-gradient(135deg, #1e293b, #334155);
}

/* Magnific Popup video modal */
.sk-kg-video-modal {
    position: relative;
    background: #000;
    width: auto;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 4px;
    overflow: hidden;
}

.sk-kg-video-modal video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    background: #000;
}

/* Tablet — 3 across when room allows, otherwise 2. */
@media (max-width: 768px) {
    .sk-kudos-gallery {
        grid-template-columns: repeat(3, 1fr);
        justify-content: stretch;
        gap: 8px;
        margin: 18px 0;
    }

    .sk-kudos-gallery[data-count="1"] {
        grid-template-columns: 1fr;
    }

    .sk-kudos-gallery[data-count="2"] {
        grid-template-columns: 1fr 1fr;
    }
}

/* Phone — 2 per row, edge-to-edge, slightly tighter gap. */
@media (max-width: 600px) {
    .sk-kudos-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin: 16px 0;
    }

    .sk-kg-item.sk-kg-item-video .sk-kg-play {
        width: 40px;
        height: 40px;
    }

    .sk-kg-item.sk-kg-item-video .sk-kg-play svg {
        width: 16px;
        height: 16px;
    }

    .sk-kg-item.sk-kg-item-video::before {
        font-size: 8px;
        padding: 2px 5px;
        bottom: 5px;
        left: 5px;
    }

    .sk-kg-video-modal {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }
}

/* ==========================================================================
   Lightbox modal (Magnific Popup) — scoped via mainClass: 'mfp-sk-kudos'
   ========================================================================== */

/* Soft gray backdrop with subtle blur — gives the media a clean focus
   without the harshness of pure black. */
.mfp-sk-kudos.mfp-bg,
.mfp-sk-kudos .mfp-bg {
    background: rgba(31, 41, 55, 0.92);
    opacity: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Simple backdrop fade — no content transition needed. */
.mfp-sk-kudos.mfp-bg {
    opacity: 0;
    transition: opacity 0.2s ease;
}
.mfp-sk-kudos.mfp-bg.mfp-ready {
    opacity: 1;
}
.mfp-sk-kudos.mfp-bg.mfp-removing {
    opacity: 0;
}

/* ----- Arrows: round buttons with inline-SVG chevron icons ----- */

.mfp-sk-kudos .mfp-arrow {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    background-color: rgba(15, 23, 42, 0.55);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    opacity: 0.9;
    transition: background-color 0.18s ease, opacity 0.18s ease, transform 0.15s ease, border-color 0.18s ease;
    padding: 0;
    overflow: hidden;
}

.mfp-sk-kudos .mfp-arrow:hover,
.mfp-sk-kudos .mfp-arrow:focus {
    background-color: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: scale(1.06);
    outline: none;
}

.mfp-sk-kudos .mfp-arrow:active {
    transform: scale(0.96);
}

.mfp-sk-kudos .mfp-arrow-left {
    left: 24px;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.mfp-sk-kudos .mfp-arrow-right {
    right: 24px;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

/* Hide Magnific's default arrow pseudo-elements + child markers
   (CSS triangles, .mfp-a / .mfp-b shadow layers). */
.mfp-sk-kudos .mfp-arrow::before,
.mfp-sk-kudos .mfp-arrow::after,
.mfp-sk-kudos .mfp-arrow .mfp-a,
.mfp-sk-kudos .mfp-arrow .mfp-b {
    display: none !important;
    border: 0 !important;
    content: none !important;
}

/*
 * Magnific Popup's image module bakes a second .mfp-close into the figure
 * markup, so with closeBtnInside:false the overlay ends up with two close
 * buttons (one on the image, one at the viewport corner). Hide the figure
 * one — the viewport-pinned one below is the only close we want.
 */
.mfp-sk-kudos .mfp-figure .mfp-close {
    display: none !important;
}

/* ----- Close button: pinned to the viewport so it's always visible ----- */

.mfp-sk-kudos .mfp-close,
.mfp-sk-kudos.mfp-image-holder .mfp-close,
.mfp-sk-kudos .mfp-image-holder .mfp-close,
.mfp-sk-kudos.mfp-inline-holder .mfp-close,
.mfp-sk-kudos .mfp-inline-holder .mfp-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 26px;
    font-family: Arial, sans-serif;
    color: #fff;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    opacity: 1;
    padding: 0;
    text-align: center;
    text-shadow: none;
    z-index: 1046; /* above Magnific Popup's content (which uses z-index 1045) */
    transition: background 0.18s ease, transform 0.15s ease, border-color 0.18s ease;
}

.mfp-sk-kudos .mfp-close:hover,
.mfp-sk-kudos .mfp-close:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.06);
    outline: none;
}

.mfp-sk-kudos .mfp-close:active {
    transform: scale(0.96);
}

/* ----- Counter ("1 of 5") — shown below the image, not over it ----- */

/*
 * MP's default .mfp-bottom-bar uses margin-top: -36px which pulls the
 * counter up over the image. Override so it sits BELOW the image
 * instead, with a small gap.
 */
.mfp-sk-kudos .mfp-bottom-bar {
    margin-top: 10px !important;
    text-align: center;
}

.mfp-sk-kudos .mfp-counter {
    position: static;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    margin-top: 10px;
}

/* Hide only the filename title — keep the bottom bar so Magnific Popup's
   "1 of N" counter can render (it lives inside .mfp-bottom-bar). */
.mfp-sk-kudos .mfp-title {
    display: none !important;
}

.mfp-sk-kudos img.mfp-img {
    padding: 0;
    border-radius: 4px;
}

/* Mobile: tighter close + arrows */
@media (max-width: 600px) {
    .mfp-sk-kudos .mfp-arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .mfp-sk-kudos .mfp-arrow-left {
        left: 8px;
    }

    .mfp-sk-kudos .mfp-arrow-right {
        right: 8px;
    }

    .mfp-sk-kudos .mfp-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
    }

    .mfp-sk-kudos .mfp-counter {
        font-size: 11px;
    }
}
