.cq-magnify {
  position: relative;
}

.cq-magnify-image{
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0;
  /*filter: url(blur.svg#blur);*/
}

.cq-magnify-glass {
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 2;
  -webkit-border-radius: 200px;
     -moz-border-radius: 200px;
          border-radius: 200px;
  border: none;
  box-shadow: inset 0 0 30px 20px rgba(0,0,0,0.1), 0 0 10px 0 rgba(0,0,0,.6);
  border: 8px solid #FFF;
  display: none;
  /*-webkit-filter: saturate(0%);
  -moz-filter: saturate(0%);
  filter: saturate(0%);*/
}

.cq-magnify .drag{
  cursor: move;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.cq-magnify .dragging{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.cq-magnify .hidecursor{
  cursor: none;
}

@-webkit-keyframes cq-dropInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  60% {
    -webkit-transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes cq-dropInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  60% {
    -moz-transform: translateY(30px);
  }

  80% {
    -moz-transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes cq-dropInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  60% {
    -o-transform: translateY(30px);
  }

  80% {
    -o-transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes cq-dropInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cq-dropInDown {
  -webkit-animation-name: cq-dropInDown;
  -moz-animation-name: cq-dropInDown;
  -o-animation-name: cq-dropInDown;
  animation-name: cq-dropInDown;
}


.cq-dropin0{
  -webkit-animation-duration: .6s;
  -webkit-animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: .6s;
  -moz-animation-delay: 0s;
  -moz-animation-timing-function: ease;
  -moz-animation-fill-mode: both;
  -ms-animation-duration: .6s;
  -ms-animation-delay: 0s;
  -ms-animation-timing-function: ease;
  -ms-animation-fill-mode: both;
  animation-duration: .6s;
  animation-delay: 0s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

