/*=====================================
           BREADCRUMB PART STYLE
======================================*/
.breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  padding: 0px;
}

.breadcrumb li a {
  color: var(--graycolor);
}

.breadcrumb li a:hover {
  color: var(--brandcolor);
  text-decoration: underline;
}

.breadcrumb .active {
  color: var(--brandcolor);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--brandcolor);
}

/*=====================================
          TABLE COMPONENT STYLE
======================================*/
.table-list {
  width: 100%;
}

.table-list thead tr {
  background: var(--brandcolor);
}

.table-list thead tr th {
  text-align: center;
  padding: 15px 25px;
  color: var(--whitecolor);
  font-weight: var(--mweight);
  border-right: 1px solid var(--headerborder);
}

.table-list thead tr th:first-child {
  border-radius: 3px 0px 0px 3px;
}

.table-list thead tr th:last-child {
  border-right: none;
  border-radius: 0px 3px 3px 0px;
}

.table-list tbody tr {
  border-bottom: 1px solid var(--bordercolor);
}

.table-list tbody tr td {
  text-align: center;
  padding: 15px 25px;
  border-right: 1px solid var(--bordercolor);
}

.table-list tbody tr td:last-child {
  border-right: none;
}

.table-product img {
  width: 100px;
  border-radius: 3px;
  background: var(--whitecolor);
}

.table-quantity input {
  width: 100px;
  padding: 0px 15px;
  height: 40px;
  font-size: 18px;
  border-radius: 3px;
  border: 2px solid var(--bordercolor);
}

.table-quantity input:focus-within {
  border-color: var(--brandcolor);
}

.table-shop .btn {
  padding: 10px 25px;
}

.table-action {
  text-align: center;
}

.table-action a i {
  width: 35px;
  height: 35px;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  margin: 3px;
  color: var(--brandcolor);
  background: var(--whitecolor);
  text-shadow: var(--tshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.table-action a i:hover {
  color: var(--whitecolor);
  background: var(--brandcolor);
}

.table-desc p {
  width: 150px;
  text-align: left;
}

.table-desc p a {
  font-size: 14px;
  font-weight: 500;
}

.table-desc p a:hover {
  text-decoration: underline;
}

/*=====================================
        SINGLE BANNER PART STYLE
======================================*/
.single-banner {
  background: url(../../images/banner/04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
}

.single-banner::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(92, 186, 71, 0.3)), to(rgba(85, 172, 65, 0.2)));
  background: linear-gradient(rgba(92, 186, 71, 0.3), rgba(85, 172, 65, 0.2));
  z-index: -1;
}

.single-content {
  text-align: center;
}

.single-content h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: var(--whitecolor);
}

@media (max-width: 767px) {
  .single-banner {
    padding: 80px 0px;
  }
  .single-content h2 {
    font-size: 35px;
  }
}

/*=====================================
            CARTLIST PART STYLE
======================================*/
.compare-part {
  padding: 100px 0px;
}

.compare-btn {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .compare-list {
    overflow-x: scroll;
  }
  .table-list {
    width: 900px;
  }
}

@media (max-width: 767px) {
  .cart-part {
    padding: 60px 0px;
  }
}
