/****** Font Style ******/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');
@font-face {
  font-family: "Hiragino";
  src: url(./fonts/Hiragino.ttf);
}
@font-face {
  font-family: "Meiryo";
  src: url(./fonts/Meiryo.ttf);
}

/****** Common Style ******/
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  bottom: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Open Sans', sans-serif;
}
img {
  max-width: 100%;
}
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
a, button, input[type='submit'], textarea {
  outline: none;
  text-decoration: none;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
a:hover, a:active, a:visited, a:focus,
input:hover, input:active, input:visited, input:focus,
button:hover, button:active, button:visited, button:focus,
input[type='submit']:hover, input[type='submit']:active, input[type='submit']:visited, input[type='submit']:focus {
  outline: none;
}
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.d-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
  display: flex;
}
.align-center {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.reversed {
  flex-direction: row-reverse;
}
.image-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.jp {
  font-family: "Hiragino", 
}
.mobile-view {
  display: none;
}
@media (max-width: 767px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .d-flex {
    display: block;
  }
  .d-flex-mobile {
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: -ms-flex !important;
    display: flex !important;
  }
}

/****** Header Style ******/
header {
  position: fixed;
  width: 100%;
  z-index: 1;
  background: white;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
header.scrolled {
  position: fixed;
  top: 0;
  opacity: 0.8;
}
header.scrolled:hover {
  opacity: 1;
}

header .container {
  position: relative;
}

header .black-bar {
  width: 100%;
  height: 10px;
  background-color: #241F20;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
header.scrolled .black-bar {
  height: 6px;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

header .logo-wrapper {
  text-align: center;
  margin-top: 28px;
  line-height: 0;
  margin-bottom: 12px;
}
header .logo-wrapper a {
  line-height: 0;
}
header.scrolled .logo-wrapper {
  margin-top: 0;
}

header .logo-wrapper img.scrolled {
  display: none;
}
header .logo-wrapper img.mobile {
  display: none;
}
header.scrolled .logo-wrapper img.default {
  display: none;
}
header.scrolled .logo-wrapper img.scrolled {
  display: inline;
}

header .top-menu .menu-item.emph > a {
  color: #D00200;
}

header .top-menu,
header .mega-menu,
header .sub-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

header .top-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
  display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
header .top-menu > li.menu-item {
  font-size: 13px;
  padding: 15px 0;
  font-weight: bold;
}
header .top-menu > li.menu-item > a {
  position: relative;
  text-decoration: none;
}
header .top-menu > li.menu-item:not(:last-child) {
  margin-right: 40px;
}
header .top-menu a {
  text-transform: uppercase;
  color: #241F20;
}
header .top-menu > li.menu-item.has-child > a {
  padding-right: 15px;
  position: relative;
}
header .top-menu > li.menu-item.has-child > a::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #241F20;
  border-right: 2px solid #241F20;
  transform: rotate(45deg);
}
header .top-menu > li.menu-item.has-child:hover .mega-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -ms-flex;
  display: flex;
}
header .mega-menu {
  position: absolute;
  display: none;
  width: 100%;
  padding: 25px 40px;
  background: white;
  left: 0;
  box-shadow: 0px 0px 10px rgba(75, 75, 75, 0.4);
  margin-top: 15px;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
header .top-menu .mega-menu a {
  font-size: 14px;
}
header .top-menu .mega-menu > .menu-item > a {
  text-decoration: underline;
}
header .top-menu .mega-menu > li.menu-item:not(:last-child) {
  margin-right: 40px;
}
header .top-menu .mega-menu > li.menu-item.new-arrival {
  margin-left: auto;
}
header .top-menu .mega-menu > li.menu-item.new-arrival a {
  text-decoration: underline;
}
header .top-menu .mega-menu > li.menu-item.new-arrival img {
  margin-bottom: 10px;
  display: block;
}
header .top-menu .mega-menu .sub-menu {
  margin-top: 20px;
}
header .top-menu .mega-menu .sub-menu li.menu-item {
  font-weight: 400;
}
header .top-menu .mega-menu .sub-menu li.menu-item:not(:last-child) {
  margin-bottom: 20px;
}
header .shop-menu {
  position: absolute;
  top: 0;
  right: 20px;
  text-align: right;
}
header .shop-menu a {
  font-size: 13px;
  text-transform: uppercase;
  color: #4D4D4D;
}
header .shop-menu a:hover {
  color: #D00200;
}
header .shop-menu .up .seperator {
  margin: 0 4px;
  vertical-align: middle;
  color: #4D4D4D;
}
header .shop-menu .down {
  margin-top: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-ms-flex-align: center;
  align-items: center;
}
header .shop-menu .down .shop-item:not(:last-child) {
  margin-right: 30px;
}
header .shop-menu .down .shop-item {
  line-height: 0;
}
header .shop-menu .down .shop-item a {
  line-height: 0
}
header .shop-menu .down .shop-item a img {
  height: 21px;
}
header.scrolled .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-ms-flex-align: center;
  align-items: center;
}
header.scrolled .logo-wrapper {
  margin-right: auto;
  margin-bottom: 0;
  width: 40px;
}
header.scrolled .top-menu {
  margin-right: 40px;
}
header.scrolled .shop-menu {
  position: relative;
  right: 0;
}
header.scrolled .shop-menu .up {
  display: none;
}
header.scrolled .shop-menu .down {
  margin-top: 0;
  line-height: 0
}
header.scrolled .shop-menu .shop-item:not(.cart-box) {
  display: none;
}
.hamburger {
  padding: 0;
  height: 25px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0 20px 0 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #241F20;
}
.hamburger-box {
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 4px;
  background-color: #241F20;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #241F20;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 21px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -21px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

@media (max-width: 1023px) {
  header .top-menu > li.menu-item:not(:last-child) {
    margin-right: 25px;
  }
  header.scrolled .top-menu > li.menu-item:not(:last-child) {
    margin-right: 15px;
  }
  header.scrolled .top-menu {
    margin-right: 15px;
  }
  header .top-menu .mega-menu > li.menu-item.new-arrival {
    width: 100px;
  }
  header .top-menu .mega-menu > li.menu-item:not(:last-child) {
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  header .shop-menu .user-box {
    display: none;
  }
  header .hamburger {
    display: none;
  }
  .mobile-overlay {
    display: none;
  }
  header .top-menu li.menu-item.menu-back-btn {
    display: none;
  }
  header .top-menu li.menu-item .menu-next-btn {
    display: none;
  }
  header .top-menu > li.menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 0;
    height: 0;
    border-top: 2px solid #241F20;
    left: 50%;
    -webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
  }
  header .top-menu > li.menu-item.emph > a::after {
    border-top: 2px solid #D00200;
  }
  header .top-menu > li.menu-item:hover > a::after {
    width: 100%;
    left: 0;
    -webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
  }
}
@media (max-width: 767px) {
  header {
    position: fixed;
    z-index: 2;
  }
  header .container {
    margin-top: 5px;
    height: 58px;
  }
  header .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .logo-wrapper {
    margin: 0;
    margin-right: auto;
  }
  header .logo-wrapper img.default {
    display: none !important;
  }
  header .logo-wrapper img.scrolled {
    display: none !important;
  }
  header .logo-wrapper img.mobile {
    display: inline;
  }
  header .black-bar {
    height: 5px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #241F20;
  }
  header.scrolled .black-bar {
    height: 5px;
  }
  header .top-menu {
    position: fixed;
    top: 63px;
    width: 265px;
    overflow: hidden;
    left: -265px;
    bottom: 0;
    display: block;
    background: white;
    z-index: 2;
  }
  header .top-menu li {
    padding: 15px 20px !important;
    margin: 0 !important;
    border-top: 1px solid #CECECE;
  }
  header .top-menu li:last-child {
    border-bottom: 1px solid #CECECE;
  }
  header .top-menu.opened {
    left: 0;
  }
  header .shop-menu {
    position: relative;
    right: 0;
  }
  header .shop-menu .up {
    display: none;
  }
  header .shop-menu .down {
    margin-top: 0;
  }
  header .shop-menu .down .shop-item a img {
    height: 17px;
  }
  header .shop-menu .down .shop-item:not(:last-child) {
    margin-right: 13px;
  }
  header.scrolled .logo-wrapper {
    width: auto;
  }
  header.scrolled .shop-menu .shop-item:not(.cart-box) {
    display: block;
  }
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,0.5);
  }
  header .top-menu .mega-menu {
    padding: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 265px;
    margin: 0;
    box-shadow: none;
    height: 100%;
  }
  header .top-menu .mega-menu.opened {
    left: 0;
  }
  header .top-menu .mega-menu > li.menu-item.new-arrival a {
    text-decoration: none;
  }
  header .top-menu li.menu-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
  }
  header .top-menu a {
    padding-right: 0 !important;
  }
  header .top-menu > li.menu-item.has-child > a::before {
    display: none;
  }
  header .top-menu .menu-next-btn {
    position: relative;
    width: 18px;
    height: 18px;
    background: transparent;
    border: none;
  }
  header .top-menu .menu-next-btn::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 4px;
    width: 10px !important;
    height: 10px !important;
    border-bottom: 1px solid #241F20 !important;
    border-right: 1px solid #241F20 !important;
    transform: rotate(-45deg) !important;
  }
  header .top-menu .emph .menu-next-btn::before {
    border-bottom: 1px solid #D00200 !important;
    border-right: 1px solid #D00200 !important;
  }
  header .top-menu .mega-menu .sub-menu {
    margin-top: 0;
    position: absolute;
    left: 265px;
    background: white;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
  }
  header .top-menu .mega-menu .sub-menu.opened {
    left: 0;
  }
  header .top-menu .mega-menu > .menu-item > a {
    text-decoration: none;
  }
  header .top-menu .mega-menu > li.menu-item.new-arrival {
    width: 100%;
  }
  header .top-menu .mega-menu > li.menu-item.new-arrival img {
    display: none;
  }
  header .top-menu li.menu-item.menu-back-btn {
    font-size: 14px;
    text-transform: uppercase;
    color: #241F20;
    font-weight: bold !important;
  }
}

