@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap");
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ==============================================================
	Global Vars
============================================================== */
/* ==============================================================
	Global Styles
============================================================== */
* {
  box-sizing: border-box;
}

html, body, #wrapper {
  min-height: 100%;
  background-color: #ffffff;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #a7a7a7;
  overflow-x: hidden;
}

body.stop-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 500;
  color: #444444;
}

label {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 0.9em;
  font-weight: 400;
}

p {
  margin: 10px 0;
  line-height: 1.2;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ==============================================================
	Components
============================================================== */
.btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #000000;
  border: none;
  border-radius: 500px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Oswald", "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.btn.btn-big {
  padding: 12px 20px;
  font-size: 16px;
  min-width: 200px;
}
.btn.btn-secondary {
  background-color: #ff4713;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #000000;
}

/* ==============================================================
	Header
============================================================== */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background-color: #ff4713;
  overflow: hidden;
  z-index: 200;
}
header a.logo {
  margin: 0 0 0 5%;
}
header #logo {
  height: 60px;
}
header .search-bar {
  width: 500px;
  height: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .search-bar form {
  width: 100%;
  display: flex;
}
header .search-bar form .icon {
  display: flex;
  margin-right: 5px;
  color: #ffffff;
  font-size: 24px;
  justify-content: center;
  flex-direction: column;
}
header .search-bar form input[type=text] {
  padding: 5px 20px;
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 32px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
}
header .search-bar form input[type=text]::placeholder {
  color: #ffffff;
}
@media all and (max-width: 900px) {
  header .search-bar {
    width: 350px;
  }
}
@media all and (max-width: 750px) {
  header .search-bar {
    width: 300px;
  }
}
@media all and (max-width: 700px) {
  header .search-bar {
    display: none;
  }
}
header #header-actions {
  position: relative;
  top: 0;
  margin-right: 5%;
}
header #header-actions #cart {
  display: inline-block;
  margin-right: 20px;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
@media all and (max-width: 420px) {
  header #header-actions #cart {
    font-size: 18px;
    margin-right: 10px;
  }
}
header #header-actions #open-nav {
  display: inline-block;
  position: relative;
  top: 10px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #ff4713;
  box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, 0.32);
  cursor: pointer;
}
header #header-actions #open-nav span {
  display: block;
  position: absolute;
  top: 20px;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  opacity: 1;
  transition: margin 0.3s 0.4s, opacity 0.1s 0.3s, transform 0.3s;
}
header #header-actions #open-nav span:first-child {
  margin-top: -5px;
}
header #header-actions #open-nav span:last-child {
  margin-top: 5px;
}
header #header-actions #open-nav.opened span {
  transition: margin 0.3s, opacity 0.1s 0.3s, transform 0.3s 0.4s;
}
header #header-actions #open-nav.opened span:first-child {
  margin-top: 0;
  transform: rotateZ(45deg);
}
header #header-actions #open-nav.opened span:nth-child(2) {
  opacity: 0;
}
header #header-actions #open-nav.opened span:last-child {
  margin-top: 0;
  transform: rotateZ(135deg);
}
header #header-actions .mobile {
  display: none !important;
}
@media all and (max-width: 700px) {
  header #header-actions .mobile {
    display: inline-block !important;
  }
}
header #search-container {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  position: fixed;
  top: 60px;
}
header #search-container input[type=text] {
  padding: 5px 20px;
  width: 100%;
  height: 32px;
  line-height: 32px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
}
header #search-container input[type=text]::placeholder {
  color: #ffffff;
}
@media all and (min-width: 700px) {
  header #search-container {
    display: none;
  }
}
@media all and (min-width: 700px) {
  header {
    height: 60px !important;
  }
}

/* ==============================================================
	Nav
============================================================== */
nav {
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1580px;
  padding: 0 5%;
  height: 40px;
  background-color: #ffffff;
  border-bottom: solid 2px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 199;
  overflow: visible !important;
}
nav #category-list {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 5px 0;
  position: relative;
}
@media all and (max-width: 1200px) and (min-width: 701px) {
  nav #category-list {
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
  }
  nav #category-list::-webkit-scrollbar {
    height: 3px;
  }
  nav #category-list::-webkit-scrollbar-track {
    background: transparent;
  }
  nav #category-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  nav #category-list::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
