.categories {
    margin-top: 51px;
    margin-bottom: 20px;
}

.categories__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.categories__card a {
    /* background-color: white; */
    /* padding: 16px; */
    /* border-radius: 12px; */
    display: flex;
    /* margin-right: 8px; */
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.categories__card img {
    margin-right: 8px;
    border-radius: 10px;
}

.categories__card p {
    margin: 0;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: rgba(0, 49, 60, 1);
}

.categories__slider {
    display: flex;
    align-items: center;
    width: calc(100% - 16px);
    overflow: auto;
    position: absolute;
    padding: 0px 0px 44px 16px;
    bottom: -68px;
    left: 0px;
}

@media (max-width: 480px) {
    .categories__slider {
      width: 100% !important;
    }
  }

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.categories__slider .categories__card a {
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: calc(100% - 25px);
}

.categories__slider .categories__card img {
    margin-right: 8px;
    height: 100% !important;
}

