html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/**
* Responsive mixin. The media breakpoints are as defined
* in the twitter bootstrap framework:
*
* - phone
* - tablet-portrait
* - tablet-landscape-desktop
* - large-desktop
*
* Additional parameters for tagetting retina and non-retina
* devices
*
* - retina
* - non-retina
* 
*
* Moreover, a specific value in px can be passed which is
* used to generate a max-width media query.
*/
html {
  font-size: 62.5%;
}

body {
  background: #30adc1;
  font-family: 'Open Sans', sans-serif;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
  min-width: 320px;
}

a {
  text-decoration: none;
  color: #30adc1;
}
a:hover {
  text-decoration: underline;
}

:focus {
  outline: 0;
}

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

form {
  display: inline;
}

fieldset {
  border: 0;
}

legend {
  display: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.input-box {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.input-box .validation-advice {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 38px;
  font-size: 10px;
  font-size: 1rem;
  color: red;
}

input {
  background: #fff;
  border: 1px solid #81cfdc;
  padding: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  border-radius: 3px;
}
input.validation-failed {
  border: 1px solid red;
}

select {
  background: #fff;
  border: 1px solid #81cfdc;
  padding: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  border-radius: 3px;
}

button {
  background: #79a255;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 3.2rem;
  padding: 0 20px;
  font-weight: 700;
  border-radius: 3px;
}
button:hover {
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: #005f29;
}

p.required {
  font-style: italic;
  color: #666;
  font-size: 11px;
  font-size: 1.1rem;
}

table {
  border: 0;
  /*border-collapse:collapse;*/
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}

caption, th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

.data-table {
  width: 100%;
  border: 5px solid #f4f4f4;
}
.data-table th {
  text-align: center;
  font-weight: bold;
}
.data-table td,
.data-table th {
  padding: 2px;
}
.data-table td.numeric,
.data-table th.numeric {
  text-align: right;
}
.data-table th {
  background-color: #f4f4f4;
}
.data-table th.even, .data-table th:nth-child(2n) {
  background-color: #e6e6e6;
}
.data-table tr.odd td, .data-table tr:nth-child(2n+1) td {
  background-color: #e7e7e7;
}
.data-table tr.odd td.even, .data-table tr.odd td:nth-child(2n), .data-table tr:nth-child(2n+1) td.even, .data-table tr:nth-child(2n+1) td:nth-child(2n) {
  background-color: #d9d9d9;
}
.data-table tr.even td {
  background-color: #f4f4f4;
}
.data-table tr.even td.even, .data-table tr.even td:nth-child(2n) {
  background-color: #e6e6e6;
}
.data-table tfoot th, .data-table tfoot td {
  background-color: #fff;
}
.data-table tfoot th.even, .data-table tfoot th:nth-child(2n), .data-table tfoot td.even, .data-table tfoot td:nth-child(2n) {
  background-color: #f1f1f1;
}
.data-table th {
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
  font-size: 1.4rem;
}
.data-table th, .data-table td {
  padding: 10px;
  vertical-align: middle;
}
.data-table th a, .data-table td a {
  font-weight: 600;
}

p {
  margin: 0 0 1.66667%;
}

strong {
  font-weight: bold;
}

address {
  font-style: normal;
  line-height: 1.35;
}

cite {
  font-style: normal;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after {
  content: '';
}

small {
  font-size: 11px;
  font-size: 1.1rem;
}

big {
  font-size: 14px;
  font-size: 1.4rem;
}

.ruler {
  font-size: 0px;
  border-top: 1px solid #63c1d0;
  clear: both;
  float: none;
  overflow: hidden;
  margin: 2.5% 0;
}

.hidden {
  display: block !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.nobr {
  white-space: nowrap !important;
}

.wrap {
  white-space: normal !important;
}

.a-left {
  text-align: left !important;
}

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

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

.v-top {
  vertical-align: top;
}

.v-middle {
  vertical-align: middle;
}

.f-left,
.left {
  float: left !important;
}

.f-right,
.right {
  float: right !important;
}

.f-none {
  float: none !important;
}

.f-fix {
  float: left;
  width: 100%;
  min-height: 147px;
  position: relative;
}

.no-display {
  display: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-bg {
  background: none !important;
}

.ul {
  list-style: disc outside none;
  padding-left: 18px;
}

.sprite-image, .menu-link,
.quicklink-link,
.home-link, .header-promo .icon, .quick-access .icon, .mini-cart .icon, .mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-remove, .mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-edit, .form-search button.button, .cart-table .btn-remove, .block-layered-nav .currently li .btn-remove, .toolbar .sort-by .category-asc, .toolbar .sort-by .category-desc, .toolbar .view-mode .grid,
.toolbar .view-mode .list, .toolbar .pager .pages ol li a.i-previous, .toolbar .pager .pages ol li a.i-next, .products-grid .item .actions-holder .actions .btn-cart .icon, .products-grid .item .actions-holder .actions .add-to-links a, .product-shop .add-to-links a, .payment-partners li, .footer .shipment-partners .icon {
  background-image: url('https://www.lamimas.nl/skin/frontend/lamimas/default/images/sprite-s9903210e51.png');
  background-repeat: no-repeat;
}

.page-title h1,
.page-title h2,
.page-title h3,
.page-head h1,
.page-head h2,
.page-head h3 {
  font-family: Pacifico, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .page-title h1,
  .page-title h2,
  .page-title h3,
  .page-head h1,
  .page-head h2,
  .page-head h3 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
    padding-bottom: 2%;
  }
}
@media only screen and (max-width: handheldpx) {
  .page-title h1,
  .page-title h2,
  .page-title h3,
  .page-head h1,
  .page-head h2,
  .page-head h3 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
    padding-bottom: 2%;
  }
}
@media (min-width: 729px) {
  .page-title h1,
  .page-title h2,
  .page-title h3,
  .page-head h1,
  .page-head h2,
  .page-head h3 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 32px;
    line-height: 3.2rem;
  }
}

.category-title h1,
.category-title h2,
.category-title h3 {
  margin-top: 0;
}

.content-title {
  font-family: Pacifico, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 0 0 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .content-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .content-title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media (min-width: 729px) {
  .content-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.subtitle {
  font-family: Pacifico, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .subtitle {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .subtitle {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media (min-width: 729px) {
  .subtitle {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 32px;
    line-height: 3.2rem;
  }
}

h2.sub-title {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  margin: 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  h2.sub-title {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media only screen and (max-width: handheldpx) {
  h2.sub-title {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media (min-width: 729px) {
  h2.sub-title {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.content h2, .content h3, .page-content .col-main h2, .page-content .col-main h3 {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .content h2, .content h3, .page-content .col-main h2, .page-content .col-main h3 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .content h2, .content h3, .page-content .col-main h2, .page-content .col-main h3 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media (min-width: 729px) {
  .content h2, .content h3, .page-content .col-main h2, .page-content .col-main h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}
.content ul, .page-content .col-main ul {
  list-style-type: disc;
  list-style-position: inside;
}
.content ol, .page-content .col-main ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.content ul ul, .content ol ul, .page-content .col-main ul ul, .page-content .col-main ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.content ol ol, .content ul ol, .page-content .col-main ol ol, .page-content .col-main ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.content em, .page-content .col-main em {
  font-style: italic;
}

.hp-content {
  padding: 10px;
}

.link-rss {
  display: none;
}

.form-list {
  list-style: none outside none !important;
}

.messages .success-msg {
  padding: 1.66667%;
  background: #d6f2d7;
  border: 1px solid #51a053;
  margin: 1.66667% 0;
  font-weight: 700;
}
.messages .error-msg {
  padding: 1.66667%;
  background: #f2d6d6;
  border: 1px solid #a05151;
  margin: 1.66667% 0;
  font-weight: 700;
}

.availability.in-stock {
  font-weight: 600;
}
.availability.in-stock span {
  color: #79a255;
}

.catalog-product-compare-index h1 {
  color: #fff;
}

.menu-link,
.quicklink-link,
.home-link {
  display: none;
  background-color: #000;
  /* Landscape phones and down */
}
.menu-link:hover,
.quicklink-link:hover,
.home-link:hover {
  background-color: #79a255;
}
@media (max-width: 728px) {
  .menu-link,
  .quicklink-link,
  .home-link {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    top: 74px;
  }
}
@media only screen and (max-width: handheldpx) {
  .menu-link,
  .quicklink-link,
  .home-link {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    overflow: hidden;
    top: 74px;
  }
}

.open {
  display: block;
}

.home-link {
  left: 0;
  width: 120px;
  color: #fff;
  background-image: none;
  font-family: Pacifico, sans-serif;
  font-size: 24px;
  line-height: 40px;
  padding-left: 4px;
  text-decoration: none;
}

.menu-link {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  left: 160px;
  height: 40px;
  width: 40px;
  background-position: -40px -242px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.quicklink-link {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  left: 120px;
  background-color: #30adc1;
  height: 40px;
  width: 40px;
  background-position: 0 -242px;
}

.header-container {
  background: #b7dde2 url("https://www.lamimas.nl/skin/frontend/lamimas/default/images/bg-stripes.png");
  text-align: center;
  padding: 0 10px;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .header-container {
    height: 130px;
  }
}
@media only screen and (max-width: handheldpx) {
  .header-container {
    height: 130px;
  }
}

.header, .nav-wrapper {
  margin: auto;
  text-align: left;
  width: 100%;
  float: none;
  clear: both;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .header, .nav-wrapper {
    max-width: 1200px;
  }
}

.header {
  position: relative;
}

.logo strong {
  display: none;
}

/* Landscape phones and down */
@media (max-width: 728px) {
  .header {
    text-align: center;
  }
  .header a.logo {
    display: none;
  }
  .header a.logo img {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: handheldpx) {
  .header {
    text-align: center;
  }
  .header a.logo {
    display: none;
  }
  .header a.logo img {
    width: 100%;
    display: block;
  }
}
/* Landscape phones and down */
@media (min-width: 729px) {
  a.logo {
    float: left;
    display: block;
    margin: 1.66667% 0 1.66667% 0;
    width: 20.75%;
  }
  a.logo img {
    width: 100%;
  }
  a.logo img {
    display: block;
  }

  .header-promo {
    display: none;
  }
}
.header-right {
  margin: auto;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .header-right {
    float: right;
    text-align: right;
  }
}

.form-language {
  padding: 10px 0;
  font-size: 12px;
  display: none;
}
.form-language select {
  font-size: 12px;
  padding: 2px;
  background: #c5e5e9;
  border: 1px solid #26adc3;
}

.header-menu-info {
  overflow: hidden;
  clear: both;
  float: none;
  text-align: center;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .header-menu-info {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .header-menu-info {
    display: none;
  }
}
.header-menu-info .links {
  margin: auto;
  display: inline-block;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .header-menu-info .links {
    float: right;
    display: block;
  }
}
.header-menu-info .links li {
  display: inline-block;
  float: left;
  color: #000;
  margin-left: 20px;
}
.header-menu-info .links li a {
  color: #000;
  font-weight: 600;
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 20px;
  line-height: 2rem;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .header-menu-info .links li a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 40px;
    line-height: 4rem;
  }
}
@media (min-width: 1270px) {
  .header-menu-info .links li a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 40px;
    line-height: 4rem;
  }
}
.header-menu-info .links li a:hover {
  color: #fff;
  text-decoration: none;
}

.header-promo {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 16px;
  line-height: 1.6rem;
  /* Landscape phones and down */
  /* Landscape phones and down */
  /* Landscape phones and down */
  position: absolute;
  top: 0;
  left: 22%;
  padding: 10px;
  display: inline-block;
  font-weight: 700;
  border-radius: 3px;
}
@media (max-width: 728px) {
  .header-promo {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .header-promo {
    display: none;
  }
}
@media (min-width: 1020px) {
  .header-promo {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 14px;
    line-height: 1.4rem;
    margin: 1.5% 0 0 4.16667%;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 1590px) {
  .header-promo {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 16px;
    line-height: 1.6rem;
    margin: 1.83333% 0 0 5%;
  }
}
.header-promo p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.header-promo p span {
  display: block;
  float: none;
  clear: both;
  margin-top: 3px;
  color: #608143;
  font-weight: 600;
  font-size: 12px;
}
.header-promo .icon {
  height: 51px;
  width: 74px;
  display: inline-block;
  margin-right: 15px;
  background-position: 0 -367px;
  vertical-align: middle;
}

.quick-access {
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .quick-access {
    display: none;
  }
  .quick-access.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: left;
  }
  .quick-access.open .handheld-close {
    display: block;
  }
  .quick-access.open li,
  .quick-access.open a {
    display: block;
    float: none;
  }
  .quick-access.open a {
    line-height: 48px;
    line-height: 4.8rem;
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 10px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 700;
    font-family: Montserrat;
  }
  .quick-access.open a:hover {
    background: #30adc1;
    text-decoration: none;
  }
  .quick-access.open .handheld-close a {
    text-align: right;
  }
  .quick-access.open .handheld-close a span {
    line-height: 14px;
    line-height: 1.4rem;
    display: inline-block;
    margin-right: 10px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 3px;
  }
}
@media only screen and (max-width: handheldpx) {
  .quick-access {
    display: none;
  }
  .quick-access.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: left;
  }
  .quick-access.open .handheld-close {
    display: block;
  }
  .quick-access.open li,
  .quick-access.open a {
    display: block;
    float: none;
  }
  .quick-access.open a {
    line-height: 48px;
    line-height: 4.8rem;
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 10px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 700;
    font-family: Montserrat;
  }
  .quick-access.open a:hover {
    background: #30adc1;
    text-decoration: none;
  }
  .quick-access.open .handheld-close a {
    text-align: right;
  }
  .quick-access.open .handheld-close a span {
    line-height: 14px;
    line-height: 1.4rem;
    display: inline-block;
    margin-right: 10px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 3px;
  }
}
@media (min-width: 729px) {
  .quick-access {
    float: none;
    clear: both;
    overflow: hidden;
    margin-top: 8px;
  }
  .quick-access .links {
    display: block;
    float: left;
  }
  .quick-access .links li {
    display: inline-block;
    float: left;
    margin-left: 20px;
    color: #000;
  }
  .quick-access .links li.handheld-close {
    display: none;
  }
  .quick-access .links li a {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 30px;
    line-height: 3rem;
    /* Landscape phones and down */
    display: inline-block;
    color: #000;
    font-weight: 700;
  }
}
@media (min-width: 729px) and (min-width: 1020px) {
  .quick-access .links li a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 50px;
    line-height: 5rem;
  }
}
@media (min-width: 729px) {
  .quick-access .links li a:hover {
    /* Landscape phones and down */
    color: #30adc1;
    text-decoration: none;
  }
}
@media (min-width: 729px) and (min-width: 1020px) {
  .quick-access .links li a:hover .icon {
    background-color: #30adc1;
  }
}
@media (min-width: 729px) {
  .quick-access .links li a:hover .icon {
    color: #000;
  }
}
.quick-access .welcome-msg {
  display: none;
}
.quick-access .icon {
  /* Landscape phones and down */
}
@media (min-width: 1020px) {
  .quick-access .icon {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    margin-right: 5px;
    width: 17px;
    height: 17px;
    background-color: #000;
    vertical-align: middle;
  }
}

.top-link-login .icon {
  height: 17px;
  width: 17px;
  background-position: -59px 0;
}

.top-link-logout .icon {
  height: 17px;
  width: 17px;
  background-position: -66px -17px;
}

.top-link-account .icon,
.top-link-myaccount .icon {
  height: 17px;
  width: 17px;
  background-position: -27px -54px;
}

.top-link-wishlist .icon {
  height: 17px;
  width: 17px;
  background-position: -10px -54px;
}

.top-link-cart .icon {
  height: 17px;
  width: 17px;
  background-position: 0 0;
}

.top-link-checkout .icon {
  height: 17px;
  width: 17px;
  background-position: 0 -74px;
}

.top-link-register .icon {
  height: 17px;
  width: 17px;
  background-position: -76px 0;
}

.nav-wrapper {
  *zoom: 1;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background: #30adc1;
}
.nav-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.nav-container {
  /* Landscape phones and down */
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .nav-container {
    display: none;
  }
  .nav-container.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
  }
  .nav-container.open ul {
    background: #000;
  }
  .nav-container.open li,
  .nav-container.open a {
    display: block;
    float: none;
  }
  .nav-container.open a {
    line-height: 48px;
    line-height: 4.8rem;
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 10px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 400;
    font-family: Montserrat;
  }
  .nav-container.open a:hover {
    background: #30adc1;
    text-decoration: none;
  }
  .nav-container.open li li a {
    line-height: 38px;
    line-height: 3.8rem;
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 25px;
    font-weight: 400;
  }
  .nav-container.open .handheld-close {
    display: block;
  }
  .nav-container.open .handheld-close a {
    text-align: right;
  }
  .nav-container.open .handheld-close a span {
    line-height: 14px;
    line-height: 1.4rem;
    display: inline-block;
    margin-right: 10px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 3px;
  }
}
@media only screen and (max-width: handheldpx) {
  .nav-container {
    display: none;
  }
  .nav-container.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
  }
  .nav-container.open ul {
    background: #000;
  }
  .nav-container.open li,
  .nav-container.open a {
    display: block;
    float: none;
  }
  .nav-container.open a {
    line-height: 48px;
    line-height: 4.8rem;
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 10px;
    border-bottom: 1px solid #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 400;
    font-family: Montserrat;
  }
  .nav-container.open a:hover {
    background: #30adc1;
    text-decoration: none;
  }
  .nav-container.open li li a {
    line-height: 38px;
    line-height: 3.8rem;
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 25px;
    font-weight: 400;
  }
  .nav-container.open .handheld-close {
    display: block;
  }
  .nav-container.open .handheld-close a {
    text-align: right;
  }
  .nav-container.open .handheld-close a span {
    line-height: 14px;
    line-height: 1.4rem;
    display: inline-block;
    margin-right: 10px;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 3px;
  }
}
@media (min-width: 729px) {
  .nav-container {
    float: left;
    height: 4.8rem;
  }
  .nav-container ul {
    display: inline-block;
  }
  .nav-container ul li {
    position: relative;
    float: left;
  }
  .nav-container ul li.home {
    overflow: hidden;
    border-top-left-radius: 3px;
  }
  .nav-container ul li ul {
    display: none;
  }
  .nav-container ul li ul.shown-sub {
    display: block;
  }
  .nav-container ul li > a {
    line-height: 48px;
    line-height: 4.8rem;
    font-size: 16px;
    font-size: 1.6rem;
    /* Landscape phones and down */
    display: inline-block;
    padding: 0 9px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 700;
    font-family: Montserrat;
  }
}
@media (min-width: 729px) and (max-width: 801px) {
  .nav-container ul li > a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 5px;
  }
}
@media (min-width: 729px) {
  .nav-container ul li > a:hover {
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    background: rgba(255, 255, 255, 0.8);
    color: #30adc1;
    text-decoration: none;
  }
  .nav-container ul li.active a {
    background: #fff;
    color: #30adc1;
    text-decoration: none;
  }
  .nav-container ul li.parent.over a {
    background: rgba(255, 255, 255, 0.8);
    color: #30adc1;
    text-decoration: none;
  }
  .nav-container ul ul {
    -moz-box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
    -webkit-box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
    box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
    position: absolute;
    top: 48px;
    z-index: 999999;
    width: 230px;
    background: #d5eef2;
  }
  .nav-container ul li li {
    display: block;
    overflow: hidden;
    width: 100%;
  }
  .nav-container ul li li > a {
    line-height: 30px;
    line-height: 3rem;
    font-size: 14px;
    font-size: 1.4rem;
    /* Landscape phones and down */
    display: block;
    padding: 0 10px;
    width: 100%;
    color: #30adc1;
  }
}
@media (min-width: 729px) and (max-width: 801px) {
  .nav-container ul li li > a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 5px;
  }
}
@media (min-width: 729px) {
  .nav-container ul li li > a:hover {
    background: #30adc1;
    color: #fff;
    text-decoration: none;
  }
  .nav-container .parent.over li a:hover {
    background: #30adc1;
    color: #fff;
    text-decoration: none;
  }
}
@media (min-width: 729px) and (max-width: 1024px) {
  .nav-container ul li > a {
    border-radius: 3px;
  }
}
.nav-container .handheld-close {
  display: none;
}

.mini-cart {
  display: inline-block;
  float: none;
  clear: both;
  color: #fff;
  position: relative;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .mini-cart {
    position: absolute;
    right: 0;
    top: 64px;
    z-index: 100;
  }
}
@media only screen and (max-width: handheldpx) {
  .mini-cart {
    position: absolute;
    right: 0;
    top: 64px;
    z-index: 100;
  }
}
.mini-cart a.mini-cart-link {
  background-color: #79a255;
  padding: 10px;
  display: block;
  color: #fff;
  border-radius: 3px;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 801px) {
  .mini-cart a.mini-cart-link {
    padding: 8px;
    margin: 10px 0 10px 0;
  }
}
@media (max-width: 728px) {
  .mini-cart a.mini-cart-link {
    padding: 8px;
  }
}
@media only screen and (max-width: handheldpx) {
  .mini-cart a.mini-cart-link {
    padding: 8px;
  }
}
.mini-cart a.mini-cart-link:hover {
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none;
  background-color: #648647;
}
.mini-cart .icon {
  display: inline-block;
  vertical-align: middle;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  height: 20px;
  width: 20px;
  background-position: 0 -34px;
  margin-right: 5px;
  margin-top: -2px;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .mini-cart .icon {
    height: 32px;
    width: 32px;
    background-position: -48px -282px;
    font-weight: 700;
    margin-top: -5px;
  }
}
@media (max-width: 801px) {
  .mini-cart .icon {
    height: 20px;
    width: 20px;
    background-position: 0 -34px;
  }
}
.mini-cart .amount {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 3.2rem;
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  font-weight: 700;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .mini-cart .amount {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
  .mini-cart .amount .cart-description {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .mini-cart .amount {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
  .mini-cart .amount .cart-description {
    display: none;
  }
}
@media (max-width: 801px) {
  .mini-cart .amount {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}
.mini-cart .minicart-overview {
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 101;
  background: #fff;
  color: #000;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 2px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 2px;
  width: 450px;
  border-radius: 3px;
}
.mini-cart .minicart-overview .actions {
  padding: 2.22222%;
  border-bottom: 1px solid #ccc;
}
.mini-cart .minicart-overview .mini-products-list {
  border-radius: 3px;
  overflow: hidden;
}
.mini-cart .minicart-overview .mini-products-list li {
  float: none;
  clear: both;
  display: block;
  overflow: hidden;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.mini-cart .minicart-overview .mini-products-list li .product-image {
  display: inline-block;
  vertical-align: middle;
  width: 13.95349%;
}
.mini-cart .minicart-overview .mini-products-list li .product-details {
  display: inline-block;
  vertical-align: middle;
  width: 83.72093%;
}
.mini-cart .minicart-overview .mini-products-list li .product-details * {
  vertical-align: middle;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-name {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  width: 83.33333%;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-actions {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  width: 11.11111%;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-remove, .mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-edit {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  overflow: hidden;
  background-color: #000;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-remove:hover, .mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-edit:hover {
  background-color: #30adc1;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-remove {
  height: 10px;
  width: 10px;
  background-position: 0 -54px;
}
.mini-cart .minicart-overview .mini-products-list li .product-details .product-actions .btn-edit {
  height: 10px;
  width: 10px;
  background-position: 0 -17px;
}
.mini-cart:hover .minicart-overview {
  visibility: visible;
  filter: alpha(opacity=1);
  opacity: 1;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .mini-cart:hover .minicart-overview {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .mini-cart:hover .minicart-overview {
    display: none;
  }
}

.breadcrumbs {
  position: relative;
  float: none;
  clear: both;
  *zoom: 1;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 40px;
  line-height: 4rem;
}
.breadcrumbs:after {
  content: "";
  display: table;
  clear: both;
}
.breadcrumbs li {
  float: left;
  margin-right: 0.3%;
}
.breadcrumbs li a {
  font-weight: 700;
}
.breadcrumbs .btn-facebook {
  display: block;
  float: right;
  margin: -10px 0 20px 0;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .breadcrumbs .btn-facebook {
    position: absolute;
    right: 0;
    top: 13%;
    margin: 0;
  }
}

#search_mini_form {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  #search_mini_form {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
    padding: 10px;
    min-width: 320px;
    width: 100%;
    height: 56px;
    background: #30adc1;
  }
}
@media only screen and (max-width: handheldpx) {
  #search_mini_form {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
    padding: 10px;
    min-width: 320px;
    width: 100%;
    height: 56px;
    background: #30adc1;
  }
}

.form-search {
  /* Landscape phones and down */
  /* Landscape phones and down */
  display: inline-block;
  float: right;
  margin: 6px 6px 6px 0;
  padding: 8px 5px 8px 8px;
  min-width: 200px;
  width: 19.16667%;
  border-radius: 3px;
  background: #fff;
}
@media (max-width: 728px) {
  .form-search {
    margin: 0;
    padding: 8px;
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .form-search {
    margin: 0;
    padding: 8px;
    width: 100%;
  }
}
@media (min-width: 729px) and (max-width: 1024px) {
  .form-search {
    width: 50%;
  }
}
.form-search .search-autocomplete {
  padding: 10px;
  background: #fff;
}
.form-search label {
  display: none;
}
.form-search input {
  font-size: 13px;
  font-size: 1.3rem;
  /* Landscape phones and down */
  /* Landscape phones and down */
  margin: 0;
  padding: 0;
  min-width: 180px;
  width: 13.33333%;
  border: 0;
}
@media (max-width: 728px) {
  .form-search input {
    max-width: 280px;
    width: 83.33333%;
  }
}
@media only screen and (max-width: handheldpx) {
  .form-search input {
    max-width: 280px;
    width: 83.33333%;
  }
}
@media (min-width: 729px) and (max-width: 1024px) {
  .form-search input {
    width: 80%;
  }
}
.form-search button.button {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  height: 20px;
  width: 25px;
  float: right;
  overflow: hidden;
  padding: 0;
  border: 0;
  background-color: #fff;
  background-position: -44px -54px;
  cursor: pointer;
}

.cart-table thead {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .cart-table thead {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .cart-table thead {
    display: none;
  }
}
.cart-table th {
  text-align: left;
  white-space: nowrap;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 16px;
  line-height: 1.6rem;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-table th {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
.cart-table th, .cart-table td {
  padding: 5px;
  vertical-align: middle;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 16px;
  line-height: 1.6rem;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-table th, .cart-table td {
    padding: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
.cart-table td.last {
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .cart-table td.last button {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: handheldpx) {
  .cart-table td.last button {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media (min-width: 729px) {
  .cart-table td.last {
    white-space: nowrap;
  }
}
.cart-table tfoot td {
  text-align: right;
  background: #fff !important;
  padding-right: 0;
}
.cart-table input {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .cart-table input {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 2px;
  }
}
@media only screen and (max-width: handheldpx) {
  .cart-table input {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 2px;
  }
}
.cart-table .product-name, .cart-table .price {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: 700;
  color: #000;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-table .product-name, .cart-table .price {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
.cart-table .product-name a, .cart-table .price a {
  color: #000;
}
.cart-table .btn-remove {
  height: 20px;
  width: 20px;
  background-position: -40px -34px;
  overflow: hidden;
  text-indent: -9999px;
  display: block;
}
.cart-table .product-image img {
  max-width: 40px;
  max-height: 40px;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-table .product-image img {
    max-width: 100%;
    max-height: 100%;
  }
}
.cart-table .link-wishlist {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .cart-table .link-wishlist {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .cart-table .link-wishlist {
    display: none;
  }
}

.btn-continue,
.btn-update,
.btn-empty,
.btn-share,
.discount-form .button,
.shipping-form .button {
  background: #30adc1;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .btn-continue,
  .btn-update,
  .btn-empty,
  .btn-share,
  .discount-form .button,
  .shipping-form .button {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .btn-continue,
  .btn-update,
  .btn-empty,
  .btn-share,
  .discount-form .button,
  .shipping-form .button {
    font-size: 10px;
    font-size: 1rem;
  }
}

.btn-proceed-checkout {
  padding: 10px 20px;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .btn-proceed-checkout {
    padding: 5px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: handheldpx) {
  .btn-proceed-checkout {
    padding: 5px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.checkout-types {
  text-align: right;
}

.page-title .btn-checkout {
  margin-bottom: 1.66667%;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .page-title .btn-checkout {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: handheldpx) {
  .page-title .btn-checkout {
    margin-bottom: 20px;
  }
}

.cart-collaterals {
  margin: 2% 0;
}
.cart-collaterals h2 {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 2% 0;
}
.cart-collaterals .col2-set {
  width: 100%;
  float: left;
  height: auto;
  overflow: hidden;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-collaterals .col2-set {
    width: 65%;
  }
}
.cart-collaterals .col2-set .buttons-set {
  margin: 2% 0;
}
.cart-collaterals .col2-set .col-1,
.cart-collaterals .col2-set .col-2 {
  display: inline-block;
  float: left;
  width: auto;
  margin-right: 1.66667%;
}
.cart-collaterals .col2-set .shipping-form, .cart-collaterals .col2-set .discount-form {
  margin-bottom: 20px;
}
.cart-collaterals .col2-set .shipping-form label, .cart-collaterals .col2-set .discount-form label {
  display: block;
  margin-bottom: 10px;
}
.cart-collaterals .col2-set .sp-methods dt {
  margin-bottom: 10px;
  font-weight: 700;
}
.cart-collaterals .col2-set .sp-methods dd {
  margin-bottom: 20px;
}
.cart-collaterals .col2-set .sp-methods dd input,
.cart-collaterals .col2-set .sp-methods dd label {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.cart-collaterals .totals {
  width: 100%;
  float: right;
  height: auto;
  overflow: hidden;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .cart-collaterals .totals {
    width: 35%;
  }
}
.cart-collaterals .totals table {
  width: 100%;
  margin-bottom: 20px;
}
.cart-collaterals .totals table th {
  text-align: center;
  font-weight: bold;
}
.cart-collaterals .totals table td,
.cart-collaterals .totals table th {
  padding: 2px;
}
.cart-collaterals .totals table td.numeric,
.cart-collaterals .totals table th.numeric {
  text-align: right;
}
.cart-collaterals .totals table th, .cart-collaterals .totals table td {
  border-right: 0px solid #c2c2c2;
  border-bottom: 0px solid #c2c2c2;
  border-left-width: 0;
  border-top-width: 0;
}
.cart-collaterals .totals table th:last-child, .cart-collaterals .totals table td:last-child {
  border-right-width: 0;
}
.cart-collaterals .totals table th.last, .cart-collaterals .totals table td.last {
  border-right-width: 0;
}
.cart-collaterals .totals table tbody tr:last-child th, .cart-collaterals .totals table tbody tr:last-child td, .cart-collaterals .totals table tfoot tr:last-child th, .cart-collaterals .totals table tfoot tr:last-child td {
  border-bottom-width: 0;
}
.cart-collaterals .totals table tbody tr.last th, .cart-collaterals .totals table tbody tr.last td, .cart-collaterals .totals table tfoot tr.last th, .cart-collaterals .totals table tfoot tr.last td {
  border-bottom-width: 0;
}
.cart-collaterals .totals table th {
  background-color: white;
}
.cart-collaterals .totals table th.even, .cart-collaterals .totals table th:nth-child(2n) {
  background-color: #dddddd;
}
.cart-collaterals .totals table tr.odd td, .cart-collaterals .totals table tr:nth-child(2n+1) td {
  background-color: whitesmoke;
}
.cart-collaterals .totals table tr.odd td.even, .cart-collaterals .totals table tr.odd td:nth-child(2n), .cart-collaterals .totals table tr:nth-child(2n+1) td.even, .cart-collaterals .totals table tr:nth-child(2n+1) td:nth-child(2n) {
  background-color: lightgray;
}
.cart-collaterals .totals table tr.even td {
  background-color: #f5f5f5;
}
.cart-collaterals .totals table tr.even td.even, .cart-collaterals .totals table tr.even td:nth-child(2n) {
  background-color: lightgray;
}
.cart-collaterals .totals table tfoot th, .cart-collaterals .totals table tfoot td {
  background-color: white;
}
.cart-collaterals .totals table tfoot th.even, .cart-collaterals .totals table tfoot th:nth-child(2n), .cart-collaterals .totals table tfoot td.even, .cart-collaterals .totals table tfoot td:nth-child(2n) {
  background-color: #dddddd;
}
.cart-collaterals .totals table th {
  text-align: left;
  white-space: nowrap;
}
.cart-collaterals .totals table th, .cart-collaterals .totals table td {
  padding: 10px;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  color: #000;
}
.cart-collaterals .totals table td.last {
  white-space: nowrap;
}

.cart .crosssell {
  display: none;
}

#shopping-cart-table {
  border: 0;
}

#checkoutSteps > li > div {
  padding: 20px;
}

.sp-methods dt {
  margin-bottom: 10px;
  font-weight: 700;
}
.sp-methods dd {
  margin-bottom: 20px;
}
.sp-methods dd input,
.sp-methods dd label {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.opc .section {
  float: none;
  clear: both;
  overflow: hidden;
  height: auto;
  margin-bottom: 20px;
}
.opc .section.allow .step-title {
  cursor: pointer;
}
.opc .section.allow:hover .step-title {
  background: #d9d9d9;
}
.opc .section .step-title {
  padding: 0.97276%;
  background: #ddf1f4;
}
.opc .section .step-title a {
  display: none;
}
.opc .section .step-title .number {
  background-color: #333333;
  color: #FFFFFF;
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.99206%;
  margin-right: 0.99206%;
}
.opc .section .step-title h2 {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.opc .section h3 {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 5% 0;
}
.opc .section h4 {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1% 0;
}
.opc .section p {
  margin-bottom: 15px;
}
.opc .section .col2-set {
  float: none;
  clear: both;
}
.opc .section .col2-set .col-1 {
  padding-right: 5.83658%;
}
.opc .section .col2-set .col-12 {
  padding-left: 5.83658%;
}
.opc .section.active .step-title {
  background: #d9d9d9;
}
.opc .form-list li {
  margin-bottom: 15px;
}
.opc .form-list label {
  font-weight: 700;
  display: inline-block;
}
.opc .buttons-set .required {
  float: none;
  clear: both;
}
.opc .buttons-set a {
  font-size: 11px;
  font-size: 1.1rem;
}
.opc .buttons-set .button {
  float: right;
}
.opc #login-form .form-list {
  margin-top: 20px;
}
.opc #login-form label {
  line-height: 30px;
  line-height: 3rem;
  width: 100%;
}
.opc #login-form .input-box {
  width: 100%;
}
.opc #login-form .input-box .input-text {
  width: 100%;
}
.opc .fields .field, .opc .wide .field {
  margin-bottom: 15px;
}
.opc .fields label, .opc .wide label {
  font-weight: 700;
  display: inline-block;
  width: 20%;
  min-width: 215px;
  line-height: 40px;
  line-height: 4rem;
}
.opc .fields .input-text, .opc .wide .input-text {
  width: 400px;
}
.opc .btn-checkout {
  margin: 20px 0;
}

.opc-block-progress {
  margin-top: 65px;
}
.opc-block-progress .block-title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.opc-block-progress dl div {
  margin-bottom: 20px;
}
.opc-block-progress dl dt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: 700;
  opacity: 0.5;
}
.opc-block-progress dl dt.complete {
  opacity: 1;
}

/* v 2.2.4 */
.op_block_title {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 6% 0;
  border-bottom: 1px solid #ddf1f4;
  text-align: left;
}

.ptdivline {
  margin: 2% 0 0 0;
}

.onepagecheckout_loginarea {
  margin: 1% 0;
}

.onepagecheckout_loginlink {
  font-weight: 700;
}

.op_login_area {
  display: inline-block;
  padding: 20px;
  background: #ddf1f4;
  min-width: 420px;
  border-radius: 3px;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .op_login_area {
    width: 100%;
    padding: 10px;
  }
}
@media only screen and (max-width: handheldpx) {
  .op_login_area {
    width: 100%;
    padding: 10px;
  }
}
.op_login_area .page-title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 2% 0;
}
.op_login_area .boxcontent {
  overflow: hidden;
  height: auto;
}
.op_login_area .full .input-box {
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
.op_login_area .full .input-text {
  display: block;
  width: 100%;
}
.op_login_area .buttons-set {
  text-align: right;
  margin-top: 10px;
}

.close_la {
  position: relative;
  margin-bottom: -16px;
  top: -16px;
  right: -16px;
  cursor: pointer;
  float: right;
  width: 16px;
  height: 16px;
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/images/onepagecheckout/cancel.png") no-repeat scroll 0 0 transparent;
}

#onepagecheckout_orderform .customer-name-prefix .name-prefix {
  width: 100%;
}
#onepagecheckout_orderform .customer-name-prefix .name-prefix select {
  width: 100%;
}

#coupon-apply {
  background-color: #30adc1;
}
#coupon-apply:hover {
  background: #000;
}

#checkout-coupon-discount-load {
  overflow: hidden;
}

#onepagecheckout_orderform .col3-set .col-1 {
  width: 27%;
  margin: 0;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  #onepagecheckout_orderform .col3-set .col-1 {
    padding: 0;
  }
}
@media only screen and (max-width: handheldpx) {
  #onepagecheckout_orderform .col3-set .col-1 {
    padding: 0;
  }
}

#onepagecheckout_orderform .col3-set .col-2 {
  width: 33%;
  margin-left: 4%;
  margin-right: 0;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  #onepagecheckout_orderform .col3-set .col-2 {
    margin-left: 0;
    padding: 0;
  }
}
@media only screen and (max-width: handheldpx) {
  #onepagecheckout_orderform .col3-set .col-2 {
    margin-left: 0;
    padding: 0;
  }
}

#onepagecheckout_orderform .col3-set .col-3 {
  float: right;
  padding-right: 0;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  #onepagecheckout_orderform .col3-set .col-3 {
    margin-left: 0;
    padding: 0;
  }
}
@media only screen and (max-width: handheldpx) {
  #onepagecheckout_orderform .col3-set .col-3 {
    margin-left: 0;
    padding: 0;
  }
}

#onepagecheckout_orderform #register-customer-password {
  margin-bottom: 5px;
}

#onepagecheckout_orderform #ship_address_block {
  margin-top: 35px;
}

.onepagecheckout_datafields .col-1 .form_fields .short {
  width: 50%;
  float: left;
}

.onepagecheckout_datafields .col-1 .form_fields div.two_fields .data_area {
  width: 95%;
}

.onepagecheckout_datafields .col-1 .form_fields div.two_fields .short {
  margin-bottom: 15px;
}

.onepagecheckout_datafields .col-1 .form_fields input.t1 {
  width: 95%;
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #81cfdc;
}

.onepagecheckout_datafields .col-1 .form_fields select {
  width: 100%;
}

.onepagecheckout_datafields .col-1 .form_fields div.full {
  margin: 0 0 15px;
}

.onepagecheckout_datafields .col-1 .form_fields div.full .data_area {
  width: 100%;
}

.onepagecheckout_datafields .col-1 .form_fields div.full input.t1 {
  width: 95%;
  background: none repeat scroll 0 0 #FFFFFF;
  border: 1px solid #81cfdc;
}

.onepagecheckout_datafields .col-1 .form_fields div.full select {
  width: 95%;
}

.onepagecheckout_datafields .col-2 .form_fields div.full .data_area {
  width: 275px;
}

.onepagecheckout_datafields .col-2 .form_fields div.full textarea {
  width: 254px;
  height: 85px;
}

.onepagecheckout_datafields .col-2 .form-list li.wide .input-box {
  width: 275px;
}

.onepagecheckout_datafields .col-2 .form-list li.wide textarea {
  width: 254px;
  height: 85px;
}

.onepagecheckout_datafields .col-3 .form_fields div.full .data_area {
  width: 275px;
}

.onepagecheckout_datafields .col-3 .form_fields div.full textarea {
  width: 280px;
  height: 60px;
}

.onepagecheckout_datafields .col-3 .form-list li.wide .input-box {
  width: 275px;
}

.onepagecheckout_datafields .col-3 .form-list li.wide textarea {
  width: 280px;
  height: 60px;
}

.onepagecheckout_datafields #comment-block {
  width: 100%;
}

.onepagecheckout_datafields #comment-label {
  font-weight: normal;
}

.onepagecheckout_datafields #comment-block #order-comment {
  width: 100%;
  padding: 0px;
}

.onepagecheckout_datafields .form_fields label {
  float: left;
  font-weight: normal;
  position: relative;
  z-index: 0;
  margin-bottom: 8px;
}

.onepagecheckout_datafields .form_fields li {
  margin: 0 0 8px;
}

.onepagecheckout_datafields .form_fields li.options label {
  float: none;
}

.onepagecheckout_datafields .form_fields li.options .input-box {
  clear: none;
  display: inline;
  width: auto;
}

#onepagecheckout_orderform .radio,
#onepagecheckout_orderform .checkbox {
  margin-right: 4px;
  margin-left: 0;
}

#onepagecheckout_orderform .col3-set .col-2, #onepagecheckout_orderform .col3-set .col-1 {
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  #onepagecheckout_orderform .col3-set .col-2, #onepagecheckout_orderform .col3-set .col-1 {
    min-height: 450px;
  }
}

.onepagecheckout_datafields .gift-messages-form .item .details .form-list .field,
.onepagecheckout_datafields .gift-messages-form .item .details .form-list .input-box,
.onepagecheckout_datafields .gift-messages-form .item .details .form-list li.wide .input-box {
  width: 186px;
}

.onepagecheckout_datafields .gift-messages-form .item .details .form-list input.input-text,
.onepagecheckout_datafields .gift-messages-form .item .details .form-list li.wide textarea {
  width: 165px;
}

.onepagecheckout_datafields .sp-methods {
  margin: 0;
}

.onepagecheckout_datafields #checkout-review-submit {
  margin: 10px 0 0;
}

.onepagecheckout_datafields .checkout-agreements li {
  margin: 0 0 30px 0;
}

.onepagecheckout_datafields .loading {
  background: url(https://www.lamimas.nl/skin/frontend/lamimas/default/images/onepagecheckout/loader.gif) no-repeat 50% 50%;
}

.onepagecheckout_datafields #checkout-shipping-method-load,
.onepagecheckout_datafields #checkout-payment-method-load,
.onepagecheckout_datafields #checkout-review-load {
  min-height: 50px;
}

.onepagecheckout_datafields #checkout-payment-method-load dd {
  margin-left: 20px;
}

.onepagecheckout_datafields .newsletter {
  margin: 0;
  padding: 35px 0 10px 0;
}

.onepagecheckout_datafields .buttons-set {
  margin: 5px 0 0;
  border: 0;
  padding: 4px 0 0;
  text-align: right;
}

.onepagecheckout_datafields .checkout-agreements .last {
  margin: 0;
}

.onepagecheckout_datafields .discount .buttons-set button:first-child {
  margin-left: 0;
}

#onepagecheckout_orderform .form-list label {
  text-align: left;
}

/* CHECKOUT Review Your Order Table */
#checkout-review-table-wrapper {
  margin-top: -5px;
}

.order-products-table {
  width: 100%;
  color: #7676676;
}

.order-products-table .odd {
  background-color: rgba(255, 255, 255, 0.8);
}

.order-products-table .even {
  background-color: rgba(255, 255, 255, 0.6);
}

.order-products-table td.last,
.order-products-table th.last {
  border-right: 0;
  width: 30%;
}

.order-products-table th {
  padding: 3px 8px;
  font-weight: bold;
  border-bottom: 1px solid #BFBFBF;
}

.order-products-table td {
  padding: 8px 8px 4px;
}

.order-products-table thead th {
  font-weight: bold;
  border-bottom: 1px solid #848484;
  font-size: 13px;
  padding: 4px 0;
  color: #000;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
}

.order-products-table thead th.wrap {
  white-space: normal;
}

.order-products-table thead th a,
.order-products-table thead th a:hover {
  color: #fff;
}

.order-products-table thead th .tax-flag {
  font-size: 11px;
  white-space: nowrap;
}

.order-products-table tfoot {
  border: 0;
}

.order-products-table tfoot tr.first td {
  background-color: rgba(255, 255, 255, 0.5);
}

.order-products-table tfoot tr.last td {
  border: 0 none !important;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
}

.order-products-table tfoot tr {
  background-color: rgba(255, 255, 255, 0.5);
}

.order-products-table tfoot td {
  border-bottom: 1px solid #BFBFBF;
}

.order-products-table tfoot strong {
  font-size: 105%;
}

.order-products-table tbody th,
.order-products-table tbody td {
  border: 0;
  border-bottom: 1px dotted #BFBFBF;
}

.order-products-table tbody.odd tr {
  background: #f8f7f5 !important;
}

.order-products-table tbody.even tr {
  background: #f6f6f6 !important;
}

.order-products-table tbody.odd tr td,
.order-products-table tbody.even tr td {
  border-bottom: 0;
}

.order-products-table tbody.odd tr.border td,
.order-products-table tbody.even tr.border td {
  border-bottom: 1px solid #d9dde3;
}

.order-products-table tbody td .option-label {
  font-weight: bold;
  font-style: italic;
}

.order-products-table tbody td .option-value {
  padding-left: 10px;
}

.clr {
  clear: both;
}

.clear {
  clear: both;
}

p.agree a {
  color: #8E8D8B;
}

p.newsletter label {
  color: #8E8D8B;
}

.onepagecheckout-window {
  border: none;
  background: #fff;
  z-index: 99999;
  position: absolute;
  text-align: left;
}

.onepagecheckout-window .page-title span {
  color: #0A263C;
  font-size: 20px;
  margin: 0;
}

.onepagecheckout-window .content {
  padding: 7px;
  overflow: auto;
}

.onepagecheckout-window .close {
  position: absolute;
  top: -15px;
  right: -16px;
  width: 16px;
  height: 16px;
  background: url(https://www.lamimas.nl/skin/frontend/lamimas/default/images/onepagecheckout/cancel_round.png) no-repeat 50% 50%;
}

.onepagecheckout-window .buttons-set {
  margin: 1em 0 0;
}

.d-shadow {
  position: absolute;
  width: 30%;
  left: 20%;
  top: 10%;
}

.d-shadow-wrap {
  position: relative;
  width: 100%;
  padding: 15px 21px 0 21px;
  margin: -15px -21px 0 -21px;
  overflow: hidden;
}

.d-sh-cn {
  position: absolute;
  background: url(https://www.lamimas.nl/skin/frontend/lamimas/default/images/onepagecheckout/shd-medium.png) no-repeat;
  left: -25px;
  z-index: -1;
}

.d-sh-tl,
.d-sh-tr {
  height: 500px;
  top: -28px;
}

.d-sh-tl,
.d-sh-bl {
  width: 100%;
}

.d-sh-tr,
.d-sh-br {
  width: 25px;
  margin-left: 100%;
}

.d-sh-bl,
.d-sh-br {
  height: 28px;
}

.d-sh-bl {
  left: -46px;
  padding-right: 42px;
  clip: rect(auto auto auto 25px);
}

.d-sh-br {
  left: -4px;
}

/* IE7 fix */
*:first-child + html .onepagecheckout-window {
  width: 500px;
}

#onepagecheckout_loginbox #login-form .boxcontent input,
.my-cart-link {
  float: right;
  color: #0B3A96;
  font-weight: bold;
  font-size: 12px !important;
  text-decoration: none;
}

/* modal form */
.iwdav_modal {
  width: 700px;
  border: 4px solid #9e9e9e;
  background-color: #fff;
  position: absolute;
  top: 600px;
  z-index: 10000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.iwdav_modal_inner {
  border: 1px solid #8b8a87;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.iwdav_modal_mobile {
  position: relative;
  left: auto !important;
  top: 0px !important;
  width: 98% !important;
  height: auto !important;
  margin: 10px auto;
}

.iwdav_modal .iwd_container {
  background: transparent;
  margin: 5px;
  padding: 15px 20px 0px;
  color: #000;
}

.iwdav_modal_mobile .iwd-container {
  height: auto !important;
}

.iwdav_modal .iwd_container p, .iwdav_modal .iwd_container {
  color: #343030;
  font-size: 13px;
  line-height: 18px;
  font-family: arial;
}

.iwdav_modal .iwd_container p {
  text-align: center;
  font-size: 14px;
}

.iwdav_modal .iwd-buttons-set {
  padding: 10px 20px 23px;
  margin: 0 auto;
  text-align: center;
}

.iwdav_modal .iwd-buttons-set .iwd-button {
  border: 1px solid #7b7475;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 0px 1px 1px #bfbfb9;
  -moz-box-shadow: inset 0px 0px 1px 1px #bfbfb9;
  box-shadow: inset 0px 0px 1px 1px #bfbfb9;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 27px;
  text-shadow: 1px 1px #1a1a1a;
  padding: 0 22px;
  text-transform: uppercase;
  cursor: pointer;
}

.iwd-verification-title {
  padding: 1px;
}

.iwd-verification-title .iwd-head {
  line-height: 14px;
  background-color: #e8e7e3;
  padding: 13px 18px;
  text-align: left;
  margin: 0;
  font-size: 18px;
  color: #343030;
  font-weight: bold;
  font-family: arial;
}

.va_label {
  float: left;
  width: 155px;
}

.va_choice {
  float: left;
}

.va_choice input {
  margin-top: -5px;
}

.bs_tit {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.iwdavPopupOverlay {
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  z-index: 9998;
  background-color: black;
  filter: alpha(opacity=30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
}

#onepagecheckout_orderform img {
  width: auto;
}

#checkout-payment-method-load img,
#checkout-payment-method-load a {
  display: none !important;
}

#onepagecheckout_orderform .btn-checkout {
  padding: 10px 20px;
  width: 100%;
}
#onepagecheckout_orderform .btn-checkout:hover {
  background-color: #005f29;
}

#checkout-review-load {
  padding: 10px;
  background: #d2e0c5;
  border-radius: 3px;
}

.page {
  /* Landscape phones and down */
  float: left;
  clear: both;
  padding: 0 10px;
  width: 100%;
  height: auto;
  background: #fff;
  text-align: center;
}
@media (max-width: 728px) {
  .page {
    padding: 10px;
  }
}
@media only screen and (max-width: handheldpx) {
  .page {
    padding: 10px;
  }
}
.page .main-container {
  /* Landscape phones and down */
  margin: auto;
  text-align: left;
}
@media (min-width: 729px) {
  .page .main-container {
    max-width: 1200px;
  }
}

.page-head h2 {
  font-size: 18px;
  font-size: 1.8rem;
}

.col-left .block {
  display: block;
  float: left;
  clear: both;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.col-left .block-title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.col-left .block-content {
  margin-bottom: 20px;
}
.col-left .block-content li {
  line-height: 18px;
  line-height: 1.8rem;
}

.col-main {
  padding-bottom: 1.66667%;
}

.col2-left-layout .col-left {
  float: left;
  margin-right: 1.66667%;
  width: 18.66667%;
}
.col2-left-layout .col-left.sidebar .block-account {
  margin-top: 8.92857%;
}
.col2-left-layout .col-left .block {
  margin-bottom: 8.92857%;
  padding: 4.46429%;
  width: 100%;
}
.col2-left-layout .col-main {
  float: left;
  width: 79.66667%;
}

.col2-right-layout .col-right {
  float: right;
  width: 18.66667%;
}
.col2-right-layout .col-main {
  float: left;
  width: 79.66667%;
}

.col2-left-layout,
.col2-right-layout {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .col2-left-layout .col-left,
  .col2-right-layout .col-left {
    position: absolute;
    left: -300px;
  }
  .col2-left-layout .col-left.open,
  .col2-right-layout .col-left.open {
    -moz-box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    -webkit-box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 280px;
    padding: 10px;
    height: 100%;
    background-color: #fff;
  }
  .col2-left-layout .col-right,
  .col2-right-layout .col-right {
    display: none;
  }
  .col2-left-layout .col-main,
  .col2-right-layout .col-main {
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .col2-left-layout .col-left,
  .col2-right-layout .col-left {
    position: absolute;
    left: -300px;
  }
  .col2-left-layout .col-left.open,
  .col2-right-layout .col-left.open {
    -moz-box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    -webkit-box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    box-shadow: rgba(50, 50, 50, 0.21) 7px 0px 4px 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    width: 280px;
    padding: 10px;
    height: 100%;
    background-color: #fff;
  }
  .col2-left-layout .col-right,
  .col2-right-layout .col-right {
    display: none;
  }
  .col2-left-layout .col-main,
  .col2-right-layout .col-main {
    width: 100%;
  }
}

.col2-set {
  float: left;
  margin-bottom: 20px;
}
.col2-set .col-1,
.col2-set .col-2 {
  float: left;
  width: 50%;
}

.col3-set {
  float: left;
  margin-bottom: 20px;
}
.col3-set img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.col3-set .col-1,
.col3-set .col-2,
.col3-set .col-3 {
  /* Landscape phones and down */
  margin-bottom: 20px;
  padding: 10px;
}
@media (min-width: 729px) {
  .col3-set .col-1,
  .col3-set .col-2,
  .col3-set .col-3 {
    float: left;
    margin: 0;
    padding: 0 30px 0 0;
    width: 33%;
  }
}

.product-list-holder {
  position: relative;
  display: none;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .product-list-holder {
    display: block;
    border-bottom: 2px dashed #eaeaea;
  }
}
.product-list-holder .slider-control {
  position: absolute;
  right: 0;
  top: 2px;
}
.product-list-holder .slider-control li {
  display: inline;
  float: left;
}
.product-list-holder .slider-control a {
  display: block;
  overflow: hidden;
  padding-top: 7px;
  height: 32px;
  width: 32px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #30adc1;
  float: left;
  text-align: center;
}
.product-list-holder .slider-control a.slideshow-prev-newlist, .product-list-holder .slider-control a.slideshow-prev-highlight, .product-list-holder .slider-control a.slideshow-prev-altlist {
  margin-right: 5px;
}
.product-list-holder .slider-control a:hover {
  background: #000;
}
.product-list-holder .slider-control a span.arrow-next {
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid white;
  margin-left: 13px;
}
.product-list-holder .slider-control a span.arrow-prev {
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
  margin-right: 13px;
}
.product-list-holder .slider-control a span.text {
  display: none;
}

.cms-home .page {
  padding-top: 1.25%;
}

.ambiance {
  width: 100%;
  height: auto;
  float: none;
  clear: both;
  overflow: hidden;
  border-bottom: 2px dashed #eaeaea;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .ambiance {
    padding: 2%;
  }
}
@media only screen and (max-width: handheldpx) {
  .ambiance {
    padding: 2%;
  }
}
.ambiance .flexslider-holder {
  width: 73.33333%;
  float: left;
  overflow: hidden;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .ambiance .flexslider-holder {
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .ambiance .flexslider-holder {
    width: 100%;
  }
}
.ambiance .flexslider-holder .flexslider {
  overflow: hidden;
  border-radius: 3px;
}
.ambiance .banners {
  float: right;
  width: 25%;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .ambiance .banners {
    width: 100%;
    float: none;
    margin-top: 1.66667%;
  }
}
@media only screen and (max-width: handheldpx) {
  .ambiance .banners {
    width: 100%;
    float: none;
    margin-top: 1.66667%;
  }
}
.ambiance .banners li {
  display: block;
  float: none;
  clear: both;
  overflow: hidden;
  border-radius: 3px;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .ambiance .banners li {
    float: left;
    clear: none;
    margin: 0;
    width: 49.16667%;
  }
}
@media only screen and (max-width: handheldpx) {
  .ambiance .banners li {
    float: left;
    clear: none;
    margin: 0;
    width: 49.16667%;
  }
}
.ambiance .banners li:first-child {
  margin-bottom: 6.66667%;
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .ambiance .banners li:first-child {
    margin-right: 1.66667%;
  }
}
@media only screen and (max-width: handheldpx) {
  .ambiance .banners li:first-child {
    margin-right: 1.66667%;
  }
}
.ambiance .banners li img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.homepage-promo {
  width: 100%;
  padding: 20px 0 0 0;
  float: none;
  clear: both;
  border-bottom: 2px dashed #eaeaea;
  overflow: hidden;
}
.homepage-promo .col1,
.homepage-promo .col2,
.homepage-promo .col3 {
  width: 100%;
  text-align: center;
}
.homepage-promo .col1 img,
.homepage-promo .col2 img,
.homepage-promo .col3 img {
  margin: auto;
  margin-bottom: 20px;
  width: 100%;
  display: block;
  border-radius: 3px;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .homepage-promo .col1 img,
  .homepage-promo .col2 img,
  .homepage-promo .col3 img {
    width: 100%;
    display: block;
  }
}
.homepage-promo .col1 {
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .homepage-promo .col1 {
    width: 39.16667%;
    float: left;
    margin-right: 1.66667%;
  }
}
.homepage-promo .col2 {
  /* Landscape phones and down */
}
.homepage-promo .col2 img {
  max-width: 316px;
}
@media (min-width: 729px) {
  .homepage-promo .col2 {
    width: 26.33333%;
    float: left;
    margin-right: 1.66667%;
  }
}
.homepage-promo .col3 {
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .homepage-promo .col3 {
    width: 30.58333%;
    float: left;
  }
}

.hp-content img {
  border-radius: 3px;
}

.account-login {
  margin-bottom: 3.33333%;
}
.account-login .registered-users .form-list li {
  margin-bottom: 15px;
}
.account-login .registered-users .buttons-set {
  text-align: right;
}
.account-login .registered-users .buttons-set .button {
  margin-bottom: 10px;
}
.account-login .registered-users label {
  font-weight: 700;
  display: inline-block;
  width: 30%;
  line-height: 40px;
  line-height: 4rem;
}
.account-login .registered-users .input-box {
  width: 69%;
}
.account-login .registered-users .input-text {
  width: 100%;
  padding: 8px;
}
.account-login .col2-set {
  overflow: hidden;
  /* Landscape phones and down */
}
.account-login .col2-set .col-1,
.account-login .col2-set .col-2 {
  background: #ddf1f4;
  width: 98%;
  padding: 2%;
  margin-bottom: 1%;
  border-radius: 3px;
}
@media (min-width: 729px) {
  .account-login .col2-set .col-1 {
    width: 49.16667%;
    padding: 1.66667%;
    float: left;
    margin: 0 0.83333% 0 0;
  }
  .account-login .col2-set .col-2 {
    width: 49.16667%;
    padding: 1.66667%;
    float: left;
    margin: 0 0 0 0.83333%;
  }
}

.account-create .legend {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 0 0 2% 0;
}
.account-create .fieldset {
  background: #ddf1f4;
  padding: 2%;
  margin-bottom: 1.66667%;
  max-width: 800px;
  border-radius: 3px;
}
.account-create .form-list li .field {
  margin-bottom: 15px;
}
.account-create .buttons-set {
  text-align: right;
  max-width: 800px;
}
.account-create .buttons-set .button {
  margin-bottom: 10px;
}
.account-create .buttons-set .required {
  text-align: left;
  margin-bottom: 0;
}
.account-create label {
  font-weight: 700;
  display: inline-block;
  width: 20%;
  min-width: 215px;
  line-height: 40px;
  line-height: 4rem;
}
.account-create .control label {
  line-height: 20px;
  line-height: 2rem;
  vertical-align: middle;
  margin-top: 20px;
}
.account-create .input-box {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .account-create .input-box {
    display: block;
    width: 100%;
  }
  .account-create .input-box select {
    width: 100%;
    padding: 8px;
  }
}
@media only screen and (max-width: handheldpx) {
  .account-create .input-box {
    display: block;
    width: 100%;
  }
  .account-create .input-box select {
    width: 100%;
    padding: 8px;
  }
}
.account-create .input-text {
  width: 100%;
  padding: 8px;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .account-create .input-text {
    width: 300px;
  }
}

.my-account .box-head {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.my-account .box-head h2 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  line-height: 2.2rem;
  display: inline-block;
  margin: 2% 0;
  color: #000;
  vertical-align: middle;
  font-weight: 700;
}
.my-account .box-head a {
  display: inline-block;
  vertical-align: middle;
}
.my-account .box-title {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.my-account .col-1 .box-title {
  width: 90%;
}
.my-account .box-title h3,
.my-account .box-title h4,
.my-account .box-content h3,
.my-account .box-content h4 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  display: inline-block;
  margin: 2% 0;
  color: #000;
  vertical-align: middle;
  font-weight: 700;
}
.my-account .box-title h4,
.my-account .box-content h4 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
}
.my-account .box-title a,
.my-account .box-content a {
  display: inline-block;
  vertical-align: middle;
}
.my-account .addresses-list {
  width: 100%;
}
.my-account .addresses-list h2,
.my-account .addresses-list h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  display: inline-block;
  margin: 2% 0;
  color: #000;
  vertical-align: middle;
  font-weight: 700;
}
.my-account .addresses-list h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  width: 90%;
  border-bottom: 1px solid #ccc;
}
.my-account .addresses-list h3 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
}
.my-account .legend {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  margin-bottom: 2.28311%;
  color: #000;
  font-weight: 700;
}
.my-account .form-list {
  margin-bottom: 30px;
}
.my-account .form-list li div {
  margin-bottom: 1.14155%;
}
.my-account .form-list label {
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .my-account .form-list label {
    display: inline-block;
    min-width: 180px;
  }
}
.my-account .form-list .input-text {
  width: 320px;
}
.my-account .box-info .col2-set {
  width: 100%;
}
.my-account .pager {
  margin: 10px 0 10px 0;
}
.my-account .pager .limiter {
  float: right;
}
.my-account .pager .amount {
  float: left;
}
.my-account .back-link {
  display: block;
  float: none;
  clear: both;
  margin-top: 20px;
}

