.slotsWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.slotCategories {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 15px;
}

.categoriesList {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 5px;
    gap: 40px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.categoriesList::-webkit-scrollbar {
    height: .5em;
}

.categoriesList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.categoriesList::-webkit-scrollbar-thumb {
    background-color: var(--color-scrollbar-category-list);
}


.categoryItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--body-slots-category-text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s, color 0.2s;
    white-space: nowrap;
}

.categoryItem:hover,
.categoryItem.active {
    color: var(--body-slots-category-text-hover);
}

.categoryBtn {
    width: 19px;
    height: 19px;
    margin: 0px 15px;
}

.slotsContent {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px 15px;
}
.slotBlock {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 167px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.slotImg {
    display: flex;
	aspect-ratio: 1 / 0.65;
	background-color: #215584;
}
.slotImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slotInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7px;
    width: 100%;
    padding: 10px 14px;
    background-color: var(--body-slots-bg-slots);
    font-size: 11px;
    font-weight: 500;
    color: var(--body-slots-description-slots);
    flex: 1;
}
.slotTitle {
    color: var(--body-slots-title-slots);
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.slotFooter {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 7px;
}

.slotFooter {
    font-size: 10px;
}

.slotWarning {
    padding-left: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.slotPagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.page-btn,
.dots {
    color: var(--body-slots-pagination);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.page-btn img {
    height: 8px;
    width: 5px;
}

.page-btn:hover:not(.active):not(:disabled) {
    color: var(--body-slots-pagination-active);
}

.page-btn.active {
    color: var(--body-slots-pagination-active);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

@media (max-width: 768px) {
    .slotsContent {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: stretch;
    }
}

@media (max-width: 380px) {
    .slotBlock {
        width: calc(100% - 180px);
    }
}

@container mainContent (min-width: 910px) {
    .slotBlock {
        max-width: 199px;
    }

    .slotInfo {
        font-size: 13px;
    }

    .slotFooter {
        font-size: 11px;
    }

    .categoryItem {
        font-size: 16px;
    }
    .categoryItem img {
        width: 16px;
        height: 16px;
    }
}

@container mainContent (min-width: 1366px) {
    .slotBlock {
        max-width: 260px;
    }

    .slotInfo {
        font-size: 17px;
    }

    .slotFooter {
        font-size: 15px;
    }

    .categoryItem {
        font-size: 20px;
    }
    .categoryItem img {
        width: 22px;
        height: 22px;
    }
}