/* Base color variables */
/* Breakpoints */
* {
  padding: 0;
  margin: 0; }

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%; }

img {
  max-width: 100%;
  height: auto;
  border: 0; }

ul, ol {
  list-style: none; }

/* Titles */
h2, h3, h4, h5, h6, p {
  padding-bottom: 1em; }

/* Base rules */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  background-color: white;
  color: #333333;
  font: 300 87.5%/1.5em 'futurace-book', Arial, Helvetica, sans-serif; }

a {
  color: #333333;
  text-decoration: none; }
  a:hover {
    color: #999999; }

*:active,
*:focus {
  outline: 0; }

/* Grid stuff */
.wrapper {
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 1.65em; }

.inner-wrapper {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  z-index: 1;
  position: relative;
  min-height: 500px; }

@media all and (max-width: 860px) {
  .inner-wrapper {
    padding-bottom: 2em; } }
/* Layout - 2 columns */
.wrapper.two-cols {
  margin-bottom: 3em; }

.two-cols .col-left {
  float: left;
  width: 35.5%; }
.two-cols .col-right {
  float: right;
  width: 60%; }
.two-cols p {
  line-height: 1.3em; }
.two-cols h2 {
  font-weight: 100;
  text-transform: uppercase; }

@media all and (max-width: 568px) {
  .two-cols .col-left,
  .two-cols .col-right {
    float: none;
    width: 100%;
    margin-bottom: 1.5em; } }
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  width: 100%;
  padding: 0 0 1em 0; }

@media all and (min-width: 860px) {
  .row .col-1, .row .col-2, .row .col-3, .row .col-4, .row .col-5, .row .col-6, .row .col-7, .row .col-8, .row .col-9, .row .col-10, .row .col-11, .row .col-12 {
    float: left;
    margin-left: 2%;
    padding: 0 0%; }
  .row .col-1:first-child, .row .col-2:first-child, .row .col-3:first-child, .row .col-4:first-child, .row .col-5:first-child, .row .col-6:first-child, .row .col-7:first-child, .row .col-8:first-child, .row .col-9:first-child, .row .col-10:first-child, .row .col-11:first-child, .row .col-12:first-child {
    margin-left: 0; }
  .row .col-1 {
    width: 6.5%; }
  .row .col-2 {
    width: 15.0%; }
  .row .col-3 {
    width: 23.5%; }
  .row .col-4 {
    width: 32.0%; }
  .row .col-5 {
    width: 40.5%; }
  .row .col-6 {
    width: 49.0%; }
  .row .col-7 {
    width: 57.5%; }
  .row .col-8 {
    width: 66.0%; }
  .row .col-9 {
    width: 74.5%; }
  .row .col-10 {
    width: 83.0%; }
  .row .col-11 {
    width: 91.5%; }
  .row .col-12 {
    margin-left: 0;
    width: 100%; } }
/* Clearfix */
.wrapper:after,
.image-col:after,
.modal p:after,
.customer-form p:after,
.row:after,
.size-select:after {
  content: "";
  display: table;
  clear: both; }

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999; }

.center {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.bouncywrap {
  position: relative; }

.dotcon {
  display: block;
  float: left;
  width: 50px;
  position: absolute; }

.dc1 {
  -webkit-animation: bouncy1 1.5s infinite;
  left: -40px;
  -webkit-animation: bouncy1 1.5s infinite;
  animation: bouncy1 1.5s infinite; }

.dc2 {
  -webkit-animation: bouncy2 1.5s infinite;
  animation: bouncy2 1.5s infinite;
  left: 0; }

.dc3 {
  -webkit-animation: bouncy3 1.5s infinite;
  animation: bouncy3 1.5s infinite;
  left: 40px; }

.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8); }

@-webkit-keyframes bouncy1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg); }

  50% {
    -webkit-transform: translate(0px, 0px) rotate(180deg); }

  100% {
    -webkit-transform: translate(40px, 0px) rotate(-180deg); } }
@keyframes bouncy1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }

  50% {
    -webkit-transform: translate(0px, 0px) rotate(180deg);
    transform: translate(0px, 0px) rotate(180deg); }

  100% {
    -webkit-transform: translate(40px, 0px) rotate(-180deg);
    transform: translate(40px, 0px) rotate(-180deg); } }
@-webkit-keyframes bouncy2 {
  0% {
    -webkit-transform: translateX(0px); }

  50% {
    -webkit-transform: translateX(-40px); }

  100% {
    -webkit-transform: translateX(-40px); } }
@keyframes bouncy2 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }

  50% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px); }

  100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px); } }
@-webkit-keyframes bouncy3 {
  0% {
    -webkit-transform: translateX(0px); }

  50% {
    -webkit-transform: translateX(0px); }

  100% {
    -webkit-transform: translateX(-40px); } }
@keyframes bouncy3 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }

  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }

  100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px); } }