.block-reorder .product-name {
  display: inline;
  font-weight: 700;
}
.block-reorder .button {
  width: 100%;
  margin: 8px 0;
}

.block-compare #compare-items {
  margin-bottom: 20px;
}
.block-compare .item {
  margin-bottom: 8px;
}
.block-compare .product-name {
  display: block;
  font-weight: 700;
}
.block-compare .btn-remove {
  font-size: 10px;
}
.block-compare .button {
  width: 100%;
  margin: 8px 0;
}

.my-wishlist .buttons-set {
  text-align: right;
  margin-top: 20px;
}
.my-wishlist textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
}
.my-wishlist .input-text.qty {
  display: inline-block;
  width: 35px;
  padding: 5px;
}
.my-wishlist .price-box {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 600;
  margin: 4% 0;
  color: #30adc1;
  display: inline-block;
  vertical-align: middle;
}
.my-wishlist .price-box .old-price {
  display: inline-block;
  color: #cacaca;
  text-decoration: line-through;
}
.my-wishlist .price-box .old-price .price-label {
  display: none;
}
.my-wishlist .price-box .special-price {
  display: inline-block;
}
.my-wishlist .price-box .special-price .price-label {
  display: none;
}
.my-wishlist .price-box .unit-price-quarter {
  clear: both;
  display: block;
  float: none;
  font-size: 12px;
  font-size: 1.2rem;
  opacity: 0.5;
}
.my-wishlist .add-to-cart-alt {
  display: inline-block;
  vertical-align: middle;
}
.my-wishlist .product-name {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
}
.my-wishlist .product-name a {
  color: #000;
}

