
.shippingmethods{
    display: flex;
    gap: 20px;
    justify-content: center;
    overflow-x: scroll;
    width: 100%;
    margin-bottom: 20px;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.shippingmethods::-webkit-scrollbar {
    display: none;  /* Older Safari and Chromium */
}
@media screen and (max-width: 452px) {
    .shippingmethods {
        justify-content: start;
        gap: 5px;
    }
}
.shippingmethods a {
    border-radius: 50px;
    padding: 10px 20px;
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    line-height: 20px;
    white-space: nowrap;
    box-sizing: border-box;
}
.shippingmethods a:hover,
.shippingmethods a.active{
    background-color: #333;
    color: #fff;
}
.removefilter{
    margin-left: 12px;
    font-weight: bold;
}
