/*
AYUDA PARA MEDIR EL TAMANIO DEL HEXAGON
http://brenna.github.io/csshexagon/ 
https://codepen.io/ericornelissen/pen/vWbWKv
*/
body{
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5e5f9+0,ffffff+30,ffffff+30,ffffff+85,f5e5f9+100 */
background-color: #b3ecbe;
}

.hexagon-container{
	/*width: 410px;
	border: 1px solid #000000;*/
	clear:both;
	position: relative;
	/*background-color: #034A00;*/
}

.hexagon {
  position: relative;
  width: 21px;
  height: 11px;
  background-color: #64C7CC;
  margin: 4.3px 1.3px;/*1.1px 0;*/
  border-left: solid 1px #3f174f;
  border-right: solid 1px #3f174f;
	float: left;
 
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 14.85px;
  height: 14.85px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 2.0754px;
}

.hexagon:before {
  top: -7.4246px;
  border-top: solid 1.1142px #3f174f;
  border-right: solid 1.1142px #3f174f;
}

.hexagon:after {
  bottom: -7.4246px;
  border-bottom: solid 1.1142px #3f174f;
  border-left: solid 1.1142px #3f174f;
}

/******** CLOR ********/
.hexagon {
	/*background: rgba(255,255,255,0.8) ;*/
	background: #FFFFFF;
	opacity: 0.6;
	position: relative;
}
.hexagon span{
	position: absolute;
	left: 0;
	top: -3.5px;
	width: 19px;
	height: 21px;
	/*background: #D40003;*/
	z-index: 10;
	font-size: 10px;
	text-align: center;
	line-height: 18px;
	font-weight: bold;
	color: #3f174f;
	text-shadow: 0 0 3px #ffffff;
}
.nexLine{
  margin-left:13px; /* Modificamos para empuje left -11*/
}

.hexagonHover:hover{
	opacity: 0.5;
	background-color: #9c27b0;
	/* background-image:url(../img/ball2.png);
	background-size: contain; */
	z-index: 9999999;
}
.hexagonBlocked{
	opacity: 0;
}
.hexagonVendido{
	opacity: 1;
	/*background:#FFFFFF;*/
	background-color:transparent !important;
}
/*.hexagonVendido:hover{
	opacity: 0.1;
	background:#FFFFFF;
	background-color:transparent !important;
}
*/
