h2 {
    display: block;
    padding: 0 0 0 10px;
    margin-top: 0.5em;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    line-height: normal;
}

table tr+tr td {
    border-top: 1px solid #EAEAEA;
}

/* minden cella */
table td {
    padding: 0.5em 0;
}

/* az első oszlop */
table td:first-child {
    text-align: right;
    padding-right: 0.75em;
    width: 33%;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

/* telephelyek listája <DIV> */
.helyek {
    padding: 0 0em;
}

/* helycímek */
.helyek > div {
    margin: 1em 0 0 0;
    padding: 0 10px;
    background: #EFEFEF;
    border: 2px solid white;
    outline: 1px solid #DCDCDC;
    font-weight: bold;
}

/* telephely jellege szöveg */
.helyek > div span {
    font-weight: normal;
    padding-left: 5px;
    font-size: 0.8em;
    color: black;
}

.perc {
    vertical-align: super;
    text-decoration: underline;
    font-size: 0.8em;
}

.rendkivuli { /* TD */
    text-align: center !important;
    overflow: visible !important;
    padding: 0 !important;
}
.rendkivuli > div {
    min-width: 75%;
    display: inline-block;
    position: relative;
    padding: 1em 2em;
    margin: 1em;
    border: 2px solid #755945;
    border-radius: 4px;
    background: #f1ede4;
    color: black;
    text-align: left;
}

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

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

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

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