HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/deensekroon.komma-mediadesign.nl/wwwroot/css/style.css
/* ==========================================================================
 * Functions used in grid calculation
 * ========================================================================== */
/**
 * * This is where the magic happens
 * * Return percentage based on amount of columns
 * * Use parent column size to adjust the origin
 * */
/**
 * * Default function for columns
 * * Return as percentage
 * */
/**
 * * Return as viewport width
 * */
ul#cart-process:after, form.cart-summary:after, .product-grid:after, .brand-grid:after {
  content: " ";
  display: table;
  clear: both;
}

/**
 * * Basic element styling
 * */
html {
  height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding-bottom: 88px;
  color: #555;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}

h1, h2, h3, h5 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #7f7f7f;
}

h1 {
  display: block;
  margin: 8px 0 40px 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  display: inline;
  font-size: 15px;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
}

h3 {
  display: inline;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  display: block;
  margin: 0 0 16px 0;
  color: #565656;
  font-weight: bold;
}

h5 {
  display: block;
  font-size: 14px;
  font-weight: normal;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 1px;
}

form {
  margin: 0;
  padding: 0;
}

input {
  color: #7f7f7f;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  border: none;
}

p {
  margin: 0 0 16px 0;
}

a {
  text-decoration: none;
  color: #069EF2;
}

a {
  text-decoration: underline;
  color: #069EF2;
}

hr {
  margin: 16px 0;
  height: 1px;
  background: #e5e5e5;
  border: none;
}

/**
 * * Main flexable layout containing aside and content
 * */
.main-flexable-layout {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}
@media screen and (max-width: 960px) {
  .main-flexable-layout {
    padding: 0 20px;
  }
}

#aside {
  position: relative;
  z-index: 100;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 160px;
  width: 160px;
  height: auto;
}

#content {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

/* ==========================================================================
 * Grid
 * ========================================================================== */
.contained-layout {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 0;
}

/* Columns
 * ========================================================================== */
/* * Calculate width by dividing a full width into 12 columns
 * * Create a class for each column
 * */
