.blink_me {
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.slick-prev {
  transition: .5s;
  opacity: 0;
  left: 100px;
}
.uabb-module-content:hover .slick-prev {
  left: 20px;
  opacity: 1;
}
.slick-next {
  transition: .5s;
  opacity: 0;
  right: 100px;
}
.uabb-module-content:hover .slick-next {
  right: 20px;
  opacity: 1;
}
.postform {
  color: #fff !important;
  padding: 10px 20px;
  border: none;
  background-color: #f13077 !important;
}
.beliwa {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: right;
}
.uabb-blog-post-inner-wrap:hover .beliwa:before,
.card-product:hover .beliwa:before {
  border-bottom: 50px solid #f13077;
}
.uabb-blog-posts-shadow:hover,
.card-product:hover {
  border-color: #f13077 !important;
}
.beliwa:before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 50px solid #f1f1f1;
  border-left: 50px solid transparent;
  right: 0;
  bottom: 0;
  position: absolute;
  transition: .5s;
}

@media only screen and (max-width:768px){
  .postform {
    width: 100%;
  }
}