/* Offers Category Products Page Styles */

/* Hide standard layout components to keep page isolated */
body.offers-category-products-body .sticky-header-wrapper,
body.offers-category-products-body .topbar,
body.offers-category-products-body footer,
body.offers-category-products-body .whatsapp-btn {
    display: none !important;
}

body.offers-category-products-body {
    background: #ffffff !important;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.offers-products-wrapper {
    min-height: 100vh;
    width: 100vw;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.offers-products-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 99px 118px 60px 118px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    --ocp-banner-icon-size: 100px;
    --ocp-banner-height: 100px;
    --ocp-banner-gradient-width: 680px;
    --ocp-banner-gap: 4px;
    --ocp-header-back-size: 36px;
    --ocp-header-logo-width: 212.76px;
    --ocp-header-logo-actions-gap: 385.2px;
    --ocp-header-width: 988px;
}

.offers-products-sticky-top {
    position: sticky;
    top: 0;
    z-index: 120;
    width: 100%;
    background: #ffffff;
    padding-bottom: 4px;
    padding-top: 2%;
}

/* Header */
.offers-products-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    min-height: 48px;
    position: relative;
}

.offers-products-header .header-back-btn {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--ocp-header-back-size);
    height: var(--ocp-header-back-size);
    background: #F7F8F9;
    border-radius: 0px;
    transition: background-color 0.2s ease;
}

/* .offers-products-header .header-back-btn:hover {
    background-color: #e2e5e9;
} */

.offers-products-header .header-logo {
    position: absolute;
    left: calc(var(--ocp-banner-icon-size) + var(--ocp-banner-gap));
    display: block;
    flex-shrink: 0;
}

.offers-products-header .header-logo-img {
    width: var(--ocp-header-logo-width);
    height: 48px;
    object-fit: contain;
    display: block;
}

.offers-products-header .header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.offers-products-header .action-btn {
    background: #F7F8F9;
    border: none;
    border-radius: 0px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #173158;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
}

.offers-share-url-btn {
    position: relative;
    overflow: visible;
}

.offers-share-url-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #173158;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.offers-share-url-btn::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #173158;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.offers-share-url-btn.is-copied::after,
.offers-share-url-btn.is-copied::before {
    opacity: 1;
}

/* .offers-products-header .action-btn:hover {
    background-color: #e2e5e9;
} */

.offers-pdf-download-btn.is-loading {
    pointer-events: none;
    cursor: wait;
}

.offers-pdf-download-btn .pdf-download-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #e2e5e9;
    border-top-color: #E83161;
    border-radius: 50%;
    animation: offersPdfSpin 0.7s linear infinite;
}

.offers-pdf-download-btn.is-loading .pdf-download-icon {
    display: none;
}

.offers-pdf-download-btn.is-loading .pdf-download-spinner {
    display: block;
}

@keyframes offersPdfSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Category Banner */
.category-banner {
    display: flex;
    align-items: stretch;
    gap: var(--ocp-banner-gap);
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.category-banner .banner-icon-box {
    width: var(--ocp-banner-icon-size);
    height: var(--ocp-banner-height);
    background: #E83161;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-sizing: border-box;
}

.category-banner .banner-icon-box i {
    font-size: 40px;
    color: #ffffff;
    line-height: 1;
}

.category-banner .banner-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-banner .banner-arrow-icon {
    display: none !important;
}

.category-banner .banner-gradient-box {
    flex: 1;
    width: auto;
    min-width: 0;
    max-width: none;
    height: var(--ocp-banner-height);
    background: linear-gradient(90deg, #173158 0%, #E83161 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 16px;
    box-sizing: border-box;
    color: #ffffff;
}

.category-banner .banner-title {
    width: auto;
    max-width: 100%;
    height: 33px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    margin: 0;
    flex: 0 0 auto;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}

/* Product list wrapper */
.product-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

.product-list-header {
    display: none;
}

.product-details-box {
    display: none;
}

.product-row-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
    border: 1px solid #EDEFF2;
    background: #ffffff;
    box-sizing: border-box;
    padding: 0;
    gap: 0;
}

/* Full-width horizontal divider below title row (mobile) */
.product-row-card::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: stretch;
    border-bottom: 1px solid #EDEFF2;
    pointer-events: none;
    z-index: 1;
}

.product-col {
    box-sizing: border-box;
    min-width: 0;
}

.product-img-col {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 70px;
    min-height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    background: #ffffff;
    border-right: 1px solid #EDEFF2;
    align-self: stretch;
    box-sizing: border-box;
}

.product-img-col .product-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
}

