.cart-count {
    /* positioning */
    position: absolute;
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%);

    /* circle */
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-size: 15px;
    color: #000000;
    background: #c1c1c1
}

.smt {
    scroll-margin-top: 120px
}

.circle {
    border-radius: 200px;
    color: #ffffff;
    font-weight: bold;
    height: 30px;
    width: 30px;
    display: table;
}

.circle p {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.review-icon {
    font-size: 12px
}

.hover-image {
    transition: transform .2s;
}

.hover-image:hover {
    transform: scale(1.1);
}

.paginator-item {
    font-size: 20px;
    font-family: Dekko, sans-serif;
    cursor: pointer;
    color: #ffffff;
}

.paginator-item:hover {
    text-shadow: 1px 1px 1px #555;
}

.paginator-item-selected {
    color: #000000;

}

.review-rating {
    cursor: pointer;
}

.review-rating:hover {
    opacity: 0.5;
}

.cursor-pointer {
    cursor: pointer;
}

.inactive-progress-bar {
    background-color: #a5a5a5;
}


.image-overlay {
    position: relative;
    width: fit-content;
}

.overlay-box {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-overlay .overlay-box:hover {
    opacity: 1;
}