/**
 * categoryS MAIN
 **/
.list-categories {
	margin-top: 20px;
	position: relative;
}
.list-categories > ul {
	list-style-type: none;
    margin: 0;
    padding: 0;
	text-align: center;
}

.list-categories > ul > li {
	width: 230px;
	height: 230px;
	text-align: center;
	display: inline-block;
	padding: 10px;
	box-sizing: border-box;
}

.list-categories .category {
	width: 100%;
	height: 100%;
	border: 5px solid #C18902;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
}

.list-categories .category .text {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0,0,0,.5);
    display: table;
    padding: 5px;
}

.list-categories .category .text span {
    color: #FFF;
    font-size: 26px;
    display: table-cell;
    vertical-align: middle;
    text-shadow: 0.1em 0.1em 0.2em black;
    /* letter-spacing: -1px; */
    letter-spacing: -0.8px;
}

.list-categories .overlay {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #C18902;
	position: absolute;
	top: 0;
	left: 0;
	opacity:0;
	-webkit-transition: opacity .25s ease;
	-moz-transition: opacity .25s ease;
	display: table;
}

.list-categories .category:hover .overlay {
	opacity:1;
}

.list-categories .overlay .title {
	color: #FFF;
	font-size: 2em;
	display: table-cell;
	vertical-align: middle;
}

.list-categories .category > img {
	max-width: 100%;
	max-height: 100%;
	min-height: 100%;
	min-width: 100%;
	border-radius: 15px;
}

.list-categories .overlay .title > img {
	height: 50%;
}

.list-categories .category-window {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000000;
	background: #C18902;
	border: 4px solid #C18902;
	box-sizing: border-box;
	/*display: table;*/
	opacity: 0.95;
}

.list-categories .category-window > div {
	/*display: table-row;*/
}

.list-categories .category-window .header {
	color: white;
	width: 100%;
}

.list-categories .category-window .header .icon {
	float: left;
	width: 40px;
	margin-top: -12px;
	margin-left: 10px;
	margin-right: 10px;
}

.list-categories .category-window .header h3 {
    margin-left: 10px;
    font-size: 34px;
    /* letter-spacing: 0.5px; */
    line-height: 16px;
    font-weight: normal;
}

.list-categories .category-window .header a {
	float: right;
	margin-top: -7px;
	margin-right: 10px;
}

.list-categories .category-window .subcategories {
    background: #EDE6DE;
    width: 100%;
    /*height: 100%;*/
    padding: 50px;
    box-sizing: border-box;
    height: calc(96% - 57px);
}

.list-categories .category-window .subcategories > ul {
	list-style-type: none;
    margin: 0;
    padding: 0;
	-moz-column-count: 2;
	-moz-column-gap: 60px;
	-webkit-column-count: 2;
	-webkit-column-gap: 60px;
	column-count: 2;
	column-gap: 60px;
	height: 100%;
	background: url(/resources/img/icon/vertical_dotted_line.png) center repeat-y;
}

.list-categories .category-window .subcategories > ul > li {
	padding: 10px 0;
}

.list-categories .category-window .subcategories > ul > li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.list-categories .category-window .subcategories > ul > li a.hasdata {
	font-weight: bold;
}

.list-categories .category-window .subcategories > ul > li a:hover {
	color: #b27a00;
	font-weight: bold;
}