

.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  animation: cursorAnim .5s infinite alternate;
  pointer-events: none;
}

.cursor::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  border: 8px solid #E5E2E9;
  border-radius: 50%;
  opacity: .5;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 .5s infinite alternate;
}

@keyframes cursorAnim {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.7);
  }
}

@keyframes cursorAnim2 {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.4);
  }
}

@keyframes cursorAnim3 {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(3);
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}

.expand {
  animation: cursorAnim3 .5s forwards;
  border: 1px solid #DD6653;
}

p {
color: white;
font-family: 'arial';
text-align: center;
margin-top: 50px;
font-size: 1.4em;

a {
  color: teal;
}
}

.ava-custom-notify {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 230px;
  padding: 5px 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 1px 4px 15px rgba(1,1,1,0.35);
  z-index: 99999999;
  cursor: pointer;
  display: none;
  transition: 0.5s ease-in-out;
  animation: pop-swirl 1s ease forwards
}

.ava-custom-notify .ava-custom-cross {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  padding: 5px 10px;
}
.ava-custom-cross:before {
  content: "\78";
}
.ava-custom-cross:hover {
  color: #aaa;
}
.ava-custom-notify h3{
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 10px;
  font-weight: 400;
}
.ava-custom-notify.show_me{
transform: translateY(-70px);
display: block;
}

.ava-custom-notify:after{
content: "";
position: absolute;
width: 45px;
height: 60px;
background:url("https://c5avaamo.s3-us-west-2.amazonaws.com/public_assets/data/000/000/031/original/Asset_1_2x.png?1525253042") no-repeat;
right: -20px;
bottom: 10px;
display: inline-block;
}
.ava-custom-notify.show_me{
opacity: 1;
}

@keyframes pop-swirl {
0% {
  opacity: 0.3;
}
60% {
  opacity: 0.7;
}
100% {
  opacity: 1;
}
}
