 .easyimage-container {
      position: relative;
      width: 390px;
      height: 295px;
      overflow: hidden;
      font-family: sans-serif;
    }

    .easyimage-container img {
      position: absolute;
      width: 390px;
      height: 295px;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .easyimage-container img.active {
      opacity: 1;
      z-index: 1;
    }

    .easycaption {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
      color: #fff;
      text-align: left;
      padding: 5px 10px 3px 10px;
      font-size: 12px;
      z-index: 2;
      box-sizing: border-box;
      transition: opacity 0.3s ease;
    }
