.circle {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circleBackground {
	width: 100%;
	height: 100%;
	filter: blur(10px);
	-webkit-filter: blur(10px);
	background-position: center;
	background-repeat: none;
	background-size: cover;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.circleCenterWrapper {
	position: relative;
	left: 50%;
	top: 50%;
	float: left;
	overflow: hidden;
	-webkit-border-radius: 1000px;
    border-radius: 1000px;
	background-color: #999;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.7);
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.7);
	z-index: 2;
}

.circleCenter {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-border-radius: 1000px;
    border-radius: 1000px;
	background-color: #999;
	z-index: 1;
	-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.circleNameContainer {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -50px;
	cursor: pointer;
	background-color: rgba(0,0,0,0.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.circleNameValue {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	color: #FFF;
}

.circleLinksContainer {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.2);
}

.linkRow {
	position: absolute;
	width: 100%;
}

.linkCol {
	position: absolute;
	height: 100%;
	cursor: pointer;
	background-position: center;
	background-repeat: none;
	background-size: cover;

	-webkit-box-shadow:inset 0 0 10px 0 rgba(0,0,0,0.5);
	box-shadow:inset 0 0 10px 0 rgba(0,0,0,0.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 0;
}