
/* content */

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.hide {
	display: none;
}





/* content: anchors */

a {
	color: #00f; /* blue */
	font-weight: inherit;
	
	/*transition: color 0.25s ease, background-color 0.25s ease;*/
}

a:hover {
	color: #00c; /* darker blue */
}

a:active {
	color: #f00; /* red */
}

/**/

section.meta a {
	float: right;
}

/**/

main.compare td a {
	font-weight: bold;
}





/* content: anchors: buttons */

a.button {
	display: inline-block;
	
	padding: 10px 15px;
	
	color: #fff; /* white */
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	
	background-color: #00f; /* blue */
}

a.button:hover {
	background-color: #00c; /* darker blue */
}

a.button i.fa {
	margin-right: 5px;
	
	font-size: 14px;
}

/**/

/*a.button.icon i.fa {
	margin: 0;
}*/

/**/

/*a.button.submit {
	background-color: #090; /* green /
}

a.button.submit:hover {
	background-color: #060; /* darker green /
}

/**/

/*a.button.cancel {
	background-color: #f00; /* red /
}

a.button.cancel:hover {
	background-color: #c00; /* darker red /
}*/

/**/

nav.filters a.button {
	display: none;
	
	/*float: left;*/
	
	margin: 0 0 20px;
	width: 100%;
}

nav.filters a.button: only-child {
	margin: 0;
}

/**/

section.filters a.button.submit {
	display: block;
	
	width: 100%;
}

/**/

main.details a.button.submit {
	display: block;
}

/**/

main.details a.expand {
	display: block;
	
	position: absolute;
	top: 0;
	right: 10px;
	
	width: 40px;
	height: 40px;
	
	color: #fff;
	/*font-size: 28px;
	line-height: 40px;*/
	text-align: center;
	
	background-color: #000; /* black */
}

main.details a.expand i.fa {
	margin: 0;
	
	font-size: 14px;
	line-height: 40px;
}





/* content: columns */

.cols {
	margin: 0 -10px; /* padding */
}

.cols:before,
.cols:after {
	display: table;
	
	clear: both;
	
	content: " ";
}

[class*="col-"] {
	float: left;
	
	padding: 0 10px; /* padding */
	
	/*border: 1px solid #f00; /* dev */
}

.col-1-2 {
	width: 50%;
}

.col-1-3 {
	width: 33.333%;
	width: calc(1/3 * 100%);
}

.col-1-4 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6 {
	width: 16.666%;
	width: calc(1/6 * 100%);
}

.col-2-3 {
	width: 66.666%;
	width: calc(2/3 * 100%);
}

.col-3-4 {
	width: 75%;
}

.col-2-5 {
	width: 40%;
}

.col-3-5 {
	width: 60%;
}

.col-4-5 {
	width: 80%;
}

/**/

[class*="col-"].expanded {
	margin-bottom: 40px;
	width: 100%;
}

[class*="col-"].expanded + [class*="col-"] {
	width: 100%;
}

[class*="col-"].expanded figure {
	margin: 0 auto;
}





/* content: headings */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 40px 0 20px;
	
	font-weight: bold;
	
	background-color: #9f6; /* dev */
}

/**/

h1,
h2 {
	margin-top: 0;
}

h1 i.fa,
h2 i.fa,
h3 i.fa,
h4 i.fa,
h5 i.fa,
h6 i.fa {
	margin-right: 5px;
	
	font-size: 14px;
}





/* content: images */

/*figure {
	display: block;
}

figure a {
	display: block;
}*/

figure img {
	display: block;
	
	width: 100%;
	height: auto;
}

/**/

figure i.brand {
	display: block;
	
	position: absolute;
	bottom: 0;
	left: 0;
	
	width: 40px;
	height: 40px;
	
	color: #fff; /* white */
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	
	background-color: #000; /* black */
}





/* content: images: placeholders */

figure.placeholder {
	padding-bottom: 75%;
	width: 100%;
	
	background-color: #fff; /* dev */
}

figure.placeholder div {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

figure.placeholder div:after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	
	color: #000; /* dev */
	content: "\f03e"; /* fa-picture-o */
	font-family: FontAwesome;
	/*font-size: 28px;*/
	font-size: 56px;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	text-decoration: inherit;
	
	-webkit-transform: perspective(1px) translateX(-50%) translateY(-50%);
	    -ms-transform: perspective(1px) translateX(-50%) translateY(-50%);
	        transform: perspective(1px) translateX(-50%) translateY(-50%);
}





/* content: lists */

ul,
ol {
	margin: 20px 0;
}

ul li,
ol li {
	margin-bottom: 0;
}





/* content: lists: errors */

ul.errors {
	margin: 0 0 20px;
	padding: 0;
	
	list-style: none;
}

ul.errors li {
	margin: 0;
	padding-left: 20px;
	
	color: #f00; /* red */
}

