table pre{
	margin:0px;
}
 
div.contenedor{
	width: 20%;
	height: 18%;
	float: left;;
    -webkit-transition: height .2s;
    
}
div.contenedorG{
    width: 25%;
	height: 16%;
	float: left;;
    -webkit-transition: height .2s;
    margin: 10%;
}

div#uno{
	background-color: rgb(208,101,3);
}

div#dos{
	background-color: rgb(233,147,26);
}

div#tres{
	background-color: rgb(22,145,190);
}

div#cuatro{
	background-color: rgb(22,107,162);
}

div#cinco{
	background-color: rgb(24, 168, 113);
}

div#seis{
	background-color: rgb(38, 207, 229);
}

img.icon{
	display: block;
	margin:10px auto -15px auto;
	background-color: rgba(255,255,255,.15);
	width:26%;
	padding:4px;
	-webkit-border-radius: 40%;
	-webkit-box-shadow: 0px 0px 0px 30px rgba(255,255,255,0);
	-webkit-transition:box-shadow .2s;
}

p.texto{
	font-size: 1.2em;
	color:white;
	text-align: center;
	padding-top:1px;
	opacity: .6;
	-webkit-transition: padding-top .2s;
}

div.contenedor:hover
 {
	height:23%;
}

div.contenedor:hover
 p.texto
{
	padding-top: 10px;
	opacity: 1;
}

div.contenedor:hover img.icon {
	-webkit-box-shadow:0px 0px 0px 0px rgba(255,255,255,.6);
}

div.contenedorG:hover
 {
	height:40%;
}

div.contenedorG:hover
 p.texto
{
	padding-top: 30px;
	opacity: 1;
}

div.contenedorG:hover img.icon {
	-webkit-box-shadow:0px 0px 0px 0px rgba(255,255,255,.6);
}


.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}


.dot{
	height: 22px;
	width: 22px;
	background-color: #b0b0b070;
	background-size: contain;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	margin: 0 4px 0 4px;
}
.dot:hover {
	background-color: #da8965b3;
}
.agregar {
	background-image: url("../images/agregar_0.png");
}.agregar:hover {
	background-image: url("../images/agregar_1.png");
}
.editar {
	background-image: url("../images/editar_0.png");
}.editar:hover {
	background-image: url("../images/editar_1.png");
}
.borrar {
	background-image: url("../images/borrar_0.png");
}.borrar:hover {
	background-image: url("../images/borrar_1.png");
}

@media (max-width: 700px){
	div.contenedor{
		
		width: 50%;
		height: 200px;
		float: left;;
		-webkit-transition: height .4s;
	}

	div.contenedor:hover
	 {
		height:200px;
	}
	img.icon{
		display: block;
		margin:10px auto;
		background-color: rgba(255, 255, 255, 0.384);
		width: 80px;
		padding:10px;
		-webkit-border-radius: 50%;
		-webkit-box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0);
		-webkit-transition:box-shadow .4s;
	}

	div.contenedorG{
		
		width: 100%;
		height: 220px;
		float: left;;
		-webkit-transition: height .4s;
		margin: 0%;
		
	}

	div.contenedorG:hover
	 {
		height:220px;
	}

	div.contenedorG
	img.icon{
		display: block;
		margin:30px auto;
		background-color: rgba(255, 255, 255, 0.384);
		width: 90px;
		padding:25px;
		-webkit-border-radius: 50%;
		-webkit-box-shadow: 0px 0px 0px 30px rgba(255,255,255,0);
		-webkit-transition:box-shadow .4s;

	}
	p{
		widows: 100%;
	}
}


