/** Import globals */
* {
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
}

h1 {
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 18px;
  font-weight: bold;
}

h4 {
  font-weight: 800;
  font-size: 18px;
}

p, a, li, div {
  line-height: 1.5;
}

p {
  margin-top: 0;
}

ul {
  padding-left: 20px;
}

a {
  color: #000000;
}

.marsh-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  background: #000000;
  color: #F9F9F9;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}
.marsh-button.white {
  background: #ffffff;
  color: #000000;
}

/** Import layouts */
header {
  width: 100%;
  position: sticky;
  z-index: 100;
  top: 0;
  background: black;
}
header button.toggle-languages {
  position: absolute;
  right: 15px;
  top: 70px;
  height: 30px;
  margin-left: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  background: #000000;
  color: #F9F9F9;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  padding: 0 10px;
  display: none;
}
@media screen and (min-width: 992px) {
  header button.toggle-languages {
    position: relative;
    right: auto;
    top: 0;
    display: inline-block;
    margin-right: 10px;
  }
}
header button.toggle-languages ul.languages {
  position: absolute;
  right: 0;
  top: 30px;
  width: 200px;
  margin: 0;
  padding: 8px;
  display: none;
  background: #fff;
  color: #000;
  list-style: none;
  cursor: pointer;
}
header button.toggle-languages ul.languages.active {
  display: inline-block;
}
header button.toggle-languages ul.languages li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
header button.toggle-languages ul.languages li:last-of-type {
  margin-bottom: 0;
}
header button.toggle-languages ul.languages li img {
  height: auto;
  width: 30px;
  margin-right: 10px;
}
header button.toggle-languages ul.languages li a {
  color: inherit;
  text-decoration: none;
}
header .main-inner {
  padding: 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  header .main-inner {
    padding: 12px 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
}
header .logo-container {
  width: 180px;
  margin-right: auto;
}
header .logo-container .logo-link img {
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 992px) {
  header .logo-container .logo-link img {
    height: 50px;
  }
}
header .menu-container {
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
  padding-top: 60px;
  display: none;
  overflow-y: auto;
  padding-bottom: 100px;
  background: #eeeeee;
}
@media screen and (min-width: 992px) {
  header .menu-container {
    background: transparent;
    position: relative;
    height: auto;
    width: calc(100% - 180px - 180px);
    top: 0;
    padding: 0;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
header .menu-container ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
}
@media screen and (min-width: 992px) {
  header .menu-container ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 30px;
  }
}
header .menu-container ul li {
  margin-left: 30px;
  margin-bottom: 28px;
}
@media screen and (min-width: 992px) {
  header .menu-container ul li {
    margin: 0 14px;
  }
  header .menu-container ul li:first-of-type {
    margin-left: 0;
  }
}
header .menu-container ul li a {
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
  border: none;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
@media screen and (min-width: 992px) {
  header .menu-container ul li a {
    font-size: 15px;
    color: #F9F9F9;
    display: block;
    padding: 10px;
  }
  header .menu-container ul li a:hover {
    background: #ffffff;
    color: #000000;
  }
}
header .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F9F9F9;
  margin-right: 15px;
}
@media screen and (min-width: 992px) {
  header .cart {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
header .cart i {
  color: #F9F9F9;
}
header .cart .cart-icon {
  background-image: url("../images/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  display: block;
}
header .cart .items {
  font-size: 14px;
  margin-left: 6px;
}

#hamburger {
  width: 34px;
  height: 22px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #F9F9F9;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#hamburger span:nth-child(1) {
  top: 0px;
}
#hamburger span:nth-child(2), #hamburger span:nth-child(3) {
  top: 10px;
}
#hamburger span:nth-child(4) {
  top: 20px;
}
#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

footer {
  background: #000000;
  padding: 50px 0 30px;
  color: #F9F9F9;
  font-size: 14px;
}
footer hr {
  margin-bottom: 15px;
  display: inline-block;
  background: #474a51;
  padding: 2px;
  border: 0;
  width: 30px;
  margin-top: -20px;
}
@media screen and (min-width: 600px) {
  footer hr {
    margin-top: -40px;
  }
}
footer .main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .main-inner .footer-col {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 600px) {
  footer .main-inner .footer-col {
    width: 33.3333%;
    padding: 0 15px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  footer .main-inner .footer-col {
    padding: 0 50px;
  }
}
footer .main-inner .footer-col h4 {
  margin: 0;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  footer .main-inner .footer-col h4 {
    margin-bottom: 30px;
  }
}
footer .main-inner .footer-col a {
  color: #F9F9F9;
  text-decoration: none;
}
footer .main-inner .footer-col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .main-inner .footer-col .select-wrapper {
  border: 1px solid #999999;
  height: 36px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
footer .main-inner .footer-col .select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #F9F9F9;
  border: none;
  border-radius: 0;
  background: none;
  width: 100%;
  height: 36px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  padding-right: 30px;
}
@media screen and (min-width: 600px) {
  footer .main-inner .footer-col .select-wrapper select {
    font-size: 13px;
  }
}
footer .main-inner .footer-col .select-wrapper select:focus {
  outline: none;
}
footer .main-inner .footer-col .select-wrapper .fa-chevron-down {
  color: #F9F9F9;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 12px;
  line-height: 12px;
  margin-top: 2px;
  pointer-events: none;
}
footer .main-inner .footer-col .socialmedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
footer .main-inner .footer-col .socialmedia__link {
  margin-right: 15px;
}
footer .main-inner .footer-col .socialmedia__image {
  height: 25px;
  width: auto;
}
footer .main-inner .payments {
  width: 100%;
  border-top: 1px solid #474a51;
  margin-top: 50px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .main-inner .payments img {
  height: 30px;
  background: white;
  width: 50px;
  padding: 5px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  margin: 0 4px 4px;
}
footer .main-inner .copy {
  width: 100%;
  margin: 0;
  margin-top: 15px;
}

/** Import partials */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: calc(90vh - 80px);
  padding: 100px 0;
}
.hero .main-inner {
  position: relative;
  z-index: 20;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero .text-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  color: #F9F9F9;
  max-width: 600px;
}
.hero .text-container h1 {
  font-size: 30px;
  margin: 0;
  margin-bottom: 7px;
}
.hero .text-container p {
  margin: 0;
}
.hero .text-container .marsh-button {
  margin-top: 20px;
}
.hero__image, .hero__video {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__video {
  z-index: 16;
}
.hero__video1 {
  display: none;
}
@media (min-width: 768px) {
  .hero__video1 {
    display: block;
  }
}
@media (min-width: 768px) {
  .hero__video2 {
    display: none;
  }
}
.hero--has-portrait .hero__image2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 15;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .hero--has-portrait .hero__image2 {
    display: none;
  }
}

.centered-text {
  text-align: center;
}
.centered-text .main-inner {
  margin: 70px auto;
}
.centered-text .main-inner .text-container {
  max-width: 900px;
  margin: 0 auto;
}
.centered-text .main-inner .text-container h2 {
  margin: 0;
  margin-bottom: 10px;
}
.centered-text .main-inner .text-container .marsh-button {
  margin-top: 18px;
}

.image-links {
  text-align: center;
}
.image-links .main-inner {
  margin: 15px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
}
@media screen and (min-width: 600px) {
  .image-links .main-inner {
    margin: 20px auto;
    padding: 0 20px;
  }
}
.image-links .main-inner .one-image {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 600px) {
  .image-links .main-inner .one-image {
    width: calc(50% - 10px);
    margin-bottom: 0;
  }
}
.image-links .main-inner .one-image:last-of-type {
  margin-bottom: 0;
}
.image-links .main-inner img {
  width: 100%;
}

.text-and-image .main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 15px auto;
}
@media screen and (min-width: 600px) {
  .text-and-image .main-inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 20px auto;
  }
}
.text-and-image .main-inner img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .text-and-image .main-inner img {
    width: 60%;
  }
}
.text-and-image .main-inner .text-container {
  padding: 30px 15px;
}
@media screen and (min-width: 600px) {
  .text-and-image .main-inner .text-container {
    padding: 30px;
  }
}
.text-and-image .main-inner .text-container h2 {
  margin: 0;
}