/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-1 {
  width: 16.6666666667%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-1.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.col-1 > .col-1 {
  width: 100%;
}

.col-1 > .col-2 {
  width: 200%;
}

.col-1 > .col-3 {
  width: 300%;
}

.col-1 > .col-4 {
  width: 400%;
}

.col-1 > .col-5 {
  width: 500%;
}

.col-1 > .col-6 {
  width: 600%;
}

/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-2 {
  width: 33.3333333333%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-2.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.col-2 > .col-2 {
  width: 100%;
}

.col-2 > .col-3 {
  width: 150%;
}

.col-2 > .col-4 {
  width: 200%;
}

.col-2 > .col-5 {
  width: 250%;
}

.col-2 > .col-6 {
  width: 300%;
}

/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-3 {
  width: 50%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-3.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.col-3 > .col-1 {
  width: 33.3333333333%;
}

.col-3 > .col-2 {
  width: 66.6666666667%;
}

.col-3 > .col-3 {
  width: 100%;
}

.col-3 > .col-4 {
  width: 133.3333333333%;
}

.col-3 > .col-5 {
  width: 166.6666666667%;
}

.col-3 > .col-6 {
  width: 200%;
}

/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-4 {
  width: 66.6666666667%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-4.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.col-4 > .col-2 {
  width: 50%;
}

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

.col-4 > .col-4 {
  width: 100%;
}

.col-4 > .col-5 {
  width: 125%;
}

.col-4 > .col-6 {
  width: 150%;
}

/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-5 {
  width: 83.3333333333%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-5.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.col-5 > .col-5 {
  width: 100%;
}

.col-5 > .col-6 {
  width: 120%;
}

/**
* * Grid column
* *
* * 1. Reset white-space inherited from `.grid`
* */
.col-6 {
  width: 100%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin: 0 auto;
  white-space: normal;
  /**
  * * Center column
  * *
  * * 1. 'inline-block' doesn't center with margin '0 auto'
  * */
}
.col-6.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.col-6 > .col-1 {
  width: 16.6666666667%;
}

.col-6 > .col-2 {
  width: 33.3333333333%;
}

.col-6 > .col-3 {
  width: 50%;
}

.col-6 > .col-4 {
  width: 66.6666666667%;
}

.col-6 > .col-5 {
  width: 83.3333333333%;
}

.col-6 > .col-6 {
  width: 100%;
}

/* Column offset
 * ========================================================================== */
.offset-1 {
  margin-left: 16.6666666667%;
}

.offset-2 {
  margin-left: 33.3333333333%;
}

.offset-3 {
  margin-left: 50%;
}

.offset-4 {
  margin-left: 66.6666666667%;
}

.offset-5 {
  margin-left: 83.3333333333%;
}

.offset-6 {
  margin-left: 100%;
}

/* Media queries
 * ========================================================================== */
/* * Define widths for different screen sizes
 * */
@media screen and (max-width: 960px) {
  .col-md-0 {
    width: 0%;
  }

  .offset-md-0 {
    margin-left: 0%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-0 {
    width: 0%;
  }

  .offset-sm-0 {
    margin-left: 0%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-0 {
    width: 0%;
  }

  .offset-mob-0 {
    margin-left: 0%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-0 {
    width: 0%;
  }

  .offset-xs-0 {
    margin-left: 0%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-1 {
    width: 16.6666666667%;
  }

  .offset-md-1 {
    margin-left: 16.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-1 {
    width: 16.6666666667%;
  }

  .offset-sm-1 {
    margin-left: 16.6666666667%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-1 {
    width: 16.6666666667%;
  }

  .offset-mob-1 {
    margin-left: 16.6666666667%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-1 {
    width: 16.6666666667%;
  }

  .offset-xs-1 {
    margin-left: 16.6666666667%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-2 {
    width: 33.3333333333%;
  }

  .offset-md-2 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-2 {
    width: 33.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-2 {
    width: 33.3333333333%;
  }

  .offset-mob-2 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-2 {
    width: 33.3333333333%;
  }

  .offset-xs-2 {
    margin-left: 33.3333333333%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-3 {
    width: 50%;
  }

  .offset-md-3 {
    margin-left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-3 {
    width: 50%;
  }

  .offset-sm-3 {
    margin-left: 50%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-3 {
    width: 50%;
  }

  .offset-mob-3 {
    margin-left: 50%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-3 {
    width: 50%;
  }

  .offset-xs-3 {
    margin-left: 50%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-4 {
    width: 66.6666666667%;
  }

  .offset-md-4 {
    margin-left: 66.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
    width: 66.6666666667%;
  }

  .offset-sm-4 {
    margin-left: 66.6666666667%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-4 {
    width: 66.6666666667%;
  }

  .offset-mob-4 {
    margin-left: 66.6666666667%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-4 {
    width: 66.6666666667%;
  }

  .offset-xs-4 {
    margin-left: 66.6666666667%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-5 {
    width: 83.3333333333%;
  }

  .offset-md-5 {
    margin-left: 83.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-5 {
    width: 83.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 83.3333333333%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-5 {
    width: 83.3333333333%;
  }

  .offset-mob-5 {
    margin-left: 83.3333333333%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-5 {
    width: 83.3333333333%;
  }

  .offset-xs-5 {
    margin-left: 83.3333333333%;
  }
}
@media screen and (max-width: 960px) {
  .col-md-6 {
    width: 100%;
  }

  .offset-md-6 {
    margin-left: 100%;
  }
}
@media screen and (max-width: 768px) {
  .col-sm-6 {
    width: 100%;
  }

  .offset-sm-6 {
    margin-left: 100%;
  }
}
@media screen and (max-width: 640px) {
  .col-mob-6 {
    width: 100%;
  }

  .offset-mob-6 {
    margin-left: 100%;
  }
}
@media screen and (max-width: 420px) {
  .col-xs-6 {
    width: 100%;
  }

  .offset-xs-6 {
    margin-left: 100%;
  }
}
.brand-grid {
  box-sizing: border-box;
  margin-left: -20px;
  width: calc(100% + 40px);
  padding: 10px;
}
.brand-grid .brand-cell {
  float: left;
  margin: 0;
  width: 33.333%;
  height: auto;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .brand-grid .brand-cell {
    width: 50%;
  }
}
.brand-grid .brand-logo {
  display: block;
  padding: 3px;
}
.brand-grid .brand-logo.brand-logo--no-impression {
  position: relative;
  width: 100%;
  padding: 0 0 142%;
}
.brand-grid .brand-logo.brand-logo--no-impression .brand-logo__placeholder {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.brand-grid .brand-logo img {
  width: 100%;
  box-sizing: border-box;
}

.product-grid {
  box-sizing: border-box;
  margin-left: -20px;
  width: calc(100% + 40px);
  padding: 10px;
}
.product-grid .product-cell {
  float: left;
  margin: 0 0 60px;
  width: 33.333%;
  height: auto;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  html:not(.ie) .product-grid .product-cell {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  html:not(.ie) .product-grid .product-cell {
    width: 33.333%;
  }
}
@media screen and (max-width: 420px) {
  html:not(.ie) .product-grid .product-cell {
    width: 50%;
  }
}
.product-grid .product-thumb-image img:not(.loading) {
  padding: 0 10px;
  box-sizing: border-box;
}

.product-thumb-image {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.product-thumb-image img:not(.loading) {
  position: relative;
  width: 100%;
  opacity: 0;
}
.product-thumb-image img.collection_hover {
  position: absolute;
  left: 0;
  z-index: 99;
  opacity: 0;
}
.product-thumb-image a {
  display: block;
}
.product-thumb-image:hover img.collection_hover {
  opacity: 1;
}

.product-thumb-title {
  position: relative;
  margin-top: 16px;
  width: 100%;
  height: 80px;
  color: #000;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.product-thumb-title:first-letter {
  text-transform: capitalize;
}
.product-thumb-title span:first-child {
  display: block;
}

.product-thumb-price {
  font-weight: 700;
}

.product-thumb-price-discount {
  font-weight: 700;
}

.product-price-line-through {
  text-decoration: line-through;
  color: #9c9c9b;
  font-weight: 400;
}

.product-thumb-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 12px;
  width: auto;
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 8px;
  text-transform: uppercase;
}

.sidebar-title {
  display: block;
  margin-bottom: 1em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

#aside a {
  margin: 0;
  color: #000;
  line-height: 1.8;
  text-decoration: none;
}
#aside ul {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 15px;
}
#aside ul li {
  height: 1.8em;
}
#aside ul li .active {
  position: relative;
  top: 0;
  left: 0;
}
#aside ul li.active a {
  font-weight: 700;
  color: #000;
}
#aside ul.tree-navigation li {
  overflow: hidden;
}
#aside ul.tree-navigation li.active {
  height: auto;
}
#aside ul.tree-navigation > li.active a {
  font-weight: 700;
  color: #000;
}
#aside ul.tree-navigation > li.active > ul > li a {
  color: #000;
  font-weight: 400;
}
#aside ul.tree-navigation > li > ul {
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  border-left: 1px solid #CFD0D0;
}
#aside ul.tree-navigation > li > ul > li.active a {
  font-weight: 700;
  color: #000;
}
#aside ul.tree-navigation > li > ul > li.active > ul > li a {
  color: #000;
  font-weight: 400;
}
#aside ul.tree-navigation > li > ul > li > ul {
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  border-left: 1px solid #CFD0D0;
}
#aside ul.tree-navigation > li > ul > li > ul > li.active a {
  font-weight: 700;
  color: #000;
}
#aside ul.tree-navigation > li > ul > li > ul > li.active > ul > li a {
  color: #000;
  font-weight: 400;
}

.fixable-shader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.open-navigation .fixable-shader {
  display: block;
}

.fixable-aside-container {
  position: relative;
}
.fixable-aside-container .close {
  display: none;
  position: absolute;
  top: 72px;
  left: 30px;
  background-image: url(/images/structure/deensekroon_sprite.svg);
  background-size: 80px 50px;
  background-position: -50px -5px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .fixable-aside-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 75%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    overflow-y: scroll;
    -webkit-transform: translate3D(-100%, 0, 0);
    -moz-transform: translate3D(-100%, 0, 0);
    -ms-transform: translate3D(-100%, 0, 0);
    -o-transform: translate3D(-100%, 0, 0);
    transform: translate3D(-100%, 0, 0);
    -webkit-transition: -webkit-transform 200ms ease-out;
    -moz-transition: -moz-transform 200ms ease-out;
    transition: transform 200ms ease-out;
  }
  .open-navigation .fixable-aside-container {
    -webkit-transform: translate3D(0, 0, 0);
    -moz-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    -o-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
    opacity: 1;
  }
  .fixable-aside-container .close {
    display: block;
  }
  .fixable-aside-container #aside {
    margin: 140px 0 0 30px;
  }
}

.block-list {
  margin: 0 0 0 -10px;
  width: 814px;
  list-style: none;
  float: left;
}
.block-list li {
  margin: 0 10px 20px;
  float: left;
  width: 251px;
}
.block-list li a {
  display: block;
  padding: 20px 0;
  border: 1px solid #EAEAEA;
  color: #7F7F7F;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: border-color 300ms ease-out;
  -moz-transition: border-color 300ms ease-out;
  transition: border-color 300ms ease-out;
}
.block-list li a:hover {
  border-color: #7F7F7F;
}

/**
 * * Main header
 * */
#header {
  position: relative;
  margin: 0 auto 50px;
  padding: 30px;
  width: 100%;
  max-width: 960px;
  height: 160px;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
}
#header a {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  #header {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 640px) {
  #header {
    padding: 15px 20px;
    margin-bottom: 20px;
    height: 104px;
  }
}
#header .logo {
  display: block;
  margin: 0 auto;
  width: 240px;
  color: #b7b7b7;
  font-size: 13px;
  letter-spacing: 0.21em;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
#header .logo .pay-off {
  display: block;
}
#header .logo img {
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  #header .logo {
    width: 180px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}
#header .cart-container {
  display: block;
  position: absolute;
  top: 74px;
  right: 0;
  padding-left: 40px;
  width: auto;
  height: 56px;
  color: #000;
  font-size: 18px;
  text-align: right;
}
@media screen and (max-width: 960px) {
  #header .cart-container {
    right: 20px;
  }
}
@media screen and (max-width: 640px) {
  #header .cart-container {
    padding-left: 35px;
    top: 45px;
  }
  #header .cart-container .price {
    display: none;
  }
}
#header .cart-container:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 27px;
  height: 26px;
  background-image: url(/images/structure/deensekroon_sprite.svg);
  background-size: 80px 50px;
  background-position: -5px -25px;
}
#header .hamburger {
  display: none;
  position: absolute;
  top: 48px;
  left: 30px;
  background-image: url(/images/structure/deensekroon_sprite.svg);
  background-size: 80px 50px;
  background-position: -45px -28px;
  width: 24px;
  height: 13px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  #header .hamburger {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #header .fixable-header.fixed {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 5px 20px;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
  }
  #header .fixable-header.fixed .hamburger {
    top: 26px;
  }
  #header .fixable-header.fixed .cart-container {
    top: 22px;
  }
  #header .fixable-header.fixed .logo {
    width: 140px;
  }
  #header .fixable-header.fixed .logo .pay-off {
    display: none;
  }
}

