
/* Категории на Главной */

.categories-main {
	margin-bottom: 69px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: min-content;
    gap: 20px;
}

.categories-main__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 19px 7px;

	border: 1px solid rgba(204, 204, 204, 0.3);
}

.categories-main__link:hover {
	cursor: pointer;

	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}

.categories-main__link:hover .shine::before {
    -webkit-animation: shine .5s;
    animation: shine .5s;
    opacity: 1;
}

.categories-main__link:hover .categories-main__caption {
	color: #009fbf;
}

.categories-main__img {
	margin-bottom: 10px;
	width: 68px;
	max-width: 100%;
}

.categories-main__img img {
	display: block;
	width: 100%;
}

.categories-main__caption {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #000000;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.categories-main {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.categories-main {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.categories-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.categories-main__caption {
		font-size: 14px;
	}
}

.kerama-blank-filters {
	position: relative;
    width: 100%;
    height: 100%;
    background-color: #02d5ff;
}

.kerama-blank-filters {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #02d5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kerama-blank-filters-content {
    color: white;
    line-height: 1.4;
}

.kerama-blank-filters-content .text {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.kerama-blank-filters-content .arrow {
    position: relative;
    width: 60px;
    height: 1px;
    background-color: white;
	margin: 0 auto;
	margin-top: 10px;
}

.kerama-blank-filters-content .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    transform: translateY(-50%) rotate(-45deg);
}