/* =========================================================
   Clotex Configurator — Frontend Styles v2.0
   Icon rows, custom dropdowns, price card, 2-col extras
   ========================================================= */

:root {
    /* ★ Theme red — change this to adjust all accent colours ★ */
    --clotex-brand: #E30613;
    --clotex-brand-soft: #fee7e9;     /* soft background for help cell */

    --clotex-radius:   5px;
    --clotex-radius-lg:8px;
    --clotex-border:   #e2e2e2;
    --clotex-bg:       #f7f7f7;
    --clotex-white:    #ffffff;
    --clotex-text:     #1a1a1a;
    --clotex-muted:    #777;
    --clotex-shadow:   0 2px 10px rgba(0,0,0,.07);
    --clotex-shadow-h: 0 4px 18px rgba(0,0,0,.13);
    --clotex-green:    #27ae60;
    --clotex-red:      #e74c3c;

    --clotex-field-bg:     transparent;
    --clotex-field-border: 1.5px solid var(--clotex-border);
    --clotex-field-radius: var(--clotex-radius);
    --clotex-field-font:   14px;
    --clotex-field-weight: 700;
    --clotex-field-color:  var(--clotex-text);
    --clotex-field-pad:    13px 42px 13px 16px;
}

/* ================================================================
   HIDE native WC / WoodMart action UI
   ================================================================ */
body.clotex-active table.variations,
body.clotex-active .variations,
body.clotex-active form.cart .quantity,
body.clotex-active .single_variation_wrap .woocommerce-variation-price,
body.clotex-active .single_variation_wrap .woocommerce-variation-description,
body.clotex-active .woocommerce-variation,
body.clotex-active .woocommerce-variation-availability,
body.clotex-active form.cart .single_add_to_cart_button,
body.clotex-active form.cart button.single_add_to_cart_button,
body.clotex-active form.cart input.single_add_to_cart_button,
body.clotex-active .wd-buy-now-btn,
body.clotex-active .buy-now,
body.clotex-active .wd-buy-now,
body.clotex-active a.buy_now_button,
body.clotex-active .reset_variations {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

body.clotex-active form.cart.variations_form {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.clotex-active form.cart .single_variation_wrap,
body.clotex-active form.cart .woocommerce-variation-add-to-cart {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    display: block !important;
}

/* ================================================================
   WRAPPER
   ================================================================ */
.clotex-cfg,
.clotex-cfg *,
.clotex-cfg *::before,
.clotex-cfg *::after {
    box-sizing: border-box;
}

.clotex-cfg {
    max-width: 100%;
    margin: 18px 0 0;
}

/* ================================================================
   ICON ROW — Couleur / Hauteur / Longueur
   [icon] [label] [control]
   ================================================================ */
.clotex-row {
    display: grid;
    grid-template-columns: 32px 100px 1fr;
    align-items: center;
    gap: 8px 12px;
    padding: 10px 0;
}

.clotex-row-icon {
    width: 28px;
    height: 28px;
    color: var(--clotex-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clotex-row-icon svg {
    width: 22px;
    height: 22px;
}

.clotex-row-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--clotex-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}

.clotex-row-control {
    min-width: 0;
}

/* ================================================================
   UNIFIED FIELD STYLE — toggle button + input
   ================================================================ */
.clotex-dd-toggle,
.clotex-input-wrap input[type="number"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: var(--clotex-field-pad) !important;
    background: var(--clotex-field-bg) !important;
    background-color: var(--clotex-field-bg) !important;
    border: var(--clotex-field-border) !important;
    border-radius: var(--clotex-field-radius) !important;
    font-family: inherit !important;
    font-size: var(--clotex-field-font) !important;
    font-weight: var(--clotex-field-weight) !important;
    color: var(--clotex-field-color) !important;
    box-shadow: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: border-color .2s, box-shadow .2s;
}

.clotex-dd-toggle:hover,
.clotex-dd-toggle:focus,
.clotex-input-wrap input[type="number"]:hover,
.clotex-input-wrap input[type="number"]:focus {
    background: var(--clotex-field-bg) !important;
    background-color: var(--clotex-field-bg) !important;
    color: var(--clotex-field-color) !important;
    outline: none !important;
    border-color: #888 !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,.04) !important;
}

/* ================================================================
   CUSTOM DROPDOWN — shared by Couleur + Hauteur
   ================================================================ */
.clotex-dropdown { position: relative; }

.clotex-dd-toggle {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    gap: 10px;
    position: relative;
}

.clotex-dropdown.is-open .clotex-dd-toggle {
    border-color: #888 !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,.08) !important;
}

.clotex-dd-toggle::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-70%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transition: transform .2s;
    pointer-events: none;
}

.clotex-dropdown.is-open .clotex-dd-toggle::after {
    transform: translateY(-30%) rotate(-135deg);
}

.clotex-dd-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
    margin-right: 7px;
}

.clotex-dd-dot.is-light {
    border-color: #c8c8c8;
}

.clotex-dd-value {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    font-weight: var(--clotex-field-weight);
    font-size: var(--clotex-field-font);
    color: var(--clotex-field-color);
}

.clotex-dd-value.clotex-placeholder {
    color: var(--clotex-field-color);
    font-weight: var(--clotex-field-weight);
    font-size: var(--clotex-field-font);
    opacity: .45; 
}

/* Panel */
.clotex-dd-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--clotex-white);

    border-radius: var(--clotex-radius-lg);
    box-shadow: var(--clotex-shadow-h);
    z-index: 80;
    max-width: 100%;
    overflow: hidden;
}