/****** Footer Style ******/
footer .footer-white {
  background: #EBEBEB;
  color: #241F20;
  padding: 65px 0 55px;
}
footer .footer-white .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
footer .footer-white a {
  color: #241F20;
}
footer .footer-white .footer-menu-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
footer .footer-white .footer-menu-wrapper .single-menu {
  margin-right: 100px;
}
footer .footer-white .form-wrapper {
  width: 370px;
}
footer h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}
footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .single-menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
footer .single-menu .menu-item a {
  font-size: 13px;
}
footer .footer-white form.newsletter p.description {
  font-size: 12px;
  margin-bottom: 30px;
}
footer .footer-white form.newsletter .form-field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  font-size: 12px;
}
footer .footer-white form.newsletter .form-field:not(:last-child) {
  margin-bottom: 20px;
}
footer .footer-white form.newsletter input[type="email"] {
  width: 220px;
  height: 42px;
  border: none;
  border-bottom: 2px solid #241F20;
  font-size: 12px;
  padding: 0 20px;
  background: white;
}
footer .footer-white form.newsletter input[type="submit"] {
  cursor: pointer;
  width: 150px;
  height: 42px;
  font-size: 12px;
  background: #241F20;
  border: none;
  color: white;
}
footer .footer-white form.newsletter input[type="checkbox"] {
  display: none;
}
footer .footer-white form.newsletter label {
  position: relative;
  padding-left: 20px;
}
footer .footer-white form.newsletter input[type="checkbox"] + .checkmark {
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background: white;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
footer .footer-white form.newsletter input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 2px;
  top: -1px;
  width: 4px;
  height: 7px;
  border-bottom: 2px solid #241F20;
  border-right: 2px solid #241F20;
  transform: rotate(45deg);
}
footer .footer-black {
  background: #241F20;
  color: white;
  padding: 65px 0 30px;
}
footer .footer-black a {
  color: white;
}
footer .footer-black .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
footer .footer-black .footer-menu-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
footer .footer-black .footer-menu-wrapper .single-menu {
  margin-right: 150px;
}
footer .footer-copyright {
  padding: 30px 0;
  background: #241F20;
  color: white;
}
footer .footer-copyright .container {
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
@media (max-width: 1023px) {
  footer .footer-white .footer-menu-wrapper .single-menu {
    margin-right: 40px;
  }
  footer .footer-black .footer-menu-wrapper .single-menu {
    margin-right: 80px;
  }
  footer .footer-white .form-wrapper {
    width: 270px;
  }
}
@media (max-width: 767px) {
  footer .footer-black {
    padding: 50px 0;
  }
  footer .footer-white {
    padding: 50px 0;
  }
  footer .footer-white .single-menu:not(:last-child),
  footer .footer-black .single-menu:not(:last-child) {
    margin-bottom: 35px;
  }
  footer .footer-white .footer-menu-wrapper,
  footer .footer-black .footer-menu-wrapper {
    margin-bottom: 35px;
  }
  footer .footer-white .form-wrapper {
    width: 100%;
    max-width: 370px;
  }
  footer .footer-white form.newsletter label {
    text-align: center;
    margin: 0 auto;
  }
  footer .footer-white .footer-menu-wrapper,
  footer .footer-black .footer-menu-wrapper,
  footer .footer-white .container,
  footer .footer-black .container {
    display: block;
  }
  footer .footer-copyright {
    padding: 0 0 50px;
  }
  footer .footer-black .logo-wrapper {
    text-align: center;
  }
  footer .footer-copyright .container {
    display: block;
    text-align: center;
  }
  footer .footer-copyright .payments {
    margin-bottom: 20px;
  }
}

/****** Top Page Style ******/
.page-content {
  padding-top:199px;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.scrolled .page-content {
  padding-top: 54px;
}
.banner {
  line-height: 0;
  position: relative;
  margin-bottom: 40px;
}
.banner > img {
  width: 100%;
}
.banner .banner-content {
  line-height: normal;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  text-align: center;
  display: flex;
  text-transform: uppercase;
}
.banner .banner-content h1 {
  color: white;
  font-weight: 400;
  font-size: 40px;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
}
.banner .banner-content p.text {
  color: white;
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
}
.banner .banner-content .button-group {
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.banner .banner-content .button-group a {
  display: block;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.7);
  box-shadow: 1px 2px 1px 0px rgba(0,0,0,0.3), inset 1px 1px 2px 1px rgba(0,0,0,0.3);
  padding: 5px 45px 5px 30px;
  border: 1px solid white;
  position: relative;
  color: white;
  font-size: 14px;
}
.banner .banner-content .button-group a:not(:last-child) {
  margin-right: 35px;
}
.banner .banner-content .button-group a::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  box-shadow: 1px 2px 1px 0px rgba(0,0,0,0.3);
  transform: rotate(-45deg);
}
.banner-box {
	display : flex;
	padding-bottom: 20px;
}
.banner-box .banner-list{
	width: 100%;
}
.banner-box .banner-list figure{
	margin: 5px;
}

.image-with-content {
  margin-bottom: 20px;
}
.image-with-content .container {
  min-height: 441px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.image-with-content .image-wrapper {
  width: calc(70% - 10px);
  height: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.image-with-content .content-wrapper {
  width: calc(30% - 10px);
  text-align: center;
  padding: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  color: #241F20;
  border: 2px solid #241F20;
  text-align: center;
}
.image-with-content p.subheading {
  text-transform: uppercase;
  font-size: 14px;
}
.image-with-content h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.image-with-content p.text {
  font-size: 12px;
  margin-bottom: 20px;
}
.image-with-content .container > div:first-child {
  margin-right: 20px;
}
.image-with-content .read-more a {
  text-transform: uppercase;
  font-size: 13px;
  color: #241F20;
  position: relative;
}
.image-with-content .read-more a::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #241F20;
  border-right: 1px solid #241F20;
  transform: rotate(-45deg);
}
.cta {
  padding: 80px 0 60px;
  background: #241F20;
  color: white;
}
.cta .cta-description {
  font-size: 20px;
  padding-top: 10px;
  width: 25%;
}
.cta .form-wrapper {
  max-width: 520px;
  width: 50%;
}
.cta .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
}
.cta form.newsletter .form-field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  font-size: 12px;
}
.cta form.newsletter .form-field:not(:last-child) {
  margin-bottom: 20px;
}
.cta form.newsletter input[type="email"] {
  width: 345px;
  height: 42px;
  border: none;
  font-size: 12px;
  padding: 0 20px;
  background: white;
}
.cta form.newsletter input[type="submit"] {
  cursor: pointer;
  width: 175px;
  height: 42px;
  font-size: 12px;
  background: #241F20;
  border: 2px solid white;
  color: white;
}
.cta form.newsletter input[type="checkbox"] {
  display: none;
}
.cta form.newsletter label {
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}
.cta form.newsletter input[type="checkbox"] + .checkmark {
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background: white;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.cta form.newsletter input[type="checkbox"]:checked + .checkmark::before {
  content: '';
  position: absolute;
  left: 2px;
  top: -1px;
  width: 4px;
  height: 7px;
  border-bottom: 2px solid #241F20;
  border-right: 2px solid #241F20;
  transform: rotate(45deg);
}
.featured-products {
  padding: 70px 0 60px;
}
.featured-products .container {
  position: relative;
}
.featured-products h2 {
  font-weight: normal;
  font-size: 14px;
  color: #241F20;
  margin-bottom: 50px;
  text-align: center;
}
.featured-products .slick-list {
  padding: 0 !important;
}
.featured-products .single-item {
  padding: 0 10px;
}
.featured-products .single-item > a > .image-wrapper {
  width: 100%;
  padding-top: 120%;
  background-size: contain;
}
.featured-products .single-item .details {
  margin-top: 10px;
}
.featured-products .single-item .name {
  margin-bottom: 10px;
  color: #4D4D4D;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}
.featured-products .single-item .price {
  margin-top: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.featured-products .single-item .price .old {
  font-size: 14px;
  color: #8B8B8B;
  text-decoration: line-through;
  margin-right: 20px;
}
.featured-products .single-item .price .sale {
  font-size: 18px;
  color: #333333;
}
.featured-products .single-item .colors {
  margin-top: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.featured-products .single-item .colors .pallette {
  padding: 2px;
  width: 21px;
  height: 21px;
  border: 1px solid #BEBEBE;
}
.featured-products .single-item .colors .pallette:not(:last-child) {
  margin-right: 5px;
}
.featured-products .single-item .colors .pallette .image-wrapper{
  width: 15px;
  height: 15px;
}
.featured-products .slick-prev:before,
.featured-products .slick-next:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #241F20;
  border-right: 3px solid #241F20;
  transform: rotate(-45deg);
}
.featured-products .slick-prev {
  right: 20px;
  top: -55px;
  left: initial;
}
.featured-products .slick-next {
  right: 0;
  top: -55px;
}
.featured-products .slick-prev:before {
  transform: rotate(135deg);
}

@media (max-width: 1079px) and (min-width: 768px) {
  .image-with-content p.text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-content,
  .scrolled .page-content {
    padding-top: 58px;
  }
  .banner .banner-content {
    position: relative;
    padding: 50px 0;
  }
  .banner .banner-content h1 {
    text-shadow: none;
    color: #241F20;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .banner .banner-content p.text {
    font-size: 18px;
    color: #241F20;
    margin-bottom: 20px;
    text-shadow: none;
    text-transform: capitalize;
  }
  .banner .banner-content .button-group a {
    box-shadow: none;
    text-shadow: none;
    font-size: 12px;
    color: black;
    border-color: black;
    padding: 5px 30px 5px 20px;
  }
  .banner .banner-content .button-group a:not(:last-child) {
    margin-right: 10px;
  }
  .banner .banner-content .button-group a::before {
    right: 10px;
    top: 11px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    box-shadow: none;
  }
	.banner-box {
	display:block;
}
  .image-with-content .container {
    display: block;
  }
  .image-with-content .image-wrapper {
    width: 100%;
    height: 200px;
    min-height: 50vw;
  }
  .image-with-content .content-wrapper {
    width: 100%;
    min-height: 400px;
  }
  .image-with-content .container > div:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .cta {
    padding: 40px 0;
  }
  .cta .container {
    display: block;
  }
  .cta .cta-description {
    width: 100%;
    text-align: center;
  }
  .cta .form-wrapper {
    width: 100%;
    margin-top: 20px;
    max-width: initial;
    text-align: center;
  }
  .cta form.newsletter label {
    margin-left: auto;
    margin-right: auto;
    max-width: 72%;
  }
  .cta form.newsletter .form-field {
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
  }
}
@media (max-width: 374px) {
  .image-with-content p.text {
    font-size: 11px;
  }

}

/****** Items Page Style ******/
.page-title {
  padding: 35px 0 30px;
  text-align: center;
  background: #F3F3F3;
}
.page-title h1 {
  font-size: 40px;
  color: #241F20;
  text-transform: uppercase;
}
.page-title p {
  font-size: 14px;
}
.breadcumb {
  padding: 25px 0;
  text-align: center;
}
.breadcumb a {
  color: black;
}
.slick-initialized .slick-slide {
  outline: none;
}
.popular-products {
  padding-top: 25px;
  padding-bottom: 30px;
}
.popular-products h2 {
  font-weight: normal;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}
.popular-products h2::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: calc(50% + 100px);
  height: 0;
  border-top: 1px solid black;
}
.popular-products h2::after {
  content: '';
  position: absolute;
  top: 10px;
  left: calc(50% + 100px);
  right: 0;
  height: 0;
  border-top: 1px solid black;
}
.popular-products .slick-list {
  padding: 0 !important;
}
.popular-products .single-item {
  padding: 0 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.popular-products .single-item > a .image-wrapper {
  width: 100px;
  padding-top: 120px;
  background-size: contain;
  border: 1px solid #E6E6E6;
}
.popular-products .single-item .details {
  margin-left: 10px;
  width: calc(100% - 110px);
}
.popular-products .single-item .name {
  margin-bottom: 10px;
  color: #4D4D4D;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
}
.popular-products .single-item .price {
  margin-top: 30px;
  margin-bottom: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
}
.popular-products .single-item .price .old {
  font-size: 12px;
  color: #8B8B8B;
  text-decoration: line-through;
}
.popular-products .single-item .price .sale {
  font-size: 14px;
  color: black;
  font-weight: bold;
}
.popular-products .single-item .details a {
  padding: 0 10px;
  border: 1px solid black;
  color: black;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}
.popular-products .slick-prev,
.popular-products .slick-next {
  width: 33px;
  height: 33px;
}
.popular-products .slick-prev:before,
.popular-products .slick-next:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #241F20;
  border-right: 1px solid #241F20;
  transform: rotate(-45deg);
}
.popular-products .slick-prev {
  right: initial;
  top: calc(50% - 6px);
  left: -6px;
  z-index: 1;
  background: #d8d8d8;
}
.popular-products .slick-next {
  right: -6px;
  top: calc(50% - 6px);
  background: #d8d8d8;
  z-index: 1;
}
.popular-products .slick-prev:before {
  transform: rotate(135deg);
  left: 13px;
}
.pagination {
  margin-bottom: 40px;
  text-align: right;
}
.pagination a:not(:last-child) {
  margin-right: 30px;
}
.pagination a {
  color: #808080;
  font-size: 12px;
  position: relative;
}
.pagination a.active {
  color: black;
}
.pagination a.active::before {
  content: '';
  position: absolute;
  width: 10px;
  border-top: 1px solid black;
  bottom: -5px;
  left: calc(50% - 5px);
}
.pagination a.next {
  margin-right: 15px;
}
.pagination a.next::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(-45deg);
}
.items-panel .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.items-panel .filter {
  width: 265px;
  margin-right: 40px;
  padding: 40px 0;
}
.items-panel .products {
  width: calc(100% - 305px);
}
.items-panel .filter .ui-widget-content {
  border: none;
  padding: 0;
}
.items-panel .filter .link-list {
  padding: 0 0 0 5px;
  list-style: none;
  margin: 0;
}
.items-panel .filter .link-list .link-item:not(:last-child) {
  margin-bottom: 15px;
}
.items-panel .filter .link-list .link-item:last-child {
  margin-bottom: 10px;
}
.items-panel .filter .link-list .link-item a {
  color: black;
  font-size: 12px;
}
.items-panel .filter .ui-state-active,
.items-panel .filter .ui-widget-content .ui-state-active,
.items-panel .filter .ui-widget-header .ui-state-active,
.items-panel .filter a.ui-button:active,
.items-panel .filter .ui-button:active,
.items-panel .filter .ui-button.ui-state-active:hover {
  border: none;
  background: transparent;
  color: #241F20;
}
.items-panel .filter .ui-state-default,
.items-panel .filter .ui-widget-content .ui-state-default,
.items-panel .filter .ui-widget-header .ui-state-default,
.items-panel .filter .ui-button,
.items-panel .filter .ui-button.ui-state-disabled:hover,
.items-panel .filter .ui-button.ui-state-disabled:active {
  background: transparent;
  border: none;
  outline: none;
}
.items-panel .filter .ui-accordion-header-icon {
  display: none;
}
.items-panel .filter h3 {
  color: black;
  font-size: 14px;
  padding: 10px 5px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #bfbfbf !important;
  position: relative;
}
.items-panel .filter h3::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(45deg);
}
.items-panel .filter h3.ui-state-active::before {
  transform: rotate(225deg);
}
.items-panel .filter h4 {
  color: black;
  font-size: 13px;
  padding: 10px 5px;
  font-weight: bold;
  text-transform: uppercase;
}
.items-panel .filter h4::before {
  content:'-';
  margin-right: 5px;
  vertical-align: text-bottom;
}
.items-panel .filter .sub-accordion {
  margin-top: 10px;
}
.items-panel .filter .sub-accordion > div {
  padding-left: 20px;
}
.items-panel .filter .accordion > div > .link-list {
  margin-top: 5px;
}
.items-panel .filter .temp {
  font-size: 12px;
  padding: 0 10px;
}
.items-panel .products .products-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}
.items-panel .products .single-product {
  width: 50%;
  padding: 30px;
  text-align: center;
  position: relative;
}
.items-panel .products .single-product .tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  text-transform: uppercase;
  color: white;
  padding: 5px 12px;
}
.items-panel .products .single-product .tag.red {
  background: #D3817F;
}
.items-panel .products .single-product .tag.green {
  background: #79B764;
}
.items-panel .products .single-product > .image-wrapper {
  margin-bottom: 10px;
  width: 100%;
  padding-top: 120%;
  background-size: contain;
}
.items-panel .products .single-product .name {
  font-size: 13px;
  margin-bottom: 10px;
}
.items-panel .products .single-product .price {
  font-size: 18px;
  margin-bottom: 10px;
}

