.container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	/*border: 1px solid royalblue;*/
}
.container .boxitem {
	position: relative;
	/*width: calc(250px - 10px);
	height: calc(40px - 10px);*/
	margin: 0 5px 5px 0;
	overflow: hidden;
	border-radius: 7px;
	cursor: pointer;
}
.container .boxitem .boxitemtext, .container .boxitem .boxicon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: 0.5s;
	z-index: 1;
}
.container .boxitem:hover .boxitemtext, .container .boxitem:hover .boxicon {
	top: 50%;
	left: calc(50%);
	width: 0px;
	height: 0px;
	border-radius: 50%;
}
.container .boxitem .content {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*height: calc(100% - 100px);*/
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
	opacity: 1;
	z-index: 2;
}
.container .boxitem:hover .content {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}
.container .boxitem .content h3 {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 12px;
}
/*.container .boxitem .boxicon .iconimg {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 65%;
}*/
.container .boxitem .boxicon .iconimg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 65%;
	transition: 0.5s;
}
.container .boxitem:hover .boxicon .iconimg {
	height: 0;
}
.container .boxitem .boxicon .fas {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	transition: 0.5s;
	color: #000;
}
.container .boxitem:hover .boxicon .fas {
	font-size: 0px;
}
.container .boxitem .iconcontent {
	position: absolute;
	margin: 0;
	padding: 0;
	top: 100%;
	text-align: center;
	padding: 10px;
	transition: 0.5s;
	opacity: 0;
}
.container .boxitem:hover .iconcontent {
	top: 0;
	opacity: 1;
}
.container .boxitem .iconcontent h3 {
	margin: 0 0 10px;
	padding: 0;
	color: #000;
	font-size: 14px;
}
.boxitemselected {
	background-color: #fff;
}
.boxitemunselected {	
	background: #b3b3b3; /*#328fa5;*/
}
.boxitemtextselected {
	background: #e6e6e6;
}
.boxitemtextunselected {
	background: #8c8c8c;
}
.boxstatisticselected {
	background-color: #f54967;
}
.boxstatisticunselected {	
	background: #33adcc; /*#328fa5;*/
}
.boxstatisticiconselected {
	background: #d03852;
}
.boxstatisticiconunselected {
	background: #23798e;
}
.wboxtext {width: 240px;}
.hboxtext {height: 30px;}
.wboxicontext {width: 150px;}
.hboxicontext {height: 40px;}

@media (max-width: 775px) {
    .wboxtext {width: 125px;}
    .hboxtext {height: 40px;}
	.wboxicontext {width: 50px;}
	.hboxicontext {height: 40px;}

	.container .boxitem:hover .boxicon {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
	.container .boxitem:hover .boxicon .iconimg {
		height: 65%;
	}
	.container .boxitem:hover .boxicon .fas {
		font-size: 30px;
	}
	.container .boxitem:hover .iconcontent {
		top: 100%;
		opacity: 0;
	}
}
/*@media (max-width: 525px) {
    .wboxtext {width: 100%;}
}*/