nav #category-list li {
  display: inline-block;
  padding: 0 20px;
  min-width: 200px;
  font-size: 13px;
  font-family: "Oswald", "Source Sans Pro", Helvetica, sans-serif;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  border-right: 1px solid #000000;
  position: relative;
}
nav #category-list li:last-child {
  border-right: none;
}
nav #category-list li .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 5000;
  padding: 0;
  margin: 0;
  border-radius: 0 0 2px 2px;
  /* border removed */
}
nav #category-list li .submenu li {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
}
nav #category-list li .submenu li:not(:last-child) a {
  border-bottom: 2px solid #a7a7a7;
  width: 90%;
  margin: 0 auto;
  display: block;
}
nav #category-list li .submenu a {
  display: block;
  width: 100%;
  padding: 2px 20px;
  color: #000000;
  text-align: center;
  font-size: 11px;
}
nav #category-list li .submenu a:hover {
  color: #ff4713;
  font-weight: bold;
}
nav #category-list li:hover > .submenu {
  display: block;
}
nav #category-list li.active {
  background-color: rgba(255, 71, 19, 0.1);
}
nav #category-list li.active a {
  color: #ff4713;
  font-weight: 600;
}
nav #nav-container {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease-out, opacity 0.3s, visibility 0.3s;
}
nav #nav-container.opened {
  overflow: auto;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.3s linear, opacity 0.3s, visibility 0.3s;
}
nav #nav-container ul {
  display: block;
  margin: 60px auto;
  max-width: 500px;
  color: #ffffff;
  font-size: 2em;
  font-family: "Oswald", "Source Sans Pro", Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav #nav-container ul li {
  margin: 20px 0;
}
nav #nav-container ul li.title {
  padding-bottom: 5px;
  color: #ff4713;
  border-bottom: solid thin #ffffff;
}
nav #nav-container ul li.active a, nav #nav-container ul li.active .menu-item-link {
  color: #ff4713;
  font-weight: 600;
}
nav #nav-container ul li.active .submenu-item.active a {
  color: #ff4713;
  font-weight: 600;
}

/* ==============================================================
	Main
============================================================== */
main {
  margin-top: 100px;
  z-index: 0;
}
main section {
  position: relative;
  margin: 0 auto;
}
main section:first-child:last-child {
  /* When only section in page */
  min-height: 600px;
}
main section .title {
  color: #ff4713;
  font-size: 2em;
  text-transform: uppercase;
}
@media all and (min-width: 700px) {
  main section .title {
    font-size: 3em;
  }
}
main section .subtitle {
  max-width: 600px;
}
main section .sidebar-container {
  padding: 10px 0;
}
@media all and (min-width: 800px) {
  main section .sidebar-container {
    display: flex;
    flex-flow: 1 1 auto;
  }
}
main section .sidebar-container .show-filters, main section .sidebar-container .hide-filters {
  margin: 20px 0;
  padding: 10px 14px;
  width: 100%;
}
@media all and (min-width: 800px) {
  main section .sidebar-container .show-filters, main section .sidebar-container .hide-filters {
    display: none;
  }
}
main section .sidebar-container .sidebar {
  display: none;
  width: 100%;
  padding: 20px;
  background-color: #eaeaea;
  border-radius: 2px;
}
@media all and (min-width: 800px) {
  main section .sidebar-container .sidebar {
    display: block !important;
    margin-right: 20px;
    padding: 40px 20px;
    width: 20%;
    background-color: #ffffff;
  }
}
main section .sidebar-container .sidebar > a {
  display: block;
  margin: 10px 0;
  color: #444444;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main section .sidebar-container .sidebar ul {
  margin: 0 0 20px 20px;
}
main section .sidebar-container .sidebar ul li {
  margin: 10px 0;
  color: #a7a7a7;
}
main section .sidebar-container .content {
  width: 100%;
}
@media all and (min-width: 800px) {
  main section .sidebar-container .content {
    width: 80%;
  }
  main section .sidebar-container .content .product-list {
    margin-top: 0px;
  }
}
@media all and (max-width: 400px) {
  main section .sidebar-container .content {
    display: flex;
    flex-direction: column;
  }
}