.block-layered-nav .filter-link,
.block-layered-nav .filter-close {
  display: none;
}
.block-layered-nav dt {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: 700;
}
.block-layered-nav dd {
  margin: 0 0 4.46429% 0;
}
.block-layered-nav .actions {
  background: #ddd;
  padding: 2%;
  margin-bottom: 8.92857%;
}
.block-layered-nav .actions a {
  color: black;
  font-size: 11px;
  font-size: 1.1rem;
}
.block-layered-nav .currently {
  margin-top: 8.92857%;
}
.block-layered-nav .currently li {
  background: #F6F6F6;
  padding: 2%;
}
.block-layered-nav .currently li .label {
  font-weight: 600;
}
.block-layered-nav .currently li .btn-remove {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  background-color: black;
  height: 10px;
  width: 10px;
  background-position: 0 -54px;
}
.block-layered-nav .currently li .btn-remove:hover {
  background-color: #30adc1;
}

.block-layered-nav {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .block-layered-nav .filter-close {
    color: #000;
    display: inline-block;
    float: right;
    font-size: 30px;
    font-weight: 400;
    padding: 0 5px;
  }
  .block-layered-nav .filter-close:hover {
    text-decoration: none;
  }
  .block-layered-nav .filter-link {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 10px 20px 10px 10px;
    position: fixed;
    right: 0;
    top: 180px;
    z-index: 999;
    font-weight: 700;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
}
@media only screen and (max-width: handheldpx) {
  .block-layered-nav .filter-close {
    color: #000;
    display: inline-block;
    float: right;
    font-size: 30px;
    font-weight: 400;
    padding: 0 5px;
  }
  .block-layered-nav .filter-close:hover {
    text-decoration: none;
  }
  .block-layered-nav .filter-link {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 10px 20px 10px 10px;
    position: fixed;
    right: 0;
    top: 180px;
    z-index: 999;
    font-weight: 700;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }
}

.toolbar {
  float: none;
  clear: both;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.toolbar .sorter {
  /* Landscape phones and down */
  margin-bottom: 2%;
  padding: 2%;
  border-radius: 3px;
  background: #f6f6f6;
}
@media (min-width: 729px) {
  .toolbar .sorter {
    padding: 1%;
  }
}
.toolbar p {
  margin: 0;
  padding: 0;
}
.toolbar select {
  padding: 4px;
  border: 1px solid #c6c6c6;
  background: #fff;
}
.toolbar .amount {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  opacity: 0.5;
}
.toolbar .sort-by {
  /* Landscape phones and down */
  margin: 10px 0 10px 0;
}
@media (min-width: 729px) {
  .toolbar .sort-by {
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }
}
.toolbar .sort-by .category-asc,
.toolbar .sort-by .category-desc {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
}
.toolbar .sort-by .category-asc {
  height: 14px;
  width: 14px;
  background-position: -10px -17px;
}
.toolbar .sort-by .category-asc:hover {
  background-color: #000;
  background-position: -52px -17px;
}
.toolbar .sort-by .category-desc {
  height: 14px;
  width: 14px;
  background-position: -38px -17px;
}
.toolbar .sort-by .category-desc:hover {
  background-color: #000;
  background-position: -24px -17px;
}
.toolbar .limiter {
  /* Landscape phones and down */
  display: none;
}
@media (min-width: 729px) {
  .toolbar .limiter {
    display: inline-block;
    vertical-align: middle;
  }
}
.toolbar .view-mode {
  /* Landscape phones and down */
  display: none;
}
@media (min-width: 729px) {
  .toolbar .view-mode {
    display: inline-block;
    float: right;
    margin-top: 4px;
  }
}
.toolbar .view-mode label {
  display: none;
}
.toolbar .view-mode .grid,
.toolbar .view-mode .list {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}
.toolbar .view-mode a.grid {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  height: 20px;
  width: 20px;
  background-position: -69px -54px;
}
.toolbar .view-mode a.grid:hover {
  background-color: #000;
  background-position: 0 -136px;
}
.toolbar .view-mode span.grid {
  height: 20px;
  width: 20px;
  background-position: -69px -54px;
}
.toolbar .view-mode a.list {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  height: 20px;
  width: 20px;
  background-position: -20px -34px;
}
.toolbar .view-mode a.list:hover {
  background-color: #000;
  background-position: -60px -34px;
}
.toolbar .view-mode span.list {
  height: 20px;
  width: 20px;
  background-position: -20px -34px;
}
.toolbar .pager {
  margin: 2% 0;
  text-align: right;
}
.toolbar .pager .pages {
  display: inline-block;
  margin: auto;
}
.toolbar .pager .pages strong {
  display: none;
  vertical-align: middle;
}
.toolbar .pager .pages ol {
  display: inline-block;
  vertical-align: middle;
}
.toolbar .pager .pages ol li {
  display: inline-block;
  overflow: hidden;
  border-radius: 3px;
  vertical-align: middle;
}
.toolbar .pager .pages ol li.current {
  line-height: 30px;
  line-height: 3rem;
  padding: 0 10px;
  background-color: #cbcbcb;
  color: #fff;
  font-weight: 700;
}
.toolbar .pager .pages ol li a {
  line-height: 30px;
  line-height: 3rem;
  display: inline-block;
  padding: 0 10px;
  background-color: #000;
  color: #fff;
  vertical-align: middle;
  font-weight: 700;
}
.toolbar .pager .pages ol li a img {
  display: none;
}
.toolbar .pager .pages ol li a.i-previous {
  height: 30px;
  width: 30px;
  background-position: -47px -74px;
}
.toolbar .pager .pages ol li a.i-next {
  height: 30px;
  width: 30px;
  background-position: -17px -74px;
}
.toolbar .pager .pages ol li a:hover {
  background-color: #30adc1;
  text-decoration: none;
}

.category-promo {
  width: 100%;
}
.category-promo img {
  width: 100%;
}

.category-products .product-name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.category-products .product-name a {
  color: #000;
}

.special-label {
  -moz-box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
  -webkit-box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
  box-shadow: rgba(5, 80, 90, 0.4) 0 0 5px;
  position: absolute;
  display: inline-block;
  padding: 4px;
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.special-label.sale {
  top: 10px;
  right: 10px;
  z-index: 99;
  background: none repeat scroll 0 0 #fb8b0d;
}
.special-label.new {
  top: 10px;
  left: 10px;
  z-index: 99;
  background: none repeat scroll 0 0 #79a255;
}

.products-grid .item {
  /* Landscape phones and down */
  /* Landscape phones and down */
  position: relative;
  display: block;
  float: left;
  min-height: 260px;
  border: 1px solid #ddf1f4;
  border-radius: 3px;
}
@media (min-width: 1270px) {
  .products-grid .item {
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    min-height: 345px;
  }
  .products-grid .item .product-image {
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
@media (min-width: 729px) and (max-width: 1024px) {
  .products-grid .item {
    min-height: 320px;
  }
}
.products-grid .item .product-image {
  display: block;
  float: none;
  clear: both;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.products-grid .item .product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.products-grid .item .actions-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  white-space: nowrap;
}
.products-grid .item .actions-holder .actions {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Landscape phones and down */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
@media (max-width: 728px) {
  .products-grid .item .actions-holder .actions {
    display: none;
  }
}
@media only screen and (max-width: handheldpx) {
  .products-grid .item .actions-holder .actions {
    display: none;
  }
}
.products-grid .item .actions-holder .actions .btn-cart {
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 999;
  display: none;
  overflow: hidden;
  width: 28px;
  height: 28px;
  background-color: #79a255;
}
.products-grid .item .actions-holder .actions .btn-cart:hover {
  background-color: #000;
}
.products-grid .item .actions-holder .actions .btn-cart .icon {
  height: 28px;
  width: 28px;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  background-position: 0 -104px;
  vertical-align: middle;
}
.products-grid .item .actions-holder .actions .btn-cart .btn-text {
  display: none;
}
.products-grid .item .actions-holder .actions .add-to-links {
  display: inline-block;
  float: left;
}
.products-grid .item .actions-holder .actions .add-to-links .separator {
  display: none;
}
.products-grid .item .actions-holder .actions .add-to-links li {
  float: left;
}
.products-grid .item .actions-holder .actions .add-to-links a {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  position: absolute;
  bottom: 5px;
  display: inline-block;
  overflow: hidden;
  background-color: #30adc1;
}
.products-grid .item .actions-holder .actions .add-to-links a:hover {
  background-color: #000;
}
.products-grid .item .actions-holder .actions .add-to-links .link-wishlist {
  height: 32px;
  width: 32px;
  right: 40px;
  background-position: -20px -136px;
}
.products-grid .item .actions-holder .actions .add-to-links .link-compare {
  height: 32px;
  width: 32px;
  right: 5px;
  background-position: -60px -104px;
}
.products-grid .item .actions-holder .actions .add-to-links .link-addtocart {
  height: 32px;
  width: 32px;
  right: 75px;
  background-position: -28px -104px;
}
.products-grid .item h2 {
  /* Landscape phones and down */
  /* Landscape phones and down */
  margin: 4% 0;
  font-weight: 600;
}
@media (max-width: 728px) {
  .products-grid .item h2 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .products-grid .item h2 {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}
@media (min-width: 729px) {
  .products-grid .item h2 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
.products-grid .item .price-box {
  /* Landscape phones and down */
  /* Landscape phones and down */
  margin: 4% 0;
  color: #30adc1;
  font-weight: 600;
}
@media (max-width: 728px) {
  .products-grid .item .price-box {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .products-grid .item .price-box {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
@media (min-width: 729px) {
  .products-grid .item .price-box {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 20px;
    line-height: 2rem;
  }
}
.products-grid .item .price-box .old-price {
  display: inline-block;
  color: #cacaca;
  text-decoration: line-through;
}
.products-grid .item .price-box .old-price .price-label {
  display: none;
}
.products-grid .item .price-box .special-price {
  display: inline-block;
}
.products-grid .item .price-box .special-price .price-label {
  display: none;
}
.products-grid .item .price-box .unit-price-quarter {
  font-size: 12px;
  font-size: 1.2rem;
  /* Landscape phones and down */
  display: block;
  float: none;
  margin-top: 5px;
  opacity: 0.7;
}
@media (min-width: 729px) {
  .products-grid .item .price-box .unit-price-quarter {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.products-grid .item .small-link-details {
  font-size: 11px;
  font-size: 1.1rem;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #888;
  text-transform: lowercase;
}
.products-grid .item:hover {
  border: 1px solid #30adc1;
}
.products-grid .item:hover .actions-holder .actions {
  background-image: url('https://www.lamimas.nl/skin/frontend/lamimas/default/css/data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
  opacity: 1;
}

.col1-layout .products-grid .item {
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .col1-layout .products-grid .item {
    margin: 0 1.66667% 1.66667% 0;
    padding: 0.83333%;
    min-height: 320px;
    width: 47.5%;
  }
}
@media only screen and (max-width: handheldpx) {
  .col1-layout .products-grid .item {
    margin: 0 1.66667% 1.66667% 0;
    padding: 0.83333%;
    min-height: 320px;
    width: 47.5%;
  }
}
@media (min-width: 729px) {
  .col1-layout .products-grid .item {
    margin: 0 1.66667% 1.66667% 0;
    padding: 0.83333%;
    width: 18.66667%;
  }
}
.col1-layout .products-grid .item.last {
  margin-right: 0;
}

.col2-left-layout .products-grid,
.col2-right-layout .products-grid {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .col2-left-layout .products-grid,
  .col2-right-layout .products-grid {
    padding: 2% 0;
  }
}
@media only screen and (max-width: handheldpx) {
  .col2-left-layout .products-grid,
  .col2-right-layout .products-grid {
    padding: 2% 0;
  }
}
.col2-left-layout .products-grid .item,
.col2-right-layout .products-grid .item {
  /* Landscape phones and down */
  margin: 0 2.09205% 2.09205% 0;
  padding: 1.04603%;
  width: 23.43096%;
}
@media (max-width: 728px) {
  .col2-left-layout .products-grid .item,
  .col2-right-layout .products-grid .item {
    margin: 0 0 5% 0;
    width: 100%;
    padding: 20px;
  }
  .col2-left-layout .products-grid .item:nth-child(2),
  .col2-right-layout .products-grid .item:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: handheldpx) {
  .col2-left-layout .products-grid .item,
  .col2-right-layout .products-grid .item {
    margin: 0 0 5% 0;
    width: 100%;
    padding: 20px;
  }
  .col2-left-layout .products-grid .item:nth-child(2),
  .col2-right-layout .products-grid .item:nth-child(2) {
    margin-right: 0;
  }
}
.col2-left-layout .products-grid .item.last,
.col2-right-layout .products-grid .item.last {
  margin-right: 0;
}

.products-list .item {
  display: block;
  float: none;
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 1.04603%;
  min-height: auto;
  border: 1px solid #ccc;
}
.products-list .item .product-image {
  display: block;
  float: left;
  overflow: hidden;
  margin-right: 2.13675%;
  width: 27.77778%;
  height: auto;
}
.products-list .item .product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.products-list .item .product-shop {
  float: left;
  width: 70.08547%;
}
.products-list .item .product-shop .link-learn {
  display: block;
  float: none;
  clear: both;
  margin: 2% 0;
  font-weight: 600;
}

.product-view {
  /* Landscape phones and down */
  position: relative;
}
@media (max-width: 728px) {
  .product-view #upsell-product-table {
    display: inline;
  }
  .product-view #upsell-product-table td {
    display: inline-block;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-view #upsell-product-table {
    display: inline;
  }
  .product-view #upsell-product-table td {
    display: inline-block;
  }
}
.product-view .special-label.sale {
  position: static;
  display: inline-block;
  vertical-align: middle;
}
.product-view .col2-set {
  *zoom: 1;
  width: 100%;
}
.product-view .col2-set:after {
  content: "";
  display: table;
  clear: both;
}
.product-view .col2-set .col-1 {
  /* Landscape phones and down */
  width: 30%;
}
@media (max-width: 728px) {
  .product-view .col2-set .col-1 {
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-view .col2-set .col-1 {
    width: 100%;
  }
}
.product-view .col2-set .col-2 {
  /* Landscape phones and down */
  padding-left: 3.33333%;
  width: 70%;
}
@media (max-width: 728px) {
  .product-view .col2-set .col-2 {
    padding-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-view .col2-set .col-2 {
    padding-left: 0;
    width: 100%;
  }
}
.product-view .addthis {
  margin: 2% 0;
  text-align: right;
}
.product-view .addthis .addthis_toolbox {
  float: right;
}
.product-view .product-collateral {
  *zoom: 1;
  float: none;
  clear: both;
  width: 100%;
}
.product-view .product-collateral:after {
  content: "";
  display: table;
  clear: both;
}
.product-view .product-collateral .data-table td,
.product-view .product-collateral .data-table th {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 5px;
}
.product-view .product-collateral img {
  border-radius: 3px;
}
.product-view .box-up-sell,
.product-view .box-cross-sell {
  float: none;
  clear: both;
  margin-top: 1.66667%;
  padding: 0.83333%;
  border: 2px solid #f4f4f4;
  background: #f4f4f4;
}
.product-view .box-up-sell h2,
.product-view .box-cross-sell h2 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  display: block;
  margin-bottom: 0.83333%;
  font-weight: 600;
}
.product-view .box-up-sell td,
.product-view .box-cross-sell td {
  padding: 10px;
  text-align: center;
}
.product-view .box-up-sell .product-name a,
.product-view .box-cross-sell .product-name a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  color: black;
  font-weight: 600;
}
.product-view .box-up-sell .price-box,
.product-view .box-cross-sell .price-box {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  margin: 2% 0;
  color: #30adc1;
  font-weight: 600;
}
.product-view .box-up-sell .price-box .unit-price-quarter,
.product-view .box-cross-sell .price-box .unit-price-quarter {
  font-size: 10px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 2rem;
  display: block;
  opacity: 0.6;
}

.product-shop .product-name h1 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 32px;
  line-height: 3.2rem;
  /* Landscape phones and down */
  margin: 0 0 2% 0;
  color: #000;
  font-weight: 400;
  font-family: Pacifico, sans-serif;
}
@media (max-width: 728px) {
  .product-shop .product-name h1 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
    margin: 5% 0;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-shop .product-name h1 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
    margin: 5% 0;
  }
}
.product-shop .price-holder {
  overflow: hidden;
  padding: 2.5%;
  border: 1px dashed #ddd;
  border-radius: 3px;
}
.product-shop .price-box {
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin: 2% 0;
  color: #30adc1;
  font-weight: 600;
}
.product-shop .price-box p {
  display: inline-block;
}
.product-shop .price-box .old-price {
  color: #cacaca;
  text-decoration: line-through;
}
.product-shop .price-box .old-price .price-label {
  display: none;
}
.product-shop .price-box .special-price .price-label {
  display: none;
}
.product-shop .price-box .unit-price-quarter {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  float: none;
  margin-top: 5px;
  opacity: 0.7;
}
.product-shop .add-to-box .add-to-cart {
  /* Landscape phones and down */
  display: inline-block;
  float: left;
}
@media (max-width: 728px) {
  .product-shop .add-to-box .add-to-cart {
    display: block;
    float: none;
    clear: both;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-shop .add-to-box .add-to-cart {
    display: block;
    float: none;
    clear: both;
  }
}
.product-shop .add-to-box .add-to-cart label {
  font-weight: 600;
}
.product-shop .add-to-box .add-to-cart .button.btn-cart {
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .product-shop .add-to-box .add-to-cart .button.btn-cart {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: handheldpx) {
  .product-shop .add-to-box .add-to-cart .button.btn-cart {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}
.product-shop .add-to-box .or {
  display: none;
}
.product-shop .add-to-box .input-text.qty {
  margin: 0 5px;
  padding: 7px;
  width: 55px;
}
.product-shop .add-to-box .unit-label {
  margin-right: 8px;
}
.product-shop .add-to-links {
  display: inline-block;
  float: left;
}
.product-shop .add-to-links .separator {
  display: none;
}
.product-shop .add-to-links li {
  float: left;
}
.product-shop .add-to-links a {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  margin-left: 5px;
  border-radius: 3px;
  background-color: #30adc1;
  vertical-align: middle;
}
.product-shop .add-to-links a:hover {
  background-color: #000;
}
.product-shop .add-to-links .link-wishlist {
  height: 32px;
  width: 32px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  background-position: -20px -136px;
}
.product-shop .add-to-links .link-compare {
  height: 32px;
  width: 32px;
  border-right: 1px solid #fff;
  background-position: -60px -104px;
}
.product-shop .product-pricing {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  overflow: hidden;
  margin-top: 7%;
  width: 100%;
  height: auto;
  color: #666;
  font-weight: 400;
}
.product-shop .short-description {
  float: none;
  clear: both;
}

.box-description h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  margin: 2% 0;
  color: #000;
  font-weight: 400;
  font-family: Pacifico, sans-serif;
}
.box-description .std {
  margin-bottom: 2.5%;
}
.box-description ul {
  margin: 0 0 20px 15px;
  list-style-type: disc;
}
.box-description ul li {
  padding-left: 10px;
}

.box-additional h2 {
  display: none;
}

.product-img-box img {
  display: block;
  width: 100%;
  border-radius: 3px;
}
.product-img-box .zoom img {
  width: auto;
}
.product-img-box .pinterest {
  text-align: right;
}
.product-img-box .pinterest a {
  display: inline-block;
  height: 20px;
}
.product-img-box .more-views h2 {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-weight: 600;
}
.product-img-box .more-views li {
  float: left;
  margin-right: 2.77778%;
  width: 15.55556%;
}

.product-sample {
  overflow: hidden;
  margin-top: 2.5%;
  padding: 2.5%;
  border: 1px dashed #ddd;
  border-radius: 3px;
}
.product-sample .sub-text {
  color: #787878;
}
.product-sample em {
  font-style: italic;
}
.product-sample .btn-sample {
  background: #30adc1;
}
.product-sample .btn-sample:hover {
  background: #000;
}

.category-promo img {
  border-radius: 3px;
}

.footer-container {
  float: none;
  clear: both;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #30adc1;
  text-align: center;
}
.footer-container .footer-grey {
  padding: 0 10px;
  background: #ddf1f4;
}
.footer-container .footer {
  *zoom: 1;
  /* Landscape phones and down */
  /* Landscape phones and down */
  margin: auto;
  padding: 0 10px;
  text-align: left;
}
.footer-container .footer:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 728px) {
  .footer-container .footer {
    padding-top: 10px;
  }
}
@media only screen and (max-width: handheldpx) {
  .footer-container .footer {
    padding-top: 10px;
  }
}
@media (min-width: 729px) {
  .footer-container .footer {
    max-width: 1200px;
  }
}
.footer-container .footer .block {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
  /* Landscape phones and down */
  /* Landscape phones and down */
  /* Landscape phones and down */
  display: inline-block;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 728px) {
  .footer-container .footer .block {
    float: none;
    padding: 10px;
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .footer-container .footer .block {
    float: none;
    padding: 10px;
    width: 100%;
  }
}
@media (min-width: 729px) {
  .footer-container .footer .block {
    float: left;
    margin: 0.83333% 8.33333% 0 0;
    min-height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footer-container .footer .block {
    margin: 0.83333% 3.33333% 0 0;
  }
}
.footer-container .footer .block .block-title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 70px;
  line-height: 7rem;
  /* Landscape phones and down */
  color: #fff;
  font-weight: 400;
  font-family: Pacifico, sans-serif;
}
@media (max-width: 728px) {
  .footer-container .footer .block .block-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 50px;
    line-height: 5rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .footer-container .footer .block .block-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 50px;
    line-height: 5rem;
  }
}
.footer-container .footer .block .block-title strong {
  font-weight: 400;
}
.footer-container .footer .block a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.footer-container .footer .block a:hover {
  text-decoration: none;
}
.footer-container .footer .info2 {
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .footer-container .footer .info2 {
    max-width: 300px;
  }
}
.footer-container .footer .info2 em {
  font-style: italic;
}
.footer-container .footer .block-subscribe {
  /* Landscape phones and down */
  max-width: 280px;
  margin: 0.83333% 0 0 0;
}
@media (min-width: 729px) {
  .footer-container .footer .block-subscribe {
    max-width: 300px;
  }
}
.footer-container .footer .info3 {
  margin-right: 0;
}
.footer-container .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  float: none;
  clear: both;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  color: #fff;
  text-align: center;
  text-align: right;
  opacity: 0.6;
}
.footer-container .copyright a {
  color: #fff;
  text-decoration: none;
}

.payment-partners {
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .payment-partners {
    float: none;
    clear: both;
    margin: 10px;
    width: 100%;
  }
}
@media only screen and (max-width: handheldpx) {
  .payment-partners {
    float: none;
    clear: both;
    margin: 10px;
    width: 100%;
  }
}
@media (min-width: 729px) {
  .payment-partners {
    display: inline-block;
    float: right;
  }
}
.payment-partners ul {
  display: inline-block;
}
.payment-partners li {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  margin: 10px 0 10px 10px;
  vertical-align: middle;
}
.payment-partners li.ideal {
  height: 41px;
  width: 48px;
  background-position: 0 -282px;
}
.payment-partners li.bancontact {
  height: 35px;
  width: 57px;
  background-position: 0 -168px;
}
.payment-partners li.paypal {
  height: 39px;
  width: 94px;
  background-position: 0 -203px;
}
.payment-partners li.commodo {
  height: 44px;
  width: 66px;
  background-position: 0 -323px;
}

.footer .addthis-option {
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .footer .addthis-option {
    display: block;
    float: none;
    margin: 10px;
  }
}
@media only screen and (max-width: handheldpx) {
  .footer .addthis-option {
    display: block;
    float: none;
    margin: 10px;
  }
}
@media (min-width: 729px) {
  .footer .addthis-option {
    display: inline-block;
    margin-top: 5px;
    vertical-align: middle;
  }
}

.footer .shipment-partners {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 16px;
  line-height: 1.6rem;
  /* Landscape phones and down */
  /* Landscape phones and down */
  /* Landscape phones and down */
  font-weight: 700;
}
@media (max-width: 728px) {
  .footer .shipment-partners {
    display: block;
    float: none;
    margin: 10px;
  }
}
@media only screen and (max-width: handheldpx) {
  .footer .shipment-partners {
    display: block;
    float: none;
    margin: 10px;
  }
}
@media (min-width: 729px) {
  .footer .shipment-partners {
    display: inline-block;
    margin: 5px 0 0 3%;
    vertical-align: middle;
  }
}
@media (min-width: 1590px) {
  .footer .shipment-partners {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
}
.footer .shipment-partners p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.footer .shipment-partners .icon {
  height: 54px;
  width: 62px;
  display: inline-block;
  background-position: 0 -418px;
  vertical-align: middle;
}

.block-subscribe {
  min-width: 380px;
}
.block-subscribe label {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  line-height: 1.8rem;
  display: block;
  margin-bottom: 20px;
}
.block-subscribe .input-box {
  position: relative;
  display: inline-block;
  float: left;
  padding: 2.36842%;
  width: 68.42105%;
  border-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}
.block-subscribe .input-box input {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: none;
}
.block-subscribe .actions {
  display: inline-block;
  float: left;
}
.block-subscribe .actions button {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 36px;
  line-height: 3.6rem;
  border-left: 0;
  border-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #107686;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.block-subscribe .actions button:hover {
  background: #000;
}
.block-subscribe .validation-advice {
  position: absolute;
  left: 0;
  color: #ffa442;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flexslider ul,
.flexslider ol {
  list-style: none outside none;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("/skin/frontend/lamimas/default/fonts/flexslider-icon.eot");
  src: url("/skin/frontend/lamimas/default/fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("/skin/frontend/lamimas/default/fonts/flexslider-icon.woff") format("woff"), url("/skin/frontend/lamimas/default/fonts/flexslider-icon.ttf") format("truetype"), url("/skin/frontend/lamimas/default/fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 20px;
  background: #fff;
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.flex-direction-nav .flex-prev {
  left: -50px;
  font-size: 0;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
  font-size: 0;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  line-height: 40px;
  display: inline-block;
  content: '\f001';
}

.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* Control Nav */
.flex-control-nav {
  display: inline-block;
  position: absolute;
  bottom: 5px;
  right: 10px;
  z-index: 999;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
#ajaxcartpro-progress {
  position: fixed;
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  z-index: 9999;
  color: black;
  overflow: auto;
  min-height: 50px;
  min-width: 260px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

#ajaxcartpro-add-confirm,
#ajaxcartpro-remove-confirm {
  position: fixed;
  text-align: center !important;
  padding: 30px;
  background-color: #ffffff;
  z-index: 9999;
  color: black;
  overflow: auto;
  min-height: 20px;
  min-width: 260px;
  width: auto;
  height: auto;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-weight: 700;
}

.ajaxcartpro-box-hide {
  display: none;
}

.ajaxcartpro-box-show {
  display: block;
}

#ajaxcartpro-add-confirm p,
#ajaxcartpro-remove-confirm p {
  width: 260px;
}

.acp-msg-block {
  font-weight: bold;
  background-image: none;
  padding: 0 !important;
  min-height: 0 !important;
  font-size: 12px !important;
  text-align: center;
}

.aw-acp-continue, .aw-acp-checkout {
  background: #79a255;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  border-radius: 3px;
}
.aw-acp-continue:hover, .aw-acp-checkout:hover {
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: #005f29;
  text-decoration: none;
}

.aw-acp-checkout {
  padding: 10px 20px;
}

.aw-acp-continue {
  background: #30adc1;
  margin-top: 10px;
}

#acp-configurable-block #bundle-product-wrapper {
  z-index: 1000;
}

#acp-configurable-block dl {
  text-align: left;
  padding-left: 10px;
}

#acp-configurable-block .price {
  font-size: 14px;
}

#acp-configurable-block .product-name {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

#acp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -moz-opacity: 0.4;
  opacity: .40;
  filter: alpha(opacity=40);
  z-index: 9999;
}

#acp-overlay[id] {
  /* IE6 and below Can't See This */
  position: fixed;
}

#acp-product-options {
  min-width: 400px;
  position: fixed;
  overflow: auto;
  z-index: 1000;
  background-color: white;
  padding: 10px;
  width: auto;
  height: auto;
  /*position:absolute;*/
  /*top: expression(parseInt(document.documentElement.scrollTop, 10) +window.ACPTop+ "px");*/
}

#acp-product-options .aw-acp-continue,
#acp-product-options .aw-acp-checkout {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

#acp-product-options .aw-acp-btn-container {
  margin: 5px auto 5px auto;
  padding-left: 20px;
}

#acp-product-options .giftcard-send-form {
  margin: 0;
}

#acp-product-options .product-options dt label.required em {
  color: #EB340A;
  margin-left: 5px;
}

#acp-product-options #product-options-wrapper {
  margin: 0;
  text-align: center;
}

.map-popup {
  z-index: 1001 !important;
}

/** ==================BASE===================*/
.aw-ln-clear-all {
  float: right;
  font-size: 11px;
  padding: 3px 2px 0 0;
}

#aw-ln-filters-container dd ol li {
  display: block;
  padding: 2px 0 2px 0;
}

#aw-ln-filters-container dd ol li label {
  cursor: pointer;
}