ul.errors li:before {  
	display: block;
	
	position: absolute;
	top: 0;
	left: 0;
	
	width: 20px;
	height: 20px;
	
	content: "\f06a"; /* fa-exclamation */
	font-family: FontAwesome;
	font-size: 14px;
	text-align: left;
}





/* content: lists: features */

ul.features {
	margin: 0;
	padding-left: 20px;
	
	background-color: #ff6; /* dev */
}

ul.features li {
	margin: 0;
	padding: 0;
	
	background-color: #f9f; /* dev */
}





/* content: lists: results */

ul.results {
	margin: 0;
	padding: 0;
	
	list-style: none;
}

ul.results:before,
ul.results:after {
	display: table;
	
	clear: both;
	
	content: " ";
}

ul.results li {
	margin: 0 0 20px;
	padding: 0;
	
	background-color: #cf9; /* dev */
}

ul.results li:before,
ul.results li:after {
	display: table;
	
	clear: both;
	
	content: " ";
}

ul.results div.image {
	float: left;
	
	padding-right: 20px;
	width: 30%;
	
	background-color: #cff; /* dev */
}

ul.results div.image a {
	display: block;
}

ul.results div.image figure {
	padding-bottom: 75%;
	overflow: hidden;
	
	background-color: #9f0; /* dev */
}

ul.results div.image figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;	
	
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

ul.results div.body {
	float: left;
	
	width: 70%;
	
	background-color: #ffc; /* dev */
}

ul.results h3 {
	float: left;
	
	margin: 0 0 20px;
	padding-right: 20px;
	width: 70%;
	
	background-color: #ff0; /* dev */
}

ul.results h3 a {
	display: block;
}

ul.results div.price {
	float: right;
	
	margin: 0 0 20px;
	width: 30%;
	
	text-align: right;
	
	background-color: #0ff; /* dev */
}

ul.results div.price i.fa {
	margin-right: 5px;
	
	font-size: 14px;
}

ul.results div.price.pending {
	background-color: #f90; /* dev */
}

ul.results div.price.sold {
	background-color: #f00; /* dev */
}

ul.results div.specs,
ul.results div.location {
	float: left;
	
	margin: 0 0 20px;
	width: 50%;
	
	background-color: #fcf; /* dev */
}

ul.results div.specs {
	padding-right: 20px;
}

ul.results div.location {
	background-color: #fc0; /* dev */
}

ul.results div.location a {
	font-weight: bold;
}

ul.results div.description {
	clear: left;
	
	background-color: #9ff; /* dev */
}





/* content: lists: links */

ul.links {
	margin: 20px 0;
	padding: 0;
	
	list-style: none;
}

ul.links li {
	margin: 0;
	padding: 0;
}

ul.links i.fa {
	margin-right: 5px;
	width: 16px;
	
	font-size: 14px;
	text-align: center;
}





/* content: sections */

section.demo {
	margin: 0;
	padding: 0 20px;
	
	color: #fff; /* white */
	text-align: center;
	
	background-color: #09f; /* light blue */
}

section.meta {
	margin-bottom: 20px;
	/*padding: 0 20px;*/
	
	background-color: #cf0; /* dev */
}

section.meta:before,
section.meta:after {
	display: table;
	
	clear: both;
	
	content: " ";
}

section.tools {
	margin-bottom: 20px;
	
	background-color: #fc0; /* dev */
}

section.tools:before,
section.tools:after {
	display: table;
	
	clear: both;
	
	content: " ";
}





/* content: wrappers */

/**/

main.details div.price {
	text-align: right;
	
	background-color: #f9f; /* dev */
}

main.details div.price i.fa {
	margin-right: 5px;
	
	font-size: 14px;
}




/* content: slideshow */

div.slideshow {
	padding-bottom: 75%;
	width: 100%;
	
	background-color: #000; /* black */
}

div.slideshow div.slides,
div.slideshow div.slides div.slide { 
	position: absolute; 
	top: 0; 
	right: 0; 
	bottom: 0; 
	left: 0; 
}

div.slideshow figure {
	padding-bottom: 75%;
	overflow: hidden;
	
	background-color: #9f0; /* dev */
}

div.slideshow figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;	
	
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

div.slideshow div.slides div.slide div.count {
	position: absolute;
	bottom: 0;
	left: 0;
	
	padding: 0 5px;
	
	color: #fff; /* white */
	text-align: center;
	
	background-color: #f00; /* red */
}

div.slideshow a.play,
div.slideshow a.previous,
div.slideshow a.next {
	display: block;
	
	position: absolute;
	top: 50%;
	z-index: 900;
	
	margin-top: -20px;
	width: 40px;
	height: 40px;
	
	color: #fff; /* white */
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	
	background-color: #000; /* black */
}

div.slideshow a.play {
	left: 50%;
}

div.slideshow a.previous {
	left: 0;
}

div.slideshow a.next {
	right: 0;
}

div.slideshow iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	width: 100%;
	height: 100%;
}
