.basket-3 input[type="number"] {
  height: 50px;
  border: solid 1px #CCCCCC;
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
}
.basket-3 input[type="number"]:focus {
  box-shadow: none;
}
.basket-3 .quantity {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.basket-3 .quantity label,
.basket-3 .quantity input {
  font-family: inherit;
  width: 92px;
  font-weight: normal;
}
.basket-3 .button {
  text-align: center;
}
.basket-3 .button.login-button {
  width: 100%;
}
.basket-3 .button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.basket-3 .item-product .form-group {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .basket-3 .item-product .form-group {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .basket-3 .item-product .form-group {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .basket-3 .item-product .form-group {
    margin-bottom: 40px;
  }
}
.basket-3 .item-product + .item-product {
  border-top: solid 1px #CCCCCC;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .basket-3 .item-product + .item-product {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .basket-3 .item-product + .item-product {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .basket-3 .item-product + .item-product {
    padding-top: 40px;
  }
}
.basket-3 .item-product:last-child {
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .basket-3 .item-product:last-child {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .basket-3 .item-product:last-child {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .basket-3 .item-product:last-child {
    margin-bottom: 40px;
  }
}
.basket-3 .continue-shopping {
  cursor: pointer;
  text-transform: lowercase;
  margin-top: 20px;
  text-align: center;
  display: block;
}
.fa-shopping-basket[data-count]:after {
  position: absolute;
  right: 11px;
  top: 13px;
  content: attr(data-count);
  font-size: 10px;
  padding: .6em;
  border-radius: 999px;
  line-height: 4px;
  color: white;
  background: #00E187;
  text-align: center;
  min-width: 12px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .fa-shopping-basket[data-count]:after {
    right: 20px;
    top: 26px;
  }
}
