/*
 *            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
 *                    Version 2, December 2004
 *
 * Copyright (C) 2014 Tim Severien
 *
 * Everyone is permitted to copy and distribute verbatim or modified
 * copies of this license document, and changing it is allowed as long
 * as the name is changed.
 *
 *            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
 *   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 *
 * 0. You just DO WHAT THE FUCK YOU WANT TO.
*/

.taggd-wrapper {
	overflow: hidden;
	position: relative;
}

.taggd-wrapper .taggd-item {
    background-color: #000000;
	cursor: pointer;
	display: block;
	padding: 6px;
	z-index: 1000;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.taggd-wrapper .taggd-item.active,
.taggd-wrapper .taggd-item:hover { background-color: #000000; }

.taggd-wrapper .taggd-item-hover {
    background-color: #000000;
	color: transparent;
	cursor: default;
	display: block;
    font-weight: lighter;
	opacity: 0;
	overflow: hidden;
	padding: 0 10px;
	z-index: 999;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.taggd-wrapper .taggd-item-hover.show {
	    color: #fff;
    opacity: 1;
    padding: 2px 10px;
    z-index: 1000;
}
