#node-content {
  margin: 0 -5px;
  /*#products {
		
		> .item {
			
			> a {
				border-top: @node-content-border solid @node-products-bg;
				border-color: @node-products-bg;

				.name {
					color: @text-color;
					border-bottom: @node-content-border solid @node-products-bg;
					background-color: @node-products-bg;
				}

				&:hover {
					border-color: @node-products-bg;

					.name {
						background-color: @node-products-bg-hover;
					}

				}
				
			}
			
		}
		
	}*/
}
#node-content #nodes,
#node-content #products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#node-content #nodes > .item,
#node-content #products > .item {
  display: block;
  position: relative;
  margin: 0 5px 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
#node-content #nodes > .item > a,
#node-content #products > .item > a {
  display: block;
  position: relative;
  overflow: hidden;
  color: white !important;
  font-size: 13px;
  border-left: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  transition-property: background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;
  transition-duration: 0.3s;
}
#node-content #nodes > .item > a .name,
#node-content #products > .item > a .name {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  background-color: #4d4d4d;
  z-index: 2;
  transition-property: background-color, border-top-color, border-bottom-color, border-left-color, border-right-color;
  transition-duration: 0.3s;
}
#node-content #nodes > .item > a .thumb-wrapper,
#node-content #products > .item > a .thumb-wrapper {
  position: relative;
  display: block;
}
#node-content #nodes > .item > a .thumb-wrapper .thumb,
#node-content #products > .item > a .thumb-wrapper .thumb {
  display: block;
  position: relative;
  width: auto;
  margin-top: 30px;
  max-width: 100%;
  max-height: 200px;
}
#node-content #nodes > .item > a .thumb-wrapper .badges,
#node-content #products > .item > a .thumb-wrapper .badges {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0;
}
#node-content #nodes > .item > a .thumb-wrapper .badges > .badge,
#node-content #products > .item > a .thumb-wrapper .badges > .badge {
  display: inline-block;
  width: auto;
  height: 36px;
  margin-left: 5px;
}
#node-content #nodes > .item > a .schema,
#node-content #products > .item > a .schema {
  display: block;
  width: 100%;
  height: 200px;
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#node-content #nodes > .item > a:hover,
#node-content #products > .item > a:hover {
  border-color: #333333;
}
#node-content #nodes > .item > a:hover .name,
#node-content #products > .item > a:hover .name {
  background-color: #333333;
}
