/*
Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary Brown/Beige : #E5BA81
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC
    .shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
Fonts: Europa (Adobe)

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
13 > Cardtype Tabs
14 > Setlist Styles
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
    font-family: europa, sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
  font-size: 3.5em;
  letter-spacing: 3px;
  word-spacing: -3px;
  color: #000000;
  font-weight: 700;
  text-decoration: none solid rgb(68, 68, 68);
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
}
h2, h3, h4, h5, p {
  word-spacing: 0px;
  letter-spacing: 2.2px;
  text-decoration: none solid rgb(68, 68, 68);
  color: #000000;
}
strong {
  font-size: 14px;
  font-weight: 700;
}
h2 {
  font-size: 3.5em;
  color: #E5BA81;
  font-weight: 700;
  font-style: normal;
  font-variant: normal;
  text-transform: uppercase;
}
h3 {
  font-size: 14px;
  color: #828282;
  font-weight: 700;
}
p {
  font-size: 14px;
  color: #000000;
  font-weight: 200;
  line-height:20pt;
}
h5 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 6%;
  color:#828282;
}

h1, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

h2 {
    color: #e0e1eb;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #E5BA81;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #E5BA81;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn-seeother {
    display: inline-block;
    padding: 6px 15px;
    background-color: #E5BA81;
    border: none;
    border-radius: 40px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  margin-left: 10px;
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid gray;
  margin-left: 10px;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #E5BA81;
  border-color: #E5BA81;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #E5BA81;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #E5BA81;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

.bg-dark{
  background-color:#000000!important;
}
#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1E1F29;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #FFF;
}

.header-links li a:hover {
  color: #E5BA81;
}

.header-links li i {
  color: #E5BA81;
  margin-right: 5px;
}

h3.subtitle-text {
    color: #333333;
    padding: 1%;
    background: #FFFFFF;
    text-shadow: 1px 1px 0px #FFFFFF, 2px 2px 0px rgba(0,0,0,0.15);
    border: 5px outset #E5BA81;
    border-radius: 5px 5px 5px 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

.bg-dark{
  background-color:#15161D;
}
.brand-text{
  font-size: 1.95rem;
}
@media (max-width: 476px) {
  .brand-text{
    display:none;
  }
}

@media (max-width: 420px) {
  #adv-search-label-xs{
    display:none;
  }
  .langbutton{
    margin-left:0;
    margin-right:0;
  }
}

@media (max-width: 490px) {
  #adv-search-label{
    display:none;
  }
}

@media (min-width: 991px){
  .mobile-show{
    display:none;
  }
}
@media (min-width: 490px){
  .smartphone-show{
    display:none;
  }
}

@media (max-width:991px){
.mobile-hide{
  display:none;
}
.navbar-brand{
  margin-right:0px;
}
}
@media (max-width:720px){
  #mainSearch{
    padding:.4rem!important;
  }
}
.btn-primary{
  background-color:#E5BA81;
  border:1px solid;
  border-image-source: linear-gradient(59deg, white, #16222A);
  border-image-source: -webkit-linear-gradient(59deg, white, #16222A);
}

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
  background: -webkit-linear-gradient(59deg, #3A6073, #16222A);
  background: linear-gradient(59deg, #3A6073, #16222A);
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.search-form{
  flex-grow: 1;
}
@media (max-width:460px){
  .search-form{
    max-width:60%;
  }
}
@media (max-width:385px){
  .search-form{
    max-width:53%;
  }
}

.header-search form {
  position: relative;
  justify-content: center;
}

.header-search form .input-select {
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: calc(100% - 100px);
}

.header-search form .search-btn {
  height: 40px;
  line-height: 1.43px;
  background: #E5BA81;
  color: #FFF;
  font-weight: 700;
  border: none;
  width:90px;
  border-radius:.25rem;
}

@media (min-width: 991px) {
  .header-search form .search-btn{
  padding:0;
}
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

/*.header-ctn>div+div {
  margin-left: 15px;
}*/

.header-ctn>div>a {
  display: inline-block;
  position: relative;
  width: 75px;
  text-align: center;
  color: #FFF;
  margin-right: 5px;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #E5BA81;
}

