.wayo-image{
  display: inline-block;
  &__box{
    overflow: hidden;
    line-height: 1;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    background-image: url($asset-path+'/img-placeholder.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    &_border{
      border: solid 1px $color-grey-5;
      @include border-radius(2px);
    }
  }
  &__info{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 12px;
    color: $color-white-1;
    z-index: 1;
    min-height: 20px;
    line-height: 1.2;
    &::before{
      @include coverbg;
    }
  }
  &__info-placeholder{
    visibility: hidden;
  }
  &__info-content{
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    margin: 0;
    word-wrap: break-word;
    word-break: keep-all;
    padding: 0 3px;
    box-sizing: border-box;
    white-space: nowrap;
    @include transform(translate(-50%,-50%));
  }
  &__label{
    line-height: 1;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px auto 0 auto;
  }
}
.wayo-image__img{
  max-width: 100%;
  max-height: 100%;
  &_square{
    width: 100%;
    height: 100%;
  }
  &_clip{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: inherit;
    max-height: inherit;
    @include transform(translate(-50%,-50%));
    &.wayo-image__img_long{
      height: 101%;
      width: auto;
    }
    &.wayo-image__img_high{
      width: 101%;
      height: auto;
    }
  }
}