
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}
h1{
    font-size:1.8em;
    margin: 0 0 20px;

}
h2{
    font-size:1.6em;
}
h3{
    font-size:1.6em;
    font-weight:500;
}
a {
  color: #333;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

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

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

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

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  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;
}

.btn, .button {
    display: inline-block;
    padding: 3px 30px;
    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;
}

.btn:hover, .btn:focus, .btn.focus{
    color: #fff;
    
}

.btn a{
    text-decoration: none;
    color: #fff !important;
}

.btn a:hover, .btn a:focus{
    text-decoration: none;
    color: #ddd !important;
}

.btn .icon{
    margin-left: 10px;
    font-size: 16px !important;
}

.btn .icon.icon-chevron-with-circle-left{
    margin-left: 0 !important;
    margin-right: 10px !important;
}

.btn .icon.icon-text-document{
    margin-left: 0 !important;
    margin-right: 0 !important;
}



.product-grid .btn {
    position: relative;
    border: 2px solid transparent;
    padding: 3px 30px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

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

label {
    font-weight: 500;
}
/*-- Text input --*/

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

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

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
}

/*-- Select input --*/

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

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

.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 {
  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 #E4E7ED;
  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: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;
}


.custom-font{
    font-family: 'Montserrat', sans-serif;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    tecolor: #ffffff !important;
}

.glyphicon.glyphicon-chevron-up {
    color: #ffffff;
}

span.phone-icon {
    margin-left: 5px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

.breadcrumbs, .breadcrumbs-cart{
  padding: 15px 0px;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 15px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}


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

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

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1E1F29;
}

.hidden-mobile {
    display: block;
}

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

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

.header-links li a {
  color: #FFF !important;
}
.header-links li i {
  margin-right: 5px;
}

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

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15161D;
}
#header .header-ctn>div>a:hover{
 color:#fff!important;
 text-decoration: none;
}
.header-logo {
  float: left;
}

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

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

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
  margin-left:60px;
}

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

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

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

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

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

.header-ctn>div+div {
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FFF;
}

.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;
}

.header-ctn .menu-toggle {
  display: none;
}
/* - - - - - - - - - - DEFAULT OVERRIDES  - - - - - - - - - - */
.product-grid .short_desc {
    max-height: 0;
    min-height: 0;
}

.product-grid{
    border: 1px solid #E4E7ED;
    margin-bottom: 30px;
    padding-bottom: 20px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    background: #fff;
}

.product-grid .img {
    width: 100% !important;
    padding: 20px 0;
    margin: 0 auto 20px auto !important;
    height: 190px !important;
    line-height: 145px !important;
    background: #fff;
    overflow: hidden;
}

.margin-cart{
    margin-top: 10px;
}

.product-grid .title{
    margin: 0 10% 20px 10%;
    max-width: 80%;
}

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

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
}

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

.navbar-default {  background: #FFF;}
.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 {
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  -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;
}
.navbar-default .navbar-nav > li > a    {
    color:#000;
    background:#fff;
    background-image:none;
}
.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #00aaff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
li.dropdown.dropdown-large.open {
    background-color: #fff;
}
li.dropdown-header{
    padding: 5px 0px !important;
}
.dropdown-menu-large > li > ul > li > a:hover {
    text-decoration:underline;
    font-weight: 500;
}
.navbar-default .navbar-toggle {
    border-color: none;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #fff;
    text-decoration: none;
}

.navbar-toggle{
    float:left;
    margin-left: 15px;
}
/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }

  .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: 8px;
    color: #FFF;
  }

}

@media (max-width: 768px){
#responsive-nav .container {
    width:100%!important;
    padding:5px 0px!important;

}


}

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

#footer {
  background: #15161D;
  color: #B9BABC;
}

#footer-spearit {
    background: #f3eafc;
    color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #B9BABC;
}
.footer-links li a:hover {
  color: #B9BABC;
}

.footer-links li i {
  margin-right: 15px;
    width: 14px;
  text-align: center;
}

.fo

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

.socials i{
    font-size: 25px;
    margin: 10px;
}

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

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #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;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

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


#filters{
    margin-top: 50px;
}

#filters > div > h2{
    text-align: left;
    font-size: 15px;
}

#filters > div > h2 > a{
    color: #333;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
}


@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    max-width: 100%;
  }

    form [class*='col-xs'].text-right {
        text-align: left !important;
    }

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

  .filter-options .title h2{
      font-size: 14px;
  }

    #header .col-xs-6 {
        width: 50% !important;
    }
}


/*=========================================================
	04 -> PAges
===========================================================*/

/*----------------------------*\
	index
\*----------------------------*/

.product-grid .bundlestitle {
    max-height: 216px;
    min-height: 216px;
    overflow: hidden;
    margin: 0 ;
}

/*----------------------------*\
	products
\*----------------------------*/

.product-grid h2{
    color: #2B2D42;
    font-weight: 600;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
    padding:0px !important;
}

.product-grid p{
    color: #2B2D42;
    font-weight: 600;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
    padding:0px !important;
    font-size: 17px;
}

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

.product-detail h2{
    font-weight: 600;
}

.tab-content {
    padding:0px 25px;
}
h4.panel-title a{
    font-weight: 700;
}

/*----------------------------*\
	login / cart
\*----------------------------*/
.grey-box {
    background:#fff !important;
    margin-bottom:20px;
    border:0px;
}
.grey-box h2.custom-color.title-color {
    color:#000!important;
}
.btn.forgot-password a{
    color:#fff !important;
    font-weight:700;
}
.btn.forgot-password {
    margin-left:10px;
    text-transform: uppercase;
}
.cart-table ul{
    list-style: disc;
    margin:10px 0px;
}
.cart-table .icon{
    color:#666;
}

.bundle-image {
    max-width: 200px;
    max-height: 300px;
    /*object-fit: contain;*/
}

 /* Sharp css */
 .login  .sharp-form label {
  float: left;
  width: 100%;
  height: auto;
  line-height: 50px;
  font-size: 20px;
  background: white;
  margin: 0 5px 0 0;
  border-right: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  text-align: left;
  font-size: 16px;
  color: #333;
  border: none;
}


.d-flex{
  display: flex;
}

.breadcrumb{
  margin-bottom: 0;
  background-color: #fff;
}

.breadcrumbs li.current-page-breadcrumb a {
  color: #666 !important;
  pointer-events: none;
}

.breadcrumbs li a{
  text-transform: capitalize;
}
a.cart-btn-wrp::after , #checkoutLink::after  {
  display: block;
  clear: both;
  content: "";
}

.checkout-btn-wrp .btn{
  margin: 5px;
}

a#skip-to-content {
  opacity: 0;
}

a#skip-to-content:focus , a#skip-to-content:focus-within , a#skip-to-content:focus-visible  {
  opacity: 1;
}

.cart-table .icon  , .checkout-cart .icon , .products-top .icon-list , .icon-grid , .icon-text-document{
  appearance: none;
  background: transparent;
  border: none;
}

a.cart-btn-wrp .icon  ,.btn .icon-credit-card {
  background: transparent;
}

body label.seprate-label{
  float: left;
  width: auto;
  height: auto;
  line-height: initial;
  font-size: 13px;
  background: white;
  margin: 0 0 9px;
  border-right: none;
  color: #333;
}

.product-list .title .h2 {
    font-weight: 300;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-top: 0;
}

.account_heading_tabs li .h3{
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