.header-ctn .menu-toggle {
  display: none;
}
.header-ctn .menu-toggle-sets {
  display: none;
}


.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.dropdown i {
  cursor: pointer;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown-backdrop {
    display: none;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2B2D42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #E5BA81;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cart-summary {
  margin-top: inherit;
}

#cart-popup {
    z-index: 99;
    display: none;
    border-radius: 10px;
    width: 300px;
    height: 100px;
    background-color: black;
    text-align: center;
    font-size: 26px;
    position: fixed;
    top: 25%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
    border: outset 2px white;
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.5);
}
#cart-popup h4 {
    color: #E5BA81;
    font-family: europa;
    padding: 16px 0;
    text-align: center;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #E5BA81;
}
/*#currency-select.input-select {
    position:center;
    height: inherit;
}*/

.shimmer {
  background: #acacac -webkit-gradient(linear, 100% 0, 0 0, from(#acacac), color-stop(0.5, #ffffff), to(#acacac));
  background-position: -4rem top; /*50px*/
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: shimmer;
  -webkit-animation-duration: 2.2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-background-size: 4rem 100%; /*50px*/
  animation-name: shimmer;
  animation-duration: 2.2s;
  animation-iteration-count: infinite;
  background-size: 4rem 100%; /*50px*/
  background-clip: text;
}
@-webkit-keyframes shimmer {
    0% {
        background-position: -4rem top; /*50px*/
    }
    70% {
        background-position: 12.5rem top; /*200px*/
    }
    100% {
        background-position: 12.5rem top; /*200px*/
    }
}
@keyframes shimmer {
  0% {
      background-position: -4rem top; /*50px*/
  }
  70% {
      background-position: 12.5rem top; /*200px*/
  }
  100% {
      background-position: 12.5rem top; /*200px*/
  }
}

/*----------------------------*\
	Main nav
\*----------------------------*/

nav .dropdown .dropdown-menu {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.5s;

  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
}

nav .dropdown.show .dropdown-menu {
  max-height: 400px;
  opacity: 1;
}

@media (min-width: 1200px) { div.hpdesktop { display:block; } div.hpmobiletablet { display:none; } }
@media (max-width: 1199px) { div.hpdesktop { display:none; } div.hpmobiletablet { display:block; } }

@media (min-width: 576px) { div.hpdesktoptablet { display:block; } div.hpmobile { display:none; } }
@media (max-width: 575px) { div.hpdesktoptablet { display:none; } div.hpmobile { display:block; } }

/*.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #E5BA81;
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #E5BA81;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

.main-nav i{
}*/

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (min-width:720px) {
    .modal-body{
        padding:0!important;
    }
}

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-flex;
    float:left;
  }
  .header-ctn .menu-toggle-sets {
    display: inline-flex;
    float:left;
  }
  /*#currency-select.input-select {
    margin-left:16px;
  }*/
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  #responsive-nav-sets {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav-sets.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
    }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #E5BA81;
  opacity: 0.7;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #E5BA81;
  opacity: 0.7;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}


.shop .shop-img {
  position: relative;
  background-color: #ffffff;
  z-index: -1;
 }

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
  text-shadow: 1px 1px #2B2D42;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}

/*=========================================================
 -> BUYLIST
===========================================================*/

@media only screen and (max-width: 991px) {
    .buylist .shop-img{
        margin:auto;
    }
}
.buylist {
  position: relative;
  overflow: hidden;
  margin: 5px 0px;
}

.buylist h3 {
    padding:20px;
}

.buylist .shop-img {
  position: relative;
  max-width:370px;
  background-color: #ffffff;
  z-index: -1;
 }

.buylist .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.buylist:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.buylist .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.buylist .shop-body h3 {
  color: #FFF;
}

.buylist .shop-body .cta-btn {
  color: #FFF;
  text-transform: uppercase;
}
/*=========================================================
 -> BUYLIST TABLE
===========================================================*/

.buylist-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}
    .buylist-table th {
        padding: 7px;
        border: 2px solid;
        background-color: #e5ba81;
    }
