


.recentview-wrap {

}
.recentview-list {
    border-top: 2px solid var(--color-main);
}
.recentview-item {
    position: relative;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    background: #fff;

}
.recentview-btnDelete {
    position: absolute;
    top: 20px;
    right: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    font-size: 1px;
    line-height: 0;
    color: transparent;
    white-space: nowrap;
}
.recentview-btnDelete:before {
    content: "";
    position: absolute;
    top: 4px;
    right: 14px;
    width: 1px;
    height: 21px;
    background: #b5b5b5;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.recentview-btnDelete:after {
    content: "";
    position: absolute;
    top: 14px;
    right: 4px;
    width: 21px;
    height: 1px;
    background: #b5b5b5;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.recentview-prdbox {
    position: relative;
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
}
.recentview-thumbnail {
    overflow: hidden;
    margin: 0 15px 0 0;
    box-sizing: border-box;

    width: 90px;
    height: 90px;
    border: 0;
}
@media (min-width:1060px) {
    .recentview-thumbnail {
        width: 120px;
        height: 120px;
    }
}
.recentview-thumbnail img {
    width: 100%;
}
.recentview-info {
    width: calc(100% - 135px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width:1060px) {
    .recentview-info {
        flex: 1;
    }
}
.recentview-description {
    flex: 1;
    padding-right: 20px;
}
@media (min-width:1060px) {
    .recentview-description {
        margin: 0 250px 0 0;
    }
}
.recentview-description .prdName {
    display: block;
    margin: 0 0 3px;
    font-weight: normal;
}
.recentview-description .price {
    font-size: 13px;
    color: #000;
    line-height: 20px;
    font-weight: 400;
}
.recentview-buttonGroup {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-left: 90px;
}
@media (min-width:1060px) {
    .recentview-buttonGroup {
        justify-content: flex-end;
        position: absolute;
        bottom: 25px;
        right: 0;
        width: 250px;
        text-align: right;
        margin: 0px;
    }
}
.recentview-button {
    border: 1px solid #ccc;
    color: #1c1c1c;
    padding: 7px 13px;
}
.recentview-button.-bid {
    border: 1px solid var(--color-sub);
    background-color: var(--color-sub);
}