.circleOpacity {
    width: 75px;
    height: 75px;
    position: relative;
    margin: 0 auto;
    position: relative;
    margin-top: 50px;

    .circleone,
    .circletwo {
      width: 75px;
      height: 75px;
      opacity: 0;
      border: 4px solid #2BA0C7;
      -webkit-border-radius: 999px;
      -moz-border-radius: 999px;
      border-radius: 999px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      position: absolute;
      left: -4px;
      top: -4px;
    }
  }

  .circleone {
    -webkit-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -moz-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -o-animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: popout 1500ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

  .circletwo {
    -webkit-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -moz-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    -o-animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: popout 1500ms 750ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

  @-webkit-keyframes popout {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }

    70% {
      opacity: 1;
    }

    90% {
      opacity: 0;
    }

    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }


  @-moz-keyframes popout {
    0% {
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }

    70% {
      opacity: 1;
    }

    90% {
      opacity: 0;
    }

    100% {
      -moz-transform: scale(1);
      transform: scale(1);
    }
  }


  @-o-keyframes popout {
    0% {
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }

    70% {
      opacity: 1;
    }

    90% {
      opacity: 0;
    }

    100% {
      -o-transform: scale(1);
      transform: scale(1);
    }
  }


  @keyframes popout {
    0% {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }

    70% {
      opacity: 1;
    }

    90% {
      opacity: 0;
    }

    100% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
  }