

.funnel_svg{width:100%; height:auto; margin-bottom:0}
/* 셀이 이동하는 path 경로 투명색으로 처리 */
 .funnel__paths path,
 .funnel__cells>circle {fill:transparent; stroke:transparent} 
/* 셀이 이동하는 path 경로 투명색으로 처리 */


/* 셀이 커졌다 작아졌다 반복하는 animation */
/*  .funnel__cells>g>circle{transform-origin:50% 50%;animation-timing-function:ease}
 .funnel__cells #cells_merging circle,
 .funnel__cells #cells_diverging circle{animation:jiggle .5s infinite}
 .funnel__cells #cells circle:nth-child(odd){animation:jiggle .8s infinite}
 .funnel__cells #cells circle:nth-child(even){animation:jiggle .5s infinite} */

/* 셀 색상표 */
.funnel__cells .main {stroke:var(--main);}
.funnel__cells .sub {stroke:var(--white);}
.funnel__cells .sub2 {stroke:var(--sub2);}
.funnel__cells .sub3 {stroke:var(--sub3);}
.funnel__cells .sub4 {stroke:var(--sub4);}
.funnel__cells .sub5 {stroke:var(--sub5);}
/* 셀 색상표 */



#merging-2_filled {opacity:0;}
#merging-4_filled {opacity:0;}
#merging-6_filled {opacity:0;}
#big-2 {opacity:0;}
#big-4 {opacity:0;}


/* 빙글빙글 돌아가는 셀 자연스럽게 사라지게 하는 CSS */

  @keyframes filled_out {
 	 0% {opacity:1;}
	 99% {opacity:1;}
	 100% {opacity:0;}
 } 