/*	Big CTA
============================================================== */
section.big-cta {
  max-width: 1580px;
  padding: 0 5%;
  margin: 0 auto;
  height: 35vh;
}
@media all and (min-width: 1000px) {
  section.big-cta {
    min-height: 300px;
  }
}
@media all and (max-width: 768px) {
  section.big-cta {
    height: 25vh;
    min-height: 200px;
  }
}
@media all and (max-width: 480px) {
  section.big-cta {
    height: 20vh;
    min-height: 180px;
  }
}
section.big-cta:first-child {
  margin-top: -100px;
}
section.big-cta .container {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 0);
}
section.big-cta .content {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 70%;
  transform: translate(0, -50%);
}
@media all and (min-width: 1200px) {
  section.big-cta .content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
section.big-cta .content .cta-title {
  color: #000000;
  font-family: "Oswald", "Source Sans Pro", Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 6.4em;
}
@media all and (min-width: 1200px) {
  section.big-cta .content .cta-title {
    font-size: 8vw;
  }
}
@media all and (max-width: 768px) {
  section.big-cta .content .cta-title {
    font-size: 5em;
  }
}
@media all and (max-width: 420px) {
  section.big-cta .content .cta-title {
    font-size: 4em;
  }
}
section.big-cta .content .cta-title span {
  color: #ff4713;
}
section.big-cta .content .cta-container {
  margin-top: 10px;
}
section.big-cta .content .cta-container .btn {
  margin: 5px;
  padding: 10px 25px;
  font-size: 1em;
}
section.big-cta .model {
  position: absolute;
  bottom: 0;
  left: 75%;
  height: 80%;
  width: 40%;
  min-width: 240px;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
}
section.big-cta.dark {
  background-color: #000000;
}
section.big-cta.dark .content .cta-title {
  color: #ffffff;
}

/*	Products
============================================================== */
section.products {
  padding: 60px 5%;
  max-width: 1580px;
}
@media all and (max-width: 450px) {
  section.products {
    padding: 60px 5px;
  }
}
section.products .sorter {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  align-items: center;
}
@media all and (max-width: 425px) {
  section.products .sorter {
    flex-direction: column;
    justify-content: center;
  }
}
section.products .sorter .col-sorter {
  margin: 15px;
}
@media all and (max-width: 425px) {
  section.products .sorter .col-sorter {
    margin: 10px;
  }
}
section.products .sorter .col-sorter.nmr {
  margin-right: 0;
}
@media all and (max-width: 425px) {
  section.products .sorter .col-sorter.nmr {
    margin-right: 10px;
  }
}
section.products .sorter select {
  padding: 5px 20px;
  height: 32px;
  line-height: 32px;
  background-color: #ffffff;
  border: solid thin #a7a7a7;
  border-radius: 2px;
  font-size: 14px;
  outline: none;
}
section.products .sorter i {
  font-size: 20px;
  color: #ff4713;
  margin-right: 5px;
}
@media all and (max-width: 450px) {
  section.products .sorter {
    justify-content: center;
    padding-top: 25px;
  }
}
section.products .product-list {
  display: flex;
  margin: 0;
  flex-flow: row wrap;
  justify-content: space-around;
}
section.products .product-list li {
  display: inline-block;
  position: relative;
  margin: 20px 10px;
  padding: 10px 10px 70px 10px;
  min-width: 220px;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}
@media all and (max-width: 450px) {
  section.products .product-list li {
    min-width: 150px;
    max-width: 200px;
  }
}
@media all and (max-width: 350px) {
  section.products .product-list li {
    min-width: 130px;
    max-width: 150px;
  }
}
section.products .product-list li .product-image {
  height: 200px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-image {
    height: 120px;
  }
}
section.products .product-list li .product-details > span, section.products .product-list li .product-details > small {
  display: block;
  padding: 10px 0 5px;
  font-size: 14px;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-details > span, section.products .product-list li .product-details > small {
    font-size: 12px;
  }
}
section.products .product-list li .product-details span {
  width: 40%;
  text-align: right;
  float: right;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-details span {
    width: 50%;
  }
}
section.products .product-list li .product-details small {
  width: 60%;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-details small {
    width: 50%;
  }
}
section.products .product-list li .product-details .product-name {
  padding: 10px 0 5px;
  color: #ff4713;
  font-size: 1.1em;
  text-transform: uppercase;
  border-top: solid thin #a7a7a7;
}
section.products .product-list li .product-details .product-description {
  margin: 0;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-details .product-description {
    font-size: 14px;
  }
}
section.products .product-list li .product-actions {
  position: absolute;
  margin-top: 15px;
  padding-bottom: 20px;
  text-align: right;
  width: 100%;
  bottom: 0;
  right: 10px;
}
@media all and (max-width: 450px) {
  section.products .product-list li .product-actions .btn {
    font-size: 12px;
    padding: 8px 10px;
  }
}
@media all and (max-width: 350px) {
  section.products .product-list li .product-actions .btn {
    font-size: 11px;
    padding: 8px 7px;
  }
}
section.products .bread-crumb {
  width: 100%;
  padding: 15px;
  margin-top: 25px;
}
section.products .bread-crumb h4, section.products .bread-crumb a {
  display: inline-block;
}
section.products .form-container .form-row.form-row-flex .form-input {
  min-width: auto;
}
section.products .form-container .form-row.form-row-actions {
  text-align: center;
}

/*	Runner
============================================================== */
section.runner {
  display: flex;
  margin: 0 auto;
  padding: 80px 5%;
  max-width: 1200px;
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/bg-runner.jpg);
  flex-wrap: wrap;
}
section.runner div {
  display: inline-block;
  position: relative;
  padding: 20px;
  flex: 2;
}
section.runner div:last-child {
  min-width: 300px;
  flex: 3;
}
section.runner .title small {
  display: block;
  font-size: 14px;
}

