
body{
  cursor: auto !important;
}
body #magicMouseCursor.cursor-square {
    border-radius: 0; }

body #magicPointer {
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.2s, width 0.2s, height 0.2s, box-shadow 0.2s; }
  body #magicPointer.is-hover {
    background: red; }
  body #magicPointer.pointer-blur {
    height: 50px;
    width: 50px;
    background: none;
    border: 1px solid #fff;
    box-shadow: 0px 0px 15px -5px white; }
  body #magicPointer.pointer-overlay {
    height: 100px;
    width: 100px;
    background: #231B5D;
    
     }
  body #magicPointer.pointer-overlay::after {
    content: 'VIEW GALLERY';
    color: #fff;
    margin-top: 15px;
    width: 80px;
    display: block;
    text-align: center;
    margin: 27px auto;
  }

body .magic-hover {
  transition: all 0.2s; }
  body .magic-hover:hover {
    cursor: none; }
