.mdel-fancy-img-text:not(.mdel-imginfo-skin-imageclip) {
  position: relative;
  overflow: hidden;

  .mdel-fancy-img-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 25px;
    color: #fff;
    background: linear-gradient(45deg, #de1791, #61045f);
    clip-path: circle(20px at calc(100% - 35px) 35px);
    transition: clip-path 2s cubic-bezier(0.02, 0.63, 0.65, 1.04);
    z-index: 1;

    .mdel-fancy-opener {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 30px;
      height: 30px;
      text-align: center;
      transition: opacity 1s ease;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: #fff;
      font-weight: 600;
      font-size: 24px;
      margin-bottom: 20px;
      line-height: 1.3em;
    }

    a.mdel-fancy-img-btn {
      color: #fff;
      border: 1px solid #fff;
      padding: 10px 20px;
      margin-top: 8px;
      display: inline-block;
      font-size: 16px;
      letter-spacing: 1px;
      cursor: pointer;
      border-radius: 5px;
    }

  }

  &:hover .mdel-fancy-img-content {
    clip-path: circle(150%);
  }

  &:hover .mdel-fancy-opener {
    opacity: 0;
  }

  &:not(.disableglow):before {
    content: '';
    width: 30px;
    height: 30px;
    background: #fd77fd;
    z-index: 0;
    right: 20px;
    top: 20px;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: glower 1s ease-in-out forwards infinite;
    animation-direction: alternate;
  }
}

.mdel-imginfo-skin-imageclip {
  overflow: hidden;

  img {
    transition: all 1s ease;
    clip-path: circle(150%);
    margin-bottom: -60%;
  }

  a.mdel-fancy-img-btn {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    margin-top: 8px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
  }

  &:hover img {
    clip-path: circle(100px at 50% 30%);
  }

  .mdel-fancy-img-content {
    transition: all 0.8s ease-in-out;
    transition-delay: 0.2s;
    position: relative;
    transform: translateY(200px);
    opacity: 0;

    h3,
    p,
    a {
      color: #333;
    }
  }

  &:hover .mdel-fancy-img-content {
    opacity: 1;
    transform: none;
  }
}

@keyframes glower {
  0% {}

  100% {
    transform: scale(1.7);
  }
}