/*.dev-wrapper {
    max-width: 1024px;
    margin: auto;
    display: flex;
    flex-direction: column;
}





.wa-newsellers-card {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: Rubik,sans-serif;
    padding: 20px 10px;
}

.wa-newsellers-card:not(:last-child) {
    border-bottom: 2px solid #f8f8f8;
}

.wa-newsellers-card a {
    text-decoration: none !important;
}

.wa-newsellers-card__img {
    position: relative;
}

.wa-newsellers-card__img img {
    max-height: 75px;
    width: auto;
    min-width: fit-content;
}

.wa-newsellers-card-body {
    margin-left: 10px;
    margin-right: 50px;
}

.wa-newsellers-card-body__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.wa-newsellers-card-footer {
    margin-left: auto;
    min-width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.wa-newsellers-card__heading {
    color: #2B2D59;
    font-weight: 700;
    font-size: 15px;
    margin-right: 50px;
}

.wa-newsellers-card__desc {
    color: #2B2D59;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.1;
    margin-top: 5px;
}

.wa-newsellers-card-labels {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.wa-newsellers-card__label {
    font-size: 12px;
}

.wa-newsellers-card__label--instock {
    color: #21A73F;
}

.wa-newsellers-card__label--outofstock {
    color: #B60204;
}

.wa-newsellers-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.wa-newsellers-card__price--ins {
    font-weight: 600;
    color: #2B2D59;
    font-size: 16px;
}

.wa-newsellers-card__price--del {
    font-size: 11.2px;
    font-weight: 400;
    color: #2B2D59;
    text-decoration: line-through;
}

.wa-newsellers-card__cta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 7.5px 12.5px;
    transition: 200ms;
    border-radius: 5px;
}

.wa-newsellers-card__cta-icon {
    margin-right: 10px;
    max-height: 15px;
    width: auto;
}

.wa-newsellers-card__cta-text {
    font-size: 15px;
    font-weight: 500;
}

.wa-newsellers-card__cta--info,
.wa-newsellers-card__cta--addtocart {
    border: 1px solid #f98341;
}

.wa-newsellers-card__cta--info:hover,
.wa-newsellers-card__cta--addtocart:hover {
    background: #f98341;
}

.wa-newsellers-card__cta--info:hover .wa-newsellers-card__cta-text,
.wa-newsellers-card__cta--addtocart:hover .wa-newsellers-card__cta-text {
    color: #FFFFFF;
}

.wa-newsellers-card__cta--info:hover .wa-newsellers-card__cta-icon,
.wa-newsellers-card__cta--addtocart:hover .wa-newsellers-card__cta-icon {
    filter: brightness(20.5);
}

.wa-newsellers-card__cta--info .wa-newsellers-card__cta-text,
.wa-newsellers-card__cta--addtocart .wa-newsellers-card__cta-text {
    color: #f98341;
}

.wa-newsellers-card-headlabels {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wa-newsellers-card__headlabel {
    padding: 3px 4.5px;
    width: fit-content;
    font-size: 15px;
    border-radius: 2.5px;
    font-weight: 600;
}

.wa-newsellers-card__headlabel--sale {
    background: #b60204;
    color: #FFF;
}

@media(max-width:1023px) {

    body .wa-newsellers-card__desc {
        display: none;
    }

    body .wa-newsellers-card-body__top {
        flex-direction: column;
    }

    body .wa-newsellers-card-labels {
        margin-top: 5px;
    }
}

@media(min-width:768px) {
    body .wa-newsellers-card__price--mobile {
        display: none;
    }
}

@media(max-width:767px) {
    body .wa-newsellers-card__price--desktop {
        display: none;
    }

    body .wa-newsellers-card__img img {
        max-height: 40px;
    }

    body .wa-newsellers-card__headlabel {
        font-size: 12px;
        padding: 2px;
    }

    body .wa-newsellers-card__heading {
        font-size: 12px;
        margin-right: 0;
    }

    body .wa-newsellers-card-body {
        margin-right: 20px;
    }

    body .wa-newsellers-card__price--mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        margin: 0;
    }

    body .wa-newsellers-card__price--ins {
        margin: 0;
        font-size: 14.4px;
    }

    body .wa-newsellers-card__price--del {
        font-size: 11.2px;
        margin-right: 1ch;
    }
}

@media(max-width:479px) {
    body .wa-newsellers-card {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    body .wa-newsellers-card__cta {
        padding: 7px;
    }

    body .wa-newsellers-card__cta-text {
        display: none;
    }

    body .wa-newsellers-card__cta-icon {
        margin: 0;
        max-height: 22px;
        height: 22px;
    }
}*/