.DragTextToPoint-item {
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    border-radius: 50px;
    margin: 20px;
}

.DragTextToPoint-item--draggable, .DragTextToPoint-item--draggable-dest {
    border-radius: 50px;
    display: block;
    background: #ffffff;
    font-size: 24px;
    color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    line-height: 1em;
    text-align: center;
    min-height: 80px;
    user-select: none;
}


.DragTextToPoint-item--draggable-dest {
    opacity: 0;
    transition: all .3s;
}

.DragTextToPoint--drop {
    position: absolute;
    width: 250px;
    height: 80px;
    border-radius: 50px;
    border: 2px dashed white;
    transform: translate(-50%, -50%) scale(.8);
    transition: all .2s;
}

.DragTextToPoint--drop.hover {
    transform: translate(-50%, -50%) scale(1);
}


.DragTextToPoint--drop.found .DragTextToPoint-item--draggable-dest {
    opacity: 1;
}

.DragTextToPoint--drop.found {
    border: 0;

}