.image-grid .main-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin: 70px auto;
}
@media screen and (min-width: 600px) {
  .image-grid .main-inner {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
.image-grid .main-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-content .main-inner {
  margin: 70px auto;
  max-width: 1200px;
}
.page-content .main-inner h1 {
  text-align: center;
  text-transform: none;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: 11px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  color: #5a5a5a;
  font-weight: bold;
}
.woocommerce .woocommerce-breadcrumb a {
  color: #999999;
  text-decoration: none;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-weight: bold;
  font-size: 20px;
  color: #5a5a5a;
}

.shop-wrapper .main-inner {
  margin: 70px auto;
  margin-top: 0;
}

.woocommerce.single-product .woocommerce-tabs {
  display: none;
}
.woocommerce.single-product #sidebar {
  display: none;
}
.woocommerce.single-product #primary {
  border-bottom: 1px solid #eeeeee;
}
@media screen and (min-width: 992px) {
  .woocommerce.single-product #primary {
    padding-bottom: 70px;
  }
}
.woocommerce.single-product .related {
  display: none;
}
.woocommerce.single-product .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce.single-product .product div.images {
  margin-bottom: 0;
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport {
  height: 400px !important;
}
@media screen and (min-width: 992px) {
  .woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport {
    height: 500px !important;
  }
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport img {
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 992px) {
  .woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport img {
    height: 500px !important;
  }
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport img.zoomImg {
  height: auto !important;
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-control-thumbs {
  width: calc(100% + 5px);
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-control-thumbs li {
  width: calc(20% - 5px);
  margin-bottom: 5px;
  margin-right: 5px;
  clear: none !important;
  border: 1px solid #d8d8d8;
}
.woocommerce.single-product .product .summary {
  margin-top: 30px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 992px) {
  .woocommerce.single-product .product .summary {
    padding: 0 30px;
    margin-top: 0;
  }
}
.woocommerce.single-product .product .summary h1 {
  text-transform: none;
  margin: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.woocommerce.single-product .product .summary .price {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 30px;
  margin-bottom: 10px;
}
.woocommerce.single-product .product .summary form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.woocommerce.single-product .product .summary form.cart .quantity {
  margin: 0;
}
.woocommerce.single-product .product .summary form.cart .quantity .qty {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border-radius: 0;
  border: 1px solid #999999;
  height: 36px;
  margin: 0 5px;
}
.woocommerce.single-product .product .summary form.cart .decrease-qty,
.woocommerce.single-product .product .summary form.cart .increase-qty {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border-radius: 0;
  border: 1px solid #999999;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.woocommerce.single-product .product .summary form.cart .button-wrapper {
  width: 100%;
  margin-top: 10px;
}
.woocommerce.single-product .product .summary form.cart .button-wrapper button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  background: #000000;
  color: #F9F9F9;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}
.woocommerce.single-product .product .summary .product_meta {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 4px;
  font-size: 12px;
}
.woocommerce.single-product .product .summary .product_meta .posted_in {
  display: none;
}
.woocommerce.single-product .product .summary .woocommerce-tabs {
  display: block;
  margin-top: 30px;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.woocommerce.single-product .product .summary .woocommerce-tabs ul.accordions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce.single-product .product .summary .woocommerce-tabs li[role=accordion] {
  margin-bottom: 10px;
}
.woocommerce.single-product .product .summary .woocommerce-tabs li[role=accordion] a[role=toggle-accordion] {
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}
.woocommerce.single-product .product .summary .woocommerce-tabs li[role=accordion].open .wc-tab {
  display: block !important;
  padding-top: 10px;
}
.woocommerce.single-product .product .summary .woocommerce-tabs li[role=accordion].open .wc-tab h2 {
  display: none;
}
.woocommerce.single-product .product .summary img.aligncenter {
  margin: 0 auto;
}
.woocommerce.single-product .product .summary a {
  font-weight: bold;
}
.woocommerce.single-product .product-table {
  margin: 70px auto;
  margin-top: 30px;
  text-align: center;
  max-width: 1000px;
}
@media screen and (min-width: 992px) {
  .woocommerce.single-product .product-table {
    margin: 70px auto;
  }
}
.woocommerce.single-product .product-table h3 {
  margin-bottom: 5px;
}
.woocommerce.single-product .product-table .table-container {
  text-align: left;
  margin-top: 40px;
}
.woocommerce.single-product .product-table .table-container .one-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce.single-product .product-table .table-container .one-row p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #eeeeee;
  font-size: 14px;
  font-weight: bold;
  color: #5a5a5a;
  padding: 10px;
  margin: 0;
}
.woocommerce.single-product .product-table .table-container.title-yes .one-row:first-of-type p {
  color: #000000;
}

.woocommerce-checkout {
  background: #eeeeee;
}
.woocommerce-checkout .shop-wrapper .main-inner {
  margin: 0 auto;
}
.woocommerce-checkout .woocommerce-cart-form {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: white;
}
@media screen and (min-width: 600px) {
  .woocommerce-checkout .woocommerce-cart-form {
    padding: 40px;
  }
}
.woocommerce-checkout .woocommerce-cart-form .coupon {
  display: none;
}
.woocommerce-checkout .woocommerce-cart-form button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  background: #000000;
  color: #F9F9F9;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 20px;
  color: #F9F9F9 !important;
}
@media screen and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-cart-form td.product-name {
    padding-left: 0;
  }
}
.woocommerce-checkout .woocommerce-cart-form td.product-thumbnail {
  padding-right: 0;
  width: 115px;
}
.woocommerce-checkout .woocommerce-cart-form td.product-thumbnail img {
  width: 90px;
}
.woocommerce-checkout .woocommerce-cart-form a.remove {
  color: black !important;
  width: auto;
  height: auto;
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
}
.woocommerce-checkout .woocommerce-cart-form a.remove:hover {
  background: transparent;
}
.woocommerce-checkout .woocommerce-cart-form table.shop_table {
  border-radius: 0;
  margin: 0;
}
.woocommerce-checkout form.checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1440px;
  margin: 40px auto;
}
.woocommerce-checkout form.checkout #kco-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.woocommerce-checkout form.checkout #kco-wrapper #kco-order-review {
  width: calc(100% - 30px);
  max-width: 900px;
  margin: 0 15px;
  padding: 20px;
  background: white;
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .woocommerce-checkout form.checkout #kco-wrapper #kco-order-review {
    padding: 40px;
    width: calc(100% - 80px);
    margin: 0 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-checkout form.checkout #kco-wrapper #kco-order-review {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.woocommerce-checkout form.checkout #kco-wrapper #kco-order-review #kco-extra-checkout-fields {
  display: none;
}
.woocommerce-checkout form.checkout #kco-wrapper #kco-order-review #klarna-checkout-select-other {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
  background: #000000;
  color: #F9F9F9;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}
.woocommerce-checkout form.checkout #kco-wrapper #kco-iframe {
  background: white;
  width: calc(100% - 30px);
  max-width: 900px;
  margin: 0 15px;
  padding: 20px 5px;
}
@media screen and (min-width: 600px) {
  .woocommerce-checkout form.checkout #kco-wrapper #kco-iframe {
    padding: 40px 25px;
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-checkout form.checkout #kco-wrapper #kco-iframe {
    padding: 40px 25px;
    width: 100%;
    margin: 0 auto;
  }
}
.woocommerce-checkout form.checkout table.shop_table {
  border-radius: 0;
  margin: 0;
}
.woocommerce-checkout form.checkout #customer_details {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .woocommerce-checkout form.checkout #customer_details {
    padding: 40px;
  }
}
.woocommerce-checkout form.checkout #customer_details h3 {
  margin-top: 0;
}
.woocommerce-checkout form.checkout #customer_details .col-1 {
  width: 100%;
}
.woocommerce-checkout form.checkout #customer_details .col-1 .input-text {
  height: 36px;
  padding-left: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  font-size: 14px;
  color: #000000;
}
.woocommerce-checkout form.checkout #customer_details .col-1 .select2-selection {
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.woocommerce-checkout form.checkout #customer_details .col-1 .select2-selection .select2-selection__rendered {
  height: 36px;
  padding-top: 3px;
  padding-left: 10px;
  font-size: 14px;
  color: #000000;
}
.woocommerce-checkout form.checkout #customer_details .col-1 .select2-selection .select2-selection__arrow {
  height: 36px;
}
.woocommerce-checkout form.checkout #customer_details .col-2 {
  display: none;
}
.woocommerce-checkout form.checkout .checkout-box {
  max-width: 900px;
  margin: 40px auto 0;
  background: white;
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .woocommerce-checkout form.checkout .checkout-box {
    padding: 40px;
  }
}
.woocommerce-checkout form.checkout .checkout-box h3 {
  margin-top: 0;
}
.woocommerce-checkout form.checkout .checkout-box .woocommerce-checkout-payment#payment {
  background: white;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}
