/* ASSETS/CSS/FISSO.CSS */

/* Header Section */
.mobile-header {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.section-title-big {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-desc {
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* --- PROMO BANNER VERIFICA COPERTURA --- */
.promo-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    /* Mobile first approach for better layout control */
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.15);
    border: 1px solid #a5d6a7;
    position: relative;
    overflow: visible;
    /* Per dropdown */
    z-index: 50;
    /* Z-Index Fix */
}

@media(min-width: 768px) {
    .promo-banner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.promo-banner-inline {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

@media(min-width: 900px) {
    .promo-banner-inline {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.promo-content-inline {
    flex-shrink: 0;
}

.promo-content-inline .promo-title {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    white-space: nowrap;
}

.promo-desc-inline {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.promo-content-inline .promo-title i {
    display: inline-block;
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.banner-search-box-inline {
    display: flex;
    flex: 1;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: relative;
    min-width: 0;
}

.banner-search-box-inline .input-group {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 0;
}

.banner-search-box-inline input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    min-width: 0;
}

.banner-search-box-inline button {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.banner-search-box-inline button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .banner-search-box-inline {
        flex-direction: column;
    }

    .banner-search-box-inline button {
        width: 100%;
        margin-top: 8px;
    }

    .promo-content-inline .promo-title {
        white-space: normal;
        font-size: 1.1rem;
    }
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.promo-content {
    flex: 1;
    z-index: 1;
    width: 100%;
}

.promo-title {
    font-size: 1.5rem;
    color: #1e8449;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-desc {
    color: #2c3e50;
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 0;
}

.btn-verifica-banner {
    background: #27ae60;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 1;
    white-space: nowrap;
    align-self: center;
    /* Center on mobile */
}

@media(min-width: 768px) {
    .btn-verifica-banner {
        align-self: flex-start;
        margin-top: 10px;
    }
}

.btn-verifica-banner:hover {
    background: #219150;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Modale/Area Ricerca Espandibile */
.search-overlay {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #a5d6a7;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Box adattata per il banner */
.banner-search-box {
    display: flex;
    width: 100%;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: relative;
}

.banner-search-box .input-group {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-search-box input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.banner-search-box button {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.banner-search-box button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .banner-search-box {
        flex-direction: column;
    }

    .banner-search-box button {
        width: 100%;
        margin-top: 8px;
    }
}

/* Layout Grid */
/* Layout Grid WIDE */
.layout-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sidebar Styles */
.sidebar {
    position: static;
    margin-bottom: 2rem;
}

.filter-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.filter-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-label-row {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 1.5rem 0;
}

/* Toggle Switch (New) */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--text-dark);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

/* Operators Grid */
.op-grid-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.op-check-item {
    cursor: pointer;
    display: block;
    position: relative;
}

.op-check-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.op-box {
    border: 1px solid #eee;
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s;
    padding: 5px;
}

.op-box img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: saturate(0.2) opacity(0.6);
    transition: all 0.3s ease;
}

.op-check-item input:checked+.op-box {
    border: 2px solid var(--primary-blue);
    background: #f0f7ff;
}

.op-check-item input:checked+.op-box img {
    filter: saturate(1) opacity(1);
}

.op-name-fallback {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    text-align: center;
}

/* List Items */
.list-check-item {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
}

.list-check-item input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.list-box {
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    transition: all 0.2s;
}

.list-check-item input:checked+.list-box {
    border-color: var(--text-dark);
    background: #f0f7ff;
    color: var(--text-dark);
}

/* Results List */
.results-list {
    min-width: 0;
}

.results-count {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Offer Card */
.offer-card-row {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.offer-card-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.offer-top-banner {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-row-body {
    padding: 2rem;
    /* Più spazio interno */
    display: flex;
    align-items: center;
    gap: 30px;
    /* Più spazio tra colonne */
}

.col-brand {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.brand-logo {
    max-height: 28px;
    max-width: 100px;
    object-fit: contain;
}

.multi-tech-badges {
    display: flex;
    gap: 3px;
}

.multi-tech-badges .tag-tech {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
}

.multi-tech-badges .tag-fwa {
    padding: 0 6px;
    font-size: 0.55rem;
}

/* BOLLINI FIBRA AGCOM STYLE (Updated) */
.tag-tech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.7rem;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.tag-f {
    background: #009640;
    border: 1px solid #009640;
}

/* FTTH */
.tag-fc {
    background: #FEBC11;
    border: 1px solid #FEBC11;
}

/* FTTC */
.tag-a {
    background: #EB3323;
    border: 1px solid #EB3323;
}

/* ADSL */
.tag-fwa {
    background: #9b59b6;
    border: 1px solid #9b59b6;
    width: auto;
    padding: 0 8px;
    border-radius: 12px;
    /* FWA text is longer */
}

.brand-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.link-details {
    font-size: 0.8rem;
    text-decoration: underline;
    color: #888;
}

.col-features {
    flex: 2.5;
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.feat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.feat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
}

.feat-val-sm {
    font-size: 0.85rem;
    font-weight: 800;
    color: #333;
}

.tech-badges-row {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.tech-badges-row .tag-tech {
    width: auto;
    min-width: 18px;
    height: 18px;
    font-size: 0.6rem;
    padding: 0 5px;
}

.feat-lbl {
    font-size: 0.65rem;
    color: #999;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.col-price {
    flex: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
}

.discount-badge {
    background: #e8f5e9;
    color: #27ae60;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.price-original {
    color: #999;
    font-size: 0.85rem;
    text-decoration: line-through;
    margin-bottom: -5px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
}

.price-int {
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.9;
}

.price-sub {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 3px;
    justify-content: center;
}

.price-dec {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.price-per {
    font-size: 0.5rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-attiva {
    background: #27ae60;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-attiva.btn-small {
    font-size: 0.75rem;
    padding: 8px 12px;
}

.btn-attiva:hover {
    background: #219150;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.btn-richiama {
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-richiama:hover {
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(66, 129, 164, 0.3);
}

.col-price .btn-group-vertical {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.col-compare {
    flex: 0 0 80px;
    text-align: center;
}

.compare-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #666;
}

.compare-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--text-dark);
}

.offer-row-footer {
    padding: 10px 1.5rem;
    background: #fcfcfc;
    border-top: 1px dashed #eee;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pill-base {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    width: fit-content;
}

.pill-green {
    border: 1px solid #27ae60;
    color: #333;
}

.pill-green i {
    color: #27ae60;
}

.pill-blue {
    border: 1px solid #2980b9;
    color: #333;
}

.pill-blue i {
    color: #2980b9;
}

.pill-orange {
    border: 1px solid #e67e22;
    color: #333;
}

.pill-orange i {
    color: #e67e22;
}

.pill-purple {
    border: 1px solid #9b59b6;
    color: #333;
}

.pill-purple i {
    color: #9b59b6;
}

.pill-teal {
    border: 1px solid #1abc9c;
    color: #333;
}

.pill-teal i {
    color: #1abc9c;
}

/* Suggestions Dropdown (Same as before) */
.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid #e0e0e0;
}

.suggestions-list.show {
    display: block;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background-color: #f5f9ff;
}

.suggestion-empty {
    padding: 16px;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Results Header */
.results-header-bar {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.results-header-bar h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.results-header-bar h3 span {
    color: var(--text-dark);
    font-weight: 700;
}

.tech-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-badge.tech-ftth {
    background: #e8f5e9;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.tech-badge.tech-fttc {
    background: #fff3e0;
    color: #f39c12;
    border: 1px solid #f39c12;
}

.tech-badge.tech-fwa {
    background: #f3e5f5;
    color: #9b59b6;
    border: 1px solid #9b59b6;
}

.tech-badge.tech-adsl {
    background: #ffebee;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* --- OFFERTA DETAIL PAGE --- */
.layout-details {
    display: grid;
    grid-template-columns: 1fr 420px;
    /* Sticky card più larga */
    gap: 60px;
    /* Più respiro */
}

.details-left {
    min-width: 0;
}

.ai-insight-box {
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 10px;
    color: #004085;
    line-height: 1.6;
}

.detail-header-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
    line-height: 1.5;
}

.detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.payment-methods-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pay-item {
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #eee;
}

/* Sticky Card */
.sticky-card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    overflow: hidden;
    /* Removed border to match mobile.css */
}

/* Header Blu */
.card-top-dark {
    background: #4281A4;
    padding: 2rem;
    text-align: center;
    color: white;
}

.price-huge-white {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
}

.price-huge-white .decimals {
    font-size: 1.5rem;
    font-weight: 700;
}

.period-white {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.8;
    margin-top: 5px;
    letter-spacing: 1px;
}

.card-mid {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.feat-row {
    text-align: center;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.feat-row i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.feat-row .tag-tech {
    margin-bottom: 5px;
}

.feat-text strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
}

.feat-text small {
    font-size: 0.65rem;
    color: #999;
    font-weight: 700;
}

.card-bottom {
    padding: 1.5rem;
    background: #fff;
}

.btn-activate-solid {
    background: #27ae60;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    display: block;
    text-align: center;
    transition: background 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-activate-solid:hover {
    background: #219150;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .layout-details {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .col-features {
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
        margin: 15px 0;
        width: 100%;
    }

    .offer-row-body {
        flex-direction: column;
        text-align: center;
    }

    .col-brand,
    .col-price {
        width: 100%;
    }

    .brand-top {
        justify-content: center;
    }

    .price-display {
        justify-content: center;
    }

    .op-grid-filter {
        grid-template-columns: repeat(4, 1fr);
    }

    .col-compare {
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .compare-check {
        flex-direction: row;
        justify-content: center;
    }
}