.clotex-dropdown.is-open .clotex-dd-panel {
    display: block;
    animation: clotexDdIn .15s ease;
}

@keyframes clotexDdIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: none; }
}

.clotex-dd-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--clotex-border);
}

.clotex-dd-head-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--clotex-text);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.clotex-dd-close {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--clotex-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s;
}

.clotex-dd-close:hover { color: var(--clotex-text); }

.clotex-dd-list {
    max-height: 320px;
    overflow-y: auto;
    padding: 6px 0;
}

.clotex-dd-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    text-decoration: none !important;
    color: var(--clotex-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s;
    border: none !important;
    position: relative;
}

.clotex-dd-item:hover,
.clotex-dd-item:focus {
    background: #f7f7f7;
    color: var(--clotex-text);
    text-decoration: none !important;
}

.clotex-dd-item.is-active {
    color: var(--clotex-brand);
    font-weight: 700;
}

.clotex-dd-item-label {
    flex: 1;
}

.clotex-dd-check {
    width: 20px;
    height: 20px;
    color: var(--clotex-brand);
    flex-shrink: 0;
    display: none;
}

.clotex-dd-check svg {
    width: 100%;
    height: 100%;
}

.clotex-dd-item.is-active .clotex-dd-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   LONGUEUR INPUT
   ================================================================ */
.clotex-input-wrap {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
}

.clotex-input-wrap input[type="number"] {
    -moz-appearance: textfield;
    padding-right: 42px !important;
    min-width: 0 !important;
}

.clotex-input-wrap input[type="number"]::-webkit-inner-spin-button,
.clotex-input-wrap input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.clotex-input-wrap input[type="number"]::placeholder {
    color: var(--clotex-field-color);
    opacity: .45;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
}
.clotex-input-wrap input[type="number"]::-webkit-input-placeholder { color: var(--clotex-field-color); opacity: .45; text-align: left; font-weight: 700; font-size: 14px; }
.clotex-input-wrap input[type="number"]::-moz-placeholder          { color: var(--clotex-field-color); opacity: .45; text-align: left; font-weight: 700; font-size: 14px; }
.clotex-input-wrap input[type="number"]:-ms-input-placeholder      { color: var(--clotex-field-color); opacity: .45; text-align: left; font-weight: 700; font-size: 14px; }

.clotex-unit {
    position: absolute;
    right: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clotex-muted);
    pointer-events: none;
}

/* ================================================================
   PRICE CARD — 2x2 grid
   ================================================================ */
.clotex-price-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    border: 1.5px solid var(--clotex-border);
    border-radius: var(--clotex-radius-lg);
    overflow: hidden;
    background: var(--clotex-white);
    margin: 22px 0 8px;
}

.clotex-pc-cell {
    padding: 18px 20px;
    display: flex;
    gap: 12px;
    text-decoration: none !important;
    color: var(--clotex-text);
    border-right: 1px solid var(--clotex-border);
    border-bottom: 1px solid var(--clotex-border);
}

.clotex-pc-cell:nth-child(2n) { border-right: none; }
.clotex-pc-cell:nth-last-child(-n+2) { border-bottom: none; }

/* TOTAL cell */
.clotex-pc-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.clotex-pc-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--clotex-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.clotex-pc-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--clotex-brand);
    letter-spacing: -.5px;
    line-height: 1.1;
    transition: transform .25s;
}

.clotex-pc-value.updated {
    animation: clotexPop .28s ease;
}

