
/*-----------------------------------------
AD LIST
-----------------------------------------*/
.item_list {
  max-width: 1200px;
  margin: 4em auto 1em;
  display: flex;
  flex-wrap: wrap;
  
 /*-moz-column-width: 16em;
 -webkit-column-width: 16em;
	-moz-column-width: 168px;
	-webkit-column-width: 168px;
	-moz-column-gap: 1em;
	-webkit-column-gap: 1em; */
}
.item-box {
	display: inline-block;
	/*display: block;*/
	margin:  0.25rem 0.25rem 0.50rem 0.25rem;
	padding:  1rem;
	border: 1px solid #E1E1E1;
	width: calc( 100% / 6 - 0.5rem );
  /*min-width: 168px;*/
  float: left;
	/*width: 168px;*/
}
.item-box img {
	width: auto;
	/*width: 128px;
	height: 128px;*/
	margin: 0;
}
.item-box span {
	font-size: 32px;
	margin: 5px 0;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
}
.item-box h6 {
	font-size: 14px !important;
}
.item-box .items-text {
	font-size: 14px !important;
	margin-top: 5px;
}

@media screen and (max-width:1200px) {
.item-box {
	width: calc( 100% / 5 - 0.5rem );
}
.item-box:nth-child(1),
.item-box:nth-child(12){
    display: none;
  }
}

@media screen and (max-width:1050px) {
.item-box {
	width: calc( 100% / 4 - 0.5rem );
}
.item-box:nth-child(10),
.item-box:nth-child(11){
    display: none;
  }
}

@media screen and (max-width:850px) {
.item-box {
	width: calc( 100% / 3 - 0.5rem );
}
.item-box:nth-child(8),
.item-box:nth-child(9){
    display: none;
  }
}

@media screen and (max-width:650px) {
.item-box {
	width: calc( 100% / 2 - 0.5rem );
}
.item-box:nth-child(4),
.item-box:nth-child(5),
.item-box:nth-child(6),
.item-box:nth-child(7){
    display: none;
  }
}