*, :after, :before {
	box-sizing: border-box;
}

body, html {
	height: 100%;
	width: 100%;
  max-width: 100%;
}

body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
  background-color: #222;
}

body, p, h1, h2, h3 {
	margin: 0;
	padding: 0;
}

p, h1, h2 {
	width: 100%;
  max-width: 100%;
}

h1 {
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	margin-top: -2px;
}
h2 {
	font-size: 2em;
	font-weight: 400;
	line-height: 1;
  margin: 4rem 0 3rem;
	letter-spacing: 0.03rem;
}
h2.light {
	font-weight: 300;
}

p {
	font-size: 20px;
	font-size: 1.05rem;
	letter-spacing: 0;
	letter-spacing: 0.025rem;
	line-height: 1.666;
	margin-bottom: 50px;
}
p.over-parallax {
	line-height: auto;
	margin-bottom: 0;
  font-size: 1.666rem;
  font-weight: 400;
	letter-spacing: 0.05rem;
}
p.status {
	margin: 20px 0;
}
p.render {
  text-align: center !important;
  height: 40em;
  max-height: 40em;
  position: relative;
}
p.render img {
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  height: 40em;
  margin-bottom: 20px;
}
p.render:hover {
  cursor: pointer;
}
.hidden {
  display: none !important;
}
.gray {
  color: #888;
}

p.ip {
	font-size: 1rem;
  color: #666;
}
p strong {
	display: inline-block;
	margin-bottom: 2px;
}

div.notice {
  color: #888;
  padding: 5em 0 1em 0;
  line-height: 2em;
}

div.notice span {
  display: block;
  margin-top: 15px;
}

hr {
  background: transparent;
  border: 0;
  border-top: solid 1px #444;
  margin: 60px 0;
}

.cc {
  padding-bottom: 80px;
}
.cc a,
.cc a:hover {
  text-decoration: none;
  border-bottom: 0;
}
.cc img {
  opacity: 0.2;
  width: 66px;
}
.cc a:hover img {
  opacity: 0.33;
}

a {
	color: #fff;
	text-decoration: none;
  border-bottom: solid 1px #666;
}
a:hover {
  border-bottom: solid 1px #ccc;
}
a.a-unbold {
	font-style: italic;
}

table.specs {
  margin: 0 auto 1rem;
  border-collapse: collapse;
}
table.specs tr:first-child {

}
table.specs tr:first-child td {
  border-bottom: solid 1px #666;
}
table.specs td {
  padding: 0.666rem 1.333rem;
}
tr.fade td,
td.fade {
  opacity: 0.5;
}

.shopify-buy__btn-wrapper button,
.shopify-buy__btn.shopify-buy__btn-disabled {
  opacity: 0.5 !important;
}

ul.firmware_modes {
	margin-bottom: 60px;
}
ul.firmware_modes li {
  list-style: none;
  padding: 0.25em 0;
}
ul.firmware_modes li span {
  display: inline-block;
  font-size: 22px;
}


p.credits a,
p.credits a:visited {
  color: #888;
}
p.credits a:hover {
  color: #fff;
}

.container {
  text-align: center;
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	position: relative;
	width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.container--big {
	height: 100vh;
}
.container--full {
	height: 50vh;
}
.container--auto {
	height: auto;
}
.container .content {
	color: #fff;
	margin: 0 auto;
	padding: 0 30px;
}

.container.header .content {
  position: relative;
}

section.main,
.container.main {
	background-color: #222;
  color: #888;
	text-align: center;
  padding: 80px 28% 0 28%;
}
.container.buy {
  padding: 0em 0 4.5em;
	background-color: #1a1a1a;
}

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	/* can be put in a separate class for better control */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* --------------------------- */
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}

.bg1 {
/* 	background-image: url("../img/microcell_bg_sm.jpg") !important; */
/* 	background-image: url("../img/microcell_D800_31183_dark.jpg") !important; */
	background-image: url("../img/microcell_D800_47847_header_dark.jpg") !important;
}

.show-on-mobile--inline {
	display: none;
}

.arrow {
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
	bottom: -64px;
	left: calc(50% - 19px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: opacity 250ms ease-in-out;
	width: 38px;
}
.arrow--hide {
	opacity: 0;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
@media screen and (max-width: 480px) {
	.hide-on-mobile {
		display: none;
	}

	.show-on-mobile--inline {
		display: inline;
	}
}

select:focus,
option:focus {
  outline: none !important;
}

/* - - - - - - - - - - - - - - - - - - 
  SHOPIFY
  iframe generated by JS
- - - - - - - - - - - - - - - - - - - */

iframe[name="frame-product-1151570444335"] {
  max-width: 100%;
}

/* - - - - - - - - - - - - - - - - - - 
  RESPONSIVE
- - - - - - - - - - - - - - - - - - - */

@media all 
and (min-device-width: 1024px) {

}
@media all 
and (min-device-width: 768px) 
and (max-device-width: 1024px) {

.hide_mobile {
  display: none;
}

section.main {
  padding: 3em 15% 1em;
}

}
@media all 
and (min-device-width: 320px) 
and (max-device-width: 768px) {

.arrow {
  display: none;
}

hr {
  margin: 40px 0;
}

p.over-parallax {
	line-height: auto;
	margin-bottom: -2em;
}

.container.buy {
	height: auto;
}
.container--big {
	height: auto;
}
.container--full {
	height: auto;
}
.container.header {
  padding: 3em 0 6em;
}

section.main {
  padding: 3em 8% 1em;
}
p.render,
p.render img {
  height: 35em;
  padding-bottom: 1em;
}
section.main h2 {
	font-size: 1.333rem;
	line-height: 1;
  margin: 2rem 0 1.5rem;
}
section.main p {
	font-size: 0.95rem;
	line-height: 1.45em;
	margin-bottom: 1rem;
}

h2.light {
  margin: 2rem 0 1.5rem;
	letter-spacing: 3rem !important;
}
.container.buy {
  padding: 0em 0 3em;
	background-color: #1a1a1a;
}

.hide_mobile {
  display: none;
}

table.specs {
  margin: 2rem auto 1rem;
  font-size: 80% !important;
}
table.specs td {
  padding: 0.333rem 0.666rem;
}


}