.text-block {
  font-size: 15px;
  padding-left: 50px;
  line-height: 1.4;
}
.text-block h1 {
  margin: -6px 0 25px;
}
@media screen and (max-width: 960px) {
  .text-block {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .text-block {
    padding-left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .text-block {
    padding-left: 0;
  }
}

.image-text {
  display: flex;
  flex-direction: row;
}
.image-text .col-image img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .image-text .col-image {
    width: 40%;
  }
  .image-text .col-text {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .image-text {
    flex-wrap: wrap;
  }
  .image-text .col-image {
    display: block;
    order: 2;
    width: 100%;
  }
  .image-text .col-text {
    display: block;
    order: 1;
    width: 100%;
  }
}

/**
 * * Swiper 3.4.2
 * * Most modern mobile touch slider and framework with hardware accelerated transitions
 * *
 * * http://www.idangero.us/swiper/
 * *
 * * Copyright 2017, Vladimir Kharlampidi
 * * The iDangero.us
 * * http://www.idangero.us/
 * *
 * * Licensed under MIT
 * *
 * * Released on: March 10, 2017 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight {
  height: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
  /* Firefox 16+, IE10, Opera 12.50+ */
  /* Firefox 16+, IE10, Opera 12.50+ */
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* Firefox 16+, IE10, Opera 12.50+ */
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube, .swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container img, .swiper-zoom-container svg, .swiper-zoom-container canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* * Unique selling points bar on top of viewport
 * */
.usp-container {
  background: #000;
  width: 100%;
  height: 30px;
  color: #fff;
}
.usp-container ul {
  display: block;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 960px;
  text-align: center;
}
.usp-container ul li {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  margin-right: 30px;
  line-height: 30px;
  white-space: nowrap;
}
.usp-container ul li:last-child {
  margin-right: 0;
}
.usp-container ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 12px;
  background-image: url(/images/structure/deensekroon_sprite.svg);
  background-size: 80px 50px;
  background-position: -5px -5px;
}

#cart-content {
  margin: 0;
  min-height: 320px;
}