.woocommerce-checkout form.checkout .checkout-box .woocommerce-checkout-payment#payment .wc_payment_methods {
  border: none;
}
.woocommerce-checkout form.checkout .checkout-box .woocommerce-checkout-payment#payment .wc_payment_methods li {
  padding: 10px 0;
}
.woocommerce-checkout form.checkout .checkout-box .woocommerce-checkout-payment#payment .wc_payment_methods li label {
  width: 80%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout form.checkout .checkout-box #payment div.payment_box .form-row {
  padding: 0;
}

.woocommerce.archive .woocommerce-products-header {
  display: none;
}
.woocommerce.archive #sidebar {
  display: none;
}
.woocommerce.archive .woocommerce-result-count {
  position: absolute;
  right: 15px;
  font-size: 12px;
  color: #999999;
  margin-top: 4px;
}
@media screen and (min-width: 600px) {
  .woocommerce.archive .woocommerce-result-count {
    right: 70px;
  }
}
.woocommerce.archive .woocommerce-ordering {
  border: 1px solid #999999;
  width: 173px;
  float: none;
  padding-left: 5px;
}
.woocommerce.archive .woocommerce-ordering select {
  border: white;
  height: 26px;
}
.woocommerce.archive .woocommerce-ordering select:focus {
  outline: none;
}
.woocommerce.archive ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce.archive ul.products li.product {
  width: 100%;
  text-align: center;
  margin-right: 0;
}
@media screen and (min-width: 600px) {
  .woocommerce.archive ul.products li.product {
    width: 50%;
  }
}
.woocommerce.archive ul.products li.product .woocommerce-loop-product__title {
  text-transform: none;
}
.woocommerce.archive ul.products li.product .price {
  font-weight: bold;
  color: #5a5a5a;
}
.woocommerce.archive ul.products li.product .add_to_cart_button {
  display: none;
}

