/* ------------------------------------------------------
    Vlastni CSS pravidla pro aplikaci
---------------------------------------------------------*/

.hide-me-after-2s {
    -webkit-animation: hideAnimation 2s forwards;
    animation: hideAnimation 2s forwards;
}

.hide-me-after-5s {
    -webkit-animation: hideAnimation 5s forwards;
    animation: hideAnimation 5s forwards;
}

@keyframes hideAnimation {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes hideAnimation {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* rotace textu v zahlavi tabulky o 45 stupnu */
th.rotate {
    height: 100px;
    white-space: nowrap;
}

th.rotate>div {
    transform:
        rotate(315deg);
    width: 30px;
}

th.rotate>div>span {
    padding: 5px 10px;
}