.alphalist {
    margin: 0;
    counter-reset: list;
}
.alphalist > li {
    list-style: none;
    position: relative;
}
.alphalist > li:before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    position: absolute;
    left: -1.4em;
}

.forras {
    font-size: 70%;
    text-align: right;
    line-height: 1.5em;
}

.rendkivuli { /* DIV */
    text-align: center !important;
    position: relative;
}
.rendkivuli > div {
    position: relative;
    padding: 1em;
    margin: 1em;
    border: 2px solid #755945;
    background: #f1ede4;
    color: black;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.rendkivuli::after { /* warning jel */
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0px;
    top: -16px;
    background: transparent url('../imgs/warning.png') no-repeat center center;
    animation: pulse 1s ease infinite;
}