.items-panel .products .single-product .price .old {
  font-size: 14px;
  color: #8B8B8B;
  text-decoration: line-through;
}
.items-panel .products .single-product .price .sale {
  font-size: 18px;
  color: #333333;
}

.items-panel .products .single-product .availability {
  font-size: 12px;
}
.items-panel .products .single-product .colors {
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.items-panel .products .single-product .colors .pallette {
  padding: 2px;
  width: 21px;
  height: 21px;
  border: 1px solid #BEBEBE;
}
.items-panel .products .single-product .colors .pallette:not(:last-child) {
  margin-right: 5px;
}
.items-panel .products .single-product .colors .pallette .image-wrapper{
  width: 15px;
  height: 15px;
}
.items-panel .filter {
  margin-top: 15px;
}
.items-panel .filter input[type="checkbox"] {
  display: none;
}
.items-panel .filter label {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
}
.items-panel .filter input[type="checkbox"] + .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #bfbfbf;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.items-panel .filter input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 2px;
  top: -1px;
  width: 4px;
  height: 7px;
  border-bottom: 2px solid #241F20;
  border-right: 2px solid #241F20;
  transform: rotate(45deg);
}
.items-panel .filter .colors {
  margin-top: 15px !important;
}
.items-panel .filter .colors .link-item:not(:last-child) {
  margin-bottom: 10px;
}
.items-panel .filter .colors a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
}
.items-panel .filter .colors a .image-wrapper {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #dbdbdb;
}
@media (max-width: 1023px) {
  .items-panel .products .single-product {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .pagination {
    text-align: center;
  }
  .items-panel .container {
    display: block;
  }
  .items-panel .products .single-product:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
  }
  .items-panel .products {
    width: 100%;
  }
  .items-panel .filter {
    width: 100%;
    margin-right: 0;
  }
  .items-panel .products .single-product {
    margin-bottom: 20px;
    padding: 0;
    padding-bottom: 20px;
  }
}