/* Cart row
 * ========================================================================== */
.cart-instance-row {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.cart-instance-firstrow {
  margin-top: 35px;
}

.cart-instance-image {
  float: left;
  overflow: hidden;
  margin-right: 20px;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 420px) {
  .cart-instance-image {
    float: none;
  }
}

.cart-instance-title {
  position: relative;
  float: left;
  margin: 16px 0 0 0;
  color: #565656;
  letter-spacing: 1px;
}
@media screen and (max-width: 420px) {
  .cart-instance-title {
    float: none;
  }
}

.cart-quantity {
  margin: 10px 0;
}
.cart-quantity .quantity {
  display: inline-block;
  margin-right: 10px;
}

.cart-instance-notinstock {
  font-style: italic;
  color: #565656;
  letter-spacing: 1px;
}

.cart-instance-color {
  display: block;
  position: absolute;
  left: 0;
  top: 24px;
  width: 32px;
  height: 16px;
  background: #ffda80;
}

.cart-instance-price {
  position: relative;
  float: right;
  margin: 16px 0 0 0;
  color: #565656;
  text-align: right;
  letter-spacing: 1px;
}
@media screen and (max-width: 640px) {
  .cart-instance-price {
    clear: both;
    float: none;
    padding-left: 90px;
    text-align: left;
  }
}
@media screen and (max-width: 420px) {
  .cart-instance-price {
    padding-left: 0;
  }
}

.cart-instance-price-discount {
  position: relative;
  top: 20px;
  left: -80px;
  float: left;
  margin: 16px 0 0 0;
  width: 80px;
  height: 56px;
  color: #565656;
  text-align: right;
  letter-spacing: 1px;
}

/* Summary
 * ========================================================================== */
.cart-summary-holder {
  float: right;
  width: 200px;
  margin: 16px 0 0 168px;
  padding: 16px 0 0 0;
}
@media screen and (max-width: 640px) {
  .cart-summary-holder {
    float: left;
    width: 100%;
    margin-left: 0;
  }
}

.cart-summary-price-holder {
  float: right;
  width: 80px;
  text-align: right;
  color: #565656;
  letter-spacing: 1px;
}

.cart-summary-price-label-holder {
  font-weight: 600;
  float: left;
  width: 72px;
  color: #565656;
}

.cart-summary-vat-holder {
  margin: 20px 0;
  font-size: 14px;
  color: #aaa;
}

.cart-summary-buttons-holder .button-144 {
  margin: 0 12px 0 0;
}
.cart-summary-buttons-holder span.button-arrow-152 {
  margin: 0 12px 0 0;
  padding-top: 4px;
}
@media screen and (max-width: 420px) {
  .cart-summary-buttons-holder span.button-arrow-152 {
    display: none;
  }
}
.cart-summary-buttons-holder span.button-arrow-152.no-margin {
  margin: 0;
}

.addremove-btns {
  float: left;
  margin: 16px 0 0 0;
  width: 70px;
  height: 16px;
  text-align: right;
  color: #565656;
  letter-spacing: 1px;
}

/* One Page Checkout */
/* OPC - Basic Structure */
#opc {
  position: relative;
}
#opc .left_col {
  box-sizing: border-box;
  position: relative;
  float: left;
  padding-top: 30px;
  width: 40%;
  border-top: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
}
@media screen and (max-width: 960px) {
  #opc .left_col {
    width: 100%;
    border-right: none;
  }
}
#opc .right_col {
  box-sizing: border-box;
  position: relative;
  float: left;
  padding-top: 30px;
  width: 60%;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 960px) {
  #opc .right_col {
    width: 100%;
  }
  #opc .right_col .transport_holder {
    padding-left: 0;
  }
  #opc .right_col .order_holder {
    padding-left: 0;
  }
}
#opc .title {
  display: block;
  margin-bottom: 10px;
  height: 30px;
  color: #009EE2;
  font-family: "Asap", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