.buylist-table td {
    padding: 7px;
    border: #4e95f4 1px solid;
}
/* Define the default color for all the table rows */
    .buylist-table tr {
        background: #ffffff;
    }
/* Define the hover highlight color for the table row */
        .buylist-table tr:hover {
            background-color: #d9d9d9;
        }

/*=========================================================
 -> VIEW MY CART TABLE
===========================================================*/
#my-cart.section {
    margin-top: -60px;
}

.shopping-cart {
    background: #FFFFFF;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.shopping-cart .cart-image img{
    padding:20px;
}

.title {
    height: 45px;
    border-bottom: 1px solid #E1E8EE;
    color: #5E6977;
    font-size: 18px;
    font-weight: 400;
}

.item {
    height:110px;
    padding: 20px 30px;
    margin:25px;
    display: flex;
}

.cart-buttons {
    padding-top: 30px;
}

.delete-btn {
    display: flex;
    position: center;
    margin-left:30px;
}

.description {
    padding-top: 10px;
    margin-right: 20px;
    width: 245px;
}

.description span.descitem {
    margin-top:10px;
    display: block;
    font-size: 14px;
    font-weight: 400;
}

    .description span:first-child {
        margin-bottom: 5px;
    }

    .description span:last-child {
        font-weight: 300;
        margin-top: 8px;
        color: #86939E;
    }
.quantity {
    padding-top: 20px;
    margin-right: 20px;
}

    .quantity input {
        -webkit-appearance: none;
        border: none;
        text-align: center;
        width: 32px;
        font-size: 16px;
        color: #43484D;
        font-weight: 300;
    }

.quantity button[class*=btn] {
    width: 30px;
    height: 30px;
    background-color: #E1E8EE;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.minus-btn img {
    margin-bottom: 3px;
}

.plus-btn img {
    margin-top: 2px;
}

button:focus,
input:focus {
    outline: 0;
}
.total-price {
    width: 83px;
    padding-top: 27px;
    text-align: left;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
}
.final-total {
    margin-top: 40px;
}
.final-total .btn-primary{
    margin:0;
}
.missingrepeat{
    margin: 25px 25px -40px 25px;
    padding-left:100px;
}
@media only screen and (max-width: 991px) {
    .shopping-cart {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    #my-cart.section {
        margin-top: -90px;
    }

    .item {
        height: inherit;
        justify-content: center;
        margin-bottom:-30px;
        padding: 20px 0px;
        margin-left:0px;
    }

    .shopping-cart .cart-image img {
        padding:0px;
    }
    .cart-image img {
        height:100%;
    }

    .cart-image,
    .quantity,
    .description {
        width: 100%;
        text-align: left;
        margin: 6px;
    }

    .delete-btn {
        margin-left:10px;
    }

    .cart-buttons {
        margin-right: 20px;
    }
    .final-total {
        float:right;
        margin-top:0;
        margin-right:40px;
    }
    .missingrepeat{
        padding-left:25px;
    }
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/
#hot-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #ffffff;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 340px;
}

.hot-deal {
    text-align: center;
}

#featured-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #ffffff;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 340px;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
  text-shadow: 3px 3px black;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/
.product a {
  cursor: pointer;
}
.product {

  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #E5BA81;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #E5BA81;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  display: block;
  margin: auto;
}

.product .product-img-cardType>img {
  display: inline-flex;
  width:100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 30px;
  right: 75px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #f00;/*#E5BA81;*/
  color: #f00;/*#E5BA81;*/
}

.product .product-img .product-label>span.new {
  background-color: #E5BA81;
  border-color: #E5BA81;
  color: #FFF;
}

.product-label-view {
    top: 15px;
    right: 15px;
}

    .product-label-view > span {
        top: 15px;
        right: 15px;
        position: absolute;
        margin-top: 45px;
        opacity: 0.6;
        padding: 12px 10px;
        font-size: 28px;
        color: #e0e0eb;
        transform: rotate(-36deg);
    }

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #E5BA81;
}