/****** Product Detail Page ******/
.product.breadcumb {
  font-size: 9px;
  color: #818181;
}
.product.breadcumb a {
  font-size: 9px;
  color: #818181;
}
.page-links {
  text-align: right;
  position: absolute;
  width: 100%;
  margin-top: -40px;
}
.page-links a {
  position: relative;
  margin-right: 15px;
}
.page-links a.prev:before,
.page-links a.next:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #818181;
  border-right: 1px solid #818181;
  transform: rotate(-45deg);
}
.page-links a.prev:before {
  transform: rotate(135deg);
}
.single-product-detail {
  margin-top: 15px;
}
.single-product-detail .container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .product-image {
  width: calc(60% - 50px);
  margin-right: 50px;
}
.single-product-detail .product-detail {
  width: 40%;
  position: relative;
}
.single-product-detail h1 {
  font-size: 17px;
  margin-bottom: 20px;
}
.single-product-detail p.description {
  font-size: 12px;
}
.single-product-detail .spec {
  padding: 20px 0;
  list-style: none;
  font-size: 12px;
  margin: 0;
}
.single-product-detail .spec li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .spec li .field {
  width: 120px;
}
.single-product-detail .spec li .text {
  width: calc(100% - 120px);
}
.single-product-detail .spec.stock {
  border-top: 1px solid #BEBEBE;
}
.single-product-detail .single-product-form h3 {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: normal;
}
.single-product-detail .single-product-form h3:not(:first-child) {
  margin-top: 10px;
}
.single-product-detail .single-product-form .colors {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .single-product-form .colors .pallette {
  padding: 1px;
  width: 26px;
  height: 26px;
  border: 1px solid #BEBEBE;
  margin-right: 5px;
}
.single-product-detail .single-product-form input[type="checkbox"] {
  display: none;
}
.single-product-detail .single-product-form .colors input[type="checkbox"]:checked + label .pallette {
  border: 1px solid black;
}
.single-product-detail .single-product-form .colors .pallette:not(:last-child) {
  margin-right: 5px;
}
.single-product-detail .single-product-form .colors .pallette .image-wrapper{
  width: 22px;
  height: 22px;
}
.single-product-detail .single-product-form .sizes {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .single-product-form .sizes label {
  color: #A4A4A4;
  font-size: 12px;
  padding: 5px 30px;
  border: 1px solid #a4a4a4;
  margin-right: 8px;
}
.single-product-detail .single-product-form .sizes input[type="checkbox"]:checked + label {
  border: 1px solid #241F20;
  background: #241F20;
  color: white;
	-webkit-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-moz-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	-o-transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
	transition: all 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
.single-product-detail .single-product-form .price {
  font-size: 20px;
}
.single-product-detail .single-product-form input[type="submit"] {
  font-size: 17px;
  background: #241F20;
  color: white;
  text-align: center;
  width: 100%;
  height: 60px;
  text-transform: uppercase;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}
.single-product-detail .single-product-form input[type="submit"]:hover {
  background: rgba(36, 31, 32, 0.8);
}
.single-product-detail .button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  margin-top: 10px;
  padding-bottom: 25px;
  border-bottom: 1px solid #241F20;
}
.single-product-detail .button-group a {
  display: block;
  border: 2px solid #241F20;
  text-align: center;
  padding: 10px 0;
  width: calc(50% - 5px);
  font-size: 12px;
  color: #241F20;
  font-weight: bold;
}
.single-product-detail .button-group img {
  vertical-align: middle;
  margin-right: 10px;
}
.single-product-detail .button-group a:not(:last-child) {
  margin-right: 10px;
}
.single-product-detail .extra-links a {
  display: block;
  width: 100%;
  padding: 24px 0;
  position: relative;
  font-size: 14px;
  color: #241F20;
  text-transform: uppercase;
}
.single-product-detail .extra-links a::before {
  content: '';
  position: absolute;
  right: 8px;
  top: 28px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #241F20;
  border-right: 2px solid #241F20;
  transform: rotate(-45deg);
}
.single-product-detail .extra-links a:not(:last-child) {
  border-bottom: 2px solid #d8d8d8;
}
.single-product-detail .extra-links a:last-child {
  border-bottom: 1px solid #241F20;
}
.single-product-detail .social-links {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .social-links li:not(:last-child) {
  margin-right: 13px;
}
.single-product-detail {
  margin-bottom: 100px;
}
.single-product-detail .product-image {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.single-product-detail .product-image .slider-wrapper {
  width: calc(16.66667% - 12px);
  margin-right: 25px;
}
.single-product-detail .product-image .slider-wrapper .image-wrapper {
  width: 100%;
  padding-top: 120%;
  background-size: contain;
  margin-bottom: 20px;
}
.single-product-detail .product-image .main-slider-wrapper {
  width: 100%;
}
.single-product-detail .product-image .main-image .image-wrapper {
  width: 100%;
  background-size: contain;
  padding-top: 140%;
  position: relative;
}
.single-product-detail .product-image .search {
  position: absolute;
  right: 50px;
  top: 0;
  padding-top: calc(120% - 90px);
}
.single-product-detail .product-image .main-slider-wrapper .slick-prev:before,
.single-product-detail .product-image .main-slider-wrapper .slick-next:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #241F20;
  border-right: 3px solid #241F20;
  transform: rotate(-45deg);
}
.single-product-detail .product-image .main-slider-wrapper .slick-prev:before {
  transform: rotate(135deg);
}
.single-product-detail .product-image .main-slider-wrapper .slick-prev {
  right: initial;
  top: calc(50% - 10px);
  left: 0;
  z-index: 1;
}
.single-product-detail .product-image .main-part {
  position: relative;
  width: calc(83.33333% - 13px);
}
.single-product-detail .product-image .main-slider-wrapper .slick-next {
  right: 0;
  top: calc(50% - 10px);
}
@media (max-width: 767px) {
  .page-links {
    margin-top: 40px;
  }
  .single-product-detail {
    margin-bottom: 30px;
  }
  .single-product-detail .slider-wrapper {
    display: none;
  }
  .single-product-detail .product-image .main-part {
    width: 100%;
    margin-bottom: 20px;
  }
  .single-product-detail p.description {
    margin-bottom: 20px;
  }
  .single-product-detail .product-image {
    width: 100%;
    margin-right: 0;
  }
  .single-product-detail .product-detail {
    width: 100%;
  }
  .single-product-detail .mobile-heading {
    font-size: 12px;
    font-weight: normal;
    border-top: 1px solid #bfbfbf;
    padding-top: 20px;
    margin-bottom: 15px;
  }
  .product.breadcumb {
    text-align: left;
  } 
  .single-product-detail .container {
    display: block;
  }
}