/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#compare-product-popup{
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 7px 40px;
    z-index: 10000;
    transform: translate(-50%, 0);
}
.compare-product-add{
    position: absolute;
    left: 25px;
    top: 50px;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: all .2s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media ( max-width: 992px ){
    .compare-product-add{
        opacity: 1;
    }
    .compare-products-table-wrapper{
        overflow-x: scroll;
    }
}
.compare-product-add svg{
    width: 24px;
    height: 24px;
}
ul.products li.product:hover .compare-product-add, ul.wc-block-grid__products li.product:hover .compare-product-add{
    opacity: 1;
}

.compare-product-add.processing:after {
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-transition: opacity 0 ease;
    transition: opacity 0 ease;
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-left-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    webkit-animation: rotate 450ms infinite linear;
    animation: rotate 450ms infinite linear;
    box-sizing: content-box;
}
.compare-products-table{
    width: 100%;
    border: 1px solid #555555;
}
/* .compare-products-table thead tr th{
    background-color: #555555;
    color: #FFFFFF;
} */
.compare-products-table thead tr:not(:first-child) th{
    background-color: #CCCCCC;
}
.compare-products-table tbody tr:first-child td{
    background-color: #EFEFED !important;
    color: #555555 !important;
}
.compare-products-table tbody tr td:not(:last-child){
    border-right: #555555 1px solid !important;
}
.compare-products-table tbody tr:not(:first-child):nth-child(odd) td{
    background-color: #EFEFED;
}
.compare-products-table tbody tr td{
    padding: 0.650rem;
    &:not(:last-child){
       border-right: #555555 1px solid;
    }
}
.compare-products-table tbody tr th{
    min-width: 180px;
    background-color: #CCCCCC;
    border-right: #555555 1px solid !important;
}
.compare-products-table .threeds-swatches, .compare-products-table .price-actions-container, .compare-products-table .badges{
    display: none;
}
.compare-products-table .img-container, .compare-products-table .details-container{
    text-align: center;
}
.compare-products-table .img-container img{
    max-width: 260px;
    width: auto;
    height: auto;
    max-height: 260px;
}
.compare-product-remove{
    cursor: pointer;
}