#aw-ln-filters-container dd ol li label img {
  vertical-align: middle;
  margin-left: -20px;
  border-radius: 3px;
}

#aw-ln-filter-2-options li {
  float: left;
  width: 30%;
  margin: 1%;
}
#aw-ln-filter-2-options input {
  vertical-align: middle;
}
#aw-ln-filter-2-options input:checked + img {
  border: 2px solid #000;
}

#aw-ln-filters-container dt {
  padding-right: 3px;
}

.aw-ln-filter-clear {
  float: right;
  font-size: 11px;
  padding: 0;
  text-transform: none;
  font-weight: normal;
}

/** ============COLLAPSE===============*/
.aw-ln-filter-collapse-show, .aw-ln-filter-collapse-hide {
  cursor: pointer;
}

/** =============RANGE=================*/
.aw-ln-filter-options-range-slider {
  z-index: 10;
}

.aw-ln-filter-options-range-slider-wrapper {
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/aw_layerednavigation/img/bar-bkg.png") repeat-x center 4px;
  height: 16px;
}

.aw-ln-filter-options-range-slider-wrapper-left {
  margin: 0 0 0 -6px;
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/aw_layerednavigation/img/bar-left.png") left 4px no-repeat;
  height: 16px;
}

.aw-ln-filter-options-range-slider-wrapper-right {
  margin: 0 -7px 0 1px;
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/aw_layerednavigation/img/bar-right.png") right 4px no-repeat;
  height: 16px;
}