.product .product-body .product-price {
  color: #E5BA81;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #E5BA81;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  display:flex;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 10px;
  background: #1e1f29;
  text-align: left;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

    .product .add-to-cart .add-to-cart-btn {
        text-align: center;
        margin: auto;
        border: 2px solid transparent;
        height: 40px;
        width:65%;
        background-color: #ef233c;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 40px;
        padding: 0 10px 0 10px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #E5BA81;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  position:relative;
  background-color: #FFF;
  color: #E5BA81;
  border-color: #E5BA81;
width:75%;

}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

    .product .add-to-cart .more-expansion-btn {
        border: 2px solid transparent;
        height: 40px;
        width: 34%;
        text-align: center;
        margin: auto;
        margin-left: 5px;
        background-color: #ef233c;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 40px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

.product .add-to-cart .more-expansion-btn:hover {
  background-color: #FFF;
  color: #E5BA81;
  border-color: #E5BA81;
  width:40%;
}


/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #E5BA81;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #E5BA81;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/
.products-slick a{
    cursor:default;
}
.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #E5BA81;
}

.store-grid li.active {
  background-color: #E5BA81;
  border-color: #E5BA81;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-left: 5px;
  margin-bottom: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #E5BA81;
}

.store-pagination li.active {
  background-color: #E5BA81;
  border-color: #E5BA81;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #E5BA81;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #E5BA81;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #E5BA81;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #E5BA81;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #E5BA81;
  border-color: #E5BA81;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #E5BA81;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #E5BA81;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
  margin-top: 15px;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #E5BA81;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

section.subscription{
  background:linear-gradient(220deg, #3A6073, #16222A);
  padding:1%;
}
section.subscription h4{
  color:lightgrey;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

/*footer*/

footer {
    background: #16222A;
    background: -webkit-linear-gradient(59deg, #3A6073, #16222A);
    background: linear-gradient(59deg, #3A6073, #16222A);
    color: white;
  }

  footer a {
    color: #fff;
    font-size: 14px;
    transition-duration: 0.2s;
  }
  footer h4{
      color:#E5BA81;
  }
  footer a:hover {
    color: #FA944B;
    text-decoration: none;
  }

  .copy {
    font-size: 12px;
    border-top: 1px solid #FFFFFF;
    margin-top:10px;
  }
  .copy p{
      color:white;
  }
  @media screen and (max-width: 600px){
.copy{
    margin-top:3%;
    width:80%;
}
footer h4{
    margin-bottom:1%;
    padding:10px 10px 10px 0px;
}
  }
  .footer-middle {
    padding-top: 2em;
    color: white;
  }

  /*social icons*/


  ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
  }

  ul.social-network li {
    display: inline;
    margin: 0 5px;
  }


  /* footer social icons */

  .social-network a.icoFacebook:hover {
    background-color: #3B5998;
  }

  .social-network a.icoTwitter:hover {
    background-color: #00acee;
  }

  .social-network a.icoInstagram:hover {
    background-color: #5851DB;
  }

   .social-network a.icoYoutube:hover {
    background-color: #FF0000;
  }

   .social-network a.icoDiscord:hover {
    background-color: #5865F2;
  }

  .social-network a.icoFacebook:hover i,
  .social-network a.icoTwitter:hover i,
  .social-network a.icoInstagram:hover i,
  .social-network a.icoYoutube:hover i,
  .social-network a.icoDiscord:hover i {
    color: #fff;
  }

  .social-network a.socialIcon:hover,
  .socialHoverClass {
    color: #44BCDD;
  }

  .social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .social-circle li i {
    margin: 0;
    line-height: 30px;
    text-align: center;
  }

  .social-circle li a:hover i,
  .triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
  }

  .social-circle i {
    color: #595959;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }

  .social-network a {
    background-color: #F9F9F9;
  }

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

#product-main-img button {
    display: none;
}

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #E5BA81;
  border-color: #E5BA81;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #E5BA81;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

#store {
    display:inline-block;
    width:98%;
}
.jpn-break{
  display:none;
}
.jpn-rbreak{
  display:block;
}

@media only screen and (max-width: 991px) {
    #hot-deal.section {
        display: flex;
    }
    #featured-deal.section {
        display: flex;
    }
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #aside{
      display:none;
  }
  .shop-body h3{
      font-size:16px;
  }
    .filter-button {
        margin-top: 16px;
    }
  .jpn-break{
    display:block;
  }
  .jpn-rbreak{
    display:none;
  }
}

    @media only screen and (max-width: 767px) {
        .section-title .section-nav {
            float: none;
            margin-top: 10px;
        }

        .section-tab-nav li {
            margin-top: 10px;
        }
    }

    @media only screen and (min-width:768px){
        .product-wrapper {
            max-height: 200px;
            margin-bottom: 150px;
        }
    }

    @media only screen and (max-width: 480px) {
        body {
            cursor: pointer;
        }

        [class*='col-xs'] {
            width: 100%;
        }

        .product-wrapper{
            max-height:210px;
            margin-bottom:150px;
        }

        .store-grid {
            float: none;
            margin-top: 10px;
        }

        .store-pagination {
            float: none;
            margin-top: 10px;
        }

        .product .product-img-cardType > img {
            display: block;
            margin-top: 30%;
            width: 100%;
        }

        .cardType-tabcontent .add-to-cart .add-to-cart-btn {
            float: none;
        }

        .cardType-wrapper h3 {
            font-size: 18px;
        }

        .cardType-wrapper h4 {
            font-size: 14px;
        }

        .cardType-wrapper {
            margin-top: 7px;
            margin-right: 9px;
        }
    }

