/*----------------------------------------*/
/*  13. Shop
/*----------------------------------------*/
.product-topbar > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575.98px) {
  .product-topbar > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .product-topbar > ul > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.product-topbar > ul li a {
  color: #050a08;
}

.product-topbar > ul li.product-view-wrap {
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 20px 25px;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .product-topbar > ul li.product-view-wrap {
    padding: 15px 20px;
  }
}

.product-topbar > ul li.product-view-wrap > ul li:not(:last-child) {
  padding-right: 20px;
}

.product-topbar > ul li.product-view-wrap > ul li a.active {
  color: #0a0a0a;
}

.product-topbar > ul li.page-count {
  border: 1px solid #000000;
  border-radius: 30px;
  padding: 20px 25px;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .product-topbar > ul li.page-count {
    padding: 15px 20px;
  }
}

.product-topbar > ul li.page-count span {
  color: #050a08;
}

.product-topbar > ul li.short {
  border: 1px solid #000000;
  border-radius: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .product-topbar > ul li.short {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.product-topbar > ul li.short .nice-select {
  border: 0;
}

.product-topbar > ul li.short .nice-select .list {
  width: auto;
  left: auto;
  right: 0;
}

.product-list-view .product-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767.98px) {
  .product-list-view .product-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-list-view .product-item:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.product-list-view .product-img {
  width: 25%;
}

@media (max-width: 991.98px) {
  .product-list-view .product-img {
    width: 40%;
  }
  .product-list-view .product-img img {
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .product-list-view .product-img {
    width: 100%;
  }
}

.product-list-view .product-content {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
  width: 75%;
  text-align: left;
}

@media (max-width: 991.98px) {
  .product-list-view .product-content {
    width: 60%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .product-list-view .product-content {
    width: 100%;
  }
}

.product-list-view .product-content .product-name {
  display: block;
}

.product-list-view .product-content .rating-box ul {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product-list-view .product-content .short-desc {
  font-size: 16px;
  line-height: 26px;
}