/* OFFERWALL TRANSACTIONS */

.offerwall-statistics {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-bottom: 0;
    margin-top: 10px;
    gap: 10px;
    user-select: none;
}

/* Styling for the custom scrollbar */
.offerwall-statistics::-webkit-scrollbar {
    width: 1px;
    /* Set the width of the scrollbar */
    height: 1px;
    /* Set the width of the scrollbar */
}

.offerwall-statistics::-webkit-scrollbar-track {
    background: none;
    /* Background color of the track */
}

.offerwall-statistics::-webkit-scrollbar-thumb {
    background: none;
    /* Color of the scrollbar thumb */
    height: 1px;
}

.offerwall-statistics::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color of the scrollbar thumb on hover */
}

.offerwall-statistics .offerwall-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #0068B2;
    border-radius: 8px;
    min-width: 200px;
    padding: 4px 6px;
}

.offerwall-statistics .offerwall-stats .left-side {
    display: flex;
    align-items: center;
}

.offerwall-statistics .offerwall-stats .left-side .offer-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 1.5;
    justify-content: center;
    margin-left: 3px
}

.offerwall-statistics .offerwall-stats .left-side .offer-content .offerwall-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.offerwall-statistics .offerwall-stats .left-side .offer-content .username {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.offerwall-statistics .offerwall-stats .image {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
}

.offerwall-statistics .offerwall-stats .image .letter {
    display: inline-block;
    font-weight: bold;
    background: #0068B2;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.offerwall-statistics .offerwall-stats .completed-points {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerwall-statistics .offerwall-stats .completed-points .points {
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(180deg, #0068B2 -1.75%, #EEB820);
    color: #000;
    font-size: 12px;
    padding: 0 5px;
    border-radius: 5px;
}