#opc .data_form, #opc .shipping_form, #opc .account_form {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
  padding-right: 20px;
}
#opc .shipping_form, #opc .account_form, #opc .discount_box {
  overflow: hidden;
  height: 0;
}
#opc .shipping_form.open, #opc .account_form.open {
  height: auto;
}
#opc .discount_box {
  margin-top: 7px;
}
#opc .discount_box.open {
  height: auto;
}
#opc input[type=text], #opc input[type=password] {
  box-sizing: border-box;
  padding: 0 10px;
  width: 100%;
  height: 30px;
  border: 1px solid #D9D9D9;
  color: #3C3C3B;
  font-size: 13px;
  line-height: 30px;
}

/* OPC - Left Column */
.opc_login_holder input[type=text], .opc_login_holder input[type=password] {
  padding: 0 10px;
  width: 100%;
  height: 30px;
  border: 1px solid #D9D9D9;
  color: #3C3C3B;
  font-size: 13px;
  line-height: 30px;
}

#opc .error input[type=text], #opc .error input[type=password] {
  border: 1px solid #EE0000;
}
#opc select {
  width: 280px;
}
#opc .input_holder {
  float: left;
  margin-bottom: 5px;
  height: 50px;
}
@media screen and (max-width: 960px) {
  #opc .input_holder {
    float: none;
  }
  #opc .input_holder:after {
    content: " ";
    display: table;
    clear: both;
  }
}

.opc_login_holder .input_holder {
  float: left;
  margin-bottom: 5px;
  height: 50px;
}

#opc .input_holder.half, .opc_login_holder .input_holder.half {
  margin-right: 10px;
  width: 100%;
}

#opc .input_holder.half input, .opc_login_holder .input_holder.half input {
  width: 100%;
}

#opc .input_holder.w75 input, .opc_login_holder .input_holder.w75 input {
  margin-right: 10px;
  width: 100%;
}

#opc .input_holder.w25 input, .opc_login_holder .input_holder.w25 input {
  width: 48px;
}

#opc .input_holder.half.last, .opc_login_holder .input_holder.half.last {
  margin-right: 0;
}

#opc .input_holder label, .opc_login_holder .input_holder label {
  display: block;
  color: #3C3C3B;
  font-family: "Asap", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 14px;
}

#opc .input_holder.cb {
  height: auto;
  margin-bottom: 20px;
}
#opc .input_holder.cb input {
  float: left;
  margin: 0 10px 0 0;
}
#opc .input_holder.cb label {
  float: left;
  width: 280px;
  font-family: "Istok Web", sans-serif;
  text-transform: none;
  font-size: 13px;
  line-height: 16px;
}
#opc .form_error {
  display: block;
  color: #EE0000;
  margin: 0 0 0.5em 0;
}

.opc_login_holder .form_error {
  display: block;
  color: #EE0000;
  margin: 0 0 0.5em 0;
}

#confirm_password {
  margin-bottom: 20px;
}

/* OPC - Right Column */
#opc .transport_holder {
  box-sizing: border-box;
  float: left;
  padding-left: 29px;
  width: 50%;
  height: auto;
  color: #3C3C3B;
}
@media screen and (max-width: 480px) {
  #opc .transport_holder {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
}
#opc .transport_holder .country {
  margin-right: 10px;
  font-family: "Asap", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 14px;
}
#opc .transport_holder .amount {
  font-size: 15px;
}
#opc .transport_holder .free_shipping {
  display: block;
  margin-top: 7px;
  color: #7f7f7f;
}
#opc .discount_holder {
  box-sizing: border-box;
  float: left;
  width: 50%;
  height: auto;
  min-height: 130px;
  color: #3C3C3B;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #opc .discount_holder {
    float: none;
    width: 100%;
  }
}
#opc .discount_holder .input_holder {
  height: auto;
}
#opc .discount_holder .input_holder.half {
  margin: 0 0 19px 0;
  width: 189px;
}
#opc .discount_holder .input_holder.half .row {
  width: 189px;
  height: 32px;
}
#opc .discount_holder .input_holder.half .field {
  float: left;
  width: 100px;
}
#opc .discount_holder .input_holder.half .btn {
  float: left;
  margin: 0 0 0 2px;
  padding: 0;
  width: 65px;
  height: 32px;
  background: #F0F0EE;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms;
  -webkit-transition: all 700ms;
}
#opc .discount_holder .input_holder.half .btn:hover {
  background: #009EE2;
  color: #ffffff;
}
#opc .discount_holder .discount_error {
  display: block;
  color: #EE0000;
  margin: 0 0 1em 0;
}
#opc .discount_holder .remove_discount, #opc .discount_holder .remove_gift_card {
  color: #009EE2;
}
#opc .discount_holder .remove_discount:hover, #opc .discount_holder .remove_gift_card:hover {
  text-decoration: underline;
  cursor: pointer;
}
#opc .discount_holder img {
  margin: 0 30px;
}
#opc .discount_holder label {
  display: block;
  cursor: pointer;
}
#opc .discount_holder label:hover {
  text-decoration: underline;
}

