/*best-sellers*/

.best-sellers-wrap {
    margin-bottom: 30px;
}

.best-sellers {
    overflow: hidden;
    height: auto;
    border-radius: 10px;
    background-color: #e1f5ff;
}

@media only screen and (min-device-width: 450px) {
    .best-sellers {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
        padding: 10px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
        padding: 10px;
    }
}

.best-sellers-item-box {
    overflow: hidden;
    height: auto;
    padding: 10px;
    font-size: 1em;
}

@media only screen and (min-device-width: 1024px) {
    .best-sellers-item-box {
        width: calc(20% - 20px);
        max-width: 200px;
        min-width: 130px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) {
    .best-sellers-item-box {
        width: calc(20% - 20px);
        max-width: 200px;
        min-width: 130px;
    }
}

@media only screen and (min-device-width: 450px) and (max-device-width: 767px) {
    .best-sellers-item-box {
        width: calc(25% - 20px);
        height: auto;
        max-width: 220px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-item-box {
        width: calc(50% - 20px);
        max-width: 200px;
        min-width: 120px;
    }
}


.best-sellers-item-box-content {
    height: 100%;
    box-sizing: border-box;
}

@media only screen and (min-device-width: 450px) {
    .best-sellers-item-box-content {
        padding: 0;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-item-box-content {
        padding: 0;
    }
}


.best-sellers-img {
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

@media only screen and (min-device-width: 450px) {
    .best-sellers-img {
        border: 1px solid #f1f1f1;
        border-radius: 10px;
    }

}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-img {
        border: 1px solid #f1f1f1;
        border-radius: 10px;
    }
}


@media only screen and (min-device-width: 450px) {
    .best-sellers-img img {
        width: 100%;
        height: auto;
        min-width: 100px;
    }

}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-img img {
        width: 100%;
        height: auto;
        min-width: 100px;
    }
}


.best-sellers-txt {
    width: 100%;
    overflow: hidden;
    margin: 10px 0;
    word-break: break-word;
}

@media only screen and (min-device-width: 450px) {
    .best-sellers-txt {
        font-size: 1em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-txt {
        font-size: 1em;
    }

    .best-sellers-txt a {
        color: #000;
    }
}

.best-sellers-txt strong {
    font-weight: unset;
}

.best-sellers-txt a {
    color:#000!important;
}

.best-sellers-price {
    color: #000;
    padding-top: 5px;
    font-weight: bold;
}

@media only screen and (min-device-width: 450px) {
    .best-sellers-price {
        font-size: 1em;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-price {
        font-size: 0.9em;
    }
}

.best-sellers-header-block {
    background-color: #ffffff;
    min-width: 240px;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin-top: 20px;
    column-gap: 10px;
}


@media only screen and (min-device-width: 450px) {
    .best-sellers-header-block {
        justify-content: flex-start;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 449px) {
    .best-sellers-header-block {
        justify-content: space-between;
    }
}

.best-sellers-header-block img {
    width: 20px;
    height: 20px;
}


.best-sellers-currency {
    font-weight: normal;
}