.cursor-dot-outline {
    pointer-events: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999; /* อยู่ด้านบนสุด */
}

.cursor-dot-outline {
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255, 0.35);
}
.cursor-dot-outline.anchor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255, 0.15);
}

.cursor-dot.drag {
    width: auto;
    height: auto;
}

.cursor-dot-outline.drag,
.cursor-dot-outline.view,
.cursor-dot-outline.prev,
.cursor-dot-outline.next{
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 30px 21px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

}
.cursor-dot-outline.drag:before {
    content: attr(data-drag);
}
.cursor-dot-outline.view:before {
    content: attr(data-view);
}

.cursor-dot-outline.prev,
.cursor-dot-outline.next {
    padding: 25px 21px
}
.cursor-dot-outline.prev:before{
    content: '\e91d';
    font-size: 20px;
    font-family: icomoon;
}

.cursor-dot-outline.next:before{
    content: '\e91e';
    font-size: 20px;
    font-family: icomoon;
}

.drag-area {
    cursor: grab;
}