.product-img-col img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-img-col .no-image-placeholder {
    font-size: 24px;
    color: #d1d5db;
    line-height: 1;
}

.product-details-tablet {
    display: none !important;
}

.product-details-mobile {
    display: contents;
}

.product-details-mobile .product-title {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #173158;
    margin: 0;
    line-height: 1.35;
    padding: 10px 12px;
    min-height: 70px;
    align-self: stretch;
    box-sizing: border-box;
}

.product-details-mobile .product-title a {
    color: #173158;
    text-decoration: none;
}

.product-details-mobile .mobile-details-grid {
    grid-column: 2 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.product-details-mobile .mobile-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    min-height: 44px;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.3;
}

.product-details-mobile .mobile-price-cell {
    border-right: 1px solid #ECEFF2;
    border-bottom: 1px solid #ECEFF2;
}

.product-details-mobile .mobile-brand-cell {
    border-bottom: 1px solid #ECEFF2;
}

.product-details-mobile .mobile-case-cell {
    border-right: 1px solid #ECEFF2;
}

.product-details-mobile .mobile-price-cell .price-display {
    color: #E83161;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.product-details-mobile .mobile-price-cell .currency-symbol {
    font-size: 12px;
    font-weight: 700;
    top: -0.35em;
    margin-right: 1px;
}

.product-details-mobile .mobile-price-cell .price-amount {
    font-size: 18px;
    font-weight: 600;
}

.product-details-mobile .mobile-cell .label {
    flex-shrink: 0;
    color: #5D6F8A;
    font-size: 10px;
    font-weight: 500;
}

.product-details-mobile .mobile-cell .value {
    color: #173158;
    font-weight: 500;
    font-size: 10px;
    word-break: break-word;
}