/*=========================================================
	14 -> Setlist
===========================================================*/

.setlist-style .row{
  display:block;
}

.setlist-style h4 {
    margin-left:20px;
    padding:20px 8px 8px 0px;
    text-shadow: 2px 2px #e3e3e3;
    border-bottom: 3px solid #E5BA81;
    width:83%;
}

h3.grading-style {
    text-shadow: 2px 2px #e3e3e3;
    border-bottom: 3px solid #E5BA81;
    width: 83%;
}

@media only screen and (min-width: 992px) {
    h3.grading-style.top {
        margin-left:50%;
        max-width:468px;
    }
}

.setlist-style li {
    display: inline-block;
    padding: 10px;
}

@media only screen and (max-width: 767px) {
    .setlist-style li {
        width: 98%;
        margin: 1%;
    }
}

@media only screen and (min-width: 768px) {
    .setlist-style li {
        width:33%;
    }
}

/*=========================================================
	15 -> Filter Dropdown
===========================================================*/

.multiselect {
    width: 100%;
}

.selectBox {
    position: relative;
}

.selectBox select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#langauge-checkboxes, #rarity-checkboxes, #premium-checkboxes, #product-checkboxes {
    display: none;
}

#langauge-checkboxes label, #rarity-checkboxes label, #premium-checkboxes label, #product-checkboxes label {
    display: block;
}

#language-checkboxes label:hover, #rarity-checkboxes label:hover, #premium-checkboxes label:hover, #product-checkboxes label:hover {
    background-color: #e0d0ba;
    width: 93%;
}

#language-checkboxes.input-checkbox, #rarity-checkboxes.input-checkbox, #premium-checkboxes.input-checkbox, #product-checkboxes.input-checkbox {
    z-index: 10;
    width: 200px;
    position: absolute;
    display: none;
    border-radius: 10px;
    background-color: white;
    border-style: outset;

}


.checkbox-filter > div + div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
    color: #8D99AE;
}

.filter-button {
    border: 2px solid transparent;
    position: relative;
    display: inline-block;
    padding: 5px 16px;
    background-color: #E5BA81;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
}

.filter-button:hover {
    background-color: #FFF;
    color: #E5BA81;
    border-color: #E5BA81;
    padding: 5px 20px 5px 20px;
}

/*SALE Feature pages*/

.feature-event-buttons img {
    margin: 2.5% 2.5% 2.5% 5.5%;
    width: 40%;
    height: auto;
    max-height:100%;
}

.feature-event-buttons p {
    color:white;
}

