@keyframes btnup {
  0% {
    transform: scale(1,1) translateY(0);
    opacity: 1;
  }
  50% {
    transform: scale(1,1) translateY(3px);
    opacity: 1;
  }
  100% {
    transform: scale(1,1) translateY(0);
    opacity: 1;
  }
}
@keyframes btnshadow {
  0% {
    opacity: 0.5;
    bottom: -10px;
  }
  50% {
    opacity: 1;
    bottom: -7px;
  }
  100% {
    opacity: 0.5;
    bottom: -10px;
  }
}
.editor,
.mce-content-body {
  color: black;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  text-align: justify;
}
.editor *,
.mce-content-body * {
  color: black;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  text-align: justify;
}
.editor ul li,
.mce-content-body ul li {
  list-style: disc;
}
.editor a,
.mce-content-body a {
  font-size: inherit;
}
.editor a:hover,
.mce-content-body a:hover {
  color: #70458C;
  text-decoration: underline;
}
.animationbtn {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  text-align: center;
}
.animationbtn:after {
  position: absolute;
  content: ' ';
  height: 0;
  bottom: -10px;
  left: 10px;
  right: 10px;
  -webkit-box-shadow: 0 2px 10px 2px #000000;
  box-shadow: 0 2px 10px 2px #000000;
  opacity: 0;
  z-index: 1;
}
.animationbtn:hover {
  animation-name: btnup;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
.animationbtn:hover:after {
  animation-name: btnshadow;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
.animationbtn.toplineBlock {
  padding: 8px 1.75em;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