/* Tablet + Desktop: 5-column product table */
@media (min-width: 712px) {
    .category-banner {
        position: relative;
    }

    .category-banner .banner-arrow-icon {
        display: block !important;
        position: absolute;
        top: 21px;
        right: 23px;
        width: 24px;
        height: 24px;
    }

    .product-row-card::before {
        display: none;
        content: none;
    }

    .product-list-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-row-card {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
        background: transparent;
        border: none;
    }

    .product-img-col {
        width: 80px;
        height: 80px;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        border-top: none;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-img-col .product-img-link {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img-col img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .product-details-tablet {
        display: none !important;
    }

    .product-details-mobile {
        display: none !important;
    }

    .product-details-box {
        flex: 1;
        min-width: 0;
        height: 80px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        border-left: none;
        border-top: none;
        background: #ffffff;
        padding: 0 16px;
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
        align-items: center;
    }

    /* Left-align Case Size column */

    /* Apply top border to first product row elements */
    .product-list-header+.product-row-card .product-img-col,
    .product-row-card:first-of-type .product-img-col {
        border-top: 1px solid #EDEFF2;
    }

    .product-list-header+.product-row-card .product-details-box,
    .product-row-card:first-of-type .product-details-box {
        border-top: 1px solid #EDEFF2;
    }

    .product-detail-col {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        box-sizing: border-box;
    }

    .product-detail-col.name-col {
        padding-right: 12px;
    }

    .product-detail-col.name-col .product-title {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
    }

    .product-detail-col.name-col .product-title a {
        color: #173158;
        text-decoration: none;
    }

    .product-detail-col.price-col {
        color: #E83161;
        font-size: 18px;
        font-weight: 600;
        white-space: nowrap;
    }

    .product-detail-col.price-col .price-display {
        display: inline-block;
        white-space: nowrap;
    }

    .product-detail-col.price-col .currency-symbol {
        font-size: 12px;
        font-weight: 600;
        position: relative;
        top: -0.35em;
        margin-right: 1px;
    }

    .product-detail-col.price-col .price-amount {
        font-size: 18px;
        font-weight: 600;
    }

    .product-detail-col.brand-col .brand-val,
    .product-detail-col.case-col .case-val,
    .product-detail-col.ean-col .ean-val {
        font-size: 13px;
        font-weight: 500;
        color: #173158;
        word-break: break-word;
    }

    /* Header Row on Tablet */
    .product-list-header {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-bottom: 10px;
        border: none !important;
    }

    .product-list-header .header-spacer {
        width: 80px;
        flex-shrink: 0;
        font-size: 14px;
        color: #173158;
        font-weight: 500;
        white-space: nowrap;
    }

    .product-list-header .header-cols {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
        padding: 0 16px;
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
        align-items: center;
        border: none !important;
    }

    .product-list-header .header-col {
        font-size: 14px;
        font-weight: 500;
        color: #173158;
        line-height: 1.2;
        border: none !important;
    }
}

/* Desktop: full-size product table */
@media (min-width: 1224px) {}

/* Tablet + Mobile: page spacing */
@media (max-width: 1223px) {
    .offers-products-container {
        padding: 48px 40px 50px 40px;
        --ocp-banner-icon-size: 100px;
        --ocp-banner-height: 100px;
        --ocp-banner-gradient-width: auto;
    }

    .offers-products-sticky-top {
        width: 100%;
        max-width: 100%;
    }

    .offers-products-header {
        width: 100%;
        margin-bottom: 12px;
        min-height: 40px;
    }

    .offers-products-header .header-logo-img {
        width: auto;
        max-width: 200px;
        height: 40px;
    }

    .category-banner {
        width: 100%;
        margin-bottom: 10px;
    }

    .category-banner .banner-icon-box i {
        font-size: 28px;
    }

    .category-banner .banner-icon-img {
        width: 50px;
        height: 50px;
    }

    .category-banner .banner-gradient-box {
        flex: 1;
        width: auto;
        max-width: none;
    }
}

/* Phone */
@media (max-width: 711px) {
    .offers-products-container {
        padding: 68px 0px 40px 0px;
        width: 322px !important;
        --ocp-banner-icon-size: 60px;
        --ocp-banner-height: 60px;
        --ocp-banner-gradient-width: auto;
        --ocp-header-back-size: 32px;
    }

    .offers-products-sticky-top {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .offers-products-header {
        width: 100%;
        margin-bottom: 9px;
        min-height: 34px;
    }

    .offers-products-header .header-logo {
        left: calc(var(--ocp-banner-icon-size) + var(--ocp-banner-gap));
    }

    .offers-products-header .header-logo-img {
        height: 34px;
    }

    .offers-products-header .header-back-btn,
    .offers-products-header .action-btn {
        width: 36px;
        height: 36px;
    }

    .category-banner {
        width: 100%;
        margin-bottom: 12px;
    }

    .category-banner .banner-icon-box,
    .category-banner .banner-gradient-box {
        height: var(--ocp-banner-height);
    }

    .category-banner .banner-icon-box {
        width: var(--ocp-banner-icon-size);
    }

    .category-banner .banner-icon-box i {
        font-size: 24px;
    }

    .category-banner .banner-icon-img {
        width: 30px;
        height: 30px;
    }

    .category-banner .banner-gradient-box {
        flex: 1;
        width: auto;
        max-width: none;
        padding: 13px 22px 15px 22px;
        gap: 12px;
    }

    .category-banner .banner-title {
        width: auto;
        max-width: 100%;
        height: 33px;
        font-size: 24px;
        font-weight: 600;
        line-height: 33px;
    }

    /* Product card mobile adjustments */
    .product-row-card {
        display: flex;
        align-items: center;
        gap: 0;
        width: 322px !important;
        background: transparent;
        border: none;
    }

    .product-img-col {
        width: 100px;
        height: 100px;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        /* border-top: none; */
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-img-col .product-img-link {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img-col img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .product-details-mobile {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 222px;
        height: 100px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        border-left: none;
        /* border-top: none; */
        background: #ffffff;
        padding: 8px 13px 9px;
        flex-shrink: 0;
        gap: 4px;
    }

    /* Apply top border to first product row elements on mobile */
    .product-list-header+.product-row-card .product-img-col,
    .product-row-card:first-of-type .product-img-col {
        border-top: 1px solid #EDEFF2;
    }

    .product-list-header+.product-row-card .product-details-mobile,
    .product-row-card:first-of-type .product-details-mobile {
        border-top: 1px solid #EDEFF2 !important;
    }

    .product-details-mobile .mobile-details-grid {
        display: contents;
    }

    .product-details-mobile .mobile-cell {
        display: flex;
        align-items: center;
        min-height: 0;
        height: auto;
        padding: 0;
        background: transparent;
        border: none;
    }

    .product-details-mobile .mobile-brand-cell {
        order: 1;
        gap: 6px;
    }

    .product-details-mobile .mobile-brand-cell .label {
        font-size: 10px;
        font-weight: 500;
        color: #5D6F8A;
    }

    .product-details-mobile .mobile-brand-cell .value {
        font-size: 10px;
        font-weight: 500;
        color: #183158;
    }

    .product-details-mobile .product-title {
        order: 2;
        max-width: 195px;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        margin: 0;
        min-height: 0;
        height: auto;
        padding: 0;
        background: transparent;
        border: none;
        height: 44px;
    }

    .product-details-mobile .product-title a {
        color: #173158;
        text-decoration: none;
    }

    .product-details-mobile .mobile-price-cell {
        order: 3;
    }

    .product-details-mobile .mobile-price-cell .price-display {
        color: #E83161;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
    }

    .product-details-mobile .mobile-price-cell .currency-symbol {
        font-size: 10px;
        font-weight: 600;
        position: relative;
        top: -0.35em;
        margin-right: 1px;
    }

    .product-details-mobile .mobile-price-cell .price-amount {
        font-size: 16px;
        font-weight: 600;
    }

    /* Hide unused mobile cells */
    .product-details-mobile .mobile-case-cell,
    .product-details-mobile .mobile-ean-cell {
        display: none !important;
    }
}

/* Desktop and Laptop screens (992px and above) */
@media (min-width: 992px) {
    .offers-products-container {
        width: 100%;
        max-width: 796px;
        padding: 93px 0 60px;
        margin: 0 auto;
    }

    .offers-products-header {
        width: 100%;
        margin-bottom: 24px;
        position: relative;
    }

    .offers-products-header .header-logo img,
    .offers-products-header .header-logo-img {
        max-width: 212px !important;
        height: 48px;
    }

    .category-banner {
        width: auto;
        height: 80px;
        gap: 8px;
        margin-bottom: 10px;
        position: relative;
        display: flex;
        align-items: stretch;
    }

    .category-banner .banner-icon-box {
        width: 80px;
        height: 80px;
    }

    .category-banner .banner-icon-img,
    .category-banner .banner-icon-box i {
        width: 48px;
        height: 48px;
        font-size: 48px;
    }

    .category-banner .banner-gradient-box {
        width: 708px;
        height: 80px;
        padding: 0 37px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .category-banner .banner-title {
        font-size: 32px;
        font-weight: 600;
        color: #ffffff;
    }

    .category-banner .banner-arrow-icon {
        position: absolute;
        top: 21px;
        right: 23px;
        width: 24px;
        height: 24px;
    }

    .product-list-wrapper {
        width: 796px !important;
        max-width: 796px !important;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-row-card {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
        background: transparent;
        border: none;
    }

    .product-img-col {
        width: 80px;
        height: 80px;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        border-top: none;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img-col .product-img-link {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img-col img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .product-details-box {
        width: 708px;
        height: 80px;
        box-sizing: border-box;
        border: 1px solid #EDEFF2;
        border-left: none;
        border-top: none;
        background: #ffffff;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
        align-items: center;
    }

    /* Left-align Case Size column */

    /* Apply top border to first product row elements on desktop */
    .product-list-header+.product-row-card .product-img-col,
    .product-row-card:first-of-type .product-img-col {
        border-top: 1px solid #EDEFF2;
    }

    .product-list-header+.product-row-card .product-details-box,
    .product-row-card:first-of-type .product-details-box {
        border-top: 1px solid #EDEFF2;
    }

    .product-detail-col {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        box-sizing: border-box;
    }

    .product-detail-col.name-col {
        padding-right: 12px;
        max-width: 227px;
    }

    .product-detail-col.name-col .product-title {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
    }

    .product-detail-col.name-col .product-title a {
        color: #173158;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .product-detail-col.name-col .product-title a:hover {
        color: #E83161;
    }

    .product-detail-col.price-col {
        color: #E83161;
        font-size: 20px;
        font-weight: 600;
        white-space: nowrap;
    }

    .product-detail-col.price-col .price-display {
        display: inline-block;
        white-space: nowrap;
    }

    .product-detail-col.price-col .currency-symbol {
        font-size: 13px;
        font-weight: 600;
        position: relative;
        top: -0.35em;
        margin-right: 1px;
    }

    .product-detail-col.price-col .price-amount {
        font-size: 20px;
        font-weight: 600;
    }

    .product-detail-col.brand-col .brand-val,
    .product-detail-col.case-col .case-val,
    .product-detail-col.ean-col .ean-val {
        font-size: 14px;
        font-weight: 500;
        color: #173158;
        word-break: break-word;
    }

    /* Header Row on Desktop */
    .product-list-header {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
        margin-bottom: 10px;
        border: none !important;
    }

    .product-list-header .header-spacer {
        width: 80px;
        flex-shrink: 0;
        font-size: 14px;
        color: #173158;
        font-weight: 500;
        white-space: nowrap;
    }

    .product-list-header .header-cols {
        width: 708px;
        box-sizing: border-box;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
        align-items: center;
        border: none !important;
    }

    .product-list-header .header-col {
        font-size: 14px;
        font-weight: 500;
        color: #173158;
        line-height: 1.2;
        border: none !important;
    }
}