#opc .order_holder {
  box-sizing: border-box;
  padding: 29px 0 0 29px;
  width: 100%;
  color: #3C3C3B;
  border-top: 1px solid #D9D9D9;
}
#opc .order_holder table {
  display: block;
  width: 100%;
  font-size: 13px;
}
#opc .order_holder tr {
  display: block;
  width: 100%;
  min-height: 30px;
  border-bottom: 1px solid #D9D9D9;
  line-height: 29px;
}
#opc .order_holder td.left {
  display: block;
  float: left;
  width: 230px;
}
#opc .order_holder td.middle {
  display: block;
  float: left;
  width: 100px;
}
#opc .order_holder td.right {
  display: block;
  float: left;
  width: 83px;
  text-align: right;
}
@media screen and (max-width: 480px) {
  #opc .order_holder td.left {
    width: auto;
  }
  #opc .order_holder td.middle {
    width: 100px;
    padding: 0 20px;
  }
  #opc .order_holder td.right {
    width: auto;
  }
}
#opc .order_holder .header {
  color: #3C3C3B;
  font-family: "Asap", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  #opc .order_holder .header {
    display: none;
  }
}
#opc .order_holder .products td.middle {
  width: 30px;
}
#opc .order_holder .products td.right {
  width: 153px;
}
#opc .order_holder .products td.clear {
  display: block;
  clear: both;
}
@media screen and (max-width: 480px) {
  #opc .order_holder .products td.middle {
    width: auto;
  }
  #opc .order_holder .products td.right {
    width: auto;
  }
}
#opc .order_holder .subtotal {
  border-top: 2px solid #868686;
}
#opc .order_holder .total {
  font-weight: 700;
}
#opc .order_holder .products .left {
  color: #868686;
}
#opc .order_holder .shipping .middle, #opc .order_holder .subtotal .middle, #opc .order_holder .total .middle, #opc .order_holder .discount .middle {
  text-transform: uppercase;
  font-family: "Asap", sans-serif;
  font-size: 12px;
}
#opc .input_holder.cb.terms {
  margin: 10px 0 0 30px;
}
@media screen and (max-width: 960px) {
  #opc .input_holder.cb.terms {
    margin-left: 0;
  }
}
#opc .input_holder.cb.terms label {
  width: 100%;
  max-width: 300px;
}
#opc .input_holder.cb.terms.error .terms_holder {
  width: 100%;
  padding-top: 8px;
  height: 22px;
  border: 1px solid #EE0000;
}

.opc_login_holder input[type=button] {
  float: none;
  padding: 0 10px;
  margin: 0 0 10px 0;
  width: 282px;
  height: 32px;
  background: #009EE2;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 300ms;
  -webkit-transition: all 700ms;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.opc_login_holder input[type=button]:hover {
  background: #00D712;
}

#opc #notes_holder {
  box-sizing: border-box;
  margin: 41px 30px 10px 30px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  #opc #notes_holder {
    margin-left: 0;
  }
}
#opc #notes_holder textarea {
  box-sizing: border-box;
  padding: 10px;
  width: 300px;
  height: 49px;
  border: 1px solid #D9D9D9;
  color: #3C3C3B;
  resize: none;
  font-family: "Istok Web", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

#opc .opc_errors {
  box-sizing: border-box;
  padding: 10px 30px;
  width: 100%;
  background: #EE0000;
  color: #ffffff;
  list-style: none;
}
#opc .opc_errors li {
  font-weight: 700;
}
#opc .opc_errors a {
  color: #ffffff;
}

.opc_login_question_holder {
  margin: 0;
  line-height: 16px;
}

.opc_login_holder {
  position: relative;
  overflow: hidden;
  height: 0;
  margin-bottom: 20px;
}

#opc .opc_login_holder .input_holder {
  height: auto;
}

#open_discount_box {
  display: block;
}

.opc_login_holder .inner {
  padding: 20px 0;
  border-bottom: 1px solid #D9D9D9;
}
.opc_login_holder.open {
  height: auto;
}

.opc_button {
  position: relative;
  float: right;
  margin: 30px 0 30px 30px;
  background: #FF7F00;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (max-width: 960px) {
  .opc_button {
    margin-left: 0;
    clear: both;
    float: none;
    margin-top: 50px;
    width: 200px;
  }
  .opc_button#top_submit {
    display: none;
  }
}
.opc_button input {
  position: relative;
  z-index: 10;
  padding: 0 10px;
  width: 110px;
  text-align: left;
  height: 40px;
  line-height: 36px;
  border: none;
  background: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .opc_button input {
    width: 100%;
  }
}
.opc_button .arrow {
  position: absolute;
  top: 16px;
  right: 10px;
  display: block;
  width: 12px;
  height: 8px;
  background: url(../images/structure/deensekroon_sprite.png) -132px -32px;
}
.opc_button:hover {
  background: #00D712;
}

.info_redirect {
  display: block;
  margin: 0 0 20px 30px;
}
@media screen and (max-width: 960px) {
  .info_redirect {
    margin-left: 0;
  }
}

.opc_confirmation {
  width: 100%;
}

.payment_options_top {
  position: absolute;
  top: -16px;
  right: 0;
}