.comparison .main-inner {
  margin: 70px auto;
  max-width: 1200px;
}
.comparison .main-inner .flex-container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-size: 14px;
  word-break: break-word;
}
@media screen and (min-width: 600px) {
  .comparison .main-inner .flex-container .row {
    font-size: 16px;
  }
}
.comparison .main-inner .flex-container .row .left-col {
  width: 34%;
  border: 1px solid #eeeeee;
  padding: 15px 7px;
  border-bottom: none;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .comparison .main-inner .flex-container .row .left-col {
    width: 20%;
    padding: 15px;
  }
}
.comparison .main-inner .flex-container .row .center-col {
  width: 33%;
  border: 1px solid #eeeeee;
  border-left: none;
  padding: 15px 7px;
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .comparison .main-inner .flex-container .row .center-col {
    width: 40%;
    padding: 15px;
  }
}
.comparison .main-inner .flex-container .row .right-col {
  width: 33%;
  border: 1px solid #eeeeee;
  border-left: none;
  padding: 15px 7px;
  border-bottom: none;
}
@media screen and (min-width: 600px) {
  .comparison .main-inner .flex-container .row .right-col {
    width: 40%;
    padding: 15px;
  }
}
.comparison .main-inner .flex-container .row img {
  display: inline-block;
}
.comparison .main-inner .flex-container .row:last-of-type .left-col,
.comparison .main-inner .flex-container .row:last-of-type .center-col,
.comparison .main-inner .flex-container .row:last-of-type .right-col {
  border-bottom: 1px solid #eeeeee;
}
.comparison .main-inner .flex-container .row.title-row h4 {
  margin: 0;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .comparison .main-inner .flex-container .row.title-row h4 {
    font-size: 18px;
  }
}
.comparison .main-inner .flex-container .row.title-row .left-col,
.comparison .main-inner .flex-container .row.title-row .center-col,
.comparison .main-inner .flex-container .row.title-row .right-col {
  border-top: none;
}

