.flipCounter{display:block;position:relative;width:90px;height:80px;perspective-origin:50% 50%;perspective:300px;background-color:white;border-radius:3px;box-shadow:0 10px 10px -10px grey}.lowerCard,.upperCard{display:flex;position:relative;justify-content:center;width:100%;height:50%;overflow:hidden}.flipCard span,.lowerCard span,.upperCard span{font-size:4em}.upperCard{align-items:flex-end;border-top-left-radius:3px;border-top-right-radius:3px}.flipCard.fold span,.upperCard span{transform:translateY(50%)}.lowerCard{align-items:flex-start;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.flipCard.unfold span,.lowerCard span{transform:translateY(-50%)}.flipCard{display:flex;justify-content:center;position:absolute;left:0;width:90px;height:40px;overflow:hidden;backface-visibility:hidden}.flipCard.unfold{top:50%;align-items:flex-start;transform-origin:50% 0;transform:rotateX(180deg);background-color:white;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.flipCard.fold{top:0;align-items:flex-end;transform-origin:50% 100%;transform:rotateX(0deg);background-color:white;border-top-left-radius:3px;border-top-right-radius:3px}.fold{animation:fold .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards}.fold,.unfold{transform-style:preserve-3d}.unfold{animation:unfold .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards}@keyframes fold{0%{transform:rotateX(0deg)}to{transform:rotateX(-180deg)}}@keyframes unfold{0%{transform:rotateX(180deg)}to{transform:rotateX(0deg)}}