.gd-ebay__categories {
    background-color: #FFC624;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 75px 60px;
    margin-top: 120px;
}


.gd-ebay__cateogories-headline {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 25px 0;
}


.gd-ebay__categories-left {
    width: 340px;
}


.gd-ebay__categories-right {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 25px;
    white-space: nowrap;
}


.gd-ebay__categories-right::-webkit-scrollbar-thumb , .gd-ebay__categories-right::-webkit-scrollbar-thumb , .gd-ebay__categories-right::-webkit-scrollbar-thumb {
    background: #231F20;
    border-radius: 5px;
    height: 8px;
}

.gd-ebay__categories-right::-webkit-scrollbar{
    border-radius: 0px;
    height: 8px;
    background-color: #fff;
}


.gd-ebay__categories-single {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
}

.gd-ebay__categories-single:hover .gd-ebay__categories-img   { 
    background-color: #231F20;
}


.gd-ebay__categories-img {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 144px;
    width: 144px;
    border-radius: 50%;
}

.gd-ebay__categories-img img { 
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 150px;
}


.gd-ebay__categories-title {
    color: #231F20;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 25px;
}



@media (max-width: 1024px) {
.gd-ebay__categories {
    margin-top: 80px;
    padding: 30px 15px;
    display: block;
}

.gd-ebay__categories-left {
    margin-bottom: 30px;
    width: 100%;
}

.gd-ebay__cateogories-headline {
    font-size: 20px;
}

}