.tf-list-dots {
    position: relative;
}

.tf-list-dots .image img {
    width: 100%;
}

.item-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 5;
    cursor: pointer;
}

.item-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #121212;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
}

.item-dot::before {
    content: "";
    background-color: #121212;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    pointer-events: none;
    -webkit-animation: dot-animation 2s infinite;
    animation: dot-animation 2s infinite;
}

@keyframes dot-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.6
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.item-dot:hover::before,
.item-dot.active::before,
.item-dot:hover::after,
.item-dot.active::after {
    background-color: var(--theme-primary-color);
}

.item-dot .inner {
    min-width: 150px;
    position: absolute;
    bottom: -12px;
    padding: 8px 15px;
    text-align: center;
    left: 50%;
    transform: translate(-50%,100%);
    background: #fff;
    border-radius: 4px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.item-dot:hover .inner,
.item-dot.active .inner {
    opacity: 1;
    visibility: visible;
}

.item-dot .inner::after {
    content: '';
    width: 10px;
    height: 10px;
    transform:translate(-50%,-49%) rotate(-45deg);
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 2px;
    background: #fff;
}

.item-dot .inner .title {
    font-family: 'Oswald';
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.12px;
    color: #121212;
}

.item-dot .inner .price {
    font-family: 'Jost';
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #121212;
}

.item-dot .inner .price span {
    font-family: 'Jost';
    font-size: 12px;
    font-weight: 400;
    line-height: 20px; 
    text-decoration: line-through;
    text-decoration-line: strikethrough;
    color: #A0A0A0;
    margin-left: 2px;
}
@media (max-width: 500px) {
    .item-dot {
        width: 20px;
        height: 20px;
    }
    .item-dot::after {
        width: 8px;
        height: 8px;
    }

    .item-dot .inner {
        padding: 5px 15px;
    }
    
    .item-dot .inner .price,
    .item-dot .inner .title {
        font-size: 12px;
    }
    .item-dot .inner .price span {
        font-size: 10px;
    }
}