/*  ::: Background Sideshow  ::: */

.slideshow .background {
    opacity:0;
    visibility:hidden;
    -webkit-transition:1s;
    transition:1s;
}
.slideshow .background.shown {
    opacity:1;
    visibility:visible;
}

/* Example of a custom animation */

.slide.active.selected .headline {
    -webkit-animation:headline 3s forwards;
    animation:headline 3s forwards;
}

@keyframes headline {
    0% { transform:scale(0.9); opacity:0; }
    100% { transform:scale(1); opacity:1;}
}

@-webkit-keyframes headline {
    0% { transform:scale(0.9); opacity:0; }
    100% { transform:scale(1); opacity:1; }
}

a.firma {
  font-size: 10px !important;
}