/* Fonts & icon-fonts */
@font-face {
  font-family: 'futurace-book';
  src: url("http://www.aeron.hu/fonts/futura_t_ce_book.eot");
  src: url("http://www.aeron.hu/fonts/futura_t_ce_book.eot#iefix") format("embedded-opentype"), url("http://www.aeron.hu/fonts/futura_t_ce_book.woff") format("woff"), url("http://www.aeron.hu/fonts/futura_t_ce_book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'futurace-bold';
  src: url("http://www.aeron.hu/fonts/futura_t_ce_bold.eot");
  src: url("http://www.aeron.hu/font/futura_t_ce_bold.eot#iefix") format("embedded-opentype"), url("http://www.aeron.hu/fonts/futura_t_ce_bold.woff") format("woff"), url("http://www.aeron.hu/fonts/futura_t_ce_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'futurace-light';
  src: url("http://www.aeron.hu/fonts/futura_t_ce_light.eot");
  src: url("http://www.aeron.hu/font/futura_t_ce_light.eot#iefix") format("embedded-opentype"), url("http://www.aeron.hu/fonts/futura_t_ce_light.woff") format("woff"), url("http://www.aeron.hu/fonts/futura_t_ce_light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'footer-icons';
  src: url("http://www.aeron.hu/fonts/footer-icons.eot?-qklh79");
  src: url("http://www.aeron.hu/fonts/footer-icons.eot#iefix-qklh79") format("embedded-opentype"), url("http://www.aeron.hu/fonts/footer-icons.woff?-qklh79") format("woff"), url("http://www.aeron.hu/fonts/footer-icons.ttf?-qklh79") format("truetype"), url("http://www.aeron.hu/fonts/footer-icons.svg?-qklh79#footer-icons") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"], [class*=" icon-"] {
  font-family: 'footer-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1; }

.icon-mobile:before {
  content: "\e604"; }

.icon-mail:before {
  content: "\e605"; }

.icon-user:before {
  content: "\e606"; }

.icon-heart:before {
  content: "\e607"; }

.icon-heart2:before {
  content: "\e608"; }

.icon-star:before {
  content: "\e609"; }

.icon-star2:before {
  content: "\e60a"; }

.icon-search:before {
  content: "\e60b"; }

.icon-earth:before {
  content: "\e60c"; }

.icon-facebook:before {
  content: "\e600"; }

.icon-pinterest:before {
  content: "\e601"; }

.icon-tumblr:before {
  content: "\e602"; }

.icon-instagram:before {
  content: "\e603"; }

/* Mobile navigation trigger */
.nav-trigger {
  display: none;
  position: fixed;
  text-indent: -9999px;
  overflow-y: hidden;
  z-index: 5;
  width: 30px;
  height: 30px;
  right: 30px;
  top: 25px;
  cursor: pointer;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out; }
  .nav-trigger:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #333333;
    -webkit-box-shadow: 0 7px 0 #333333, 0 14px 0 #333333;
    box-shadow: 0 7px 0 #333333, 0 14px 0 #333333; }
  .nav-trigger.is-active {
    z-index: 9999; }
  .nav-trigger.is-active:before {
    background-color: white;
    -webkit-box-shadow: 0 7px 0 white, 0 14px 0 white;
    box-shadow: 0 7px 0 white, 0 14px 0 white; }

/* Default text stylings */
.sh-content {
  font-size: 100%; }
  .sh-content h1, .sh-content h2, .sh-content h3, .sh-content h4, .sh-content h5, .sh-content h6 {
    font-weight: normal;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 1.1em;
    padding-bottom: 0; }
  .sh-content h1 {
    font-size: 2em;
    margin-bottom: .8em; }
  .sh-content h2 {
    font-size: 1.6em; }
  .sh-content h3 {
    font-size: 1.4em; }
  .sh-content h4 {
    font-size: 1.2em; }
  .sh-content h5 {
    font-size: 1.1em; }
  .sh-content h6 {
    font-size: 1em; }
  .sh-content li {
    list-style-position: inside; }
  .sh-content ul {
    padding: 0 0 1.5em 1em; }
    .sh-content ul li {
      list-style-type: disc; }
  .sh-content ol {
    padding: 0 0 1.5em 1em; }
    .sh-content ol li {
      list-style-type: decimal; }
  .sh-content p strong, .sh-content p b {
    font-weight: bold; }
  .sh-content p i, .sh-content p em {
    font-style: italic; }
  .sh-content img {
    display: block;
    margin: 0 auto 20px; }
  .sh-content table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #e8e8e8;
    margin-bottom: 1em; }
    .sh-content table caption {
      color: #000;
      font: italic 85%/1 arial,sans-serif;
      padding: 1em 0;
      text-align: center; }
    .sh-content table td, .sh-content table th {
      border-bottom: 1px solid #e8e8e8;
      border-width: 0 0 1px 1px;
      font-size: inherit;
      margin: 0;
      overflow: visible;
      padding: .5em 1em; }
    .sh-content table thead {
      background: #fafafa;
      color: #000;
      text-align: left;
      vertical-align: bottom; }
    .sh-content table td {
      background-color: transparent; }

/* Masonry items */
@media all and (min-width: 568px) {
  #container {
    margin: 0 0 2em; }

  .item {
    position: relative;
    z-index: 1;
    width: 33.33%;
    padding: 1.5em 1.5em 1em; }
    .item a {
      display: block;
      overflow: hidden;
      width: 100%; }

  .item a .overlay-layer {
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
    position: absolute;
    text-align: center;
    top: 1em;
    left: 1em;
    bottom: 0;
    right: 1em;
    height: 90%;
    -webkit-backface-visibility: hidden; }
    .item a .overlay-layer span {
      -webkit-backface-visibility: hidden;
      position: relative;
      display: inline-block;
      top: 50%;
      color: #000;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      text-transform: uppercase;
      font-size: 1.25em;
      font-weight: 100;
      line-height: 2em;
      letter-spacing: .5em;
      padding: 0 2.5em; }

  .item a img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 100%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out; }

  .item a:hover img {
    opacity: .5; }

  .item a:hover .overlay-layer {
    opacity: 1; }

  .home-items .item:nth-child(even) {
    padding-top: 3.5em
  }
  .home-items .item:nth-child(odd) {
    padding-bottom: 3.5em;
  }
  .home-items .item:first-child,
  .home-items .item:last-child {
    padding: 0.5em 0.5em 0em;
  }

  }
@media all and (max-width: 860px) and (min-width: 568px) {
  .item {
    width: 50%;
    padding: .6em; }
    .item img {
      width: 100%;
      height: auto;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }

  .item a .overlay-layer {
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
    position: absolute;
    text-align: center;
    top: 1em;
    left: 1em;
    bottom: 0;
    right: 1em;
    height: 90%; }
    .item a .overlay-layer span {
      position: relative;
      display: inline-block;
      top: 50%;
      color: #000;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      text-transform: uppercase;
      font-size: 1.25em;
      font-weight: 100;
      line-height: 2em;
      letter-spacing: .5em;
      padding: 0 2.5em;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; } }
@media all and (max-width: 568px) {
  .item {
    width: 100%;
    margin-bottom: 1.3em; }
    .item img {
      width: 100%;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }

  .item a {
    display: block;
    overflow: hidden;
    width: 100%; }

  .item a .overlay-layer {
    position: absolute;
    top: auto;
    bottom: 0.45em;
    padding: .6em 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-transform: uppercase;
    text-align: center; } }
/* Sidebar */
.sidebar .styled-select {
  width: 100%;
  border: 0;
  padding: 0;
  margin-bottom: 1em;
  cursor: pointer; }
  .sidebar .styled-select select {
    padding: 0;
    width: 120%;
    text-transform: uppercase;
    cursor: pointer; }
.sidebar section {
  margin-bottom: 1em; }
.sidebar a {
  padding-bottom: .3em;
  display: block;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out; }
.sidebar a:hover {
  opacity: .7; }
.sidebar a.cart-status {
  display: block;
  width: 100%;
  clear: right; }

.sidebar .cart-status.has-product {
  color: #c50a0a; }

.user-meta {
  width: 70%; }

@media all and (max-width: 1000px) {
  .user-meta {
    width: 100%; } }
.ship-to {
  padding-bottom: 0; }

/* Language selector */
.lang-trigger {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 50%;
  margin-right: -480px;
  display: inline-block;
  width: 34px;
  height: 34px;
  cursor: pointer;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out; }
  .lang-trigger.is-hidden {
    display: none; }
  .lang-trigger:hover {
    opacity: .7; }
  .lang-trigger i {
    color: #000;
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 1.5em;
    margin: .3em; }

.lang-selector {
  position: absolute;
  z-index: 1;
  top: -100px;
  right: 50%;
  margin-right: -480px;
  background-color: #000;
  padding: 1em 3em 1em 1.1em;
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out; }
  .lang-selector .close {
    right: 10px;
    top: 13px;
    width: 28px;
    height: 28px;
    z-index: 3; }
  .lang-selector .close:before,
  .lang-selector .close:after {
    width: 24px;
    height: 2px;
    top: 14px;
    background-color: #fff; }
  .lang-selector.is-hidden {
    display: none; }
  .lang-selector.is-active {
    top: 0;
    display: block; }
  .lang-selector a {
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 2.3em;
    font-size: .875em;
    font-weight: 600;
    text-align: center;
    padding-left: 2px;
    background-color: #fff;
    color: #000;
    border-radius: 100%;
    margin: 0 .4em;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out; }
  .lang-selector a:hover {
    color: #666; }

@media all and (max-width: 1008px) {
  .lang-trigger,
  .lang-selector {
    right: 25px;
    margin-right: 0; } }
@media all and (max-width: 860px) {
  .lang-trigger,
  .lang-selector {
    display: none; } }
/* Panels */
.sh-panel {
  border: 1px solid #000;
  padding: .5em;
  position: relative;
  margin-bottom: 1em; }
  .sh-panel .title {
    text-align: center;
    padding-bottom: 0; }
  .sh-panel .close {
    right: 10px;
    top: 11px; }
  .sh-panel.sh-error {
    border: 1px solid #b41212; }
    .sh-panel.sh-error .title {
      color: #b41212; }
    .sh-panel.sh-error .close:before,
    .sh-panel.sh-error .close:after {
      background-color: #b41212; }
  .sh-panel.sh-success {
    border: 1px solid #4f930c; }
    .sh-panel.sh-success .title {
      color: #4f930c; }
    .sh-panel.sh-success .close:before,
    .sh-panel.sh-success .close:after {
      background-color: #4f930c; }

/* Close icon */
.close {
  position: absolute;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 14px;
  height: 14px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  text-indent: -9999px; }

.close:hover {
  opacity: .7;
  border: 0;
  background: transparent;
  outline: 0; }

.close:active,
.close:focus {
  outline: 0; }

.close:before,
.close:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: -1px;
  background-color: #000;
  width: 16px;
  height: 1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Sticky nav elements */
.sticky-wrapper {
  display: none;
  z-index: 4;
  position: relative;
  width: 44px;
  height: 44px;
  background-color: #000;
  position: fixed;
  left: 3.5%;
  bottom: 70px;
  border-radius: 3px; }
  .sticky-wrapper .sticky-trigger {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9; }
  .sticky-wrapper .sticky-trigger span {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s; }
  .sticky-wrapper .sticky-trigger span:before, .sticky-wrapper .sticky-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    background: inherit;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, background 0s;
    transition: transform 0.3s, background 0s; }
  .sticky-wrapper .sticky-trigger span:before {
    top: -6px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0); }
  .sticky-wrapper .sticky-trigger span:after {
    bottom: -6px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0); }
  .sticky-wrapper .sticky-trigger.is-opened span:before, .sticky-wrapper .sticky-trigger.is-opened span:after {
    background: #fff; }
  .sticky-wrapper .sticky-trigger.is-opened span {
    background: transparent; }
  .sticky-wrapper .sticky-trigger.is-opened span:before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg); }
  .sticky-wrapper .sticky-trigger.is-opened span:after {
    bottom: 0;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg); }

/* Sticky nav menu elements */
.sticky-wrapper ul {
  position: fixed;
  width: 90%;
  max-width: 220px;
  left: 3.5%;
  bottom: 70px;
  border-radius: 3px;
  padding: 0;
  background: #000;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s; }
  .sticky-wrapper ul a {
    color: #fff;
    display: block;
    padding: .6em 1em .6em 3.2em;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .sticky-wrapper ul a:hover {
    color: #666; }

.sticky-wrapper ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s; }

@media all and (max-width: 1024px) {
  .sticky-wrapper {
    display: none !important; } }
/* Form elements & buttons */
input[type="text"],
input[type="password"],
input[type="email"] {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #333333;
  padding: .5em; }

input:disabled {
  opacity: .4;
  cursor: default; }

.button {
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: white;
  color: #333333;
  width: 100%;
  text-align: center;
  border: 1px solid #333333;
  padding: .7em 0;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1em;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.button:hover {
  background-color: #333333;
  border: 1px solid #333333;
  color: white; }

.button.inverse {
  background-color: #333333;
  color: white; }

.button.inverse:hover {
  background-color: white;
  color: #333333; }

.radio-options {
  padding: .1em 0 .75em; }
  .radio-options span {
    display: inline-block;
    position: relative;
    float: right;
    width: 76%;
    margin: 3px 0; }
    .radio-options span input,
    .radio-options span label {
      width: auto;
      float: left; }
    .radio-options span input {
      position: absolute;
      left: 0;
      visibility: hidden; }
    .radio-options span input + span {
      display: inline-block;
      float: left;
      width: 16px;
      height: 16px;
      border: 1px solid #000;
      border-radius: 100%;
      margin-right: .65em;
      top: -1px; }
    .radio-options span input:checked + span:after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      background-color: #000;
      border-radius: 100%;
      top: 50%;
      left: 50%;
      margin: -4px 0 0 -4px; }
    .radio-options span label {
      padding-left: 2em;
      position: absolute;
      left: 0; }

.checkbox-options {
  padding: .1em 0 .75em; }
  .checkbox-options span {
    display: inline-block;
    position: relative;
    float: right;
    width: 76%;
    margin: 3px 0; }
    .checkbox-options span input,
    .checkbox-options span label {
      width: auto;
      float: left; }
    .checkbox-options span input {
      position: absolute;
      left: 0;
      visibility: hidden; }
    .checkbox-options span input + span {
      display: inline-block;
      float: left;
      width: 16px;
      height: 16px;
      border: 1px solid #000;
      border-radius: 0;
      margin-right: .65em;
      top: -1px; }
    .checkbox-options span input:checked + span:after {
      content: "";
      position: absolute;
      width: 17px;
      height: 11px;
      left: 2px;
      top: 0;
      background: url("http://www.aeron.hu/images/check.png") no-repeat 0 50%;
      -webkit-background-size: 100% 100%;
      background-size: 100% 100%; }
    .checkbox-options span label {
      padding-left: 2em;
      position: absolute;
      left: 0; }

form .error {
  color: red; }

.customer-form h3 {
  text-transform: uppercase;
  font-size: 1.125em; }
.customer-form p {
  padding-bottom: .4em; }
.customer-form label {
  float: left;
  display: inline-block;
  width: 20%; }
.customer-form input {
  float: right;
  display: inline-block;
  width: 76%; }
.customer-form .button {
  margin-top: 1em;
  float: right;
  width: 40%; }

@media all and (max-width: 568px) {
  .customer-form label {
    float: none;
    display: block;
    width: 100%; }
  .customer-form input {
    float: none;
    display: block;
    width: 100%; } }
/* Bootstrap components */
.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }

.carousel-inner > .item {
  position: relative;
  width: 100%;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
  padding: 0; }

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1; }

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }

.carousel-inner > .active {
  left: 0; }

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

.carousel-inner > .next {
  left: 100%; }

.carousel-inner > .prev {
  left: -100%; }

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }

.carousel-inner > .active.left {
  left: -100%; }

.carousel-inner > .active.right {
  left: 100%; }

.carousel-caption {
  z-index: 10; }

.modal-open {
  overflow: hidden; }

body.modal-open {
  padding-right: 0 !important; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  visibility: visible; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px; }

.modal-header .close {
  position: absolute;
  right: 10px;
  top: 10px; }

.modal-title {
  margin: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: normal;
  font-family: 'futurace-light', sans-serif; }

.modal-body {
  position: relative;
  padding: 0 15px 15px; }
  .modal-body form .button {
    display: block;
    width: 100%; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-sm {
    width: 460px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #333;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

.popover.bottom {
  margin-top: 10px; }

.popover.left {
  margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb; }

.popover-content {
  padding: 9px 14px; }
  .popover-content .btn-default {
    cursor: pointer; }

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px; }

.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table; }

.modal-footer:after {
  clear: both; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.nav-tabs {
  width: 100%;
  display: block; }
  .nav-tabs:after {
    content: "";
    display: table;
    clear: both; }
  .nav-tabs li {
    float: left;
    padding-left: .4em; }
    .nav-tabs li a {
      text-transform: uppercase;
      font-size: 14px;
      display: block;
      border: 1px solid #ccc;
      padding: .2em .5em;
      border-bottom: 0; }

.tab-pane {
  border-top: 1px solid #ccc;
  display: none;
  opacity: 0;
  padding: .5em .4em .4em;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear; }
  .tab-pane.active {
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
    display: block;
    opacity: 1; }

/* Helpers */
.a-left {
  text-align: left; }

.a-right {
  text-align: right; }

.a-center {
  text-align: center; }

.first {
  padding-left: 0 !important; }

.last {
  padding-right: 0 !important; }

/* Animation helpers */
@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0); }

  20% {
    opacity: .2;
    -webkit-transform: scale(0.5); }

  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }

  20% {
    opacity: .2;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }
.zoomin {
  -webkit-animation: pop-in .3s;
  animation: pop-in .3s; }

/* Header */
.header {
  padding: 2em 0; }

@media all and (max-width: 860px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: .6em 0 1em;
    background-color: #fff;
    border-bottom: 3px solid #e4e4e4; } }
/* Site menu */
.main-menu {
  font-size: .875em; }
  .main-menu a {
    text-transform: uppercase; }

.slimScrollBar {
  display: none !important;
  /* Hide scrollbar on desktop */ }

@media all and (min-width: 860px) {
  .main-menu {
    position: absolute;
    width: 100%;
    top: 3.5em;
    right: 50%;
    font-size: 1em;
    margin-right: -480px;
    -webkit-transition: top .4s linear !important;
    transition: top .4s linear !important; }
    .main-menu li a {
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
    .main-menu ul {
      float: right; }
    .main-menu .search-mobile,
    .main-menu section {
      display: none; }
    .main-menu.pos-top {
      -webkit-transition: top .4s linear;
      transition: top .4s linear;
      top: 10.8em; }

  .sub-menu-layer,
  .sub-menu {
    display: none; }

  .main-menu li {
    float: left;
    font-size: 1em;
    margin-left: 1em; }

  .main-menu li:first-child {
    margin-left: 0; }

  .main-menu .menu-wrapper > ul > li {
    line-height: 28px;
    padding: 0; }
  .main-menu a {
    text-transform: uppercase;
    color: #333333; }
  .main-menu a:hover {
    color: #999999; }
  .main-menu li > .sub-menu-layer {
    display: block;
    position: absolute;
    height: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    width: 100%;
    left: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
  .main-menu li > .sub-menu {
    display: block;
    height: 0;
    opacity: 0;
    position: absolute;
    z-index: 11;
    padding-top: 0.3em;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    overflow: hidden; }
  .main-menu li > .sub-menu li {
    display: none; }
  .main-menu li:hover > .sub-menu-layer {
    opacity: 1;
    padding: 4.8em 1em;
    height: auto;
    max-height: 450px; }
  .main-menu li.menu-archives:hover > .sub-menu-layer {
    padding: 9.5em 1em; }
  .main-menu li:hover > .sub-menu {
    opacity: 1;
    height: auto; }
    .main-menu li:hover > .sub-menu li {
      display: block; }
  .main-menu li > .sub-menu li {
    margin-left: 0;
    width: 100%;
    padding: .2em 0;
    line-height: 1.4em; }
  .main-menu .slimScrollDiv {
    overflow: visible !important; }
  .main-menu .desktop-search-trigger .searchBtn {
    display: block;
    width: 28px;
    height: 28px;
    text-align: center;
    cursor: pointer; }
    .main-menu .desktop-search-trigger .searchBtn i {
      position: relative;
      top: 2px;
      font-size: 1.1em; }
  .main-menu .desktop-search-trigger .searchForm {
    display: none; }
  .main-menu .desktop-search-trigger form {
    position: relative; }
    .main-menu .desktop-search-trigger form input.input-search {
      width: 200px;
      border: 1px solid #666; }
    .main-menu .desktop-search-trigger form button {
      position: absolute;
      right: 0;
      top: 0;
      border: 0;
      background: transparent;
      width: 28px;
      height: 28px;
      outline: 0; }
      .main-menu .desktop-search-trigger form button i {
        font-size: 1.5em; }
      .main-menu .desktop-search-trigger form button:active, .main-menu .desktop-search-trigger form button:focus {
        outline: 0; }
  .main-menu .desktop-search-trigger .search-results {
    position: absolute;
    display: none;
    top: 32px;
    right: 0;
    width: 280px;
    height: auto;
    border: 1px solid #666;
    padding: .8em 1em;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9; }
    .main-menu .desktop-search-trigger .search-results section {
      display: block;
      text-align: right; }
    .main-menu .desktop-search-trigger .search-results h2 {
      text-transform: uppercase;
      font-size: 1em;
      padding-top: .3em;
      padding-bottom: 0; }
    .main-menu .desktop-search-trigger .search-results ul, .main-menu .desktop-search-trigger .search-results li {
      float: none;
      display: block;
      margin-left: 0;
      line-height: 1.3em; }
    .main-menu .desktop-search-trigger .search-results a {
      text-transform: none; } }
@media all and (min-width: 860px) and (max-width: 1008px) {
  .main-menu {
    right: 1.5em;
    margin-right: 0; } }
@media all and (max-width: 860px) {
  body {
    padding-top: 5em; }

  .nav-trigger {
    display: block; }

  .slimScrollDiv {
    height: 100% !important; }

  .menu-wrapper {
    height: 100% !important;
    overflow-y: scroll; }

  .main-menu.not-ie {
    background-color: #000;
    color: #999999;
    position: fixed;
    z-index: 3;
    width: 300px;
    top: 0;
    bottom: 0;
    right: -300px;
    -webkit-transition: none;
    transition: none; }
    .main-menu.not-ie li a {
      display: block;
      padding: 1em 1.3em;
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      border-bottom: 1px solid #333; }
    .main-menu.not-ie .desktop-search-trigger {
      display: none; }
    .main-menu.not-ie .sub-menu li a,
    .main-menu.not-ie .sub-menu li span {
      display: block;
      font-weight: 600;
      color: #666;
      padding: 1em 1.3em 1em 2.5em; }
    .main-menu.not-ie .sub-menu > li > span {
      border-bottom: 1px solid #333; }
    .main-menu.not-ie a {
      color: white; }
    .main-menu.not-ie .menu-wrapper {
      position: relative;
      z-index: 2; }
    .main-menu.not-ie:after {
      content: "";
      -webkit-transition: opacity 1s;
      transition: opacity 1s;
      position: fixed;
      opacity: 0;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); }
    .main-menu.not-ie.is-pushed {
      right: 0;
      z-index: 9998; }
      .main-menu.not-ie.is-pushed:after {
        right: 0;
        z-index: 1;
        opacity: 1; }

  .main-menu section {
    padding: 1em;
    color: #666; }

  .main-menu .social-links {
    float: none;
    padding: 1.3em 1em; }
    .main-menu .social-links a {
      padding-left: 0;
      padding-right: .7em; }

  .main-menu .social-links i {
    background-color: #fff;
    border-radius: 100%;
    padding: .3em;
    color: #000; }

  .main-menu .lang span {
    display: block;
    text-transform: uppercase; }
  .main-menu .lang a {
    display: inline-block;
    width: 1.9em;
    height: 1.9em;
    line-height: 2em;
    font-size: .875em;
    font-weight: 600;
    text-align: center;
    padding-left: 2px;
    background-color: #fff;
    color: #000;
    border-radius: 100%;
    margin: .5em .7em 0 0;
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out; }
  .main-menu .lang a:hover {
    opacity: .6; }

  .main-menu .copy {
    padding-top: 0; }
    .main-menu .copy span,
    .main-menu .copy a {
      color: #666;
      display: block;
      margin: 0;
      padding: .3em 0; }

  .search-mobile {
    margin: 1.2em 1.4em; }
    .search-mobile input[type="text"] {
      border: 0;
      width: 60%;
      font-size: 0.875em;
      font-family: Arial, sans-serif;
      font-weight: 100;
      background-color: transparent;
      color: white;
      border-bottom: 1px solid #fff; }
    .search-mobile input[type="submit"] {
      border: 0;
      width: 30px;
      height: 30px;
      margin-right: .5em;
      text-indent: -9999px;
      background: transparent url("http://www.aeron.hu/images/icon_search_white.png") no-repeat 50% 50%;
      -webkit-background-size: 80% 80%;
      background-size: 80% 80%; }

  /* Mobile menu for Windows Phone devices */
  .nav-trigger.is-ie.is-active:before {
    background-color: #000;
    -webkit-box-shadow: 0 7px 0  #000, 0 14px 0  #000;
    box-shadow: 0 7px 0  #000, 0 14px 0  #000; }

  .main-menu-wrapper.is-ie {
    padding: 0;
    margin-top: -0.85em;
    margin-bottom: 1em; }

  .main-menu.is-ie {
    display: none;
    padding: 1em 1.75em;
    background: #000; }
    .main-menu.is-ie li a {
      display: block;
      padding: 1em 0;
      color: #fff;
      border-bottom: 1px solid #ccc; }
    .main-menu.is-ie .sub-menu li {
      padding-left: 1em;
      color: #fff; }
    .main-menu.is-ie .sub-menu li a {
      color: #fff; }
    .main-menu.is-ie .desktop-search-trigger {
      display: none; }
    .main-menu.is-ie section {
      padding-left: 0;
      color: #ccc; }
    .main-menu.is-ie section i,
    .main-menu.is-ie .lang a {
      background-color: white;
      color: #333333; }
    .main-menu.is-ie .copy span, .main-menu.is-ie .copy a {
      color: #ccc; }
    .main-menu.is-ie .search-mobile {
      margin: .5em 0; }
      .main-menu.is-ie .search-mobile input[type="text"] {
        border: 0;
        width: 80%;
        background: transparent;
        border-bottom: 1px solid #fff; }
      .main-menu.is-ie .search-mobile input[type="submit"] {
        background: transparent url("http://www.aeron.hu/images/icon_search_white.png") no-repeat 50% 50%;
        -webkit-background-size: 80% 80%;
        background-size: 80% 80%; } }
@media all and (max-width: 480px) {
  .main-menu.not-ie {
    width: 80%;
    right: -80%; } }
.secondary-nav {
  width: 360px;
  position: absolute;
  right: 50%;
  top: 20px;
  text-align: right;
  margin-right: -480px;
  text-transform: uppercase;
  font-size: 12px;
  color: #999; }
  .secondary-nav > div {
    margin: 0; }
  .secondary-nav a {
    color: #333; }
    .secondary-nav a:hover {
      color: #000; }

@media (max-width: 1008px) and (min-width: 860px) {
  .secondary-nav {
    right: 1.8em;
    margin-right: 0; } }
@media all and (max-width: 860px) {
  .secondary-nav {
    display: none; } }
.lang-select a {
  display: inline-block;
  width: 20px;
  height: 18px;
  text-align: center;
  line-height: 18px; }
.lang-select .is-active {
  background-color: #000;
  color: #fff; }

@media all and (max-width: 568px) {
  body {
    padding-top: 5em; } }
/* Header */
.logo {
  width: 182px;
  height: 41px;
  background: url("http://www.aeron.hu/images/logo-aeron@2x.png");
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  float: left;
  text-indent: -9999px;
  overflow: hidden;
  -webkit-transition: top .4s linear;
  transition: top .4s linear;
  opacity: .9; }
  .logo a {
    display: block;
    width: 100%;
    height: 100%; }
  .logo.pos-top {
    top: 4.2em; }

@media all and (min-device-pixel-ratio: 2) {
  .logo {
    background: url("http://www.aeron.hu/images/logo-aeron@2x.png"); } }
@media all and (min-width: 1100px) {
  .header {
    padding: 3em 0; }

  .logo {
    position: absolute;
    left: 50%;
    top: 1em;
    margin-left: -480px; } }
/* Footer */
.footer {
  padding-bottom: 2em; }

.copy {
  float: left; }
  .copy span {
    display: inline-block;
    padding-right: .5em; }
  .copy a {
    display: inline-block;
    margin: 0 .5em; }
  .copy a:hover {
    text-decoration: underline; }

.social-links {
  float: right;
  line-height: 1em; }
  .social-links a {
    display: inline;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    padding-left: .5em; }
  .social-links a:hover {
    opacity: .7; }
  .social-links a span {
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden; }
  .social-links i {
    display: inline-block; }

@media all and (max-width: 860px) {
  .footer {
    display: none; } }
/* ***************************************
PAGE STYLES
*************************************** */
/* Layout - Contact page */
.contact h2 {
  font-family: 'futurace-light', Arial, sans-serif; }

.contact p {
  padding-bottom: 1.6em; }

@media all and (max-width: 567px) {
  .contact .col-left {
    display: none; } }
/* Layout - Client login */
.clients {
  width: 80%;
  max-width: 600px;
  margin: 1em auto 3em; }
  .clients h2 {
    text-transform: uppercase; }
  .clients label {
    display: block;
    padding-bottom: .5em;
    font-size: 1.125em; }
  .clients input {
    width: 100%;
    padding: 1em; }
  .clients .button {
    margin-top: 1em; }

/* Layout - Showrooms */
/*.showrooms {
  line-height: 1.3em;
  margin-bottom: 3em;
  position: relative;
  .col-three {
    z-index: 1;
  }
  .col-region {
    float: left;
    width: 9.59%;
    font-size: .875em;
  }
  .col-showrooms {
    float: left;
    width: 51.769%;
    .col-left,
    .col-right {
      float: left;
      width: 50%;
      padding-right: 2em;
      font-size: .875em;
      a {
        display: block;
        color: #404040;
      }
      a:hover {
        color: $color;
      }
    }
  }
  .col-shopdetails {
    float: left;
    width: 38.64%;
  }
  iframe {
    border: 0;
  }
  .map-container {
    position:absolute;
    left: -10000px;
    visibility:hidden;
    clear: left;
  }
}
*/
.region-list a.region {
  display: block;
  text-transform: uppercase;
  font-size: 1.125em;
  padding-bottom: .3em; }
.region-list li.active a.region {
  font-family: 'futurace-bold', Arial, sans-serif; }

.tab-content .tab-pane {
  display: block;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -10000px;
  border-top: 0; }
  .tab-content .tab-pane.active {
    visibility: visible;
    position: relative;
    height: auto;
    left: 0; }

.block-store {
  line-height: 1.25em;
  margin-bottom: 1.5em; }
  .block-store span {
    display: block; }

.reveal-map {
  width: 50%;
  margin: 1em 0 .5em;
  font-size: 11px; }

.map-wrapper {
  visibility: hidden;
  position: absolute;
  left: -10000px; }
  .map-wrapper.is-visible {
    visibility: visible;
    position: relative;
    left: 0; }

.map-wrapper {
  margin-bottom: 1.25em; }
  .map-wrapper iframe {
    max-width: 100%; }

/*@media all and (max-width: 860px) {
  .showrooms {
    .col-region {
      float: none;
      width: 100%;
      margin-bottom: 2em;
    }
    .col-showrooms {
      float: none;
      width: 100%;
      margin-bottom: 2em;
      .col-left,
      .col-right {
        float: left;
        width: 50%;
        margin-bottom: 2em;
      }
    }
    .col-shopdetails {
      float: none;
      width: 100%;
      margin-bottom: 2em;
    }
  }
  .col-shopdetails .showroom-map {
    iframe { width: 100%; }
  }

}
*/
/* Layout - With */
.wrapper.with {
  padding: 0;
  position: relative; }

.with .col-left,
.with .col-right {
  width: 50%; }

.with .col-left {
  padding-right: 2em; }

.with .col-right {
  padding-left: 2em; }
  .with .col-right img {
    padding-top: .6em; }

@media all and (max-width: 568px) {
  .with .col-left,
  .with .col-right {
    width: 100%;
    padding: 0; }

  .with .col-right img {
    padding: 0;
    width: 100%; } }
/* Layout - Collection page */
.desc {
  margin: 2.5em 0 3em; }

/* Layout - Product page */
.two-cols.product-single h2 {
  font-size: 1.125em; }
.two-cols.product-single .col-left {
  float: left;
  width: 44%; }
.two-cols.product-single .col-right {
  float: right;
  width: 50%; }

@media all and (max-width: 568px) {
  .two-cols.product-single .col-right {
    padding-bottom: 4em; } }
.product-single {
  position: relative; }
  .product-single .col-right {
    height: 100%; }
  .product-single .backlink {
    position: absolute;
    z-index: 9999;
    bottom: .2em;
    padding: 0;
    text-transform: uppercase;
    right: 2.3%;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
  .product-single .backlink:hover {
    opacity: .7; }

@media all and (max-width: 567px) {
  .two-cols.product-single .col-left,
  .two-cols.product-single .col-right {
    float: none;
    width: 100%;
    margin-bottom: 1.5em; } }
.product-image-gallery .gallery-image {
  display: none; }
  .product-image-gallery .gallery-image.visible {
    display: block; }

.zoom {
  margin-bottom: 1em; }

.product-image-thumbs img {
  border: 1px solid #eaeaea; }

@media all and (max-width: 860px) {
  .product-image-thumbs .col-3 {
    width: 23.5%;
    margin-left: 2%;
    float: left; }
  .product-image-thumbs .col-3:first-child {
    margin-left: 0; } }
/* Layout - Lookbook product */
.carousel-control {
  text-transform: uppercase;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out; }
  .carousel-control.left:after {
    content: "/";
    position: relative;
    padding-left: .5em;
    top: 0; }
  .carousel-control:hover {
    opacity: .6; }

@media all and (min-width: 567px) {
  .carousel-control {
    position: absolute;
    bottom: .2em;
    left: 50%; }
    .carousel-control.right {
      margin-left: 5.5em; } }
/* Layout - Product list */
.product-grid {
  margin-bottom: 2.5em; }
  .product-grid .col-main {
    float: right;
    width: 84%; }
  .product-grid .sidebar {
    float: left;
    width: 14%;
    text-transform: uppercase; }

.product-card {
  width: 33%;
  float: left;
  text-align: center;
  padding: 0 0.5em;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out; }
  .product-card .product-name a {
    display: block;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden; }

@media all and (min-width: 569px) and (max-width: 640px) {
  .product-grid .col-main {
    width: 70%; }
  .product-grid .sidebar {
    width: 30%;
    padding-right: 1em; } }
@media all and (min-width: 641px) and (max-width: 840px) {
  .product-grid .col-main {
    width: 78%; }
  .product-grid .sidebar {
    width: 22%;
    padding-right: 1.5em; } }
@media all and (max-width: 768px) {
  .product-card {
    width: 50%; } }
@media all and (max-width: 568px) {
  .product-grid .col-main {
    width: 100%;
    display: table-footer-group;
    float: none; }
  .product-grid .sidebar {
    display: table-header-group;
    float: none;
    margin-bottom: 1.5em; }
    .product-grid .sidebar section {
      border: 1px solid #333;
      height: 40px;
      padding: 0 1em 1em;
      overflow: hidden;
      position: relative; }
      .product-grid .sidebar section h4 {
        padding-bottom: 0;
        line-height: 40px; }
      .product-grid .sidebar section:after {
        content: "";
        display: block;
        position: absolute;
        right: 15px;
        top: 19px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 5.5px 0 5.5px;
        border-color: #40494c transparent transparent transparent;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out; }
      .product-grid .sidebar section.is-opened {
        padding-bottom: 1em;
        height: auto; } }
/* Layout - Product single */
.product-image,
.product-details {
  float: left; }

.product-image {
  width: 55%;
  position: relative;
  padding-right: 3em; }

@media all and (max-width: 860px) {
  .product-image {
    padding-right: 0; } }
.product-details {
  width: 45%;
  padding-left: 1em; }
  .product-details h2 {
    text-transform: uppercase;
    font-size: 1.6em;
    font-family: 'futurace-light', Arial, sans-serif;
    line-height: 1.2em;
    margin-bottom: 0; }
  .product-details .styled-select {
    right: 1px; }
  .product-details > * {
    margin-bottom: 1em; }
  .product-details .sku {
    margin-bottom: .5em; }
  .product-details .color-select {
    margin-bottom: 2em; }
    .product-details .color-select .material {
      margin-top: 6px;
      margin-bottom: 6px;
      position: relative;
      cursor: pointer;
      height: 45px;
      overflow: hidden; }
      .product-details .color-select .material img {
        width: 100%;
        height: 45px; }
    .product-details .color-select .material.is-selected {
      border: 1px solid #000;
      height: 43px;
      padding: 3px; }
      .product-details .color-select .material.is-selected img {
        width: 100%;
        height: 35px;
        vertical-align: top; }
      .product-details .color-select .material.is-selected:after {
        content: "";
        position: absolute;
        right: 13px;
        top: 50%;
        margin-top: -11px;
        width: 21px;
        height: 21px;
        background: url("http://www.aeron.hu/images/check_white.png") no-repeat 0 0; }
  .product-details .product-desc {
    line-height: 1.3em; }
  .product-details button {
    margin-bottom: 2em; }

.size-select label {
  float: left; }

.styled-select {
  position: relative;
  background-color: #fff;
  width: 70%;
  height: 24px;
  overflow: hidden;
  border: 1px solid #333333;
  float: right;
  cursor: pointer; }
  .styled-select select {
    -moz-appearance: window;
    text-indent: 0.01px;
    text-overflow: '';
    background-color: transparent;
    width: 110%;
    padding: 0 5px;
    font-size: 12px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 24px;
    -webkit-appearance: none;
    appearance: none;
    color: #333333;
    cursor: pointer;
    outline: 0; }
  .styled-select select:active,
  .styled-select select:focus {
    outline: 0; }

.styled-select:after {
  content: "";
  position: absolute;
  right: 3%;
  top: 50%;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #333333 transparent transparent transparent; }

.option-color {
  position: relative; }
  .option-color input[type="radio"] {
    visibility: hidden;
    position: absolute;
    left: 0; }
  .option-color label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 100%;
    text-indent: -9999px;
    vertical-align: middle;
    margin: 0 8px;
    cursor: pointer;
    position: relative;
    top: -1px; }
  .option-color input[type="radio"]:checked + label {
    width: 14px;
    height: 14px;
    border: 2px solid #98c7ff;
    margin: 0 7px; }
  .option-color input#brown + label {
    background-color: #544e3c; }
  .option-color input#beige + label {
    background-color: #c4ba9d; }
  .option-color input#salmon + label {
    background-color: #c4a49d; }

.care-guide li {
  line-height: 1em;
  margin: 0;
  position: relative;
  line-height: 1.5em;
  width: 100%;
  padding-left: 2em; }

.care-guide i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  margin-right: 1em;
  background: url("http://www.aeron.hu/images/cloth_info_icons.png") 0 -8px; }

.care-guide i.icon-dryclean {
  background-position: 0 -31px; }

.care-guide i.icon-nothumble {
  background-position: 0 -57px; }

.care-guide i.icon-noiron {
  background-position: 0 -80px; }

.care-guide i.icon-nowash {
  background-position: 0 -105px; }

.care-guide,
.related-products {
  margin-bottom: 2em; }
  .care-guide a,
  .related-products a {
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out; }
  .care-guide a:hover,
  .related-products a:hover {
    opacity: .7; }

.care-guide h4 {
  padding-bottom: .4em; }
.care-guide a {
  font-size: .875em;
  line-height: 1.8em; }

.related-products p {
  font-weight: 600;
  padding-bottom: .4em; }

.zoomContainer {
  z-index: 101; }
  .zoomContainer .zoomLens {
    cursor: move !important;
    border: 1px solid #ccc !important; }
  .zoomContainer .zoomWindowContainer {
    width: 405px !important; }
  .zoomContainer .zoomWindowContainer .zoomWindow {
    width: 405px !important;
    height: 550px !important;
    border: 1px solid #ccc !important; }

@media all and (max-width: 1024px) {
  .zoomContainer .zoomWindowContainer {
    width: 300px !important; }
  .zoomContainer .zoomWindowContainer .zoomWindow {
    width: 300px !important;
    height: 300px !important; } }
@media all and (max-width: 820px) {
  .zoomContainer {
    display: none !important; } }
/* Layout - Product single - Mobile */
@media all and (max-width: 820px) {
  .product-image,
  .product-details {
    float: none;
    width: 100%; }

  .product-image {
    margin-bottom: 2em; } }
/* Layout - Customer ineractions */
.customer-act {
  padding-right: 14em; }
  .customer-act h2 {
    text-transform: uppercase;
    font-size: 2.125em;
    line-height: 1.1em;
    font-family: 'futurace-light', Arial, sans-serif;
    font-weight: normal; }

@media all and (max-width: 1024px) {
  .customer-act {
    padding: 0; } }
/* Layout - Customer Login */
.customer-signup .fb-login {
  border-bottom: 1px solid #000;
  padding-bottom: 1em;
  margin-bottom: 1em; }
  .customer-signup .fb-login h3 {
    text-transform: uppercase;
    font-size: 1.125em;
    border-bottom: 1px solid #000;
    margin-bottom: 1.125em; }

/* Layout - Checkout */
.customer-info {
  border-bottom: 1px solid #000;
  margin-bottom: 1em; }
  .customer-info p {
    padding-bottom: 0; }
  .customer-info span {
    display: inline-block; }
  .customer-info .txt-left {
    width: 22%; }
  .customer-info .txt-right {
    width: 78%; }
  .customer-info .coupon-code {
    text-transform: uppercase;
    padding: .8em 0 1em; }

/* Layout - Checkout - Mobile */
@media all and (max-width: 568px) {
  .customer-info .txt-left {
    width: 100%; }
  .customer-info .txt-right {
    width: 100%; }

  .customer-shipping label,
  .customer-shipping input {
    float: none;
    display: block;
    width: 100%;
    outline: 0; }
    .customer-shipping label:active, .customer-shipping label:focus,
    .customer-shipping input:active,
    .customer-shipping input:focus {
      outline: 0; } }
/* Layout - Shopping bag */
.customer-act.shopping-bag h2 {
  font-size: 1.7em; }

.cart-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  vertical-align: middle;
  margin-bottom: 4em; }
  .cart-table th, .cart-table td {
    border-bottom: 1px solid #ccc;
    padding: 1em; }
  .cart-table th {
    text-transform: uppercase; }
  .cart-table tr:last-child td {
    border-bottom: 0; }
  .cart-table .product-name {
    text-transform: uppercase; }
    .cart-table .product-name img {
      float: left;
      border: 0;
      margin-right: 1em; }
    .cart-table .product-name .cart-sku {
      display: block; }
  .cart-table span[class^="color-"] {
    background-color: #444;
    display: inline-block;
    width: 40px;
    height: 20px;
    position: relative;
    top: 1px; }
  .cart-table span.color-olive {
    background-color: #c4ba9d; }
  .cart-table .qty-wrapper {
    position: relative;
    width: 53px;
    height: 35px;
    display: inline-block;
    maring: 0 auto; }
    .cart-table .qty-wrapper .input-qty {
      position: absolute;
      top: 0;
      left: 0;
      width: 35px;
      height: 35px;
      text-align: center; }
    .cart-table .qty-wrapper .qty-up,
    .cart-table .qty-wrapper .qty-dwn {
      position: absolute;
      right: 0;
      width: 16px;
      height: 16px;
      cursor: pointer;
      border: 1px solid #000;
      line-height: 16px;
      font-size: 16px;
      text-align: center;
      overflow: hidden; }
    .cart-table .qty-wrapper .qty-up {
      top: 0; }
    .cart-table .qty-wrapper .qty-dwn {
      bottom: 0; }
      .cart-table .qty-wrapper .qty-dwn > span {
        position: relative;
        top: -2px; }
  .cart-table .btn-remove {
    border: 0;
    display: block;
    margin: 0 auto;
    background: transparent;
    width: 1em;
    height: 1em;
    position: relative;
    cursor: pointer;
    outline: 0;
    top: -0.7em; }
    .cart-table .btn-remove:before, .cart-table .btn-remove:after {
      content: "";
      display: block;
      position: absolute;
      top: .5em;
      left: -.4em;
      width: 1.6em;
      height: 1px;
      background-color: #000;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .cart-table .btn-remove:after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.order-summary {
  text-transform: uppercase;
  margin-bottom: 2em; }

.order-summary tr:last-child td {
  border-bottom: 1px solid #ccc; }

.order-total td {
  padding: .8em 0 .7em;
  font-size: 1.7em;
  font-family: 'futurace-light', Arial, sans-serif; }

.checkout-proceed span {
  line-height: 2.5em;
  padding-right: 1.5em;
  text-transform: uppercase; }
.checkout-proceed .button {
  width: 55%;
  float: right; }

@media all and (max-width: 640px) {
  .checkout-proceed span {
    padding-right: 0;
    float: left;
    font-size: .875em; }
  .checkout-proceed .button {
    width: 58%;
    font-size: .875em; } }
@media all and (max-width: 568px) {
  .cart-table th, .cart-table td {
    font-size: .875em; }
  .cart-table .product-name img {
    margin-bottom: 1em; }
  .cart-table .product-name p {
    line-height: 1.2em; }

  .order-total td {
    font-size: 1em; } }
@media all and (max-width: 340px) {
  /* for smaller screens */
  .cart-table {
    font-size: .875em; }
    .cart-table th, .cart-table td {
      padding: .5em; }
    .cart-table th {
      font-size: .75em;
      line-height: 1.2em; }

  .checkout-proceed span {
    font-size: .65em; }

  .checkout-proceed .button {
    font-size: .75em; } }

/* Static additions */
.coming-soon {
  text-align: center;
  font-size: 30px;
  padding: 60px 0 0; }
.campaign-row { margin-bottom: 1em; }
.lookbookMsnry {
  margin: 0 0 2em;
  width: 100%;
}
.lookbookMsnry .item {
  float: left;
  min-height: 480px;
}
.lookbookMsnry .item .overlay-layer {
  display: none;
}
.lookbookMsnry .item.camp-item {
  min-height: 0;
}
.lookbookMsnry .item.acc-item {
  min-height: 420px;
}

.menu-nolink {
  color: #000;
}

.carousel-caption dl{width:320px;margin:10px 0 0 5px;}
.carousel-caption dt{float:left;}
.carousel-caption dt{width:75%;text-align:left;text-transform:uppercase;}
.carousel-caption dd{width:20%;float:right;text-align:right;}

.product-single {
  position: relative;
}
.product-single .back-button {
  position: absolute;
  bottom: 0;
  right: 0;
}
.prodDet {
  text-transform:uppercase;
  color: #333;
  font-size: 1em;
  width: 320px;
}
.prodDet li {
  display: block;
  text-align: left;
}
.prodDet li span {
  float: right;
}

.carousel-control {
  background: transparent;
  border: 0;
  font-size: 12px;
  color: #333;
}
.carousel-control.right {
  margin-left: 6.2em;
}

.prev-next-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  text-transform: uppercase;
}
.productPrev.hidden,
.productNext.hidden,
.productSpacer.hidden {
  display: none;
}

.client-landing {
  min-height: 550px;
}

.view-animate-container {
  position:relative;
}

.view-animate {
  padding-left:10px;
  padding-right:10px;
}

.view-animate.ng-enter {
  z-index: 8888;
  -webkit-animation: fadeIn 1s both linear;
  animation: fadeIn 1s both linear;
}
.view-animate.ng-leave {
  z-index: 9999;
  -webkit-animation: fadeOut .3s both linear;
  animation: fadeOut .3s both linear;
}

@-webkit-keyframes fadeIn { 0% { opacity: 0; }
  100% { opacity: 1; } }
@keyframes fadeIn { 0% { opacity: 0; }
  100% { opacity: 1; } }
.fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }

@-webkit-keyframes fadeOut { 0% { opacity: 1; }
  100% { opacity: 0; } }
@keyframes fadeOut { 0% { opacity: 1; }
  100% { opacity: 0; } }
.fadeOut { -webkit-animation-name: fadeOut; animation-name: fadeOut; }

@media screen and (max-width: 860px) {
  .row {
    padding: 0 1.5em;
  }
}

.active a { color: #999; }