@-webkit-keyframes pulse {
 0% {
 -webkit-transform: scale(1, 1);
}
 50% {
 -webkit-transform: scale(1.1, 1.1);
}
 100% {
 -webkit-transform: scale(1, 1);
};
}

@keyframes pulse {
 0% {
 transform: scale(1, 1);
}
 50% {
 transform: scale(1.1, 1.1);
}
 100% {
transform: scale(1, 1);
};
}

.highlight-zapis {
	-webkit-animation: pulse 1s linear infinite;
	animation: pulse 1s linear infinite;
}

.highlight-zapis:hover {
	-webkit-animation: none;
	animation:none;
}

.jl-logo {
	border: 2px solid #aa89a3;
	padding: 5px 15px 20px;
	border-radius: 10px;
	margin-top: 10px;
}