/*Style 1*/
.pi-pp-widget-list.style1 .pi-pp-item:first-child .pi-pp-item-image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    z-index: 1;
    box-shadow: inset 0 -60px 100px rgba(38, 38, 38, 0.8);
}

.pi-pp-widget-list.style1 .pi-pp-item:first-child .pi-pp-item-image{
  position: relative;
  z-index: 9;
  overflow: hidden;
  width: 100%;
}

.pi-pp-widget-list.style1 .pi-pp-item:first-child .pi-pp-item-meta,
.pi-pp-widget-list.style1 .pi-pp-item:first-child .pi-pp-item-title{
  color: #fff;
}

.pi-pp-widget-list.style1 .pi-pp-item:first-child .pi-pp-item-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 20px;
    z-index: 99;
}

.pi-pp-widget-list.style1 .pi-pp-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.pi-pp-widget-list.style1 .pi-pp-item-image {
  width: 72px;
  float: left;
  margin-right: 16px;
}
.pi-pp-widget-list.style1 .pi-pp-item-title {
  font-family: "Lora", serif;
  font-size: 15px;
  font-style: italic;
  color: #565656;
  margin: 0;
  line-height: 1.6em;
  letter-spacing: 0.015em;
}

.pi-pp-widget-list.style1 .pi-pp-item-meta {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #6a6a6a;
  margin-top: 1px;
}
.pi-pp-widget-list.style1 .pi-pp-item-meta:before {
  content: '- ';
}

/*Style2*/
.pi-pp-widget-list.style2 h3 span{
  margin-right: 10px;
  font-weight: bold;
}

.pi-pp-widget-list.style2 .pi-pp-item:not(:first-child) .pi-pp-item-content{
  padding-left: 15px;
}

/*Style 3*/
.pi-pp-widget-list.style3 .pi-pp-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 15px;
}

.pi-pp-widget-list.style3 .pi-pp-item-image {
    position: relative;
    width: 54px;
    float: left;
    margin-right: 16px;
    z-index: 9;
}

.pi-pp-widget-list.style3 .pi-pp-item-content {
    position: relative;
    top: -3px;
}

.pi-pp-widget-list.style3 .pi-pp-item-title {
    font-size: 12px;
    color: #565656;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.6em;
    letter-spacing: 0.015em;
}

.pi-pp-widget-list.style3 .pi-pp-item-meta {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #7d7d7d;
    line-height: 1.9em;
}

/*style4*/
.pi-pp-wrapper.style4{
  padding-left: 10px;
}

.pi-pp-widget-list.style4 .pi-pp-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 15px;
}

.pi-pp-widget-list.style4 .pi-pp-item-image {
    position: relative;
    width: 54px;
    float: left;
    margin-right: 16px;
    z-index: 9;
}

.pi-pp-widget-list.style4 .pi-pp-item-content {
    position: relative;
    top: -3px;
}

.pi-pp-widget-list.style4 .pi-pp-item-title {
    font-size: 12px;
    color: #565656;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.6em;
    letter-spacing: 0.015em;
}

.pi-pp-widget-list.style4 .pi-pp-item-meta {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #7d7d7d;
    line-height: 1.9em;
}

/*Style5*/
.pi-pp-widget-list.style5 {
    margin: 0;
    padding: 0;
}
.pi-pp-widget-list.style5 li {
    color: #c6c6c6;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ececec;
    list-style: none;
    counter-increment: widgetCounter;
}

.pi-pp-widget-list.style5 li:before {
    content: counter(widgetCounter);
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
}
.pi-pp-widget-list.style5 li:nth-child(1):before {
    background-color: #DE5A5A;
}
.pi-pp-widget-list.style5 li:nth-child(2):before {
    background-color: #5AB1DE;
}
.pi-pp-widget-list.style5 li:nth-child(3):before {
    background-color: #DEAB5A;
}


.pi-pp-widget-list.style5 li a {
    color: #626262;
    margin-right: 6px;
    font-style: normal;
}


/*General*/
.pi-pp-image-cover{
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.pi-pp-image-cover img{
  position: absolute !important;
  width: 100%;
  max-width: none !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}