/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:07:05 */
.content-row {
    display: none;
}

.content-row.active {
    display: flex;
}

.filtr-bubliny {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F5F5F5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
	justify-content: center;
}

/* ikona */
.bubble img {
    height: 55px;
}

/* text */
.bubble span {
    font-size: 18px;
    font-weight: 600;
	color: #161616;
}

/* zelená linka dole */
.bubble.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #7EC11F;
}

/* responsive */
@media (max-width: 980px) {
    .filtr-bubliny {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
  .bubble{
flex-direction: column;
	  gap: 10px;
	}
	.bubble img {
    height: 50px;
	}
	.bubble span {
		font-size: 1rem;
	}
}