.compareproducts-button-add {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    min-width: 2.5rem;
    padding-top: 0.1875rem;
    background-color: #ffffff;
    box-shadow: 0.125rem -0.125rem 0.25rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s ease-out;
    border: none;
}

.compareproducts-button-add i {
    color: #595959;
}

.compareproducts-button-product {
    margin-left: 0.625rem;
}

#compareproducts-modal li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

#compare-products-table {
    overflow: auto;
    background: #fff;
}

#compare-products-table tr:nth-child(even) {
    background: #f6f6f6;
}


#compare-products-table td {
    min-width: 250px;
    padding: 0.5rem;
    vertical-align: top;
    position: relative;
}
#compare-products-table td a.compareproducts-button-delete {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem;
    color: #595959;
}

@media (max-width: 767px) {
    #compare-products-table td:first-child {
        min-width: 100px;
    }

    #compareproducts-modal .modal-title {
        text-align: center;
    }
}

#compare-products-table .regular-price,
#compare-products-table .reduction,
#compare-products-table .current-price {
    display: block;
}

#compare-products-table .has-discount .regular-price {
    color: #595959;
    text-decoration: line-through;
}

#compare-products-table .reduction,
#compare-products-table .current-price {
    color: var(--primary);
}

#compare-products-table .current-price {
    font-weight: 700;
}

#compareproducts-modal .modal-header .close {
    opacity: 1;
}

#compareproducts-modal .modal-header .close .material-icons {
    color: #363a42;
}

#compareproducts-modal .modal-dialog {
    width: 100%;
    max-width: 1140px;
}