.aw-ln-filter-options-range-slider-min, .aw-ln-filter-options-range-slider-max {
  width: 9px;
  height: 18px;
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/aw_layerednavigation/img/handle.png") center 1px no-repeat;
  cursor: move;
  float: left;
  z-index: 100;
}

.aw-ln-filter-options-range-slider-min {
  position: relative !important;
}

.aw-ln-filter-options-range-slider-max {
  position: static !important;
}

.aw-ln-filter-options-range-slider-active {
  float: left;
  width: 0;
  height: 13px;
  background: url("https://www.lamimas.nl/skin/frontend/lamimas/default/aw_layerednavigation/img/orange-bkg.png") repeat-x center 7px;
  position: relative;
  z-index: 20;
}

.aw-ln-filter-options-range-status {
  height: 20px;
  width: 100%;
}

.aw-ln-filter-options-range-status-from {
  float: left;
  margin: 0 0 0 -4px;
}

.aw-ln-filter-options-range-status-to {
  float: right;
  margin: 0 -3px 0 0;
}

/** ==================FROM-TO===================*/
.aw-ln-filter-options-fromto input {
  width: 50px;
  height: 17px;
}

/** ===============OVERLAY======================*/
.aw-ln-overlay {
  background: no-repeat center center;
  position: absolute;
  z-index: 9999;
}

