/* Common Begin */
.ctx-text-gray {
  color: #696c71;
}

.ctx-bg-gradient-gray {
  background: linear-gradient(178deg, #d1d1d1 0%, #ffffff 100%);
}

.with-arrow {
  position: relative;
  display: block;
}

.with-arrow img {
  transition: 0.5s;
}

.with-arrow::after {
  content: "";
  width: 7%;
  padding-top: 7%;
  position: absolute;
  z-index: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: 0.3s;
  z-index: 1;
  bottom: 1.2em;
  right: 1.2em;
}

.with-arrow::before {
  content: "";
  width: 9%;
  position: absolute;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: top right;
  transition: 0.3s;
  z-index: 1;
  bottom: 1.2em;
  right: 1.2em;
}

.with-arrow:hover::after {
  transform: translate(0.3em, 0.3em);
  transition-delay: 0.2s;
}

.with-arrow:hover::before {
  transform: translate(0.3em, 0.3em) rotate(45deg);
  transition-delay: 0.2s;
}

.with-arrow:hover img {
  transform: scale(1.05);
}

@media screen and (min-width: 768px) {
  .with-arrow::after {
    bottom: 1.5em;
    right: 1.5em;
  }
  .with-arrow::before {
    bottom: 1.53em;
    right: 1.53em;
  }
}
/* Common End */
