.layout.layout_weappz_listly {
    width: 100%;
}

.layout.layout_weappz_listly * {
    box-sizing: border-box;
}

.layout.layout_weappz_listly [class*="col-"] {
    float: left;
}

.layout.layout_weappz_listly .col-12 {
  width: 100%;
  border:0px solid rgb(255, 255, 255);
  border-left:0px solid rgb(255, 255, 255);
  border-right:0px solid rgb(255, 255, 255);
}

.layout.layout_weappz_listly .col-4 {width: 33.33%;}
.layout.layout_weappz_listly .col-8 {width: 66.66%;}


.layout.layout_weappz_listly .listlyiconimg img {
  padding-top: 25px;
  max-height: 100px;
  max-width: 70px;
  margin-left: 20px;
  display:block;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounceInDown;
}

.layout.layout_weappz_listly .listlypagetitle {
  padding-top: 35px;
  font-size: 21px;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounceInDown;
}

.layout.layout_weappz_listly .listlypagesubtitle {
  padding-top: 5px;
  font-size: 15px;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounceInDown;

}

.layout.layout_weappz_listly .object {
  height: 120px;
  box-shadow: inset 0 -10px 12px -10px rgba(90, 90, 90, 0.65);
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.layout.layout_weappz_listly .object:nth-child(5n+1){
  background: #b2d067;
  color:white;
}
.layout.layout_weappz_listly .object:nth-child(5n+2){
  background: #82cdd2;
  color:white;
}
.layout.layout_weappz_listly .object:nth-child(5n+3){
  background: #6dd89f;
  color:white;
}
.layout.layout_weappz_listly .object:nth-child(5n+4){
  background: #de825c;
  color:white;
}
.layout.layout_weappz_listly .object:nth-child(5n+5){
  background: #768ee0;
  color:white;
}


/* animation*/
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}
