.alldeals-component-title {
    text-align: center;
    margin: 16px auto 8px;
}

.coupons-grid-layout {
    margin: 10px auto 15px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 12px;
    text-align: center;
}
.storekeyword-img {
    max-width: 100% !important;
}
.round-box {
    width: 70%;
    margin: 10px auto;
    display: block;
    position: relative;
}
.round-box::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}
.round-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.recently-deals-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px 20px;
}

.recently-deals-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.bx-square {
    width: 100%;
    position: relative;
    display: block;
}

.bx-square::after {
    content: "";
    padding-top: 100%;
    display: block;
}

.bx-square img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.recently-deals-item .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
    grid-gap: 5px;
}

.recently-deals-item .deal-product-item {
    margin: 0;
    padding: 0;
}

.recently-deals-item .deal-product-item-link {
    font-size: 18px;
    line-height: 1.25em;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #337ab7;
    cursor: pointer;
    user-select: none;
}

.recently-deals-item .price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}

.recently-deals-item .current {
    font-size: 23px;
    font-weight: 600;
    color: #1373eb;
    line-height: 30px;
    margin-right: 4px;
}

.recently-deals-item .old {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    line-height: 25px;
    text-decoration: line-through;
}

.get-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    background-color: #337ab7;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
}

.get-btn:hover {
    color: #fff;
    background-color: #1373eb;
}

.customer-reviews-wrapper {
    width: 100%;
    max-width: 1290px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}


.customer-reviews-list:not(.slick-slider) {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: flex-start;
}

.customer-reviews-list .top-brands-deals-item {
    padding: 8px;
}

.customer-reviews-list .bx-square {
    border-radius: 50%;
    border: 1px solid #d1d1d1;
}

.customer-reviews-list .bx-square:hover {
    border: 1px solid #1373eb;
}

.top-brands-link {
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 6px 0;
}

.home-deal-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin-top: 24px;
}

.home-deal-button .all-deal {
    border: 1px solid #613363;
    color: #613363;
    text-align: center;
    padding: 10px 24px;
    border-radius: 5px;
}

.customer-reviews-list .bx-square img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.rating-star-list {
    width: 90px;
    min-width: 90px;
    height: 18px;
    display: block;
    background-color: rgba(255,188,89,1);
    background: linear-gradient(90deg,rgba(255,188,89,1) 0,rgba(255,188,89,1) calc(var(--ratingStar) * 23%),rgba(214,218,223,1) calc(var(--ratingStar) * 23%),rgba(214,218,223,1) 100%);
    mask-image: url(/images/star-list.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/images/star-list.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    position: relative;
    margin: 6px auto 0;
    overflow: hidden;
}

@media (max-width: 992px) {
  .recently-deals-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