.news .main-inner {
  margin: 70px auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news .main-inner {
    margin: 70px auto;
  }
}
.news .main-inner .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: -30px;
}
.news .main-inner .flex-container .one-card {
  width: 100%;
  text-decoration: none;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .news .main-inner .flex-container .one-card {
    width: 30%;
  }
}
.news .main-inner .flex-container .one-card img {
  max-width: 90%;
  display: inline-block;
}
.news .main-inner .marsh-button {
  margin-top: 30px;
}

.news-list .main-inner {
  margin: 70px auto;
}
@media screen and (min-width: 600px) {
  .news-list .main-inner {
    margin: 70px auto;
  }
}
.news-list .main-inner .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-list .main-inner .flex-container .one-card {
  width: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #eeeeee;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .news-list .main-inner .flex-container .one-card {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 0;
  }
}
.news-list .main-inner .flex-container .one-card:last-of-type {
  margin-bottom: 0;
}
.news-list .main-inner .flex-container .one-card .image-container {
  border-bottom: 1px solid #eeeeee;
  width: 100%;
  padding: 30px 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .news-list .main-inner .flex-container .one-card .image-container {
    width: 30%;
    height: 100%;
    border-right: 1px solid #eeeeee;
    border-bottom: none;
  }
}
.news-list .main-inner .flex-container .one-card .image-container img {
  width: 100%;
  height: 100%;
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.news-list .main-inner .flex-container .one-card p {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  padding: 20px 30px 20px 30px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .news-list .main-inner .flex-container .one-card p {
    text-align: left;
  }
}

.title {
  text-align: center;
}
.title .main-inner {
  margin: 70px auto;
}
.title .main-inner .text-container {
  max-width: 900px;
  margin: 0 auto;
}
.title .main-inner .text-container h1 {
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
  text-transform: none;
}
.title .main-inner .text-container .marsh-button {
  margin-top: 18px;
}

.error-page {
  background-size: cover;
  background-position: center;
  position: relative;
}
.error-page .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.error-page h1, .error-page p {
  color: #F9F9F9;
}
.error-page .main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  max-width: 900px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .error-page .main-inner {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
.error-page .main-inner h1 {
  margin-bottom: 17px;
}
.error-page .main-inner .bread-big p:last-of-type {
  margin-bottom: 0;
}
.error-page .main-inner .marsh-button {
  margin-top: 30px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  margin: 0;
}

.main {
  width: 100%;
}

.main-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 600px) {
  .main-inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .main-inner {
    padding: 0 70px;
  }
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero .main-inner {
  margin: 0;
}

button#place_order {
  background: #000;
}

.woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
  display: block !important;
  width: auto !important;
}
.woocommerce #content table.cart .product-thumbnail::before, .woocommerce table.cart .product-thumbnail::before, .woocommerce-page #content table.cart .product-thumbnail::before, .woocommerce-page table.cart .product-thumbnail::before {
  content: "";
}

.languageswitcher {
  margin-top: 40px;
  padding-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.languageswitcher__icon {
  margin-right: 10px;
  color: #fff;
}

.stock {
  display: none;
}

#billing_country_field {
  display: none;
}