.products .productsTitle {
    text-align: center;
    font-weight: bolder;
    color: #6a95cc;
    position: relative;
}

    .products .productsTitle:after {
        position: absolute;
        content: " ";
        right: 0;
        top: 20px;
        width: 10%;
        height: 4px;
        background-color: #6a95cc;
    }

    .products .productsTitle:before {
        position: absolute;
        content: " ";
        left: 0;
        top: 20px;
        width: 10%;
        height: 4px;
        background-color: #6a95cc;
    }

.products .table {
    max-width: 800px;
    margin: auto;
}

.products td {
    color: #fff;
    min-width: 280px;
    padding: 10px;
    background-color: #332b3a;
    border-color: #e9e9e9 !important;
    transition: all linear .4s;
}

    .products td:hover {
        box-shadow: 0 2px 5px #f6efed;
        color: #ffca01;
    }

.products .card {
    overflow: hidden;
    margin-bottom: 30px;
    padding: 5px;
    transition: all ease .3s;
    color: #332b3a;
}

.products .imgProduct {
    position: relative;
    max-height: 270px;
    overflow: hidden;
    line-height: 35px;
}

    .products .imgProduct img {
        height: 250px;
        transition: all ease .4s;
    }

.products .card:hover .imgProduct img {
    filter: brightness(40%);
    transform: scale(1.1);
}

.products .features {
    position: absolute;
    background-color: transparent;
    color: #fff;
    top: -100%;
    right: 0;
    height: 100%;
    width: 100%;
    padding: 25px;
    transition: all linear .5s;
}

    .products .features a {
        color: #fff !important;
    }

.products .card:hover .features {
    top: 0;
    bottom: 0;
}

.products .btn-samples, .products .btn-view, .btn-moreinfo {
    color: #fff !important;
    background-color: #6a95cc;
    border-radius: 20px;
    margin: 5px;
    font-size: 12px;
    transition: all .3s ease;
}

    .products .btn-samples:hover, .products .btn-view:hover, .btn-moreinfo:hover {
        color: #fff !important;
        border-radius: 5px;
    }

.products .productCode {
    color: #6a95cc !important;
    font-weight: 700;
}

.products .callMe a {
    color: #6a95cc;
}

    .products .callMe a:hover {
        color: #132666;
    }

    .products .callMe a i {
        transform: rotateZ(-10px) !important;
    }

    .products .callMe a:hover i {
        animation: rotate .5s ease infinite;
    }

.products .btn-addToCart {
    overflow: hidden;
    position: relative;
    background-color: #fff;
    color: #6a95cc !important;
    width: 180px;
    font-size: 12px;
    z-index: 1;
    border: 2px solid #6a95cc;
    border-radius: 40px;
}

    .products .btn-addToCart:before {
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        content: "";
        height: 100%;
        background-color: #6a95cc;
        z-index: -1;
        border-radius: 0;
        transition: all .3s ease;
    }

    .products .btn-addToCart:hover:before {
        right: 0;
        border-radius: 40px;
    }

    .products .btn-addToCart:hover {
        color: #fff !important;
        border-color: transparent !important;
    }

.products .badge-samples {
    background-color: #f6efed;
    color: #344c6c;
}

.products .samples:hover .badge-samples {
    background-color: #344c6c;
    color: #f6efed;
}

.products .ekko-lightbox .modal-body {
    padding: 3px;
}

.products .ekko-lightbox-nav-overlay a {
    opacity: .5;
}

    .products .ekko-lightbox-nav-overlay a span:hover {
        color: #ec505d;
    }

    .products .ekko-lightbox-nav-overlay a:last-child span {
        text-align: left;
    }

.fixBrand {
    z-index: 1;
    position: fixed;
    top: 36%;
    left: -150px;
    transition: all .5s linear;
    width: 130px;
    height: auto;
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

    .fixBrand:before {
        position: absolute;
        top: 0;
        right: -20px;
        width: 20px;
        height: 100%;
        background-color: #ffca01;
        content: ""
    }

    .fixBrand img {
        height: auto;
        width: 100px;
    }
.inventorystatus {
    position: absolute;
    top: -.5rem;
    right: 0;
    border-radius: 1rem;
    color: white;
    z-index:1;
}

    .inventorystatus.green {
        background-color: #57b227;
    }

    .inventorystatus.orange {
        background-color: #eaa01b;
    }

    .inventorystatus.red {
        background-color: #ec505d;
    }


@media(max-width:992px) {
    .pakimg {
        margin-top: 20px;
    }

    .products .card:hover .imgProduct img {
        transform: scale(1.3);
    }

    .products .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .products td{
        min-width:2rem !important;
    }
    .products .productsTitle:after,.products .productsTitle:before{
        display:none;
    }
}

@media(min-width:992px) {
    .products .filter .form-control {
        min-width: 300px;
    }
}

@keyframes rotate {
    50% {
        transform: rotateZ(-40deg);
    }
}
