#best-sellers {
    
}
#seller-btn b {
	width: 140px;
    font-size: 25px;
    font-weight: 600;
    margin-right: 10px;
}
.group-panel.active {
    display: flex !important;
}
.group-panel {
    display: none !important;
}
#best-seller-btn-wrapper {
	width: calc(100% - 150px);
  display: flex;
  justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}
#seller-btn button {
    padding: 6px 10px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 15px;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
    border: .5px solid var(--border-gray);
    transition: all .3s ease-in;
	cursor: pointer;
}

#seller-btn button:hover,
#seller-btn button.active {
    color: var(--blue);
    border-color: var(--blue);
}

#sellers-nav {
    border-bottom: .5px solid var(--border-gray);
    padding: 12px 0;
}
#sellers-nav .view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

.seller-item {
    width: 49%;
    height: 427px;
    border-radius: 15px;
    position: relative;
}
.seller-item::before {
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0,0,0,.3);
    position: absolute;
    top: 0;left: 0;
    z-index: 1;
    border-radius: 15px;
}
.seller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;left: 0;
    z-index: -1;
    border-radius: 15px;
}

.seller-item:nth-child(even) .seller-item-content {
    text-align: right;
    right: 0;
}

.seller-item-content {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    padding:0 20px;
}

.seller-item-content a,
.seller-item-content h3 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
}

.seller-item-content p {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.seller-item-content > div {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    border-top: .5px solid var(--white);
    padding-top: 6px;
    margin-top: 6px;
}

.seller-item:nth-child(even) .seller-item-content > div {
    text-align: right;
    justify-content: end !important;
}



.seller-item-content > div small {
    font-size: 13px;
    font-weight: 600;
    color: var(--white)
}

.view-all {
	justify-content: end;
}

@media only screen and ( max-width: 767px ) {
    .seller-item .seller-item-content,
    .seller-item .seller-item-content > div {
        text-align: left !important;
    }
}
@media only screen and ( max-width: 480px ) {
	#best-seller-btn-wrapper {
		width: 100% !important;
		margin-top: 10px;
	}
	#best-seller-btn-wrapper button:first-child {
		margin-left: 0 !important;
	}
	.view-all {
		justify-content: start;
	}
}