/*	Product
============================================================== */
section.product {
  padding: 40px 5%;
}
section.product .content {
  display: block;
  margin: 20px auto;
  max-width: 1000px;
}
section.product .content .product-gallery,
section.product .content .product-details {
  vertical-align: top;
}
@media all and (min-width: 900px) {
  section.product .content .product-gallery,
  section.product .content .product-details {
    display: inline-block;
  }
}
section.product .content .product-gallery {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.24);
  padding: 20px;
  border: solid 2px #ffffff;
}
@media all and (min-width: 900px) {
  section.product .content .product-gallery {
    width: 35%;
    height: 400px;
  }
}
section.product .content .product-gallery .swiper-container {
  height: 85%;
  width: 100%;
}
section.product .content .product-gallery .swiper-slide {
  height: 100%;
  width: 100%;
  padding: 25px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.product .content .product-gallery .swiper-slide img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
section.product .content .product-gallery .gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  overflow: hidden;
}
section.product .content .product-gallery .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
section.product .content .product-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
section.product .content .product-details {
  margin-top: 40px;
}
@media all and (min-width: 900px) {
  section.product .content .product-details {
    margin-top: 0;
    margin-left: 3%;
    width: 60%;
  }
}
section.product .content .product-details .product-name {
  font-size: 3em;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
section.product .content .product-details .product-name span {
  color: #ff4713;
}
section.product .content .product-details .product-price {
  margin-top: 5px;
  font-size: 1.4em;
  color: #000000;
  text-transform: uppercase;
}
section.product .content .product-details .product-alternatives {
  margin: 20px 0 0;
}
section.product .content .product-details .product-alternatives h5 {
  text-transform: uppercase;
}
section.product .content .product-details .product-alternatives ul {
  display: flex;
  margin: 0 -10px;
  flex-flow: row wrap;
  justify-content: flex-start;
  max-width: 500px;
}
section.product .content .product-details .product-alternatives ul li {
  width: 100%;
  max-width: 150px;
  display: inline-block;
  margin: 10px;
  border: solid thin #a7a7a7;
  text-align: center;
  text-transform: uppercase;
  flex: 1;
  align-items: center;
}
section.product .content .product-details .product-alternatives ul li a {
  display: block;
  padding: 10px;
}
section.product .content .product-details .product-actions {
  margin: 10px 0 0;
}
section.product .content .product-details .product-actions input {
  padding: 5px;
  width: 80px;
  font-size: 1em;
}
section.product .content .product-details .product-actions .btn {
  margin: 0 10px;
  min-width: 140px;
}
section.product .content .product-details .product-actions .btn.btn-white {
  min-width: auto;
}

/*	Cart
============================================================== */
section.cart {
  padding: 60px 5%;
  max-width: 1200px;
}
section.cart p {
  font-size: 18px;
  color: #000000;
}
section.cart table {
  margin: 40px auto;
  width: 100%;
}
section.cart table th, section.cart table td {
  padding: 15px;
  text-align: left;
}
section.cart table thead {
  border-bottom: solid 2px #000000;
}
section.cart table thead th {
  color: #000000;
  font-weight: 600;
}
section.cart table tbody .totals-row td {
  padding: 5px 15px;
}
section.cart table tbody .border-top {
  border-top: solid thin #a7a7a7;
}
section.cart table tbody .border-top td {
  padding: 15px 15px 5px;
}
section.cart table tbody td {
  font-weight: 400;
  vertical-align: middle;
}
section.cart table tbody td strong {
  display: block;
  margin-bottom: 5px;
  color: #000000;
  font-weight: 600;
}
section.cart table tbody td a.delete-item {
  color: #ff0000;
  margin-top: 10px;
  display: inline-block;
  font-size: 12px;
}
section.cart table tbody td a.update-cart-btn {
  color: #0d47a1;
  margin-top: 5px;
  display: block;
  font-size: 12px;
}
section.cart table tbody td.align-center {
  text-align: center;
}
section.cart table tbody td.align-right {
  text-align: right;
}
section.cart table tbody td.nowrap {
  white-space: nowrap;
}
section.cart .form-coupon {
  width: 100%;
}
section.cart .form-coupon input:not([type=checkbox]):not([type=radio]) {
  padding: 5px 20px;
  height: 32px;
  line-height: 32px;
  background-color: #ffffff;
  border: solid thin #a7a7a7;
  border-radius: 2px;
  font-size: 14px;
  outline: none;
}
section.cart .action-container {
  text-align: right;
}
section.cart .action-container .btn {
  margin: 5px;
}
section.cart .action-container .btn.btn-white {
  min-width: auto;
}
section.cart h4.message {
  font-size: 1.5em;
  padding: 25px 0;
  line-height: 1.5;
}
@media all and (max-width: 450px) {
  section.cart h4.message {
    text-align: center;
  }
}

/* ==============================================================
	Form
============================================================== */
section.form {
  padding: 60px 5%;
  max-width: 1200px;
}

.form-container {
  display: block;
  margin: 40px auto;
  max-width: 1200px;
}
.form-container .form-row {
  display: block;
  width: 100%;
}
.form-container .form-row.form-row-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.form-container .form-row.form-row-flex .form-input {
  min-width: 50%;
  flex: 1 1 auto;
}
.form-container .form-row.form-row-actions {
  text-align: right;
}
.form-container .form-row.form-row-actions .btn {
  margin: 15px 5px;
  width: 100%;
  max-width: 200px;
}
.form-container .form-row.form-row-actions .btn.btn-white {
  min-width: auto;
}
.form-container .form-row .form-input {
  display: block;
  padding: 10px 5px;
}
.form-container .form-row input:not([type=checkbox]):not([type=radio]),
.form-container .form-row button,
.form-container .form-row select,
.form-container .form-row textarea {
  width: 100%;
}
.form-container .form-row label {
  display: block;
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1em;
}
.form-container .form-row select,
.form-container .form-row textarea,
.form-container .form-row input:not([type=checkbox]):not([type=radio]) {
  padding: 5px 20px;
  height: 32px;
  line-height: 32px;
  background-color: #ffffff;
  border: solid thin #a7a7a7;
  border-radius: 2px;
  font-size: 14px;
  outline: none;
}
.form-container .form-row input[type=file] {
  height: 45px !important;
}
.form-container .form-row textarea {
  height: 80px;
}

/* ==============================================================
	Generic Page
============================================================== */
section.generic-page {
  max-width: 900px;
  padding: 60px;
}
section.generic-page .page-content {
  display: block;
  margin-top: 35px;
  color: #919191;
}
section.generic-page .page-content b, section.generic-page .page-content strong {
  font-weight: bold;
}
section.generic-page .page-content em {
  font-style: italic;
}
section.generic-page .page-content ul, section.generic-page .page-content ol {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
  font-weight: 300;
}
section.generic-page .page-content ol {
  list-style: decimal;
}

/* ==============================================================
	Footer
============================================================== */
footer {
  display: flex;
  padding: 20px 5%;
  background-color: #ff4713;
  color: #ffffff;
  flex-flow: row wrap;
  justify-content: space-around;
}
footer ul {
  display: inline-block;
  margin: 20px 0;
  min-width: 100%;
  text-align: center;
  flex: 1;
}
footer ul.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}
footer ul.social-icons li {
  margin: 0 5px;
}
@media all and (max-width: 900px) {
  footer ul.social-icons {
    flex-direction: row;
  }
  footer ul.social-icons li {
    margin: 10px;
  }
}
@media all and (min-width: 900px) {
  footer ul {
    min-width: initial;
  }
}
footer ul li {
  margin: 5px 0;
  font-weight: 300;
}
footer ul li.footer-title {
  font-size: 1.4em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==============================================================
	Pagination
============================================================== */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0 20px 50%;
  border-radius: 4px;
  transform: translateX(-50%);
}
@media all and (max-width: 450px) {
  .pagination {
    font-size: 12px;
    transform: none;
    margin: 0 auto;
  }
}
.pagination li {
  display: inline;
}
.pagination li.active a {
  color: #ffffff;
  background-color: #f07a25;
}
.pagination li a, .pagination li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #f07a25;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination li:first-child a, .pagination li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination li:last-child a, .pagination li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination .disabled a {
  color: #777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.hr-text {
  height: 1.5em;
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  opacity: 0.5;
}
.hr-text:before {
  content: "";
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: #818078;
  color: black;
  background-color: #fcfcfa;
}

