.catalog-tile__wrapper {
    padding-top: 75px;
    padding-bottom: 28px;
}
.catalog-tile {
    position: relative;
    z-index: 5;
}
.catalog-tile__item {
    flex: 0 1 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 4px 8px;
    position: relative;
}
.catalog-tile__badge {
    position: absolute;
    top: 10px;
    right: 16px;
    max-height: 18px;
    width: auto;
    z-index: 1;
}
.catalog-tile__badge-blink {
    animation: blinkAnimation 0.66s infinite;
}
.catalog-tile__icon {
    max-width: 100%;
    height: 60px;
    transition: filter var(--animate);
    object-position: center center;
    object-fit: contain;
}
.catalog-tile__name {
    font-size: 11.2px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.catalog-tile__item:hover .catalog-tile__icon,
.catalog-tile__item_active .catalog-tile__icon {
    filter: brightness(0) invert(100);
}
.catalog-tile .swiper-button-prev {
    margin-right: 0;
    margin-top: -22px;
}
.catalog-tile .swiper-button-prev:before,
.catalog-tile .swiper-button-next:before {
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAxMiAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEgMUwxIDEwLjVMMTEgMjAiIHN0cm9rZT0id2hpdGUiLz48L3N2Zz4=");
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
}
.catalog-tile .swiper-button-next:before {
    transform: translate(-50%,-50%) scale(-1,1);
}
.catalog-tile .swiper-button-next {
    margin-left: 0;
    margin-top: -22px;
}

@media screen and (max-width: 767px) {
    .catalog-tile {
        padding-top: 62px;
        padding-bottom: 72px;
    }
    .catalog-tile:before,
    .catalog-tile:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translate(-50%,0);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .catalog-tile:before {
        top: 0;
        width: 232px;
        height: 47px;
        background-image: url("../images/bg/made-russia.svg");
    }
    .catalog-tile:after {
        bottom: 0;
        width: 139px;
        height: 48px;
        background-image: url("../images/bg/russian-sound.svg");
    }
    .catalog-tile__swiper-wrapper {
        transform: none !important;
        flex-wrap: wrap;
        gap: 12px;
    }
    .catalog-tile__slide {
        height: auto;
        flex: 1 1 30%;
        margin: 0 !important;
    }
    .catalog-tile__item {
        background: #121212;
        height: 100%;
        border-radius: 7px;
        padding: 20px 8px 15px;
    }
    .catalog-tile__item:hover,
    .catalog-tile__item_active {
        background: var(--color-primary);
    }
    .catalog-tile__icon {
        max-height: 45px;
    }
}
@media screen and (min-width: 768px) {
    .catalog-tile {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding-bottom: 0;
    }
    .catalog-tile__item {
        flex: 0 1 140px;
        padding: 4px 8px 10px;
        border: 1.5px solid transparent;
        border-radius: 4px;
        gap: 4px;
    }
    .catalog-tile__item:hover,
    .catalog-tile__item_active {
        border-color: var(--color-primary);
    }
    .catalog-tile__icon {
        height: 72px;
    }
    .catalog-tile__name {
        font-size: 12px;
        color: #BCBCBC;
    }
    .catalog-tile_main {
        margin-left: 80px;
    }
    .catalog-tile__wrapper {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 5;
        padding-top: 50px;
    }
    .catalog-tile__wrapper_relative {
        position: relative;
    }
}
@media screen and (min-width: 992px) {
    .catalog-tile__icon {
        height: 84px;
    }
    .catalog-tile__name {
        font-size: 15px;
    }
}

@keyframes blinkAnimation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}