@keyframes clotexPop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.clotex-pc-tva {
    font-size: 11px;
    color: var(--clotex-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* HELP cell */
.clotex-pc-help {
    background: var(--clotex-brand-soft);
    cursor: pointer;
    transition: background .15s;
}

.clotex-pc-help:hover {
    background: #fcd7db;
    color: var(--clotex-text);
}

.clotex-pc-help-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--clotex-brand);
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.clotex-pc-help-icon svg { width: 50px; height: 50px; margin-top: 3px; }

.clotex-pc-help-text {
    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--clotex-text);
    font-family: 'Poppins';
}

.clotex-pc-help-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--clotex-brand);
    margin-top: 2px;
}

.clotex-pc-help-cta svg { width: 14px; height: 14px; }

/* INFO cells (bottom row) */
.clotex-pc-info {
    background: var(--clotex-bg);
}

.clotex-pc-info-icon {
    width: 26px;
    height: 26px;
    color: var(--clotex-text);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clotex-pc-info-icon svg { width: 22px; height: 22px; }

.clotex-pc-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.clotex-pc-info-text small {
    font-size: 11.5px;
    color: var(--clotex-muted);
    font-weight: 500;
}

.clotex-pc-info-text strong {
    font-size: 13px;
    color: var(--clotex-text);
    font-weight: 700;
}

.clotex-price-note {
    font-size: 11.5px;
    color: var(--clotex-muted);
    margin: 6px 2px 0;
    line-height: 1.4;
}

/* ================================================================
   MAIN ACTION BUTTON
   ================================================================ */
.clotex-actions {
    margin-top: 14px;
}

.clotex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: var(--clotex-radius);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .12s, opacity .15s, box-shadow .15s;
    line-height: 1.2;
    text-align: center;
    min-height: 54px;
    box-shadow: var(--clotex-shadow);
}

.clotex-btn:disabled { opacity: .55; cursor: wait; }
.clotex-btn:not(:disabled):hover { transform: translateY(-1px); box-shadow: var(--clotex-shadow-h); }

.clotex-btn-atc {
    background-color: var(--clotex-brand) !important;
    color: #fff !important;
    border-radius: var(--clotex-radius) !important;
}

.clotex-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clotex-btn-icon svg {
    width: 20px;
    height: 20px;
}

.clotex-btn-text { display: inline-block; }

/* ================================================================
   ATC MESSAGE
   ================================================================ */
.clotex-atc-msg {
    margin-top: 12px;
    padding: 11px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.clotex-atc-msg.success { background: #eafaf1; color: var(--clotex-green); border: 1px solid #a9dfbf; }
.clotex-atc-msg.error   { background: #fdf3f3; color: var(--clotex-red);   border: 1px solid #f5c6c6; }
.clotex-atc-msg a       { color: inherit; text-decoration: underline; margin-left: 6px; }

/* ================================================================
   EXTRAS — 2-col grid
   [IMG]   Title
           [− N +]          PRICE
           [    ACHETER full    ]
   ================================================================ */
.clotex-extras {
    margin-top: 22px;
}

.clotex-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.clotex-extra-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border: 1.5px solid var(--clotex-border);
    border-radius: var(--clotex-radius-lg);
    background: var(--clotex-white);
    align-items: center;
    transition: border-color .15s, box-shadow .15s;
}

.clotex-extra-card:hover {
    border-color: var(--clotex-brand);
    box-shadow: 0 0 0 2px rgba(227, 6, 19, .05);
}

/* ─── Image (bigger) ─── */
.clotex-extra-media {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.clotex-extra-media a {
    display: block;
    width: 100%;
}

.clotex-extra-media img {
    width: 100%;
    max-width: 130px;
    max-height: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: transparent;
    border: none;
    mix-blend-mode: multiply;
}

/* ─── Body ─── */
.clotex-extra-body {
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center;
}

.clotex-extra-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--clotex-text);
    line-height: 1.3;
    text-decoration: none;
    transition: color .15s;
    display: block;
    margin: 0;
}

.clotex-extra-name:hover,
.clotex-extra-name:focus {
    color: var(--clotex-brand);
    text-decoration: underline;
}

/* ─── Mid row: qty (left) + price (right) ─── */
.clotex-extra-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

/* ─── QTY STEPPER (stable, 3 columns) ─── */
.clotex-extra-qty-wrap {
    display: grid !important;
    grid-template-columns: 26px 36px 26px;
    align-items: stretch;
    border: 1.5px solid var(--clotex-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--clotex-white);
    height: 100%;
    flex-shrink: 0;
}

.clotex-qty-btn {
    width: 100% !important;
    height: 100% !important;
    background: #f5f5f5 !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    color: var(--clotex-text) !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .12s;
    box-sizing: border-box;
}

.clotex-extra-btn-text {
    color:#000000;
}


.clotex-qty-btn:hover { background: #eaeaea !important; }

.clotex-extra-qty {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--clotex-text) !important;
    -moz-appearance: textfield !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    min-width: 0 !important;
    outline: none;
    box-shadow: none !important;
}

.clotex-extra-qty::-webkit-inner-spin-button,
.clotex-extra-qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.clotex-extra-variation {
    padding: 0 20px 0 7px;
    border: 1.5px solid var(--clotex-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    appearance: none;
    background: var(--clotex-white)
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E")
                no-repeat right 6px center;
    cursor: pointer;
    height: 30px;
    max-width: 100px;
    min-width: 0;
}

/* Price — red, right aligned */
.clotex-extra-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--clotex-brand);
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
    display: block;
    text-align: right;
}