.payment_options_bottom {
  margin-left: 30px;
}
@media screen and (max-width: 960px) {
  .payment_options_bottom {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .payment_options_bottom {
    width: 100%;
  }
}

ul#cart-process {
  display: block;
  position: relative;
  margin: 0 0 20px 0;
  padding: 8px 8px 8px 0;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-variant: small-caps;
}
@media screen and (max-width: 640px) {
  ul#cart-process {
    margin-left: 20px;
  }
}
ul#cart-process li {
  display: block;
  float: left;
  margin: 0 40px 4px 0;
  padding: 0 0 0 8px;
  height: 20px;
  color: #9c9c9b;
  line-height: 16px;
  list-style: none;
}
ul#cart-process li .acc-active {
  position: relative;
  top: -16px;
  margin: 0 0 0 -8px;
}
ul#cart-process li a {
  color: #19B94F;
  text-decoration: none;
}
ul#cart-process li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  ul#cart-process li {
    float: none;
  }
}

.icon-fm-ok {
  display: inline-block;
  position: relative;
  margin: 0 8px -3px -24px;
  width: 16px;
  height: 16px;
  background: url(../images/structure/deensekroon_sprite.png) -176px -8px;
}

.icon-step1 {
  display: inline-block;
  position: relative;
  margin: 0 8px -3px -24px;
  width: 16px;
  height: 16px;
  background: url(../images/structure/deensekroon_sprite.png) -192px -24px;
}

.icon-step2 {
  display: inline-block;
  position: relative;
  margin: 0 8px -3px -24px;
  width: 16px;
  height: 16px;
  background: url(../images/structure/deensekroon_sprite.png) -208px -24px;
}

.icon-step3 {
  display: inline-block;
  position: relative;
  margin: 0 8px -3px -24px;
  width: 16px;
  height: 16px;
  background: url(../images/structure/deensekroon_sprite.png) -224px -24px;
}

.icon-step4 {
  display: inline-block;
  position: relative;
  margin: 0 8px -3px -24px;
  width: 16px;
  height: 16px;
  background: url(../images/structure/deensekroon_sprite.png) -240px -24px;
}

ul#cart-process li.active-cart {
  color: #565656;
  font-weight: 700;
}
ul#cart-process li.active-cart .icon-step1 {
  background: url(../images/structure/deensekroon_sprite.png) -192px -8px;
}
ul#cart-process li.active-cart .icon-step2 {
  background: url(../images/structure/deensekroon_sprite.png) -208px -8px;
}
ul#cart-process li.active-cart .icon-step3 {
  background: url(../images/structure/deensekroon_sprite.png) -224px -8px;
}
ul#cart-process li.active-cart .icon-step4 {
  background: url(../images/structure/deensekroon_sprite.png) -240px -8px;
}

.flexable-home-banner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}

.featured-products {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 180px;
  position: relative;
  margin-left: 20px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .featured-products {
    display: none;
  }
}
.featured-products .product-thumb-holder {
  width: 100%;
  height: 200px;
  margin: 0;
}
.featured-products .product-thumb-image {
  width: 100%;
  height: 100%;
}
.featured-products .product-thumb-image img:not(.loading) {
  width: 180px;
}

.banner-image {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  margin-bottom: 50px;
}
.banner-image .swiper-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}
.banner-image .swiper-wrapper {
  position: absolute;
}
@media screen and (max-width: 640px) {
  .banner-image {
    margin-bottom: 20px;
  }
}
.banner-image a, .banner-image img {
  width: 100%;
}

.contained-layout.about {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eaeaea;
}
.contained-layout.about .about-social-holder {
  margin-top: 25px;
  margin-left: 50px;
}

.mp {
  color: #555;
}
.mp article {
  display: block;
  padding-bottom: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #eaeaea;
}
.mp h2 {
  display: block;
  font-size: 26px;
  font-weight: 300;
  text-transform: none;
  font-variant: normal;
  margin-bottom: 1em;
  color: #333;
}

/* CSS Gallery */
div.gallery {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 100%;
}
div.gallery .background {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
div.gallery div.group {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -webkit-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
}
div.gallery div.group div.container {
  position: relative;
  display: inline;
  float: left;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  div.gallery div.group div.container {
    width: 100% !important;
  }
}
div.gallery div.group img {
  position: absolute;
  left: 50%;
  top: 50%;
}
@media screen and (max-width: 960px) {
  div.gallery div.group img {
    left: 10%;
    top: 10%;
    width: 80% !important;
    height: auto !important;
    margin: 0 !important;
  }
}
div.gallery div.loader {
  position: absolute;
  bottom: 50%;
  left: 50%;
  z-index: 30;
  margin-left: -30px;
  margin-bottom: -30px;
  width: 60px;
  height: 60px;
}
div.gallery div.button {
  position: absolute;
  top: 50%;
  display: block;
  opacity: 0.8;
  filter: alpha(opacity=80);
  margin-top: -30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
div.gallery div.next {
  position: absolute;
  z-index: 50;
  top: 50%;
  right: 40px;
  margin: -24px 0 0 -8px;
  width: 18px;
  height: 48px;
  background: url(../images/structure/deensekroon_sprite.png) -32px -256px;
  cursor: pointer;
}
div.gallerydiv.previous {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 40px;
  margin: -24px 0 0 -8px;
  width: 18px;
  height: 48px;
  background: url(../images/structure/deensekroon_sprite.png) -8px -256px;
  cursor: pointer;
}
div.gallery div.restart {
  position: absolute;
  z-index: 50;
  top: 50%;
  right: 40px;
  margin: -24px 0 0 -12px;
  width: 25px;
  height: 52px;
  background: url(../images/structure/deensekroon_sprite.png) -140px -256px;
  cursor: pointer;
}
div.gallery div.close {
  position: absolute;
  top: 50px;
  left: 50%;
  z-index: 50;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  background: url(../images/structure/deensekroon_sprite.png) -56px -256px;
  cursor: pointer;
}
div.gallery div.switchHolder {
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 500;
  width: 200px;
  margin-left: -100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

/*div.gallery div.nav{					position: absolute; bottom: 50%; z-index: 20; opacity: 0; filter: alpha(opacity=0); margin-bottom: -130px; width: 100%; height: 260px;  } */
#switchImage {
  color: #333;
  cursor: pointer;
}

#switchHover {
  color: #7f7f7f;
  cursor: pointer;
}

#switchImage:hover, #switchHover:hover {
  color: #333;
}

