/* Equipment Card Styles */
.prdct {
  border: solid 1px #DDDDDD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #232323;
}

.prdct-image {
  width: 100%;
  height: 245px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.prdct-image__label {
  display: inline-block;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  padding: 3px 9px;
  text-align: center;
  background-color: #272727;
  position: absolute;
  right: 7px;
  top: 7px;
}

.prdct-content {
  padding: 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.prdct-content__title {
  margin-bottom: 5px;
}

.prdct-content__category {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 42px;
}

.prdct-content .btn {
  width: 100%;
}

.prdct:hover {
  border: 1px solid #0080fd;

  .prdct-image {
    outline: 1px solid #0080fd;
  }
}

.prdct:hover .prdct-image {
  background-color: #EDF2F3;
}

.prdct:hover .prdct-content {
  background-color: #FFFFFF;
}

/* Equipment Cart Styles */
.cart-wrap__list {
  margin-top: 55px;
}

.cart-wrap__list .item {
  background-color: #fff;
  margin-bottom: 22px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-wrap__list .item-meta {
  display: flex;
  align-items: center;
  width: 100%;
  /*max-width: 450px;*/
  margin-right: 30px;
}

.cart-wrap__list .item-meta__image {
  width: 100vw;
  height: 131px;
  max-width: 137px;
  position: relative;
  margin-right: 22px;
}

.cart-wrap__list .item-meta__image--label {
  position: absolute;
  right: 0;
  top: 0;
  padding: 3px 9px;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-family: "Gilroy", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #272727;
}

.cart-wrap__list .item-meta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-wrap__list .item-meta__content {
  width: 100%;
  font-family: "Gilroy", sans-serif;
}

.cart-wrap__list .item-meta__content--title {
  text-decoration: underline;
  margin-bottom: 10px;
}

.cart-wrap__list .item-meta__content--category {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 7px;
}

.cart-wrap__list .item-meta__content--status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #787878;
}

.cart-wrap__list .item-meta__content--status svg {
  margin-right: 19px;
}

.cart-wrap__list .item-actions {
  width: 100%;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-wrap__list .item-actions__qty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #E3E3E3;
}

.cart-wrap__list .item-actions__qty--button {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-wrap__list .item-actions__qty input {
  width: 32px;
  height: 22px;
  border: none;
  background: none;
  border-left: solid 1px #E3E3E3;
  border-right: solid 1px #E3E3E3;
  text-align: center;
  padding: 0;
  margin: 0;
}

.cart-wrap__list .item-actions__price {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 15px;
}

.cart-wrap__pay {
  margin-top: 40px;
  border: solid 1px #C9C9C9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 44px;
}

.cart-wrap__pay--content {
  width: 100%;
  max-width: 462px;
}

.cart-wrap__pay--content-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cart-wrap__pay--content-text {
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  font-family: "Gilroy", sans-serif;
}

.cart-wrap__pay--icon {
  width: 100%;
  max-width: 80px;
}

.cart-wrap__empty {
  border: solid 1px #C9C9C9;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.cart-wrap__empty h2 {
  margin: 0;
}

/* Equipment Media Queries */
@media (max-width: 768px) {
  .shop-wrap__list--products .prdct {
    width: 49%;
  }

  .shop-wrap__list--products .prdct:nth-child(1n+1) {
    margin: 0 0 30px;
  }
}

@media (max-width: 550px) {
  .shop-wrap__list--products .prdct {
    width: 100%;
  }

  .related-wrap__list .prdct {
    width: 100%;
  }

  .cart-wrap__list .item-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-wrap__list .item-meta__image {
    margin: 0 0 15px;
  }

  .cart-wrap__list .item-meta__content {
    text-align: center;
  }

  .cart-wrap__list .item-meta__content--status {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cart-wrap__list .item-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .cart-wrap__list .item-actions__price {
    margin: 15px 0;
  }

  .cart-wrap__pay {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-wrap__pay--content {
    margin: 0 0 30px;
  }

  .cart-wrap__list .item {
    flex-direction: column;
  }

  .cart-wrap__list .item-meta {
    margin-right: 0;
  }

  .cart-wrap__list .item-actions__qty {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
