.bb-customer-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px
}

.bb-customer-card-list .bb-customer-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
    transition: all .3s ease
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-header {
    align-items: center;
    background-color: rgba(var(--tp-theme-primary-rgb),.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    padding: 12px 16px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-header .bb-customer-card-title {
    font-size: 16px;
    font-weight: 600
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-header .bb-customer-card-title .label {
    color: #666
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-header .bb-customer-card-title .value {
    color: var(--tp-theme-primary)
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-header .bb-customer-card-status .badge {
    border-radius: 4px;
    font-size: 12px;
    padding: 4px 8px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body {
    padding: 16px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-info .info-item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-info .info-item.bb-customer-card-info-address {
    min-height: 52px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-info .info-item .label {
    color: #666;
    font-weight: 500;
    min-width: 80px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-info .info-item .value {
    flex: 1;
    font-weight: 500;
    text-align: right
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-image {
    border-radius: 4px;
    height: 70px;
    margin-right: 16px;
    overflow: hidden;
    width: 70px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content {
    align-items: flex-start;
    display: flex
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details {
    flex: 1
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-name a {
    color: var(--tp-theme-primary);
    text-decoration: none
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-name a:hover {
    text-decoration: underline
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-description {
    color: #333;
    font-size: 14px;
    margin-top: 8px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-rating {
    align-items: center;
    display: flex;
    margin: 8px 0
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-body .bb-customer-card-content .bb-customer-card-details .bb-customer-card-rating .ecommerce-icon {
    color: #ffb800;
    margin-left: 4px
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-footer {
    border-top: 1px solid rgba(0,0,0,.05);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 12px 16px
}

@media(max-width: 576px) {
    .bb-customer-card-list .bb-customer-card .bb-customer-card-footer {
        flex-direction:column
    }

    .bb-customer-card-list .bb-customer-card .bb-customer-card-footer .btn {
        width: 100%
    }
}

.bb-customer-card-list .bb-customer-card .bb-customer-card-footer .btn {
    padding: 8px 16px
}

.bb-customer-card-list .bb-customer-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transform: translateY(-2px)
}

@media only screen and (max-width: 768px) {
    .bb-customer-page .table td,.bb-customer-page .table th,.bb-ecommerce-table td,.bb-ecommerce-table th {
        text-align:center;
        vertical-align: middle
    }

    .bb-customer-page .table td,.bb-ecommerce-table td {
        display: block;
        text-align: right;
        width: 100%
    }

    .bb-customer-page .table thead,.bb-ecommerce-table thead {
        display: none
    }

    .bb-customer-page .table td:before,.bb-ecommerce-table td:before {
        content: attr(data-title) " ";
        float: left;
        font-weight: 700;
        margin-right: 15px;
        text-transform: capitalize
    }
}

.customer-list-order .order-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px
}

.customer-list-order .order-cards .order-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    overflow: hidden;
    transition: all .3s ease
}

.customer-list-order .order-cards .order-card .order-card-header {
    align-items: center;
    background-color: rgba(var(--tp-theme-primary-rgb),.05);
    border-bottom: 1px solid rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    padding: 12px 16px
}

.customer-list-order .order-cards .order-card .order-card-header .order-number {
    font-size: 16px;
    font-weight: 600
}

.customer-list-order .order-cards .order-card .order-card-header .order-number .label {
    color: #666
}

.customer-list-order .order-cards .order-card .order-card-header .order-number .value {
    color: var(--tp-theme-primary)
}

.customer-list-order .order-cards .order-card .order-card-header .order-status .badge {
    border-radius: 4px;
    font-size: 12px;
    padding: 4px 8px
}

.customer-list-order .order-cards .order-card .order-card-body {
    padding: 16px
}

.customer-list-order .order-cards .order-card .order-card-body .order-info {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.customer-list-order .order-cards .order-card .order-card-body .order-info .info-item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

.customer-list-order .order-cards .order-card .order-card-body .order-info .info-item .label {
    color: #666;
    font-weight: 500;
    min-width: 80px
}

.customer-list-order .order-cards .order-card .order-card-body .order-info .info-item .value {
    flex: 1;
    font-weight: 500;
    text-align: right
}

.customer-list-order .order-cards .order-card .order-card-footer {
    border-top: 1px solid rgba(0,0,0,.05);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 12px 16px
}

@media(max-width: 576px) {
    .customer-list-order .order-cards .order-card .order-card-footer {
        flex-direction:column
    }

    .customer-list-order .order-cards .order-card .order-card-footer .btn {
        width: 100%
    }
}

.customer-list-order .order-cards .order-card .order-card-footer .btn {
    padding: 8px 16px
}

.customer-list-order .order-cards .order-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transform: translateY(-2px)
}

.bb-customer-page .table-responsive {
    border: none
}

.bb-customer-page .table-responsive .table {
    background: transparent;
    border: none
}

.bb-customer-page .table-responsive .table tbody tr {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    display: block;
    margin-bottom: 1.5rem;
    overflow: hidden
}

.bb-customer-page .table-responsive .table tbody tr:last-child {
    margin-bottom: 0
}

.bb-customer-page .table-responsive .table tbody tr td {
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top: none;
    display: flex;
    justify-content: space-between;
    padding: .75rem 1rem;
    text-align: right
}

.bb-customer-page .table-responsive .table tbody tr td:last-child {
    border-bottom: none
}

.bb-customer-page .table-responsive .table tbody tr td:before {
    color: #333;
    content: attr(data-title);
    font-weight: 600;
    padding-right: 1rem;
    text-align: left
}

.bb-customer-page .table-responsive .table tbody tr td.text-center,.bb-customer-page .table-responsive .table tbody tr td.text-end,.bb-customer-page .table-responsive .table tbody tr td.text-right {
    text-align: right!important
}

.bb-customer-page .table-responsive .table tbody tr td[data-title=Image] {
    justify-content: flex-start
}

.bb-customer-page .table-responsive .table tbody tr td[data-title=Image]:before {
    min-width: 80px
}

.bb-customer-page .table-responsive .table tbody tr td[data-title=Image] img {
    height: auto;
    max-width: 70px
}

.bb-customer-page .table-responsive .table tbody tr td[data-title=Actions] {
    justify-content: flex-end
}

.bb-customer-page .table-responsive .table tbody tr td[data-title=Actions] .btn {
    margin: .25rem
}

.bb-customer-page .customer-order-detail .table tbody tr td[data-title="#"],.bb-customer-page .customer-order-detail .table tbody tr td[data-title=Image] {
    justify-content: flex-start
}

.bb-customer-page .customer-order-detail .table tbody tr td[data-title=Product] {
    align-items: flex-start;
    flex-direction: column
}

.bb-customer-page .customer-order-detail .table tbody tr td[data-title=Product]:before {
    align-self: flex-start;
    margin-bottom: .5rem
}

.bb-customer-page .customer-order-detail .table tbody tr td[data-title=Product] a {
    font-weight: 600
}

.bb-customer-page .customer-order-detail .table tbody tr td[data-title=Total] {
    color: var(--primary-color);
    font-weight: 700
}

.bb-customer-page .table-striped.table-bordered {
    border: none
}

.bb-customer-page .table-striped.table-bordered tbody tr th[scope=row] {
    display: flex;
    font-weight: 400;
    justify-content: flex-start;
    text-align: left
}

.bb-customer-page .table-striped.table-bordered tbody tr th[scope=row]:before {
    color: #333;
    content: attr(data-title);
    font-weight: 600;
    min-width: 80px;
    padding-right: 1rem;
    text-align: left
}

.bb-order-header .bb-order-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.bb-order-header .bb-order-actions .btn {
    align-items: center;
    border-radius: .375rem;
    display: inline-flex;
    font-weight: 500;
    gap: .5rem;
    padding: .5rem 1rem;
    transition: all .2s ease
}

.bb-order-header .bb-order-actions .btn svg {
    height: 1.25rem;
    width: 1.25rem
}

.bb-order-header .bb-order-actions .btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.bb-order-detail-wrapper .card {
    border: none;
    border-radius: .5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    overflow: hidden;
    transition: all .3s ease
}

.bb-order-detail-wrapper .card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.08)
}

.bb-order-detail-wrapper .card .card-body {
    padding: 1.5rem
}

.bb-order-detail-wrapper .bb-section-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    position: relative
}

.bb-order-detail-wrapper .bb-section-title:after {
    background-color: var(--primary-color);
    border-radius: 3px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 50px
}

.bb-order-detail-wrapper .bb-order-info-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.bb-order-detail-wrapper .bb-order-info-item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-info-item {
        border-bottom:1px dashed rgba(0,0,0,.1);
        flex-direction: column;
        gap: .25rem;
        padding-bottom: .5rem
    }

    .bb-order-detail-wrapper .bb-order-info-item:last-child {
        border-bottom: none
    }
}

.bb-order-detail-wrapper .bb-order-info-item .label {
    color: #666;
    font-weight: 500;
    min-width: 140px
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-info-item .label {
        color:#333;
        min-width: auto
    }
}

.bb-order-detail-wrapper .bb-order-info-item .value {
    flex: 1;
    font-weight: 500;
    text-align: right;
    word-break: break-word
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-info-item .value {
        text-align:left
    }
}

.bb-order-detail-wrapper .bb-order-product-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.bb-order-detail-wrapper .bb-order-product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: .5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    overflow: hidden;
    transition: all .3s ease
}

.bb-order-detail-wrapper .bb-order-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.bb-order-detail-wrapper .bb-order-product-card-content {
    display: flex;
    gap: 1rem;
    padding: 1rem
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-product-card-content {
        flex-direction:column
    }
}

.bb-order-detail-wrapper .bb-order-product-card-image {
    flex: 0 0 100px
}

.bb-order-detail-wrapper .bb-order-product-card-image img {
    border: 1px solid #eee;
    border-radius: .375rem;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100px
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-product-card-image {
        flex:0 0 auto;
        margin-bottom: .5rem
    }

    .bb-order-detail-wrapper .bb-order-product-card-image img {
        height: 80px;
        width: 80px
    }
}

.bb-order-detail-wrapper .bb-order-product-card-details {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .5rem
}

.bb-order-detail-wrapper .bb-order-product-card-header {
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-name a {
    color: #333;
    text-decoration: none
}

.bb-order-detail-wrapper .bb-order-product-card-name a:hover {
    color: var(--primary-color)
}

.bb-order-detail-wrapper .bb-order-product-card-sku {
    color: #666;
    font-size: .875rem
}

.bb-order-detail-wrapper .bb-order-product-card-meta {
    color: #666;
    font-size: .875rem;
    margin-bottom: .5rem
}

.bb-order-detail-wrapper .bb-order-product-card-attributes {
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-vendor {
    margin-top: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-vendor a {
    color: var(--primary-color);
    text-decoration: none
}

.bb-order-detail-wrapper .bb-order-product-card-vendor a:hover {
    text-decoration: underline
}

.bb-order-detail-wrapper .bb-order-product-card-info {
    margin-left: auto;
    min-width: 150px
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-product-card-info {
        border-top:1px dashed #eee;
        margin-left: 0;
        margin-top: .5rem;
        padding-top: .5rem
    }
}

.bb-order-detail-wrapper .bb-order-product-card-price {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-price-item {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.bb-order-detail-wrapper .bb-order-product-card-price-item .label {
    color: #666;
    font-weight: 500
}

.bb-order-detail-wrapper .bb-order-product-card-price-item .value {
    font-weight: 500;
    text-align: right
}

.bb-order-detail-wrapper .bb-order-product-card-price-item.total {
    border-top: 1px solid #eee;
    font-weight: 600;
    margin-top: .25rem;
    padding-top: .25rem
}

.bb-order-detail-wrapper .bb-order-product-card-price-item.total .label {
    color: #333
}

.bb-order-detail-wrapper .bb-order-product-card-price-item.total .value {
    color: var(--primary-color)
}

.bb-order-detail-wrapper .bb-product-thumbnail {
    border: 1px solid #eee;
    border-radius: .375rem;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 70px
}

.bb-order-detail-wrapper .bb-product-info .bb-product-name {
    font-weight: 600;
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-product-info .bb-product-name a {
    color: #333;
    text-decoration: none
}

.bb-order-detail-wrapper .bb-product-info .bb-product-name a:hover {
    color: var(--primary-color)
}

.bb-order-detail-wrapper .bb-product-info .bb-product-sku {
    font-size: .875rem;
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-product-info .bb-product-attributes {
    color: #666;
    font-size: .875rem;
    margin-bottom: .25rem
}

.bb-order-detail-wrapper .bb-product-info .bb-product-vendor {
    font-size: .875rem;
    margin-top: .5rem
}

.bb-order-detail-wrapper .bb-order-products-table {
    border: none
}

.bb-order-detail-wrapper .bb-order-products-table thead {
    background-color: #f8f9fa
}

.bb-order-detail-wrapper .bb-order-products-table thead th {
    border-bottom: 2px solid #eee;
    color: #333;
    font-weight: 600;
    padding: .75rem 1rem
}

.bb-order-detail-wrapper .bb-order-products-table tbody tr:hover {
    background-color: rgba(var(--primary-rgb),.03)
}

.bb-order-detail-wrapper .bb-order-products-table tbody tr td {
    border-bottom: 1px solid #eee;
    padding: 1rem;
    vertical-align: middle
}

@media(max-width: 767px) {
    .bb-order-detail-wrapper .bb-order-products-table thead {
        display:none
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr {
        border: 1px solid #eee;
        border-radius: .375rem;
        display: block;
        margin-bottom: 1rem;
        overflow: hidden
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td {
        align-items: center;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        padding: .75rem 1rem
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td:before {
        color: #333;
        content: attr(data-title);
        font-weight: 600;
        margin-right: 1rem
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td[data-title=Product] {
        align-items: flex-start;
        flex-direction: column
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td[data-title=Product]:before {
        align-self: flex-start;
        margin-bottom: .5rem
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td[data-title=Image] {
        justify-content: flex-start
    }

    .bb-order-detail-wrapper .bb-order-products-table tbody tr td[data-title=Image]:before {
        min-width: 80px
    }
}

.bb-order-detail-wrapper .bb-order-totals {
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
    padding-top: 1rem
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: .5rem 0
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item:not(:last-child) {
    border-bottom: 1px dashed rgba(0,0,0,.1)
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item .label {
    color: #666;
    font-weight: 500
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item .value {
    font-weight: 500;
    text-align: right
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item.grand-total {
    border-top: 2px solid #eee;
    font-size: 1.125rem;
    margin-top: .5rem;
    padding-top: .75rem
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item.grand-total .label {
    color: #333;
    font-weight: 600
}

.bb-order-detail-wrapper .bb-order-totals .bb-order-total-item.grand-total .value {
    color: var(--primary-color);
    font-weight: 700
}

.bb-payment-proof-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: .5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all .3s ease
}

.bb-payment-proof-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.bb-payment-proof-card-content {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem
}

@media(max-width: 767px) {
    .bb-payment-proof-card-content {
        flex-direction:column;
        gap: 1rem
    }
}

.bb-payment-proof-card-icon {
    align-items: center;
    background-color: rgba(var(--primary-rgb),.1);
    border-radius: 50%;
    display: flex;
    flex: 0 0 60px;
    height: 60px;
    justify-content: center
}

.bb-payment-proof-card-icon .payment-icon {
    color: var(--primary-color);
    height: 30px;
    width: 30px
}

@media(max-width: 767px) {
    .bb-payment-proof-card-icon {
        margin:0 auto
    }
}

.bb-payment-proof-card-details {
    flex: 1
}

.bb-payment-proof-card-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative
}

@media(max-width: 767px) {
    .bb-payment-proof-card-title {
        text-align:center
    }
}

.bb-payment-proof-card-content-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.bb-payment-proof-card-message {
    color: #555
}

.bb-payment-proof-card-message p {
    margin-bottom: .5rem
}

.bb-payment-proof-card-file {
    align-items: center;
    background-color: rgba(var(--primary-rgb),.05);
    border-radius: .375rem;
    display: flex;
    gap: .5rem;
    padding: .75rem
}

.bb-payment-proof-card-file .label {
    color: #666;
    font-weight: 500
}

.bb-payment-proof-card-file .value {
    align-items: center;
    color: var(--primary-color);
    display: inline-flex;
    font-weight: 500;
    gap: .25rem;
    text-decoration: none
}

.bb-payment-proof-card-file .value:hover {
    text-decoration: underline
}

.bb-payment-proof-card-file .value svg {
    height: 18px;
    width: 18px
}

.bb-payment-proof-card-upload .input-group .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.bb-payment-proof-card-upload .input-group .btn {
    align-items: center;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: inline-flex;
    gap: .25rem
}

.dashboard-address .bb-customer-card {
    height: 100%
}

.dashboard-address .bb-customer-card .bb-customer-card-info {
    text-align: left
}

.dashboard-address .bb-customer-card .bb-customer-card-info .info-item {
    align-items: flex-start
}

.dashboard-address .bb-customer-card .bb-customer-card-info .info-item .label {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 30px
}

.dashboard-address .bb-customer-card .bb-customer-card-info .info-item .value {
    text-align: left!important;
    word-break: break-word
}

.dashboard-address .bb-customer-card .bb-customer-card-footer {
    justify-content: flex-start
}

.dashboard-address .bb-customer-card .bb-customer-card-footer .btn-xs {
    border-radius: .2rem;
    font-size: .75rem;
    line-height: 1.5;
    padding: .25rem .5rem
}

.dashboard-address .bb-customer-card .bb-customer-card-footer .btn-xs .ti {
    margin: 0
}

.bb-product-video {
    position: relative
}

.bb-product-video .bb-button-trigger-play-video {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 50%;
    left: 50%;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all .3s ease;
    z-index: 2
}

.bb-product-video .bb-button-trigger-play-video:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    touch-action: manipulation
}

.bb-product-video.video-playing .bb-button-trigger-play-video {
    display: none
}

.bb-empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 1rem;
    text-align: center
}

@media(min-width: 768px) {
    .bb-empty {
        padding:3rem
    }
}

.bb-empty .bb-empty-img {
    line-height: 1;
    margin: 0 0 2rem
}

.bb-empty .bb-empty-img svg {
    width: 100%
}

.bb-empty .bb-empty-header {
    color: var(--bb-secondary);
    font-size: 4rem;
    font-weight: var(--bb-font-weight-light);
    line-height: 1;
    margin: 0 0 1rem
}

.bb-empty .bb-empty-title {
    font-size: 1.5rem;
    font-weight: var(--bb-font-weight-light);
    line-height: 1.5
}

.bb-empty .bb-empty-subtitle,.bb-empty .bb-empty-title {
    margin: 0 0 .5rem
}

.bb-empty .bb-empty-action {
    margin-top: 1.5rem
}

.bb-quick-search-highlight {
    background-color: #fbbd05;
    border-radius: 3px;
    font-weight: 700;
    padding: 2px 4px
}

.bb-block__header {
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 5px
}

.bb-block__header .h1 {
    font-size: 32px
}

.bb-block__content {
    margin-bottom: 40px
}
.affiliate-commission-info {
    margin-bottom: 20px;
}
.affiliate-card-header .affiliate-card-status{
    background: var(--primary-color);
    border-radius: 10px;
}
.affiliate-card-body .form-control, .affiliate-card-body .form-control[type=password], .affiliate-card-body .form-control[type=text], .affiliate-card-body .form-select {
    border-radius: 5px;
    height: 45px;
}
.bb-customer-card-body .form-control, .bb-customer-card-body .form-control[type=password], .bb-customer-card-body .form-control[type=text], .form-select {
    height: 45px;
    border-radius: 5px;
}
.bb-customer-card-body .stats-card {
    padding: 0.5rem !important;
}
.stats-info h6 {
    margin-bottom: 8px !important;
}
.affiliate-dashboard .btn{
    padding: 9px;
    height: 45px;
}
.bb-customer-card-name .btn-sm{
    background-color: var(--primary-color);
}
.bb-customer-card-body .stats-card .stats-info p {
    margin-bottom: 0;
}
.short-link-item .short-link-stats {
    display: block !important;
}
.short-link-url-section .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    background-color: var(--primary-color);
    height: 45px;
    padding: 9px;
}
.balance-info h6 {
    margin-bottom: 5px !important;
}
#dashboard-create-short-link-form .product-select-container .select2-container span.selection{
    width: 100%  !important;;
}
#dashboard-create-short-link-form .product-select-container .select2-container--default .select2-selection--single{
    height: 45px  !important;;
}
#dashboard-create-short-link-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #1f1e1e !important;
    line-height: 30px !important;
}
#dashboard-create-short-link-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px  !important;;
}
#dashboard-create-short-link-form .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    height: 45px;
    border-radius: 5px;
}
/*  */
#create-short-link-form .product-select-container .select2-container span.selection{
    width: 100%  !important;;
}
#create-short-link-form .product-select-container .select2-container--default .select2-selection--single{
    height: 45px  !important;;
}
#create-short-link-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #1f1e1e !important;
    line-height: 32px !important;
}
#create-short-link-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px  !important;;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    height: 45px !important;
    border-radius: 5px !important;
}
.short-link-list .short-link-item .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    height: 45px;
}
.short-link-list .short-link-item .input-group .btn.btn-primary svg{
    margin-top: -3px;
}
.affiliate-commission-info .affiliate-actions .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
    background: rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important;
}
.commission-summary .summary-card .summary-content .summary-label {
    line-height: 20px;
}