
    #wallet-pin-toggle{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        cursor: pointer;
        position: relative;
    }

    .circle-glow{
        position: absolute;
        inset:2px;
        border-radius: 50%;
        border:2px solid transparent;
    }

    .circle-glow::after, .circle-glow::before{
        content:'';
        position: absolute;
        border-radius: 50%;
        border:2px solid var(--primary-color);
        inset:0;
        animation: 1s linear pulseGlow infinite
    }

    .circle-glow::before{
        animation-delay: .5s;
    }

    @keyframes pulseGlow{
	  0% {
		transform: translate3d(0,0,0) scale(0);
		opacity:1;
	  }
	  100% {
		transform: translate3d(0,0,0) scale(2);
		opacity:0;
	  }
	}

    #wallet-pin-toggle .fa{
        color:var(--primary-color);
        font-size: 17px;
    }

