.tbl_compare {
    width: 100%;
    font-family: Jura;
    border-collapse: separate;
    border-spacing: 10px 0;  /* Horizontal spacing, Vertical spacing */
    table-layout:fixed;
}

.tbl_compare h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.tbl_compare td {
    font-family: Jura;
    padding:15px 15px;
}

.tbl_compare tr td:first-child {
    width:200px;
}

.tbl_compare tr:nth-child(even) {
    background-color: #F7F7F7;
}
.tbl_compare tr:nth-child(even) td:first-child {
    background-color: #fff;
}
.tbl_compare .product_header {
    position: relative;
    vertical-align: top;
}
.tbl_compare .product_header img {
    margin:0;
}
.tbl_compare .removeFromCompare {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fff;
    padding: 10px 15px;
}

.tbl_compare td {
    border-left: 2px solid #E6E6E6;
    border-right: 2px solid #E6E6E6;
}

.tbl_compare td:not(:first-child) {
    text-align: center;
}

tr:first-child td:not(:first-child) {
    border-top: 2px solid #E6E6E6;
}
tr:last-child td:not(:first-child) {
    border-bottom: 2px solid #E6E6E6;
}

/* Remove left border for first column */
.tbl_compare td:first-child {
    border-left: none;
    border-right: none;
}

.tbl_compare .product_header.product_list {
    display: table-cell;
}

.btn.btn-default {
    background: #1A1A1A;
    color: #fff;
    font-size: 20px;
    padding: 7px 20px 10px 20px;
    border-radius: 7px;
}

@media (max-width: 500px) {
    .tbl_compare_container {
        overflow: auto;
    }
    .tbl_compare tr td {
        min-width:200px;
    }
    .tbl_compare tr td:first-child {
        min-width: 150px;
    }
}