.mr-20px {
    margin-right: 20px;
}

#actuality {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 400px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    z-index: 10000;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: rgba(50, 50, 50, 0.9);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    display: none;
}

#actuality .close-btn {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

#actuality .close-btn svg {
    width: 18px;
    height: 18px;
}

#actuality h4 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

#actuality .kelte {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.osszeallitas a,
.szolgaltatasok .szolgaltatas-kepek a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    border: 3px solid transparent;
    outline: 3px solid #c4a761;
}

.osszeallitas img,
.szolgaltatasok .szolgaltatas-kepek img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.ugyelettel h2 {
    font-size: 1.2em;
}

.image-list-wrapper {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.image-list-wrapper .image-wrapper {
    display: block;
    box-sizing: border-box;
}

.image-list-wrapper .image-wrapper img {
    padding: 0.5rem 0;
}

.tooltip-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.tooltip-wrapper .tooltip-item {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: white;
    border: 2px solid #c9ad63;
    padding: 5px 7px;
}

.tooltip-wrapper:hover .tooltip-item {
    display: inline;
}

.galeria-csoportok {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria-csoportok li {
    margin: 0.5rem 0.8rem;
}

.galeria-csoportok li a {
    font-weight: 500;
    font-size: 1.1rem;
}

@media screen and (max-width: 991px) {
    .image-list-wrapper {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media screen and (max-width: 767px) {
    .image-list-wrapper {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

@media screen and (max-width: 660px) {
    #actuality .kelte {
        flex-direction: column;
        justify-content: left;
    }
}