.product {
  display: inline-block;
  width: 100%;
  clear: both;
  padding: 10px;
  vertical-align: top;
  height: auto;
}
.product.box {
  min-height: 400px;
}
.product .image {
  min-height: 400px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.product .bigimage {
  border-radius: 25px;
}
.product .title {
  margin-top: 15px;
  min-height: 65px;
}
.product .btn-buy {
  margin-bottom: 15px;
}

.clear,
.clearfix {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
.clear::after,
.clearfix::after {
  clear: both;
  content: "";
  display: block;
}

.shop .product {
  min-height: 300px;
}
.shop .product .image {
  min-height: 200px;
}

.btn-text {
  background-color: gold;
  padding: 0 3px;
  margin: 0 3px;
  display: inline-block;
}

.btn-buy {
  border: 2px solid gold;
  background-color: gold;
  border-radius: 10px;
  color: black;
}

.btn-dark {
  border: 2px solid black;
  background-color: black;
  border-radius: 10px;
  color: white;
}

form .form-control {
  border: 2px solid gold;
}

div.sticky {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 100px;
}

.link {
  text-decoration: underline dotted;
}

.dashboard .filter li a {
  font-size: x-small;
}

.hover:hover {
  background: rgba(155, 155, 155, 0.5);
}