.sub-header .buttons-wrapper {
    overflow-x: scroll;
    display: flex;
    gap: .5rem;
    direction: rtl;
}

.sub-header .buttons-wrapper {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sub-header .buttons-wrapper::-webkit-scrollbar {
    display: none;
}
.sub-header {
    margin-block: .5rem;
    background-color: #191a1dc2;
    width: 100%;
    margin-inline: auto;
    padding: 1.2rem 1rem;
    border-radius: 1rem;
}
.btn {
    border-radius: 9rem;
    background-color: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: .4rem 1rem;
    background-color: var(--cl-primary);
    border: 1px solid var(--cl-primary);
    color: #292e37;
}

.btn a {
    text-decoration: none;
    color: var(--cl-bg-primary-darken);
    font-weight: 500;
    display: inline-block;
    font-family: "Shabnam";
}

.btn.active {
    background-color: #292e37;
    border: 1px solid #292e37;
    color: var(--cl-primary);

}

.btn.active a {
    color: var(--cl-primary);
}
