
.subscription {
        color: #dfdfdf;
        font-size: 12px;
        line-height: 14px;
        margin-top: 10px;
}

.card-img-top {
        width: 100%;
        height: 20vh;
        object-fit: cover;

.wrapper_sale {
    position: relative;
}

.sale {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #db3737;
  color: white;
  height: 40px;
  width: 50px;
  text-align: center;
  vertical-align: middle;
  line-height: 2.5rem;
  margin: 10px 10px;
  transform: rotate(-20deg);
  -webkit-animation: beat 1s ease infinite alternate;
          animation: beat 1s ease infinite alternate;
}
.sale:before, .sale:after {
  content: "";
  position: absolute;
  background: inherit;
  height: inherit;
  width: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  transform: rotate(30deg);
}
.sale:after {
  transform: rotate(60deg);
}

@keyframes beat {
	from {	transform: rotate(-20deg) scale(1); }
	to {	transform: rotate(-20deg) scale(1.1); }
}

.sale_lable {
    width: 50px;
    height: 20px;
    background: linear-gradient(to left, darkred, red, darkred);
    clip-path: polygon(0 50%, 20% 0, 100% 0, 100% 100%, 20% 100%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 200;
    font-family: sans-serif;
    color: #fff;
    text-indent: 10px;
}

.sale_lable::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(0, -50%);

}

.card_custom {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.price_custom {
  color: grey;
  font-size: 22px;
}

.card_custom button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card_custom button:hover {
  opacity: 0.7;
}

.card_buttons {
    display:inline;
}

.a product-name {
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.center-block {
    width: 250px;
    height; 250px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.dotted {
    border-bottom: 1px dotted red;
}

.quantity {
    z-index: 1;
}

.icon-vk {
    display: block;
    width: 24px;
    height: 24px;
    mask-repeat: no-repeat;
    mask-position: center;
    background-image: url("vk-icon.svg")
}