.pinkytoes.com {
    /* vCard QR Code - 2014.05. dfe */
}
/* both */
.swingBox, .swingBoxAction {
    margin: 0; padding: 0;
    width: 177px; height: 177px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 8px 8px 7px rgba(0,0,0,.5);
    -webkit-box-shadow: 8px 8px 7px rgba(0,0,0,.5);
    box-shadow: 8px 8px 7px rgba(0,0,0,.5);
}
.swingBox { visibility: hidden; }
.swingBoxAction {
    visibility: visible;
    opacity: 1;
    -moz-animation-name: swingIt;
    -o-animation-name: swingIt;
    -webkit-animation-name: swingIt;
    animation-name: swingIt;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}
@-moz-keyframes swingIt {
    0% {
        opacity: .99999;
        -moz-transform: rotateX(90deg);        
    }
    30% {
        -moz-transform: rotateX(-20deg) rotateY(12deg);
        -moz-animation-timing-function: ease-in-out;
    }
    65% {
        -moz-transform: rotateX(20deg) rotateY(-3deg);
        -moz-animation-timing-function: ease-in-out;
    }
    100% {
        -moz-transform: rotateX(0);
        -moz-animation-timing-function: ease-in-out;
    }
}

@-webkit-keyframes swingIt {
    0%  { 
        opacity: .99999; 
        -webkit-transform: rotateX(90deg);
    }
    30% { 
        -webkit-transform: rotateX(-20deg) rotateY(12deg); 
        -webkit-animation-timing-function: ease-in-out;
    }
    65% {
        -webkit-transform: rotateX(20deg) rotateY(-3deg);
        -webkit-animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: rotateX(0);
        -webkit-animation-timing-function: ease-in-out;
    }
}

@keyframes swingIt {
	0% {
		opacity: .99999;
		transform: rotateX(90deg);
	}
	30% {			
		transform: rotateX(-20deg) rotateY(12deg);
		animation-timing-function: ease-in-out;
	}
	65% {
		transform: rotateX(20deg) rotateY(-3deg);            
		animation-timing-function: ease-in-out;
	}
	100% {
		transform: rotateX(0);
		animation-timing-function: ease-in-out;            
	}
}