.clotex-extra-price .woocommerce-Price-amount,
.clotex-extra-price .amount { font-size: 15px; font-weight: 800; color: inherit; }
.clotex-extra-price del     { opacity: .55; margin-right: 4px; font-size: 11px; font-weight: 500; color: var(--clotex-muted); }
.clotex-extra-price ins     { text-decoration: none; color: inherit; }

/* ─── ACHETER button full-width ─── */
.clotex-extra-atc {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 10px;
    background: var(--clotex-brand);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity .15s, transform .12s;
    line-height: 36px;
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
    margin-top: 2px;
}

.clotex-extra-atc:disabled { opacity: .5; cursor: wait; }
.clotex-extra-atc:not(:disabled):hover { opacity: .9; }

.clotex-extra-btn-text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.clotex-extra-feedback {
    font-size: 10.5px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-top: 6px;
}

.clotex-extra-feedback.success { color: var(--clotex-green); }
.clotex-extra-feedback.error   { color: var(--clotex-red); }
.clotex-extra-feedback a       { color: inherit; text-decoration: underline; }

/* ================================================================
   MOBILE — 1 column
   ================================================================ */
@media (max-width: 700px) {
    .clotex-extras-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .clotex-extra-card {
        padding: 12px;
    }

    .clotex-extra-media {
        width: 120px;
    }

    .clotex-extra-media img {
        max-width: 120px;
        max-height: 130px;
    }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 700px) {
    /* Icon row: label wraps tighter */
    .clotex-row {
        grid-template-columns: 26px auto 1fr;
        gap: 6px 10px;
    }

    .clotex-row-icon { width: 24px; height: 24px; }
    .clotex-row-icon svg { width: 20px; height: 20px; }

    .clotex-row-label {
        font-size: 12px;
    }

    /* Narrower field padding */
    .clotex-dd-toggle,
    .clotex-input-wrap input[type="number"] {
        padding: 12px 34px 12px 13px !important;
        font-size: 13px !important;
    }

    .clotex-dd-toggle::after { right: 13px; }

    .clotex-input-wrap input[type="number"] { padding-right: 30px !important; }
    .clotex-unit { right: 10px; }

    /* Price card stays 2 cols */
    .clotex-pc-cell { padding: 14px 14px; gap: 10px; }
    .clotex-pc-value { font-size: 20px; }
    .clotex-pc-help-text { font-size: 10.5px; }
    .clotex-pc-info-text strong { font-size: 12px; }
    .clotex-pc-info-text small { font-size: 10.5px; }
    .clotex-pc-help-icon { width: 50px; height: 50px; }
    .clotex-pc-help-icon svg { width: 50px; height: 50px; }
    .clotex-pc-info-icon svg { width: 18px; height: 18px; }

    /* Extras — 1 column on mobile */
    .clotex-extras-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .clotex-extra-card {
        grid-template-columns: 90px 1fr;
        padding: 12px;
        padding-left: 5px;
    }

    .clotex-extra-media { width: 90px; }
    .clotex-extra-media img { max-height: 90px; }
}

@media (max-width: 420px) {
    .clotex-row {
        grid-template-columns: 24px 1fr;
        grid-template-rows: auto auto;
    }

    .clotex-row-label {
        grid-column: 2;
    }

    .clotex-row-control {
        grid-column: 1 / -1;
        margin-top: 2px;
    }
}