.mp-guestbook-header {
  font-family: Pacifico, sans-serif;
  color: #000;
  font-weight: 400;
  margin: 2% 0;
  /* Landscape phones and down */
  /* Landscape phones and down */
}
@media (max-width: 728px) {
  .mp-guestbook-header {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media only screen and (max-width: handheldpx) {
  .mp-guestbook-header {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}
@media (min-width: 729px) {
  .mp-guestbook-header {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 32px;
    line-height: 3.2rem;
  }
}

.guestbook-messages-livestream {
  margin: 20px 0;
}

.mp-comment-form {
  border: 1px solid #ccc;
  padding: 20px;
}
.mp-comment-form h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}
.mp-comment-form .comment-form-field {
  margin: 10px 0;
}
.mp-comment-form .comment-form-field .comment-form-input textarea, .mp-comment-form .comment-form-field #subject {
  min-width: 100%;
  /* Landscape phones and down */
}
@media (min-width: 729px) {
  .mp-comment-form .comment-form-field .comment-form-input textarea, .mp-comment-form .comment-form-field #subject {
    min-width: 60%;
  }
}

.mp-comment-content {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px 0;
}
.mp-comment-content h4 {
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.mp-comment-content .mp-comment-header {
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
}

.mp-comment-willapprove {
  color: #c92b2b;
}

.holiday-notice {
  background: #ffcd47;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
}
.holiday-notice p {
  margin: 0;
}

