.widget-area .widget_rb_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_rb_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 25px;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 25px;
}

.widget-area .widget_rb_posts_thumb .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-area .widget_rb_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_rb_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 50%;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_rb_posts_thumb .item .thumb::before, .widget-area .widget_rb_posts_thumb .item .thumb::after {
  -webkit-transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: '';
  background-color: var(--whiteColor);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.widget-area .widget_rb_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}

.widget-area .widget_rb_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}

.widget-area .widget_rb_posts_thumb .item .info {
  overflow: hidden;
}

.widget-area .widget_rb_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
}

.widget-area .widget_rb_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_rb_posts_thumb .item .info .list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.widget-area .widget_rb_posts_thumb .item .info .list li {
  list-style-type: none;
  display: inline-block;
  color: #141414;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-left: 25px;
}

.widget-area .widget_rb_posts_thumb .item .info .list li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 10px;
  height: 5px;
  width: 5px;
  background: var(--mainColor);
  border-radius: 50px;
}

.widget-area .widget_rb_posts_thumb .item .info .list li:first-child {
  margin-left: 0;
}

.widget-area .widget_rb_posts_thumb .item .info .list li:first-child::before {
  display: none;
}

.widget-area .widget_rb_posts_thumb .item:hover .thumb::before, .widget-area .widget_rb_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}