/* end Gallery */
/* Sections
 * ========================================================================== */
@media screen and (max-width: 768px) {
  html:not(.ie) .product-page-image-container,
html:not(.ie) .product-page-specs-container {
    width: 40%;
  }
}
@media screen and (max-width: 640px) {
  html:not(.ie) .product-page-image-container,
html:not(.ie) .product-page-specs-container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  html:not(.ie) .product-page-main-container,
html:not(.ie) .product-page-relevant-products-container {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  html:not(.ie) .product-page-main-container,
html:not(.ie) .product-page-relevant-products-container {
    width: 100%;
  }
  .product-page-main-container > div,
.product-page-relevant-products-container > div {
    padding-left: 0;
  }
}

.product-page-image-section,
.product-page-main-section,
.product-page-specs-section,
.product-page-relevant-products-section {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 50px;
}

.product-page-image-section {
  position: relative;
}
.product-page-image-section img {
  width: 100%;
}

.product-page-main-section {
  padding-left: 50px;
}

.product-page-relevant-products-section {
  padding-left: 50px;
}

/* Content
 * ========================================================================== */
.product-page-image-section img {
  width: 100%;
}

.product-page-image-holder {
  position: relative;
}

#activate-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url(../images/structure/spacer.gif);
}

.product-smallthumb-row {
  position: relative;
  margin: 0 0 8px 0;
  width: 100%;
  height: 72px;
}

.product-smallthumb-holder {
  position: relative;
  float: left;
  margin: 0 8px 0 0;
  width: 72px;
  height: 72px;
}

.product-smallthumb-image {
  overflow: hidden;
  width: 72px;
  height: 80px;
  cursor: pointer;
}

.product-page-view-collection {
  position: relative;
  top: 40px;
}

.product-page-brand {
  display: block;
  margin-bottom: 10px;
  color: #9c9c9b;
  font-weight: 400;
  font-size: 18px;
  font-style: italic;
  font-variant: normal;
  text-decoration: none;
}
.product-page-brand:hover {
  color: #0080C9;
}

.product-page-title {
  display: block;
  margin: 0 0 0.5em 0;
  color: #565656;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 26px;
  text-transform: none;
}

.product-page-oldprice {
  display: block;
  color: #ababab;
  font-size: 18px;
  text-decoration: line-through;
}

.product-page-currentprice {
  display: block;
  margin-bottom: 30px;
  color: #565656;
  font-size: 28px;
  line-height: 24px;
}

.product-page-instock {
  color: #19B94F;
  font-size: 14px;
}

.product-page-notinstock {
  color: #ea004e;
  font-size: 14px;
}

.customSelect {
  margin-bottom: 10px;
}

/* order btn */
.order-button-holder {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  width: 152px;
  text-align: right;
}

.button-add-to-cart {
  position: relative;
  margin-bottom: 8px;
  width: 152px;
  height: 32px;
  cursor: pointer;
}
.button-add-to-cart input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0;
  width: 144px;
  height: 32px;
  border: none;
  background: #999;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
}
.button-add-to-cart .text {
  position: absolute;
  z-index: 8;
  top: 4px;
  left: 8px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.button-add-to-cart .off {
  position: absolute;
  z-index: 2;
  width: 152px;
  height: 32px;
  background: url(../images/structure/deensekroon_sprite.png) 0 -328px;
}
.button-add-to-cart .over {
  position: absolute;
  z-index: 5;
  width: 152px;
  height: 32px;
  filter: alpha(opacity=0);
  opacity: 0;
  background: url(../images/structure/deensekroon_sprite.png) 0 -360px;
}
.button-add-to-cart .icon-arrow {
  position: absolute;
  z-index: 9;
  top: 12px;
  right: 8px;
  height: 14px;
  background: url(../images/structure/deensekroon_sprite.png) -132px -32px;
}

.product-page-description {
  display: block;
  position: relative;
  margin-top: 45px;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.2;
}

.specs-holder {
  font-size: 14px;
  line-height: 1.2;
  color: #aaa;
}

.specs-title {
  display: block;
  color: #565656;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid #eaeaea;
}

.recommend-title {
  display: block;
  margin: 0 0 16px 0;
  padding: 0 8px;
  border-bottom: 1px solid #eaeaea;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
}

.product-recommend-row {
  margin: 0 0 16px 0;
}

.product-recommend-holder {
  position: relative;
  float: left;
  width: 33%;
}

#product-recommend-arrow-down {
  position: relative;
  top: -6px;
}

/*# sourceMappingURL=style.css.map */