* {
  cursor: none;
}

.cursor,
.cursor2 {
  display: none;
}

@media only screen and (min-width: 992px) {
  .cursor {
    display: block;

    width: 50px;
    height: 50px;
    border-radius: 100%;
    /* border: 2px solid white; */
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1000;
  }

  .link {
    cursor: pointer;
  }

  #cursorImg {
    width: 15px;
    height: auto;
  }

  .cursor2 {
    display: block;

    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: white;
    opacity: 1;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999;
  }

  .hover {
    width: 150px;
    height: 150px;
  }

  .addThumbnail {
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
  }
}

@media only screen and (min-width: 1920px) {
  .hover {
    width: 200px;
    height: 200px;
  }
}
