.reactions{
	display: inline-table;
	position: relative;
	}
.reactions-flying{
	position: absolute;
	left: -100px;
	right: 40px;
	bottom: 100%;
	height: 400px;
	pointer-events: none;
	}
.reactions-flying > div{
	opacity: 0;
	position: absolute;
	top: 100%;
	-moz-box-shadow: 10px 10px 10px rgba(0,0,0,0.15); 
	-webkit-box-shadow: 10px 10px 10px rgba(0,0,0,0.15); 
	box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	}

.reactions-flying > div.balloons{
	animation-name: reactions_balloons;
	/*animation-duration: 3000ms;*/
	}

@keyframes reactions_balloons {
	0%{ top: 100%; left: 50%; opacity: 0; transform: rotate(15deg); }
	35%{ left: 40%; opacity: 1; transform: rotate(-30deg); }
	50%{ left: 50%; }
	60%{ left: 55%; opacity: 1; transform: rotate(-15deg); }
	100%{ top: 0%; left: 20%; opacity: 0; transform: rotate(35deg); }
	}

.reactions-flying > div.smoke{
	animation-name: reactions_smoke;
	/*animation-duration: 4000ms;*/
	}

@keyframes reactions_smoke {
	0%{ top: 100%; left: 30%; opacity: 0; transform: rotate(-20deg); }
	25%{ left: 20%; opacity: 1; transform: rotate(-15deg); }
	50%{ left: 40%;  }
	75%{ left: 60%; opacity: 1; transform: rotate(-5deg); }
	100%{ top: 0%; left: 90%; opacity: 0; transform: rotate(30deg); }
	}

.reactions-flying > div.wind{
	animation-name: reactions_wind;
	/*animation-duration: 3500ms;*/
	}

@keyframes reactions_wind {
	0%{ top: 100%; left: 60%; opacity: 0; transform: rotate(30deg); }
	25%{ left: 75%; opacity: 1;}
	50%{ left: 80%; transform: rotate(10deg); }
	75%{ left: 70%; opacity: 1;}
	100%{ top: 0%; left: 30%; opacity: 0; transform: rotate(-30deg); }
	}

.reactions-flying > div.float{
	animation-name: reactions_float;
	/*animation-duration: 3500ms;*/
	}

@keyframes reactions_float {
	0%{ top: 100%; left: 20%; opacity: 0; transform: rotate(40deg); }
	25%{ left: 10%; opacity: 1;}
	50%{ left: 20%; transform: rotate(0deg); }
	75%{ left: 40%; opacity: 1;}
	100%{ top: 20%; left: 50%; opacity: 0; transform: rotate(-50deg); }
	}

.reactions-flying > div.explode{
	animation-name: reactions_explode;
	/*animation-duration: 3500ms;*/
	}

@keyframes reactions_explode {
	0%{ top: 100%; left: 0%; opacity: 0; transform: rotate(0deg) scale(1); }
	15%{ top: 15%; opacity: 1;}
	40%{ top: 5%; transform: rotate(0deg); }
	70%{ left: 40%; top:15%; opacity: 1; transform: rotate(10deg) scale(1);}
	80%{ top: 10%; left: 40%; opacity: 0; transform: rotate(-60deg) scale(4); }
	}

.reactions-icons-list{
	display: flex;
	}
.reactions-icons-list > div{
	border: solid 2px rgba(0,0,0,0.3);
	-moz-box-shadow:    inset 0px -5px 10px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0px -5px 10px rgba(0,0,0,0.2);
	box-shadow:         inset 0px -5px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	}
.reactions-icons{
	width: 32px;
	height: 32px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	-moz-border-radius: 100%; 
	-webkit-border-radius: 100%;
	margin-right: 5px;
	}
.reactions-icons:hover{
	transform: scale(1.25) translate(0, -3px);
	filter: contrast(1.2);
	}
.reactions-icons[data-type='clap']{
	background-color: #AA33FF;
	}
.reactions-icons[data-type='like']{
	background-color: #2266EE;
	}
.reactions-icons[data-type='heart']{
	background-color: #EE0033;
	}
.reactions-icons[data-type='smile']{
	background-color: #EEAA00;
	}
.reactions-icons[data-type='idea']{
	background-color: #FF00CC;
	}
.reactions-icons[data-type='support']{
	background-color: #00CC55;
	}
.reactions-icons[data-type='thunderbolt']{
	background-color: #DDDD00;
	}
.reactions-icons:last-child{
	margin: 0;
	}
.reactions-icons > img{
	width: 60%;
	height: 60%;
	fill: #FFF !important;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	}
	
@media (max-width: 1600px) {
	.reactions-flying{
		left: -50px;
		}
	}
@media (max-width: 1480px) {
	.reactions-flying{
		left: -10px;
		height: 350px;
		}
	}
@media (max-width: 1200px) {
	.reactions-flying{
		height: 300px;
		}
}
@media (max-width: 1024px) {
	.reactions-flying{
		height: 200px;
		}
}
@media (max-width: 840px) {}
@media (max-width: 720px) {}
@media (max-width: 600px) {
	.reactions-flying{
		height: 100px;
		}
}
@media (max-width: 480px) {
	.reactions-icons{
		width: 28px;
		height: 28px;
		margin-right: 4px;
		}
}
@media (max-width: 320px) {}