.content-store-description{


}
.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.showmore-store{ 
	cursor:pointer;
	background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 7px 4px #dadbdb;
    padding: 5px 10px;
    color: #606060;
	margin: 10px 0px;
}
.showmore-store:hover{ 
	transition:all 400ms ease;
    cursor: pointer;
    background: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 7px 4px #ff692b42;
    padding: 5px 10px;
    color: #ff6938;
    margin: 10px 0px;
}

.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}