/*Responsive iCalendar*/

.responsiveCal {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.responsiveCal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cal-banner {
    padding: 1%;
    width: 100%;
    max-width: -moz-available; /* WebKit-based browsers will ignore this. */
    max-width: -webkit-fill-available;
}

/*Feature Pages*/
.feature-separator {
    margin-left: 20px;
    padding: 20px 8px 8px 0px;
    text-shadow: 2px 2px #E3E3E3;
    border-bottom: 3px solid #E5BA81;
    width: 83%;
}

/*Product Details*/
.back-button h1 {
    padding-top: 3%;
    padding-left: 3%;
}

@media only screen and (max-width: 767px) {
    .back-button h1 {
        font-size: 5vw;
    }
}

a .ms{
  vertical-align:baseline
}

.format-buttons .btn-info{
   box-shadow:inset 12px 1px 14px -5px #e5ba81;
	background:linear-gradient(to bottom, #d8b07a	 5%, #8c724f	 100%);
	background-color:#8c724f;
	border-radius:11px;
	border:0px solid #0c0a07;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:16px;
	text-shadow:1px 2px 0px #263666;
}

#contact-expand .collapsed i{
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all .1s .1s;
}
#contact-expand i{
  -webkit-transform: rotate(9deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: all .1s .1s;
}

.ss{
    margin-bottom:5px;
}

img.cardpagelg {
  display: block;
}
img.cardpagesm {
  display: none;
}
@media only screen and (max-width: 480px) {
  img.cardpagelg {
    display: none;
  }
  img.cardpagesm {
    display: block;
  }
}
.dropdown-menu{
  z-index:9999;
}
.buy-info-btn{
  max-width:150px;
}
.buylist-set-link:hover{
  background-color:aliceblue;
}

.gg-globe-alt,
.gg-globe-alt::after,
.gg-globe-alt::before {
    display: block;
    box-sizing: border-box;
    height: 18px;
    border: 2px solid
}
.gg-globe-alt {
    position: relative;
    transform: scale(var(--ggs,1));
    width: 18px;
    border-radius: 22px
}
.gg-globe-alt::after,
.gg-globe-alt::before {
    content: "";
    position: absolute;
    width: 8px;
    border-radius: 100%;
    top: -2px;
    left: 3px
}
.gg-globe-alt::after {
    width: 24px;
    height: 20px;
    border: 2px solid transparent;
    border-bottom: 2px solid;
    top: -11px;
    left: -5px
}
.gg-globe-alt{
  --ggs: 1.5;
}

.zoom-toggle{
  position: absolute;
  color:aliceblue;
  opacity: .7;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

@media only screen and (min-width: 771px) {
  .stream-embed {
    padding-bottom: 38%;
  }
}

.latest-release-nav h3{
  color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000;
    position:absolute;
    bottom: 6px;
  left: 6px;
}

.latest-release-nav a{
  display:block;
}

@media only screen and (min-width: 992px) {
  .latest-release-nav img {
    width:200px;
  }
}

@media only screen and (max-width: 991px) {
  .latest-release-nav img {
    width:150px;
  }
}

/* Commander page css */
.commanderlist ol li {
  list-style-type: none;
  counter-increment: item;
}

.commanderlist ol li:before {
  content: counter(item);
  margin-right: 10px;
  font-size: 100%;
  background-color: #E5BA81;
  color: black;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 3px;
}

.commanderlist span {
  font-size: 1.5em;
  font-weight: 700;
}

.commanderlist h3{
  font-size: 1.15em;
}

@media only screen and (max-width: 771px) {
  #commander4 h1 {
      font-size:xx-large;
  }
}

.ui-autocomplete{
  max-height:350px;
  overflow-x:hidden;
  overflow-y:scroll;
  z-index:1021;
}

/*Carddetails NEW css */

.scroll-prompt h4 {
  color: red;
  text-shadow: 2px 2px 4px #d1d1d1;
  white-space: nowrap;
  display: inline-block;
  position: fixed;
  right:0px!important;
  bottom: 0px!important;
  z-index:9999;
}

.btn-group .dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
}
