/*
 Theme Name:   HTU Child
 Theme URI:    http://demo.goodlayers.com/kingster
 Description:  HTU Child Theme
 Author:       Donatus Ankah
 Author URI:   http://goodlayers.com
 Template:     kingster
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, right-sidebar, responsive-layout
 Text Domain:  htu-child

 START YOUR CHILD THEME CSS HERE
*/

.admissions{
	font-size: 8px;
	margin-left: 4px;
	position: relative;
	text-decoration:blink;
	top: -10px;
	margin-bottom: 13px;
	color: #ffffff;
	background-color: #db251d;
	padding: 2px 3px;
	border-radius: 8px;
}

@keyframes bouncing {
0% {top: -6px;}
100% {top: -10px;}
}

.admissions { animation: bouncing .8s cubic-bezier(0.1,0.05,0.05,1) 0s infinite alternate both;
	-webkit-animation: colorchange 1s infinite alternate
}

@-webkit-keyframes colorchange {
  0% {
    background-color: #db251d;
  }
 
  50% {
    background-color: #db252d;
  }
100% {
    background-color: #000000;
  }