.btn-delete {
  color: #ff0000;
}

.btn-detail {
  color: #ff4713;
}

.sponsor-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
}
.sponsor-container img {
  max-height: 50px;
  margin: 25px;
}
@media all and (max-width: 450px) {
  .sponsor-container img {
    max-height: 36px;
  }
}

.btn-sold-out {
  background-color: #EC4531;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
  border-radius: 5px;
}
@media all and (max-width: 450px) {
  .btn-sold-out {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}

section.catalogue {
  padding: 25px 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 75vh !important;
}
section.catalogue .catalogue-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
section.catalogue .catalogue-container .catalogue-box {
  max-width: 300px;
  min-width: 300px;
  padding: 15px;
  margin: 0 20px 20px 20px;
  border: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
@media all and (max-width: 680px) {
  section.catalogue .catalogue-container .catalogue-box {
    max-width: 200px;
    min-width: 200px;
  }
}
@media all and (max-width: 480px) {
  section.catalogue .catalogue-container .catalogue-box {
    max-width: 100%;
    min-width: 200px;
  }
}
section.catalogue .catalogue-container .catalogue-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
}
section.catalogue .catalogue-container .catalogue-box h5 {
  padding: 10px 0 5px;
  color: #f07a25;
  font-size: 1.1em;
  text-transform: uppercase;
  border-top: solid thin #a7a7a7;
  text-align: center;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 150px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 7px;
  width: 80%;
  max-width: 700px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 1s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
/* The Close Button */
.close {
  color: #ED4631;
  float: right;
  font-size: 38px;
  font-weight: bold;
  padding: 0 15px;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 10px 16px;
  background-color: #000;
  color: white;
}

.modal-body {
  padding: 25px;
}
.modal-body p {
  color: #000000;
  font-weight: bold;
  font-size: 1.2em;
}
.modal-body h3 {
  color: #ff4713;
  font-size: 1.5em;
  text-align: center;
  text-transform: uppercase;
}

.modal-body img {
  width: 100%;
}

@media all and (max-width: 520px) {
  .modal {
    padding-top: 100px;
  }
}
.video-responsive {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}

.video-responsive iframe, .video-responsive object, .video-responsive embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.product-description-section {
  width: 100%;
  max-width: 990px;
  color: #444444;
  font-weight: 400;
  margin: 0 auto;
}
.product-description-section p {
  display: block;
  margin-top: 0.2em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.4;
  font-weight: initial;
}
.product-description-section h1, .product-description-section h2, .product-description-section h3, .product-description-section h4, .product-description-section h5, .product-description-section h6 {
  display: block;
  font-weight: bold;
}
.product-description-section h1 {
  font-size: 2em;
  margin: 0.67em 0 0.67em 0;
}
.product-description-section h2 {
  font-size: 1.5em;
  margin: 0.83em 0 0.83em 0;
}
.product-description-section h3 {
  font-size: 1.17em;
  margin: 1em 0 0 0;
}
.product-description-section h4 {
  margin: 1.33em 0 1.33em 0;
}
.product-description-section h5 {
  font-size: 0.83em;
  margin: 1.67em 0 1.67em 0;
}
.product-description-section h6 {
  font-size: 0.67em;
  margin: 2.33em 0 2.33em 0;
}
.product-description-section ol, .product-description-section ul {
  display: block;
  margin: 1em 0 1em 0;
  padding-left: 40px;
}
.product-description-section ol {
  list-style-type: decimal;
}
.product-description-section ul {
  list-style-type: disc;
}
.product-description-section li {
  display: list-item;
  margin-bottom: 5px;
  line-height: 1.4;
}
.product-description-section strong {
  font-weight: bold;
}
.product-description-section a {
  text-decoration: underline;
  cursor: pointer;
}

section.flash-deal {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 33%;
  min-height: initial !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 2px;
}
@media all and (max-width: 600px) {
  section.flash-deal {
    background-size: contain;
    margin-bottom: 0;
    padding-top: 34%;
  }
}
section.flash-deal .flash-info {
  position: absolute;
  top: 25%;
  left: 5%;
  max-width: 650px;
}
@media all and (max-width: 850px) {
  section.flash-deal .flash-info {
    top: 5%;
  }
}
section.flash-deal h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 3.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  border-bottom: 5px solid #ff4713;
  padding-bottom: 15px;
  width: 100%;
  max-width: 750px;
  padding-top: 20px;
}
@media all and (max-width: 1024px) {
  section.flash-deal h2 {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 768px) {
  section.flash-deal h2 {
    font-size: 2rem;
  }
}
@media all and (max-width: 600px) {
  section.flash-deal h2 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 475px) {
  section.flash-deal h2 {
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 3px solid #ff4713;
  }
}
section.flash-deal .clock {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 550px;
  padding-top: 20px;
  font-family: "Comfortaa", cursive;
  font-size: 2rem;
}
@media all and (max-width: 1024px) {
  section.flash-deal .clock {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 768px) {
  section.flash-deal .clock {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 600px) {
  section.flash-deal .clock {
    font-size: 1rem;
  }
}
@media all and (max-width: 475px) {
  section.flash-deal .clock {
    font-size: 0.75rem;
    padding-top: 5px;
  }
}

.warranty-box-terms {
  display: flex;
  width: 100%;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.warranty-box-terms b {
  font-weight: bold;
}
.warranty-box-terms ul {
  display: block;
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 40px;
}
.warranty-box-terms ul li {
  display: list-item;
}

.message-box {
  padding-top: 20px;
}
.message-box .message-text {
  text-align: center;
  font-size: 2rem;
}
@media all and (max-width: 550px) {
  .message-box .message-text {
    font-size: 1.5rem;
  }
}
.message-box .message-text.error {
  color: #dc3545 !important;
}
.message-box .message-text.success {
  color: #28a745 !important;
}
.message-box .message-text.warning {
  color: #ffc107 !important;
}

.add-image {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
  padding-right: 5px;
  color: #28a745;
}

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