
/***** CSS RESET *****/
* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

html {
  margin: 0;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

a {
  transition: all 0.2s;
}

  a:active {
    outline: none;
  }

  a:hover {
    color: #FFC350;
    text-decoration: none;
  }

  a img {
    border: none;
  }

img {
  border: none;
  max-width: 100%;
}

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border-radius: 5px;
  border: solid 1px #ddd;
  padding: 10px;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  padding: 10px 15px;
  border: none;
  font-family: 'Lato';
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
  display: none !important;
}

/***** GLOBAL STYLES *****/
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  font: normal 16px Lato, sans-serif;
  font-weight: normal;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #8F4624;
}

a {
  color: inherit;
  cursor: pointer;
}

  a img {
    opacity: 0.99; /*firefox scale bug fix*/
  }

table {
  width: 100%;
  border-collapse: collapse;
}

/***** PAGES & BLOCKS *****/
.center-2, .side-2 {
  margin: 0 0 50px;
}

.side-2 {
  border: 1px solid #E0E1E6;
  border-radius: 3px;
  box-shadow: 0px 5px 10px rgba(134, 134, 134, 0.3);
  border-radius: 5px;
}

.page-body {
  margin: 0 0 70px;
}

.page-title {
  border-bottom: solid 1px #A54F08;
  margin-bottom: 1%;
}

  .page-title h1 {
    font-weight: bold;
    font-size: 24px;
    padding: 20px 0;
    text-align: center;
  }

.product-details-page .page-title h1 {
  padding: 10px 0;
}

.html-category-page .page-title h1,
.html-category-page .current-item {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 450px;
  padding: 0;
}

.html-category-page .current-item {
  max-width: 250px;
  display: flex;
}

.html-product-details-page .page-title h1,
.html-category-page .page-title h1 {
  text-align: left;
}

.html-category-page .page-title {
  border-bottom: 0;
}

.center-2 .page-title {
  padding-top: 0;
}

.topic-block-title h2 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-weight: 800;
  font-size: 20px;
  border-bottom: 1px solid #BFBFBF;
}

.topic-block-body {
  margin-top: 15px;
}

.block {
  border: 1px solid #eeeded;
  margin: 7px;
  background: #fff;
  border-radius: 5px;
}

  .block .title {
    color: #A54F08;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 20px 0 !important;
  }

    .block .title i,
    .filter-title i {
      color: #A54F08;
      font-size: 14px;
    }

  .block:not(.active) .title i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .block .list li,
  .block .listbox > li {
    font-weight: 100;
    font-size: 16px;
    font-family: 'Lato';
  }

    .block .list li:not(:last-child),
    .block .listbox > li:not(:last-child) {
      margin-bottom: 20px;
    }

    .block .list li.active.last {
      font-weight: 600;
      color: #C66414;
    }

    .block .list li .sublist {
      margin: 7px 0 0 15px;
    }

  .block .view-all {
    padding-top: 10px;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
  }

/***** GLOBAL *****/

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.list-inline > li {
  display: inline-block;
}

  .list-inline > li:not(:last-child) {
    margin-right: 10px;
  }

.dropdown-menu {
  position: relative;
}

  .dropdown-menu .submenu {
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0.1;
    -webkit-transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    -webkit-transform: translateY(-10px) scaleY(0.5);
    transform: translateY(-10px) scaleY(0.5);
    -webkit-transform-origin: top;
    transform-origin: top;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 120px;
    background: #fff;
    box-shadow: 0px 2px 10px #878D9E;
    border-radius: 5px;
    text-transform: capitalize;
    z-index: 5;
  }

  .dropdown-menu > li {
    position: relative;
    display: inline-block;
  }

    .dropdown-menu > li > a {
      padding-bottom: 10px;
    }

    .dropdown-menu > li:hover > .submenu {
      clip: auto;
      opacity: 1;
      -webkit-transform: translateY(0) scaleY(1);
      transform: translateY(0) scaleY(1);
    }

    .dropdown-menu > li > .submenu::before {
      content: "";
      position: absolute;
      top: -8px;
      right: 7px;
      font-size: 12px;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #fff;
      -webkit-filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
      filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
    }

  .dropdown-menu .submenu .togle-icon {
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
    right: 0;
    overflow: hidden;
  }

    .dropdown-menu .submenu .togle-icon:after {
      content: "";
      position: absolute;
      width: 30px;
      height: 30px;
      background: #fff;
      transform: rotate(45deg);
      top: 12px;
      right: 1px;
      box-shadow: -1px -1px 10px -2px #878D9E;
    }

  .dropdown-menu .submenu > li:not(.togle-icon) > a {
    display: block;
    padding: 7px 10px;
    color: #A54F08;
  }

.block-gradient,
.search-input,
.news-list-page .news-item,
.news-item-page,
.blog-page .blog-posts .post,
.blogpost-page,
.block-gradient-checkout,
.product-reviews-page .page-body {
  padding: 30px 35px 0;
  color: #8F4624;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.account-page.address-edit-page {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.block-gradient.dark {
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

  .block-gradient.dark.block-account-navigation {
    background: rgb(197,88,37);
    background: linear-gradient(180deg, rgba(197,88,37,1) 0%, rgba(143,70,36,1) 100%);
    box-shadow: none;
  }

.block-gradient .title {
  margin-bottom: 20px;
  padding: 0 0 15px;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 1px solid #A54F08;
}

  .block-gradient .title.text-center {
    padding-bottom: 0;
    border: 0;
  }

.block-gradient h1, .block-gradient h2, .block-gradient h3, .block-gradient h4, .block-gradient h5, .block-gradient h6 {
  color: #8F4624;
  font-size: 18px
}

.block-gradient .title i {
  margin-right: 5px;
  font-size: 18px;
}

.block-gradient .buttons,
.block-gradient .block-footer {
  margin: 35px -35px 0;
  padding: 30px 20px;
  background: #fff;
  color: #223668;
  border-radius: 50px 50px 0px 0px;
}

  .block-gradient .block-footer ul li,
  .block-gradient .block-footer ul li a {
    color: #3f2115;
  }

    .block-gradient .block-footer ul li.active a {
      color: #C66414;
    }

  .block-gradient .block-gradient-list > li:not(:last-child),
  .block-gradient .block-footer ul > li:not(:last-child) {
    margin-bottom: 10px;
  }

  .block-gradient .block-footer ul > li.active {
    color: #A54F08;
  }

.html-product-details-page .breadcrumb {
  margin-block: 10px;
}

.html-category-page .breadcrumb {
  text-align: right;
}

.breadcrumb ul > li {
  display: inline-block;
  font-weight: 600;
}

  .breadcrumb ul > li .delimiter {
    display: inline-block;
    margin: 0 5px 0 3px;
  }

  .breadcrumb ul > li strong {
    color: #A54F08;
    font-weight: normal;
  }

.ocarousel.item-grid .owl-nav button.owl-prev,
.ocarousel.item-grid .owl-nav button.owl-next {
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #A54F08;
  font-size: 12px;
  border-color: #A54F08;
  border-radius: 4px;
  line-height: 35px;
}

  .ocarousel.item-grid .owl-nav button.owl-prev:hover,
  .ocarousel.item-grid .owl-nav button.owl-prev:focus,
  .ocarousel.item-grid .owl-nav button.owl-next:hover,
  .ocarousel.item-grid .owl-nav button.owl-next:focus {
    background: #A54F08;
    color: #fff;
    outline-color: #A54F08;
  }

.pager {
  margin-top: 30px;
  text-align: center;
}

  .pager ul > li {
    display: inline-block;
  }

    .pager ul > li:not(:last-child) {
      margin-right: 10px;
    }

    .pager ul > li > a,
    .pager ul > li > span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 50px;
      height: 50px;
      background: #fff;
      border: 1px solid #C4C4C4;
      border-radius: 100px;
    }

    .pager ul > li.current-page > a,
    .pager ul > li.current-page > span {
      background: #A54F08;
      color: #fff;
      border-color: #A54F08;
    }

    .pager ul > li.previous-page > a,
    .pager ul > li.next-page > a {
      text-transform: uppercase;
      border: 0;
    }

.title-container {
  padding: 45px 0;
}

  .title-container .title {
    color: #A54F08;
    text-align: center;
  }

    .title-container .title h2 {
      margin: 0 12px;
      color: #A54F08;
      font-size: 36px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .title-container .title i {
      color: #A54F08;
      font-size: 27px;
      display: none;
    }

  .title-container .subtitle {
    padding-top: 3px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
  }

    .title-container .subtitle a {
      text-decoration: underline;
    }
/***** TABLE *****/

.table-wrapper {
  margin: 0 0 40px;
  padding: 0 0 1px;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: inherit;
  border-collapse: collapse;
}

  .table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }

  .table th {
    text-align: inherit;
  }

  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,.05);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

  .table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
  }

  .table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
  }

/***** FORMS *****/
.inputs {
  position: relative;
  margin-bottom: 1rem;
}

  .inputs label {
    display: inline-block;
    margin-bottom: .7rem;
    font-size: 16px;
  }

.validation-summary-errors {
  padding: 0 0 10px;
  color: #E50000;
}

.inputs .required {
  position: absolute;
  top: 10px;
  right: 8px;
  color: #E50000;
}

.inputs .field-validation-error {
  display: block;
  padding: 3px 0 0;
  color: #E50000;
  font-size: 14px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

textarea,
textarea.form-control {
  overflow: hidden;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

  .input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
  }

    .input-group > .select:not(:last-child),
    .input-group > .form-control:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

.input-group-append, .input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-append {
  margin-left: -1px;
}

input[type="text"].default::-webkit-input-placeholder,
input[type="text"].default::placeholder,
input[type="email"].default::-webkit-input-placeholder,
input[type="email"].default::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default::placeholder,
input[type="password"].default::-webkit-input-placeholder,
input[type="password"].default::placeholder,
textarea.default::-webkit-input-placeholder,
textarea.default::placeholder {
  color: #223668;
}

input[type="text"]:focus::-webkit-input-placeholder,
input[type="text"]:focus::placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
input[type="password"]:focus::placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::placeholder,
input[type="text"].default:focus::-webkit-input-placeholder,
input[type="text"].default:focus::placeholder,
input[type="email"].default:focus::-webkit-input-placeholder,
input[type="email"].default:focus::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default:focus::placeholder,
input[type="password"].default:focus::-webkit-input-placeholder,
input[type="password"].default:focus::placeholder,
textarea.default:focus::-webkit-input-placeholder,
textarea.default:focus::placeholder {
  color: transparent;
}

.select,
.select-wrapper select,
.overview select {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 7px 30px 7px 15px;
  vertical-align: middle;
  background: #fff url(../images/arrow-down-light.svg) no-repeat right .75rem center/9px 9px;
  color: #A54F08;
  font-size: 14px;
  border: 1px solid #F4D9C3;
  border-radius: 100px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

  .select.w-auto,
  .select-wrapper.w-auto select {
    width: auto;
  }

.inputs .select,
.inputs.select-wrapper select,
select {
  padding: 7px 30px 7px 15px;
  background: #fff transparent url(../images/arrow-down-lighter.svg) no-repeat right .75rem center/9px 9px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 3px;
}

  .inputs .select option,
  .inputs.select-wrapper select option {
    color: #223668;
  }

.select.dark,
.select-wrapper.dark select {
  color: #223668;
  border: 1px solid #223668;
}

.date-picker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

  .date-picker-wrapper select:not(:last-child) {
    margin-right: 15px;
  }

.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .checkbox [type="checkbox"]:not(:checked),
  .checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
  }

  .checkbox [type="checkbox"] ~ label:before,
  .checkbox [type="checkbox"] ~ label:after {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
  }

  .checkbox [type="checkbox"]:not(:checked) ~ label,
  .checkbox [type="checkbox"]:checked ~ label {
    position: relative;
    min-height: 23px;
    margin-right: 10px;
    margin-bottom: 0;
    padding-left: 2.3em;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
  }

    .checkbox [type="checkbox"]:not(:checked) ~ label:before,
    .checkbox [type="checkbox"]:checked ~ label:before {
      content: '';
      top: 0;
      margin: 0;
      border: 1px solid #A54F08;
      background: transparent;
      border-radius: 3px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    }

    .checkbox [type="checkbox"]:checked ~ label:before {
      background: transparent;
    }

    .checkbox [type="checkbox"]:not(:checked) ~ label:after,
    .checkbox [type="checkbox"]:checked ~ label:after {
      content: "\e925";
      top: 0;
      margin: 0;
      border: 0;
      font-size: 15px;
      font-weight: bold;
      line-height: 0.8;
      color: #A54F08;
      transition: all .2s;
      font-family: 'icomoon' !important;
    }

.order-summary-content .cart-footer .totals .checkbox [type="checkbox"]:checked ~ label:after {
  color: #fc950f;
}

.order-summary-content .cart-footer .totals .checkbox [type="checkbox"]:not(:checked) ~ label:before,
.order-summary-content .cart-footer .totals .checkbox [type="checkbox"]:checked ~ label:before {
  border: 1px solid #fc950f;
}

.checkbox [type="checkbox"]:not(:checked) ~ label:after {
  opacity: 0;
  transform: scale(0);
}

.checkbox [type="checkbox"]:checked ~ label:after {
  background: transparent;
  opacity: 1;
  transform: scale(1);
}

.checkbox [type="checkbox"]:disabled:not(:checked) ~ label:before,
.checkbox [type="checkbox"]:disabled:checked ~ label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #d9d9d9;
}

.checkbox [type="checkbox"]:disabled:checked ~ label:after {
  color: #999;
}

.checkbox [type="checkbox"]:disabled ~ label {
  color: #aaa;
}

.checkbox.dark [type="checkbox"]:not(:checked) ~ label:before,
.checkbox.dark [type="checkbox"]:checked ~ label:before {
  border: 1px solid #223668;
}

.checkbox.dark [type="checkbox"]:not(:checked) ~ label:after,
.checkbox.dark [type="checkbox"]:checked ~ label:after {
  color: #223668;
}

.checkbox.no-label [type="checkbox"]:not(:checked) ~ label,
.checkbox.no-label [type="checkbox"]:checked ~ label {
  display: block;
  text-indent: -9000px;
}

  .checkbox.no-label [type="checkbox"]:not(:checked) ~ label:after,
  .checkbox.no-label [type="checkbox"]:checked ~ label:after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .checkbox.no-label [type="checkbox"]:checked ~ label:after {
    text-indent: initial;
  }

.radio input[type="radio"] {
  display: none;
}

  .radio input[type="radio"] + label {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 23px;
    margin-right: 15px;
    margin-bottom: 0;
    padding-left: 2.2em;
    font-size: 14px;
    cursor: pointer;
    line-height: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

    .radio input[type="radio"] + label:before,
    .radio input[type="radio"] + label:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 23px;
      height: 23px;
      margin: 0;
      text-align: center;
      color: #fff;
      border: solid 1px #ddd;
      border-radius: 50%;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
    }

    .radio input[type="radio"] + label:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.2em #fff, inset 0 0 0 1em #fff;
    }

    .radio input[type="radio"] + label:hover:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.3em #fff, inset 0 0 0 1em #dfe6e9;
    }

  .radio input[type="radio"]:checked + label:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.22em #fff, inset 0 0 0 1em #A54F08;
  }

.input-group-quantity {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  z-index: 0;
}

  .input-group-quantity .button-container {
    position: absolute;
    top: 50%;
    right: 0;
    overflow: hidden;
    background: #DADAE4;
    border: 1px solid #DADAE4;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .input-group-quantity input {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding-left: 42px;
    color: #8F8E8E;
    font-size: 15px;
    border-color: #DADAE4;
    border-radius: 0;
  }

  .input-group-quantity .button-container button {
    display: block;
    width: 20px;
    height: 18px;
    margin-bottom: 1px;
    padding: 0;
    background: #EBEBF0 !important;
    color: #8E8E99;
    font-size: 18px;
    line-height: 18px;
    border: none;
    cursor: pointer;
    outline: 0;
  }

    .input-group-quantity .button-container button:last-child {
      margin-bottom: 0;
    }

/***** BUTTONS *****/
.button-1 {
  padding: 12px 35px;
  background: #A54F08;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
}

  .button-1:hover,
  .button-1:focus {
    color: #fff;
    opacity: 0.8;
    box-shadow: none;
    outline: 0;
  }

.button-2 {
  padding: 11px 35px;
  background: transparent;
  color: #A54F08;
  font-size: 18px;
  border: 1px solid #A54F08;
  border-radius: 5px;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.html-wishlist-page .button-2 {
  border: 1px solid #A54F08 !important;
}

.button-2.btn-sm {
  padding: 6px 25px;
  font-size: 15px;
}

.button-2:hover,
.button-2:focus {
  background: #A54F08;
  color: #fff;
  box-shadow: none;
  outline: 0;
}

/***** CUSTOM SCROLLBAR *****/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

  .scroll-wrapper.scb-xs.scb-outer {
    margin: 0 -5px 0 0;
    padding: 0 5px 0 0 !important;
  }

  .scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
  }

    .scroll-wrapper > .scroll-content::-webkit-scrollbar {
      height: 0;
      width: 0;
    }

.scroll-element {
  display: none;
}

  .scroll-element, .scroll-element div {
    box-sizing: content-box;
  }

    .scroll-element.scroll-x.scroll-scrollx_visible,
    .scroll-element.scroll-y.scroll-scrolly_visible {
      display: block;
    }

    .scroll-element .scroll-bar,
    .scroll-element .scroll-arrow {
      cursor: default;
    }

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

  .scroll-textarea > .scroll-content {
    overflow: hidden !important;
  }

    .scroll-textarea > .scroll-content > textarea {
      border: none !important;
      box-sizing: border-box;
      height: 100% !important;
      margin: 0;
      max-height: none !important;
      max-width: none !important;
      overflow: scroll !important;
      outline: none;
      padding: 2px;
      position: relative !important;
      top: 0;
      width: 100% !important;
    }

      .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
        height: 0;
        width: 0;
      }

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

  .scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }

  .scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
  }

.scrollbar-inner.scb-lg > .scroll-element.scroll-x {
  height: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-x {
  height: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-x {
  height: 3px;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 6px;
}

.scrollbar-inner.scb-lg > .scroll-element.scroll-y {
  width: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-y {
  width: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-y {
  width: 3px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  opacity: 0.8;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  width: 3px;
  left: 1.5px;
  background-color: #D6D8DE;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #223668;
  transition: background-color 0.3s;
}

.scrollbar-inner:hover > .scroll-element .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/***** HEADER *****/
.admin-header-links {
  padding: 5px;
  background-color: #eee;
  text-align: center;
}

.header-banner {
  position: relative;
  overflow: hidden;
  height: 0;
  background: #ffc350;
  color: #8F4624;
}

.header-banner__text {
  width: calc(100% - 15px);
  text-align: center;
}

.header-banner__icon i {
  cursor: pointer;
}

.header-upper {
  min-height: 40px;
  background: #FFF2E8;
  color: #8F4624;
}

.header-upper__middle {
  text-align: center;
}

.header-upper__right {
  text-align: right;
}

.header-logo img {
  max-width: 250px;
}

.header-logo-cat .mm-navbar-nav {
  display: none;
}

.header-logo-cat .dropdown-menu-list > a {
  font-size: 0;
}

.header-logo-cat .dropdown-menu-list i {
  margin-right: 5px;
  font-size: 22px;
}

.search-box__wrapper {
  position: relative;
}

input[type="text"].search-box-text {
  width: 100%;
  height: 50px;
  padding: 0 45px 0 20px;
  background: #fff;
  color: #8F4624;
  font-size: 18px;
  font-weight: 300;
  outline: 0;
  transition: border-color .5s;
  border: 1px solid #8F4624;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.search-box-button {
  position: absolute;
  top: 7px;
  right: 16px;
  bottom: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  background: #8F4624;
  border-radius: 50%;
  font-family: 'Lato';
}

.ico-wishlist .wishlist-qty {
  position: relative;
  top: -11px;
  left: -3px;
  font-size: 18px;
}

.ico-cart {
  position: relative;
  bottom: -3px;
}

  .ico-cart .cart-qty {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 24px;
    height: 24px;
    padding: 2px;
    background: #A54F08;
    color: #fff;
    font-size: 10px;
    border: 2px solid #fff;
    border-radius: 100px;
  }

.header-links .list-inline > li:not(:last-child) {
  margin-right: 12px;
}

.header-links .list-inline > li:first-child {
  margin-right: 8px;
}

.header-links [class*="icon-"] {
  color: #A54F08;
  font-size: 33px;
}

.header-links [class*="icon-cart"] {
  font-size: 40px;
}

.header-menu .other-links > li {
  margin-right: 15px;
  text-transform: uppercase;
}

  .header-menu .other-links > li:last-child {
    margin-right: 0;
  }

.header-menu .other-links .dropdown-menu .submenu {
  min-width: 150px;
  color: #223668;
}

.header-lower.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  animation: smoothScroll .5s forwards;
  z-index: 10000;
}

  .header-lower.sticky .header-logo-cat .mm-navbar-nav {
    display: block;
  }

/*********** FOOTER ***********/
/*.newsletter .title,
.newsletter .newsletter-subscribe {
  float: left !important;
*/ 

.newsletter-subscribe {
  width: 100%;
}

.newsletter-email input[type="email"] {
  float: left;
  width: 85% !important;
  height: 36px;
  border: solid 1px #fff;
  background: #fff;
  padding: 0 10px;
  border-radius: 50px 0 0 50px;
}

.footer {
  background-color: #753306;
  text-align: center;
}

.footer-upper {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  padding: 40px 0;
  font-size: 0;
}

.footer-block {
  width: 95%;
  margin: 1px auto;
  text-align: left;
  font-size: 14px; /*reset zeroing*/
}

  .footer-block .title {
    margin: 0 0 1px;
    background: #8F4624 url('../images/toggle-white.png') right center no-repeat;
    padding: 10px 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }

  .footer-block .list {
    color: #fff;
    font-size: 16px;
  }

  .footer-block .title strong {
    text-transform: uppercase;
    font-weight: 100;
  }

  .footer-block .list {
    display: none;
    margin: 0 0 20px;
    background-color: #fff;
    padding: 10px 15px;
  }

    .footer-block .list a {
      display: block;
      line-height: 20px;
    }

    .footer-block .list li {
      padding: 10px 15px;
    }

    .footer-block .list a:hover {
      color: #ffffff;
    }

.follow-us {
  margin: 30px auto 0;
  text-align: center;
}

  .follow-us .title {
    margin: 0 0 10px;
    background: none;
    color: #444;
    cursor: auto;
  }

  .follow-us .social ul {
    margin: 0 0 30px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px;
    font-size: 0;
  }

  .follow-us .social li {
    display: inline-block;
    margin: 0 5px;
  }

  .follow-us .social a {
    display: block;
    width: 38px;
    height: 38px;
    background: url('../images/social-sprite.png') no-repeat;
    font-size: 0;
  }

  .follow-us .social .facebook a {
    background-position: 0 0;
  }

  .follow-us .social .twitter a {
    background-position: -38px 0;
  }

  .follow-us .social .rss a {
    background-position: -76px 0;
  }

  .follow-us .social .youtube a {
    background-position: -114px 0;
  }

  .follow-us .social .google-plus a {
    background-position: -152px 0;
  }

.newsletter-email {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}

.newsletter-subscribe-button span {
  float: left;
  height: 36px;
  width: 36px;
  border-radius: 100%;
  background-color: #A54F08;
  text-align: center;
  color: #fff;
  display: block;
  border: solid 2px #fff;
  line-height: 30px;
  cursor: pointer;
}

.newsletter-subscribe-button {
  border: 0;
  background: #fff;
  border-radius: 0 50px 50px 0;
}

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
}

.newsletter {
  background: #682C02;
  padding: 25px;
  color: #fff;
}
/*.newsletter-validation .please-wait {
	display: none !important; 
}*/
.footer-lower {
  margin: auto;
  overflow: hidden;
  padding: 25px 0;
  font-size: 12px;
  text-align: left;
}

.footer-bottom-container {
  background: #753306;
  color: #fff;
}

.footer-logo-wrapper {
  background: #fff;
}

.footer-disclaimer,
.footer-powered-by a {
  color: #fff !important;
  font-size: 16px;
}

.networks li a {
  font-size: 28px;
  color: #fff;
}

.footer-tax-shipping a {
  font-weight: bold;
  color: #fff;
}

.footer-logo a {
  display: inline !important;
}

.footer-tax-shipping a:hover {
  text-decoration: underline;
}

.footer-powered-by {
  margin: 8px 0 0;
}

  .footer-powered-by a {
    font-weight: bold;
    color: #4ab2f1;
  }

    .footer-powered-by a:hover {
      text-decoration: underline;
    }

.theme-selector {
  margin: 10px 0 0;
}

  .theme-selector select {
    width: 170px;
  }
/*********** END-FOOTER ***********/

.product-tab-title {
  text-transform: uppercase;
}

.ocarousel-grid .title h2,
.blog-news-area h2,
.footer .title,
.product-tab-title,
.product-details-page .product-grid .title strong,
.mm-nav-item:not(.dropdown-menu-list) > .mm-nav-link,
.block .title,
.side-2 .justify-content-between strong {
  font-family: 'Fjalla One';
  font-weight: 100 !important;
  letter-spacing: 1px;
}

.product-tab-body.ui-tabs .ui-tabs-nav li,
.button-1 {
  font-family: 'Lato';
}

.header-menu {
  padding: 2px 8px 4px 8px;
  font-family: 'Fjalla One' !important;
}

  .header-menu a {
    font-weight: normal !important;
    letter-spacing: 1px;
  }

.quick-view-modal button.mfp-close {
  top: 0px !important;
  right: 0px !important;
  background: #C66414;
  opacity: 1;
  color: #fff !important;
}

.category-page .category-banner .owl-nav button.owl-prev,
.category-page .category-banner .owl-nav button.owl-next {
  border: 1px solid #8f4624;
  padding: 5px !important;
  background-color: #8f4624;
  font-size: 15px;
  color: #ffc350;
}
/***** PRODUCT BOX *****/
.item-box {
  width: calc(25% - 20px);
  float: left;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.product-item .picture > a,
.ocarousel-item > a{
  position: relative;
  display: block;
}

  .product-item .picture > a::before,
  .ocarousel-item > a::before {
    content: "";
    padding-top: 100%;
    display: block;
  }

  .product-item .picture > a img,
  .manufacturer-carousel .ocarousel-item > a img,
  .category-carousel .ocarousel-item > a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%,-50%);
  }
  
  .item-box .picture img {
    max-width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .homepage-add-3column .slider-picture img,
  .homepage-add-2column .slider-picture img,
  .item-box .picture img,
  .blog-news-area .single-blog img,
  .blog-news-area .news-item img,
  .category-carousel .ocarousel-item img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .3s ease-in-out;
  }

.product-item:hover img,
.homepage-add-3column .slider-picture:hover img,
.homepage-add-2column .slider-picture:hover img,
.blog-news-area .single-blog:hover img,
.blog-news-area .news-item:hover img{
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.category-carousel .ocarousel-item:hover a img {
  -webkit-transform: scale(1.06) translate(-50%,-50%);
  transform: scale(1.06) translate(-50%,-50%);
}

.product-carousel .item-box:hover .product-item,
.html-recently-added-products-page .item-box:hover .product-item,
.html-category-page .item-box:hover .product-item {
  margin-top: -5px;
}

.product-list .item-box:hover .product-item {
  margin-top: 0;
}

.item-box .product-item {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  box-shadow: none;
  transition: 0.3s;
}

  .item-box .product-item:hover {
    box-shadow: 0px 0px 10px rgba(131, 140, 153, 0.2);
  }
/*.item-box .buttons-hover {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}*/
.product-list .item-box .details {
  text-align: center;
  padding-left: 25px;
  padding-top: 10%;
}

.item-box .buttons-hover {
  position: absolute;
  top: 55%;
  right: 0;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
  text-align: center;
  left: 0;
}

.item-box .product-item:hover .buttons-hover,
.product-list .item-box .buttons-hover {
  opacity: 1;
  transition: 0.5s;
}

.item-box .buttons-hover button {
  min-height: initial;
  font-size: 0;
  background: #C66414;
  color: #fff;
  border: none;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 3px;
}
/*  .item-box .buttons-hover button {
    min-height: initial;
    font-size: 0;
    background: transparent;
    color: #A54F08;
    border: none;
    padding: 0;
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
  }*/
.item-box .buttons-hover [class*="icon-"] {
  font-size: 15px;
}

.item-box .details {
  padding: 15px 0 0 0;
}

  .item-box .details .buttons {
    background: #C66414;
    opacity: 0;
    border-radius: 0 0 5px 5px;
  }

.item-box:hover .buttons,
.product-list .item-box .buttons {
  opacity: 1;
}

.item-box .details .buttons .button-2 {
  padding: 5px 30px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.item-box .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  padding: 0 20px;
}

  .item-box .product-title a,
  .product-list .item-box .product-title a,
  .sub-category-item .title,
  .manufacturer-item .title,
  .single-blog a.post-title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #753306;
  }

.product-list .item-box .product-title a,
.sub-category-item .title,
.manufacturer-item .title {
  max-width: 225px;
  font-weight: 100 !important;
}

.item-box .prices {
  margin-bottom: 10px;
  color: #C66414;
  font-size: 16px;
}

  .item-box .prices .old-price {
    margin-right: 3px;
    color: #AFB7BA;
    text-decoration: line-through;
  }

.item-box .product-rating-box {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 10px;
}

.item-box .rating {
  background: url('../images/rating1.png') repeat-x;
  width: 95px;
  height: 14px;
}

  .item-box .rating div {
    background: url('../images/rating2.png') repeat-x;
    height: 14px;
  }

.item-box .product-box-add-to-cart-button {
  padding: 12px 5px;
  background: transparent;
  color: #A54F08;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

  .item-box .product-box-add-to-cart-button i {
    padding-right: 7px;
    font-size: 23px;
  }

.product-list .item-grid .item-box,
.center-2 .product-list .item-grid .item-box {
  width: 100%;
  float: none;
}

.product-list .item-box .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.product-list .item-box .picture {
  position: relative;
}

  .product-list .item-box .picture img {
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
  }

.product-list .buttons-hover {
  margin-top: 35% !important;
}
/***** CATAGOREY PAGE *****/
.product-spec-filter .filter-title {
  font-weight: normal;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 5px 5px 0 0;
}

.filtered-wrapper {
  font-size: 14px;
  border-bottom: 1px solid #E5E5E5;
}

.filtered-items ul > li:not(:last-child) {
  margin-bottom: 7px;
}

.filtered-items .filtered-attribute {
  font-weight: 800;
}

.filtered-wrapper .remove-filter a {
  font-weight: 600;
  font-size: 12px;
  background: #C66414;
  padding: 5px;
  color: #fff;
  text-align: center;
  margin: 15px 0;
  border-radius: 50px;
  display: block;
}

.product-selectors {
  border: 1px solid #F4D9C3;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(134, 134, 134, 0.2);
  background: #fff;
}

.product-page-size,
.product-sorting {
  font-size: 14px;
  text-transform: uppercase;
}

  .product-page-size.select-wrapper select,
  .product-sorting.select-wrapper select {
    height: 32px;
    border-radius: 3px;
  }

.product-viewmode {
  font-size: 22px;
}

.viewmode-icon {
  color: #F4D9C3;
}

  .viewmode-icon.selected {
    color: #A54F08;
  }

.sub-category-item, .manufacturer-item {
  position: relative;
  -webkit-box-shadow: 0 3px 7px #e9dfec;
  -moz-box-shadow: 0 3px 7px #e9dfec;
  box-shadow: 0 3px 7px #e9dfec;
}

  .sub-category-item .title,
  .manufacturer-item .title {
    position: absolute;
    bottom: 0;
    left: 50%;
    min-width: 100%;
    margin: 0;
    padding: 5px 30px;
    background: #A54F08;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    -webkit-box-shadow: 1px 1px 0 0 rgba(0,0,0,.1);
    box-shadow: 1px 1px 0 0 rgba(0,0,0,.1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    pointer-events: none;
    border-radius: 0 0 5px 5px;
    z-index: 1;
  }

  .sub-category-item .picture a, .manufacturer-item .picture a {
    display: block;
  }

  .sub-category-item .picture img, .manufacturer-item .picture img {
    border-radius: 3px;
  }

.category-banner img {
  width: 100%;
}

.category-page .item-grid,
.search-page .item-grid,
.manufacturer-page .item-grid,
.vendor-page .item-grid,
.manufacturer-grid .item-grid,
.manufacturer-list-page .item-grid,
.recently-viewed-products-page .item-grid,
.recently-added-products-page .item-grid,
.also-purchased-products-grid .item-grid,
.related-products-grid .item-grid {
  display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

/***** PRODUCT DETAILS PAGE *****/
.tooltip-container {
  display: none;
}

.html-product-details-page .side-2 {
  margin-top: 48px;
}

.attributes .option-list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}

  .attributes .option-list li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

.attributes dl {
  margin: 0;
}

.attributes dd {
  margin-left: 0;
}

.attributes .attribute-squares input {
  position: absolute;
  opacity: 0;
}

.attributes .attribute-squares label {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.attribute-square {
  width: 20px;
  display: inline-block;
}

.attributes .attribute-squares .attribute-square-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.attributes .attribute-squares li .attribute-square-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "icomoon";
  font-size: 18px;
  font-style: normal;
  color: #fff;
  transition: all 300ms;
}

.attributes .attribute-squares li.selected-value .attribute-square-container::after {
  content: "\e925";
}

.attributes .attribute-squares .attribute-square {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}

.attributes .option-list-square input {
  position: absolute;
  opacity: 0;
}

.attributes .option-list-square label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 39px;
  height: 39px;
  padding: 5px;
  background: #FFFFFF;
  color: #A9A9AE;
  font-size: 16px;
  border: 1px solid #A9A9AE;
  border-radius: 5px;
  cursor: pointer;
  transition: all 300ms;
}

.attributes .option-list-square input[type="radio"]:checked ~ label,
.attributes .option-list-square input[type="checkbox"]:checked ~ label {
  color: #A54F08;
  border-color: #A54F08;
}

.product-essential {
  border: 1px solid #E0E1E6;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  border-radius: 5px;
  margin: 25px 0;
  padding: 15px;
}

  .product-essential .gallery, .product-essential .picture {
    position: relative;
  }

    .product-essential .gallery img {
      width: 100%;
    }

  .product-essential .picture-thumbs {
    margin-top: 10px;
  }

    .product-essential .picture-thumbs .thumb-item:not(:last-child) {
      margin-right: 10px;
    }

    .product-essential .picture-thumbs .thumb-item {
      cursor: pointer;
    }

      .product-essential .picture-thumbs .thumb-item img {
        border-radius: 3px;
      }

  .product-essential .short-description,
  .product-essential .product-reviews-overview,
  .product-essential .manufacturers,
  .product-essential .product-vendor,
  .product-essential .sku,
  .product-essential .prices,
  .product-essential .add-to-cart,
  .product-essential .product-estimate-shipping,
  .product-essential .availability,
  .product-essential .attributes dd,
  .product-essential .attribute-item .attribute-data {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .product-essential .attributes dd,
  .product-essential .attribute-item .attribute-data {
    margin-top: 10px;
  }

  .product-essential .manufacturers .label,
  .product-essential .product-vendor .label,
  .product-essential .sku .label,
  .product-essential .availability .label,
  .product-essential .attributes dt,
  .product-essential .attribute-item .attribute-label,
  .variant-overview .sku .label,
  .variant-overview .availability .label {
    color: #000000;
    font-weight: 800;
    font-size: 14px;
  }

  .product-essential .required {
    color: #E50000;
  }

  .product-essential .short-description {
    font-weight: 500;
  }

  .product-essential .product-review-links {
    color: #2883EC;
  }

  .product-essential .old-product-price {
    color: #B8BECE;
    font-weight: bold;
    font-size: 20px;
    text-decoration: line-through;
  }

  .product-essential .product-price {
    font-size: 24px;
    font-weight: 800;
  }

  .product-essential .product-estimate-shipping {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #fefeff;
  }

  .product-essential .free-shipping {
    color: #4BCD2A;
    font-weight: 600;
    text-transform: uppercase;
  }

  .product-essential .attributes input[type="text"] {
    padding: 5px 10px;
    color: #223668;
    line-height: 1.5;
    border: 1px solid #A54F08;
    border-radius: 3px;
  }

.customer-entered-price .price-range {
  margin: 5px 0;
}

.product-essential .download-sample {
  display: block;
  margin: 10px 0 20px 0;
}

.product-essential a.button-2.download-sample-button {
  padding: 8px 10px;
}

.add-to-cart-panel .button-1.add-to-cart-button {
  padding: 7px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

  .add-to-cart-panel .button-1.add-to-cart-button i {
    font-size: 22px;
  }

.add-to-cart-panel .qty-wrapper {
  min-height: 36px;
  padding: 0 30PX;
  border: 1px solid #D2D2DC;
  border-radius: 5px;
}

.add-to-cart-panel .qty-label {
  color: #B3BBC6;
  font-size: 15px;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  width: auto;
  max-width: 50px;
  min-height: 34px;
  padding: 0 5px;
  color: #223668;
  text-align: center;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
}

.add-to-cart-panel .qty-wrapper input::-webkit-outer-spin-button,
.add-to-cart-panel .qty-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.overview-buttons .button-2,
.variant-overview .button-2 {
  padding: 7px 20px;
  font-size: 13px;
  text-transform: capitalize;
}

  .overview-buttons .button-2 i,
  .variant-overview .button-2 i {
    font-size: 18px;
  }

.product-essential .product-collateral .variant-name {
  font-weight: bold;
  margin-bottom: 10px;
}


.email-a-friend-page .inputs label {
  display: none;
}

.variant-overview {
  text-align: left;
}

.variant-picture {
  text-align: center;
}

.variant-overview .add-to-cart-panel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.variant-overview .qty-wrapper {
  vertical-align: top;
}

.variant-overview .add-to-cart-panel {
  display: block !important;
}

.product__tab.ui-widget {
  color: #666B77;
  font-size: 15px;
  line-height: 25px;
}

  .product__tab.ui-widget.ui-widget-content {
    margin: 60px 0 25px;
    background: #FFFFFF;
    border-color: #E4E4EF;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
    padding: 0;
  }

.product__tab.ui-tabs .ui-tabs-nav {
  /*  padding-top: 23px;*/
  background: none;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  border-bottom: solid 1px #A54F08;
}

  .product__tab.ui-tabs .ui-tabs-nav li {
    float: none;
    display: inline-block;
    background: none;
    border: 0;
    border-radius: 0;
  }
/*  .product__tab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    border-bottom:solid 3px #A54F08;
  }*/
.product__tab .ui-state-default a,
.product__tab .ui-state-default a:link,
.product__tab .ui-state-default a:visited {
  padding: 8px 15px;
  color: #666B77;
  font-family: 'Lato';
  font-weight: bold;
}

.product__tab .ui-state-active a,
.product__tab .ui-state-active a:link,
.product__tab .ui-state-active a:visited {
  color: #A54F08;
}

.product__tab .product-tags-box .title,
.product__tab .product-specs-box .title {
  padding-bottom: 15px;
}

.product__tab .product-tags-list li {
  display: inline-block;
}

  .product__tab .product-tags-list li.separator {
    margin-right: 5px;
  }

.product-collateral .ui-tabs .ui-tabs-panel {
  padding: 30px;
}

.product-details-page .also-purchased-products-grid,
.product-details-page .related-products-grid {
  margin-top: 30px;
}

  .product-details-page .also-purchased-products-grid .title,
  .product-details-page .related-products-grid .title {
    width: calc(100% - 60px);
    padding-bottom: 15px;
    font-size: 24px;
    text-align: left;
    text-transform: uppercase;
  }

  .product-details-page .also-purchased-products-grid.ocarousel .owl-nav,
  .product-details-page .related-products-grid.ocarousel .owl-nav {
    top: -43px;
    right: 0;
    width: auto;
  }

    .product-details-page .also-purchased-products-grid.ocarousel .owl-nav button.owl-prev,
    .product-details-page .related-products-grid.ocarousel .owl-nav button.owl-prev {
      margin-right: 5px;
    }

.manufacturer-carousel .ocarousel-item {
  margin: 10px;
}

  .manufacturer-carousel .ocarousel-item .manufacturer-name a {
    background-color: #fff;
    display: block;
    width: 100%;
    color: #ad6800;
    padding: 8px;
  }

  .manufacturer-carousel .ocarousel-item:hover .manufacturer-name a,
  .category-carousel .ocarousel-item .category-name a {
    background: rgb(197,88,37);
    background: linear-gradient(180deg, rgba(197,88,37,1) 0%, rgba(143,70,36,1) 100%);
    color: #fff;
    display: block;
    border-radius: 5px;
  }

/*.category-carousel .ocarousel-item:hover a {
  background: rgb(172,103,0);
  background: linear-gradient(180deg, rgba(172,103,0,1) 0%, rgba(149,88,16,1) 91%);
}*/

.category-carousel .ocarousel-item a {
  border-radius: 0 0 5px 5px;
}
/***** ESTIMATE SHIPPING POPUP *****/
.estimate-shipping-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.shipping-options-loading {
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  right: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  position: absolute;
  top: 3px;
  right: 5px;
  margin-left: 0px;
  color: #FF0707;
}

.estimate-shipping-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.estimate-shipping-row-item.address-item .estimate-shipping-row {
  position: relative;
}

.estimate-shipping-row .select {
  border-radius: 3px;
}

.estimate-shipping-row.shipping-option {
  cursor: pointer;
}

  .estimate-shipping-row.shipping-option.active {
    font-weight: 700;
  }

.estimate-shipping-row-item {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

  .estimate-shipping-row-item.shipping-item {
    padding: 8px 0;
    overflow: hidden;
    overflow-wrap: break-word;
  }

  .estimate-shipping-row-item.shipping-header-item {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-left: 15px;
  }

  .estimate-shipping-row-item + .estimate-shipping-row-item {
    padding-left: 10px;
  }

.estimate-shipping-row-item-radio {
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  margin-top: 20px;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
  border-radius: 0;
}

.estimate-shipping-radio {
  display: none;
}

  .estimate-shipping-radio + label {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
  }

  .estimate-shipping-radio:checked + label:after {
    content: ' ';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    position: absolute;
    top: 6px;
    left: 6px;
    background: #ffffff;
  }

  .estimate-shipping-radio:checked + label {
    background-color: #A54F08;
    color: #99a1a7;
    border: 1px solid #adb8c0;
    border-color: #A54F08;
  }

.apply-shipping-button {
  padding: 10px 25px;
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff;
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: #FFF no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-position: 0 0, 0 100%;
  background-size: 100% 7px;
}

  .shipping-options:before,
  .shipping-options:after {
    content: "";
    position: relative;
    z-index: -1;
    display: block;
    height: 30px;
    margin: 0 0 -30px;
    background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
  }

  .shipping-options:after {
    margin: -30px 0 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
  }

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: #e4434b;
}

/***** CART/WISHLIST PAGES *****/
.order-progress {
  margin: 20px 0;
  padding: 15px 0;
  text-align: center;
}

  .order-progress ul {
    font-size: 0;
  }

  .order-progress li {
    display: inline-block;
    margin: 0 10px 25px;
  }

  .order-progress a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    font-size: 14px; /*reset zeroing*/
    color: #333;
  }

  .order-progress .step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    background-color: #F0F2F5;
    color: #828286;
    font-size: 18px;
    border-radius: 50%;
  }

  .order-progress li.active-step .step-icon {
    background-color: #A54F08;
    color: #fff;
  }

  .order-progress li.active-step a {
    cursor: pointer;
  }

  .order-progress li.inactive-step a {
    opacity: 0.3;
    cursor: default;
  }

.order-summary-content {
  padding: 15px 0 40px;
}

  .order-summary-content > form > .row {
    width: 100%;
  }

.cart {
  width: 100%;
  color: #616065;
  font-size: 14px;
  border-spacing: 0 10px;
}

  .cart td,
  .cart th {
    padding: 15px;
    border: 1px solid #dee2e6;
  }
.product-specs-box .cart th:not(:last-child) {
  border-right: 1px solid #fff;
}

.product-specs-box .cart tbody tr td {
  border-right: 1px solid #dee2e6;
}
.product-specs-box .cart tbody {
  border-right: 1px solid #dee2e6;
}

.cart td:first-child,
.cart th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

    .cart td:last-child,
    .cart th:last-child {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    .cart th.add-to-cart,
    .cart td.add-to-cart {
      min-width: 121px;
    }

      .cart td.add-to-cart .checkbox {
        display: inline-block;
      }

  .cart th {
    color: #fff;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    border-color: transparent;
  }

  .cart tbody tr {
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  }

    .cart tbody tr td {
      border-width: 1px 0 1px 0;
    }

      .cart tbody tr td:first-child {
        border-left-width: 1px;
      }

      .cart tbody tr td:last-child {
        border-right-width: 1px;
      }

  .cart .remove-from-cart .td-title,
  .cart .remove-from-cart input[type="checkbox"],
  .cart .sku .td-title,
  .cart .unit-price .td-title,
  .cart .quantity .td-title,
  .cart .subtotal .td-title {
    display: none;
  }

  .cart .remove-from-cart .remove-button {
    padding: 0;
    background-color: transparent;
    color: #C8C8D0;
    border: 0;
    cursor: pointer;
  }

    .cart .remove-from-cart .remove-button:hover {
      color: #E50000;
    }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label {
    padding-left: 11px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:before,
  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:after {
    width: 20px;
    height: 20px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label:after,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label:after {
    font-size: 15px;
  }

  .cart .product-picture a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cart .product a {
    color: #616065;
    font-weight: 600;
  }

  .cart .product .edit-item a {
    font-weight: 300;
  }

  .cart a:hover {
    color: #A54F08;
  }

  .cart .product .attributes {
    padding: 5px 0;
    line-height: 25px;
  }

    .cart .product .attributes br {
      padding-bottom: 5px;
    }

  .cart .quantity-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #CECFD5;
    box-shadow: 0px 0px 10px rgba(155, 158, 164, 0.15);
    border-radius: 5px !important;
  }

  .cart .input-group-quantity .button-container {
    position: relative;
    top: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 7px;
    background: transparent;
    border: 0;
    transform: none;
    overflow: visible;
  }

    .cart .input-group-quantity .button-container button {
      width: auto;
      height: auto;
      background: transparent !important;
      color: #777777;
      font-size: 12px;
      line-height: normal;
    }

  .cart .input-group-quantity input {
    min-width: 30px;
    padding: 0;
    color: #676A74;
    text-align: center;
    border: 0;
    box-shadow: none;
  }

.cart-options .common-buttons,
.wishlist-page .buttons {
  margin-top: 30px;
}

  .cart-options .common-buttons .button-2,
  .wishlist-page .buttons .button-2 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 20px;
    color: #A54F08;
    font-size: 15px;
    line-height: 100%;
    border-color: #A54F08;
    border-radius: 3px;
    border: solid 1px #A54F08;
  }

    .cart-options .common-buttons .button-2:hover,
    .cart-options .common-buttons .button-2:focus,
    .wishlist-page .buttons .button-2:hover,
    .wishlist-page .buttons .button-2:focus {
      background: #A54F08;
      color: #fff;
    }

.block-gradient.block-gradient-checkout {
  background: #fff;
}

  .block-gradient.block-gradient-checkout .selected-checkout-attributes,
  .block-gradient.block-gradient-checkout .title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #A54F08;
  }

  .block-gradient.block-gradient-checkout .input-group input[type="text"].default {
    background: transparent;
    border: 1px solid #A54F08;
    border-radius: 3px;
  }

  .block-gradient.block-gradient-checkout .input-group .button-1 {
    padding: 9px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }

  .block-gradient.block-gradient-checkout .buttons {
    display: block;
    margin: 55px -35px 0;
    padding: 40px 35px;
    color: #2C2D36;
    text-align: left;
  }

.cart-total tr td {
  padding-bottom: 20px;
}

.cart-total .cart-total-right {
  text-align: right;
}

.terms-of-service.checkbox [type="checkbox"]:not(:checked) ~ label,
.terms-of-service.checkbox [type="checkbox"]:checked ~ label {
  text-transform: capitalize;
}

.checkout-buttons .button-1 {
  width: 100%;
  padding: 10px 35px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
}

.no-data i {
  font-size: 50px;
}

/***** CHECKOUT PAGE *****/
.checkout-as-guest-button {
  background: #fff !important;
  color: #A54F08 !important;
}

.billing-info-wrap,
.shipping-info-wrap {
  width: 50% !important;
  float: left;
  max-width: 50% !important;
}

.checkout-page {
  max-width: 1300px;
  margin: auto;
}

  .checkout-page .step.a-item {
    border: solid 1px #C66414;
    padding: 20px !important;
    margin: 0;
  }

  .checkout-page .page-title h1 {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin: 16px 0;
    padding: 20px 0;
  }

  .checkout-page .section {
    margin: 0 0 30px;
  }

.checkout-data .opc {
  margin: 20px auto 40px;
  padding: 0;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 60px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.order-summary-content .cart-footer .totals {
  text-align: left;
  color: #fff;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px;
}

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  padding: 10px 30px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  transition: opacity 0.3s;
}

  .checkout-page .button-1:hover {
    opacity: 0.8;
  }

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
}

  .checkout-page .address-item ul {
    margin: 0 0 15px;
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
  }

  .checkout-page .address-item li {
    padding: 5px 0;
  }

    .checkout-page .address-item li.name {
      font-size: 16px;
      font-weight: bold;
    }

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  margin: 0 auto 30px;
  padding: 25px 25px 30px;
  background: #f1f1f1;
  font-size: 14px;
  text-align: left;
  border-radius: 5px;
}

.edit-address .inputs {
  margin-bottom: 1.5rem;
}

  .edit-address .inputs .required {
    top: 10px;
    right: 8px;
  }

.edit-address label {
  display: inline-block;
  padding-bottom: 5px;
  text-align: left;
}

.checkout-page .ship-to-same-address {
  padding: 30px 0;
  text-align: center;
}

  .checkout-page .ship-to-same-address .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.checkout-page .pickup-in-store {
  text-align: center;
}

  .checkout-page .pickup-in-store .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.select-pickup-point {
  text-align: center;
}

.checkout-page .pickup-points-map {
  min-width: 400px;
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
}

.shipping-method .method-list,
.payment-method .method-list {
  font-size: 0;
}

  .shipping-method .method-list li,
  .payment-method .method-list li {
    margin: 15px 0;
    vertical-align: top;
    font-size: 14px;
  }

    .shipping-method .method-list li label,
    .payment-method .method-list li label {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      margin-right: 0;
      padding: 20px 20px 20px 50px;
      background: #f1f1f1;
      color: #333;
      font-size: 14px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

.shipping-method .radio input[type="radio"] + label:before,
.shipping-method .radio input[type="radio"] + label:after,
.payment-method .radio input[type="radio"] + label:before,
.payment-method .radio input[type="radio"] + label:after {
  top: 17px;
  left: 15px;
}

.shipping-method .method-description,
.payment-method .method-description {
  margin: 15px 0 0;
  text-align: left;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #333;
}

.payment-method .payment-logo {
  display: block;
  padding: 0 0 15px;
  vertical-align: middle;
}

  .payment-method .payment-logo label {
    display: block;
    font-size: 0 !important;
  }

.payment-method .checkbox-container {
  display: inline-block;
}

.payment-info .info {
  padding: 30px 15px;
  color: #333;
}

  .payment-info .info tr {
    display: block;
    margin: 0 0 15px;
    font-size: 0;
  }

  .payment-info .info td {
    display: inline-block;
    width: 100% !important;
    max-width: 400px !important;
    font-size: 14px;
  }

    .payment-info .info td:only-child {
      width: 100% !important;
      max-width: 100% !important;
    }

    .payment-info .info td input[type="text"] {
      width: 100% !important;
    }

    .payment-info .info td input[name="CardCode"] {
      width: 65px !important;
    }

    .payment-info .info td select {
      min-width: 70px;
    }

    .payment-info .info td:first-child {
      margin: 0 0 10px;
    }

  .payment-info .info p {
    text-align: center;
  }

.confirm-order .buttons {
  padding: 10px 0;
}

.confirm-order .button-1 {
  font-size: 16px;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #333;
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
  padding: 3px 0;
}

.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
  margin: 0 0 5px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

  .order-review-data .title strong,
  .order-details-area .title strong,
  .shipment-details-area .title strong {
    font-weight: 700;
  }

.order-review-data .payment-method-info,
.order-review-data .shipping-method-info,
.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  margin-top: 20px;
}

.order-completed .details {
  margin: 0 0 30px;
  padding: 30px 15px;
  text-align: center;
  color: #333;
}

  .order-completed .details div {
    margin: 5px 0;
  }

  .order-completed .details strong {
    font-weight: normal;
    text-transform: uppercase;
  }

  .order-completed .details a {
    color: #4ab2f1;
  }

    .order-completed .details a:hover {
      text-decoration: underline;
    }

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #C66414;
  color: #fff;
}

.opc .allow .step-title {
  background-color: #C66414;
  cursor: pointer;
  color: #fff;
}

.opc .step-title .number,
.opc .step-title .title {
  float: left;
  margin: 0;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  color: #fff;
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  border-right: 1px solid #fff;
  text-align: center;
  color: #fff;
}

.opc .allow .step-title .number {
  background-color: #A54F08;
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 auto 30px;
}

  .opc .section > label {
    display: block;
    margin: 0 0 10px;
  }

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  text-align: right;
}

.opc .back-link {
  margin: 0;
}

  .opc .back-link small {
    display: none;
  }

  .opc .back-link a {
    display: inline-block;
  }

  .opc .back-link i {
    padding-right: 5px;
  }

.opc .buttons .please-wait {
  display: block;
  margin: 0 10px 0;
  background: none;
}

.opc .section.ship-to-same-address {
  margin: 0 0 30px;
  padding: 0;
}

.opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0;
}

.opc .payment-info .info tr {
  text-align: left;
}

.opc .section.order-summary {
  margin: 0;
}

.shipping-method .method-name {
  text-align: left;
}

.checkout-page.order-completed-page {
  text-align: center;
}

.billing-address-page .select-billing-address .title,
.shipping-address-page .select-shipping-address .title {
  padding: 0 15px 15px;
  text-align: center;
}

.billing-address-page .address-grid,
.shipping-address-page .address-grid {
  margin: 0 auto;
  text-align: center;
}

.billing-address-page .new-billing-address .title,
.shipping-address-page .new-shipping-address .title {
  padding: 0 0 15px;
}

.shipping-address-page .buttons,
.shipping-method-page .buttons,
.payment-method-page .buttons,
.payment-info-page .buttons,
.order-confirm-page .buttons {
  text-align: center;
}

/***** FLYOUT CART *****/
.flyout-cart {
  display: none;
}

.flyout-cart {
  position: absolute;
  top: 100%;
  right: 2px;
  width: 340px;
  margin-top: -1px;
  padding-top: 10px;
  z-index: 100;
}

  .flyout-cart.active {
    display: block;
  }

.mini-shopping-cart {
  background-color: #fff;
  text-align: left;
  font-size: 14px;
  box-shadow: 0px 5px 10px rgba(134, 134, 134, 0.3);
}

  .mini-shopping-cart::before {
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    -webkit-filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
    filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
  }

  .mini-shopping-cart .cart-title,
  .mini-shopping-cart .cart-summary {
    padding: 7px 15px;
    font-size: 16px;
    border-bottom: 1px solid #C66414;
  }

    .mini-shopping-cart .cart-title .icon-cart,
    .mini-shopping-cart .cart-summary .icon-cart {
      padding-right: 10px;
      font-size: 30px;
    }

    .mini-shopping-cart .cart-title .cart-close {
      cursor: pointer;
    }

  .mini-shopping-cart .cart-banner,
  .mini-shopping-cart .cart-summary {
    padding: 10px 15px;
    background-color: #F4D9C3;
    color: #36373D;
  }

    .mini-shopping-cart .cart-banner strong {
      padding-left: 5px;
    }

  .mini-shopping-cart .count a {
    display: inline-block;
    padding: 0;
    text-transform: none;
  }

  .mini-shopping-cart .items {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .mini-shopping-cart .item {
    overflow: hidden;
    padding: 10px 15px;
    border-bottom: 1px solid #E1E1EB;
  }

  .mini-shopping-cart .picture {
    float: left;
    width: 90px;
    text-align: center;
  }

    .mini-shopping-cart .picture a {
      display: block;
      height: 100%;
      position: relative;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .mini-shopping-cart .picture img {
      display: none;
    }

  .mini-shopping-cart .product {
    width: 100%;
    height: 100%;
    margin-left: 10px;
  }

  .mini-shopping-cart .overview {
    width: calc(100% - 75px);
  }

  .mini-shopping-cart .name {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
  }

    .mini-shopping-cart .name a {
      padding: 0 0 5px;
      font-size: 13px;
      text-transform: capitalize;
    }

  .mini-shopping-cart .attributes {
    margin: 5px 0;
    color: #444;
  }

  .mini-shopping-cart .quantity-wrapper {
    width: 35px;
    border: 0.5px solid #CECFD5;
  }

    .mini-shopping-cart .quantity-wrapper button {
      width: 100%;
      padding: 7px 5px;
      background-color: transparent;
      color: #777777;
      font-size: 9px;
      border: 0;
    }

      .mini-shopping-cart .quantity-wrapper button.cart-qty-minus {
        padding-top: 7px;
      }

      .mini-shopping-cart .quantity-wrapper button.cart-qty-plus {
        padding-bottom: 7px;
      }

    .mini-shopping-cart .quantity-wrapper input[type=text] {
      height: auto;
      padding: 4px 3px;
      color: #656567;
      font-size: 10px;
      font-weight: 600;
      text-align: center;
      border: 0;
    }

  .mini-shopping-cart .remove {
    padding: 5px 0 5px 15px;
    font-size: 20px;
  }

    .mini-shopping-cart .remove:hover {
      color: #E50000;
    }

    .mini-shopping-cart .remove i {
      cursor: pointer;
    }

  .mini-shopping-cart .price-quantity {
    font-size: 13px;
  }

    .mini-shopping-cart .price-quantity span:last-child {
      font-weight: bold;
    }

  .mini-shopping-cart .button-1 {
    display: inline-block;
    width: calc(100% - 30px);
    margin: 3px auto 15px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .mini-shopping-cart input[type="button"]:hover,
  .mini-shopping-cart input[type="button"]:focus {
    background-color: #E76E11;
    opacity: 0.8;
    outline: 0;
  }

  .mini-shopping-cart .cart-summary {
    background-color: transparent;
    color: #36373D;
    font-size: 14px;
    font-weight: bold;
    border: 0;
  }

  .mini-shopping-cart .cart-empty {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 15px;
    color: #C8CACD;
  }

    .mini-shopping-cart .cart-empty i {
      margin-bottom: 10px;
      font-size: 90px;
    }

    .mini-shopping-cart .cart-empty span {
      text-align: center;
    }

.cart-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}

.cart-scroll-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  opacity: 1;
}

/*** NOTIFICATIONS ***/
.bar-notification-container {
  position: fixed;
  bottom: 15px;
  /* left: 0; */
  z-index: 1000;
  width: calc(25% - 30px);
  line-height: 16px;
  color: #fff;
  opacity: 0.95;
  right: 0;
}

.bar-notification.success {
  background-color: #36ce15;
  border-radius: 50px;
  box-shadow: 0px 5px 10px rgba(134, 134, 134, 0.3);
}

.bar-notification.error {
  background-color: #e4444c;
}

.bar-notification.warning {
  background-color: #f39c12;
}

.bar-notification {
  position: relative;
  display: none;
  padding: 20px;
  border-radius: 3px;
}

  .bar-notification .content {
    margin: 0 10px 0 0;
  }

    .bar-notification .content a {
      color: #fff;
      text-decoration: underline;
    }

  .bar-notification .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    margin: 10px;
    background: #fff url('../images/close.png') center no-repeat;
    cursor: pointer;
    border-radius: 50px;
  }

/***** LOGIN/REGISTRATION *****/
.page.login-page,
.page.registration-page,
.page.apply-vendor-page,
.page.contact-page,
.return-request-page {
  max-width: 1200px;
  margin: 0 auto;
}

  .page.login-page .page-body,
  .page.registration-page .page-body {
    margin-bottom: 100px;
  }

.customer-blocks .block-gradient {
  min-height: 400px;
}

.registration-page .block-gradient .buttons {
  margin-top: 70px;
}

.customer-blocks .forgot-password {
  font-size: 14px;
}

.reversed {
  margin-bottom: 19px;
}

.account-page .d-flex.justify-content-center.align-items-center.buttons,
.login-page .d-flex.justify-content-center.align-items-center.buttons,
.registration-page .d-flex.justify-content-center.align-items-center.buttons,
.password-recovery-page .buttons,
.apply-vendor-page .d-flex.justify-content-center.align-items-center.buttons,
.contact-page .d-flex.justify-content-center.align-items-center.buttons,
.wishlist-page .cart th,
.cart th,
.block-gradient.block-gradient-checkout .buttons {
  background: rgb(197,88,37);
  background: linear-gradient(180deg, rgba(197,88,37,1) 0%, rgba(143,70,36,1) 100%);
  text-align: center;
}

.account-page .save-customer-info-button,
.account-page .edit-address-button,
.account-page .delete-address-button,
.account-page .change-password-button,
.account-page .order-details-button,
.login-page .login-button,
.login-page .register-button,
.registration-page .register-next-step-button,
.password-recovery-page .password-recovery-button,
.apply-vendor-page .apply-vendor-button,
.contact-page .contact-us-button,
.order-summary-content .checkout-button {
  background: #fff;
}

.address-edit-page .page-title {
  margin-bottom: 15px;
}
/***** HOMEPAGE - SHIPPING TYPES *****/
.shipping-types-wrapper {
  margin-bottom: 70px;
}

.shipping-type--info {
  text-align: left;
}

.shipping-type,
.manufacturer-carousel .ocarousel-item,
.item-box .product-item,
.category-carousel .ocarousel-item {
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 3px 10px #eee;
  overflow: hidden;
}

.item-box .product-item,
.category-carousel .ocarousel-item {
  padding: 0 !important;
}

.category-carousel .ocarousel-item {
  border-radius: 0 !important;
  border: 1px solid #eee;
  box-shadow: none !important;
  overflow: hidden;
  background:#fff;
}

.shipping-type--icon {
  margin-right: 30px;
  text-align: center;
}

.shipping-type img {
  max-width: 75px;
}

.shipping-type--title,
.shipping-type--desc {
  margin: 0;
}

.shipping-type--title {
  font-size: 18px;
  color: #ad6800;
  font-weight: 600;
  line-height: 100%;
}

.shipping-type--desc {
  padding-top: 5px;
  font-size: 16px;
}

/***** HOMEPAGE - BLOG/NEWS *****/
.blog-news-area .row.blog-items .blog-item,
.blog-news-area .row.news-items .news-item {
  margin: 20px auto;
}

  .blog-news-area .row.news-items .news-item .news-box-inner {
    border-radius: 5px;
    padding: 25px;
  }

.blog-news-area .blog-item,
.blog-news-area .news-box-info {
  margin-bottom: 25px;
}

.blog-news-area .row.news-items .news-box-info,
.blog-news-area .row.blog-items .single-blog {
  text-align: left;
}

.blog-news-area {
  background: #fafafb;
}

.news-box-inner .post-body {
  height: 100px;
  overflow: hidden;
}

.blog-news-area .row.news-items .blog-link {
  background: #C66414;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

.blog-news-area .single-blog,
.blog-news-area .news-items {
  box-shadow: 0px 2px 5px rgba(134, 134, 134, 0.3);
  border-radius: 5px;
  padding: 10px;
  background: #fff;
}

  .blog-news-area .single-blog:hover {
    box-shadow: 0px 5px 15px rgba(134, 134, 134, 0.3);
  }

  .blog-news-area .single-blog a.post-title {
    color: #753306;
  }

.latest-blog-container .date-time {
  padding: 5px 0 3px;
  color: #A54F08;
  font-size: 15px;
  font-weight: 600;
}

.latest-news-container .picture {
  margin: 10px 10px 0 0;
  background: linear-gradient(0deg, #EBEFF7, #EBEFF7), url(image.png);
  box-shadow: 0px 0px 10px rgba(214, 215, 228, 0.25);
  border-radius: 5px;
}

  .latest-news-container .picture img {
    border-radius: 5px;
  }

.latest-news-container .post-title,
.news-list-homepage .news-title {
  font-size: 18px;
  font-weight: bold;
}

.latest-news-container .date-time,
.news-list-homepage .news-date {
  color: #A7AEBF;
  font-size: 13px;
  font-weight: 600;
}

.latest-news-container .blog-link,
.news-list-homepage .read-more {
  color: #A54F08;
  font-size: 15px;
  text-decoration: underline;
  text-transform: capitalize;
}

.blog-news-area .single-blog .date-time {
  color: #EEAA29;
}
/***** BLOG & NEWS PAGES *****/
.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('../images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.latest-blog-container .title-container,
.latest-news-container .title-container {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.blog-item-wrapper:after,
.news-item-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.blog-item-wrapper .blog-item,
.news-item-wrapper .news-item {
  width: calc(33.33% - 30px);
  float: left;
  margin-left: 15px;
  margin-right: 15px;
}

.news-item-wrapper .news-item {
  width: calc(50% - 30px);
}

  .blog-item-wrapper .single-blog img,
  .news-item-wrapper .news-item img {
    width: 100%;
  }

.blog-item-wrapper h4,
.news-item-wrapper h4 {
  margin: 15px 0 10px;
}

.blog-item-wrapper .post-title,
.news-item-wrapper .post-title {
  font-size: 18px;
  color: #3C434D;
  padding: 0;
  text-decoration: underline;
}

.blog-item-wrapper .date-time,
.news-item-wrapper .date-time {
  font-size: 15px;
  padding-top: 15px;
}

.blog-item-wrapper .blog-link,
.news-item-wrapper .blog-link {
  font-size: 14px;
  color: #3C434D;
}

.blog-item-wrapper .post-body,
.news-item-wrapper .post-body {
  padding: 0;
}

.blog-page .post:not(:last-child),
.news-list-page .news-item:not(:last-child) {
  margin-bottom: 30px;
}

.blog-page .post-title,
.news-list-page .news-title {
  display: inline-block;
  padding: 0;
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
}

.blog-page .post-date,
.news-list-page .news-date,
.blogpost-page .post-date,
.news-item-page .news-date {
  display: block;
  margin: 0;
  padding: 0 0 5px;
  background: transparent;
  color: #A54F08;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.blog-page .post-body,
.news-list-page .news-body,
.blog-page .blog-posts .buttons,
.news-list-page .news-items .buttons,
.blogpost-page .post-body,
.news-item-page .news-body {
  padding: 0;
}

.blog-page .post-body,
.news-list-page .news-body,
.blogpost-page .post-body {
  padding-top: 10px;
  color: #333;
}

.blog-posts .blog-details,
.blogpost-page .blog-details {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.blog-page .blog-posts .buttons .button-1,
.news-list-page .news-items .buttons .button-1 {
  font-size: 14px;
}

.blog-posts .tags,
.blog-posts .blog-comments {
  text-align: left;
}

.blog-page .tags, .blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

.blogpost-page .tags {
  padding: 0;
}

  .blog-page .tags ul, .blogpost-page .tags ul {
    display: inline-block;
    margin: 0 0 3px 3px;
  }

  .blog-page .tags li, .blogpost-page .tags li {
    display: inline-block;
  }

    .blog-page .tags li.separator, .blogpost-page .tags li.separator {
      margin-right: 5px;
    }

.new-comment {
  padding-bottom: 30px;
  text-align: center;
}

  .new-comment label {
    display: inline-block;
    padding-bottom: 5px;
  }

  .new-comment textarea {
    min-height: 120px;
  }

.comment-list {
  margin: 0 0 30px;
}

  .comment-list .title {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 20px;
    color: #333333;
    text-align: center;
  }

    .comment-list .title strong {
      font-weight: 400;
    }

  .comment-list .comment {
    margin: 0 0 40px;
    border-top: 0 solid #ddd;
  }

.comment-info {
  width: 150px;
  margin: 20px auto;
}

  .comment-info .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: 700;
    color: #333333;
    text-align: center;
  }

.comment-content {
  text-align: center;
}

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: 700;
}

.comment-body {
  line-height: 22px;
}

.latest-blog-container .post-body {
  display: none;
}

/***** MY ACCOUNT *****/
.block-gradient.block-account-navigation {
  padding: 25px 35px 0;
}

  .block-gradient.block-account-navigation .title {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    border-bottom: 0;
    cursor: text;
    pointer-events: none;
  }

  .block-gradient.block-account-navigation .block-footer {
    margin: 20px -35px 0;
  }

/***** ORDER DETAILS PAGE *****/
.order-details-page .page-title,
.order-details-page .order-overview {
  text-align: center;
}

  .order-details-page .page-title [class*="button-"] {
    min-width: 120px;
  }

.order-details-page .order-overview {
  padding: 30px 0;
  line-height: 27px;
}

.order-details-page .selected-checkout-attributes {
  margin: 30px 0;
  font-weight: 600;
  text-align: center;
}

.order-details-page .totals {
  border: solid 1px #A54F08;
}

  .order-details-page .totals.section {
    width: 370px;
    max-width: 100%;
    padding: 0 10px;
    max-width: 100%;
    margin: 0 auto 50px;
    overflow-x: auto;
  }

.order-details-page .total-info {
  padding: 15px 20px;
  color: #fff;
}

.order-details-page .section.products .title {
  padding: 0 0 15px;
  text-align: center;
}

.order-details-page .table td, .order-details-page .table th {
  font-size: 14px;
}

.order-details-page .data-table .product,
.order-details-page .totals .total-info {
  color: #A54F08 !important;
}

  .order-details-page .data-table .product .attributes {
    padding-top: 7px;
    line-height: 22px;
  }

.totals .table.cart-total {
  margin: 0;
}

.table.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right;
  border: 0;
}

  .table.cart-total td:first-child {
    text-align: left;
  }

/***** COMPARE PRODUCT PAGE *****/
.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .clear-items {
    padding: 10px 0 20px;
    text-align: center;
  }

  .compare-products-page .clear-list {
    display: inline-block;
    text-transform: uppercase;
  }

    .compare-products-page .clear-list:hover {
      opacity: 0.9;
    }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
}

  .compare-products-table td:first-child {
    min-width: 0;
  }

  .compare-products-table td a {
    color: #A54F08;
  }

  .compare-products-table td label {
    font-weight: normal;
    font-weight: 600;
  }

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url('../images/remove.png') left center no-repeat;
  padding: 0 0 0 18px;
  color: #E50000;
  font-size: 12px;
}

  .compare-products-table .remove-button:hover {
    color: #E76E11;
  }

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 95%;
  height: 200px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

  .compare-products-table .picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
  }

.compare-products-table .product-name td {
  font-weight: bold;
}

.compare-products-table .short-description td {
  line-height: 22px;
}

.compare-products-table .full-description td {
  display: none;
}

.compare-products-page .no-data {
  margin: 25px 0 0;
}

/***** PRODUCT REVIEWS *****/
.write-review {
  max-width: 600px;
  margin: 20px auto 40px;
}

.review-rating .name-description {
  display: inline-block;
  padding-right: 10px;
}

  .product-reviews-page .inputs label,
  .review-rating .name-description label {
    display: inline-block;
    margin-bottom: 5px;
  }

.review-rating .rating-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rating-wrapper .label.last {
  padding-left: 5px;
}

.write-review .buttons {
  padding-top: 20px;
}

.product-reviews-page .product-review-list {
  padding-bottom: 40px;
}

  .product-reviews-page .product-review-list .title {
    padding-bottom: 15px;
  }

.product-review-item {
  background-color: rgba(246, 246, 248, 0.3);
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(134, 134, 134, 0.3);
}

  .product-review-item:nth-child(odd) {
    background-color: #fff;
  }

  .product-review-item .review-item-head {
    overflow: hidden;
    background-color: transparent;
    padding: 15px 15px 0;
    color: #A54F08;
  }

  .product-review-item .review-title {
    line-height: 20px;
    font-size: 15px;
  }

  .product-review-item .product-review-box {
    margin: 3px 0 0;
  }

  .product-review-item .review-content {
    padding: 10px 15px;
  }

  .product-review-item .review-text {
    margin: 0 0 5px;
    line-height: 22px;
  }

  .product-review-item .product-review-helpfulness {
    padding-top: 10px;
  }

  .product-review-item .reply {
    margin: 15px 0;
    border-top: 1px solid #ddd;
  }

  .product-review-item .reply-header {
    margin: 15px 0;
    font-weight: bold;
  }

  .product-review-item .reply-text {
    line-height: 22px;
  }

  .product-review-item .review-info {
    margin: 0 0 5px;
  }

    .product-review-item .review-info label {
      font-weight: normal;
    }

    .product-review-item .review-info a,
    .product-review-helpfulness .vote {
      display: inline-block;
      padding: 0 5px;
      color: #A54F08;
      cursor: pointer;
    }

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 0 0 10px;
}

/***** PRIVATE MESSAGE & FORUM *****/
.page.private-messages {
  padding: 40px 15px;
}

.private-messages .tabs-header {
  background: #fff;
  border: none;
}

.header-links ul li.private-messege-item {
  margin-left: 10px;
  background-color: #FFFFFF;
}

  .header-links ul li.private-messege-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px;
    font-size: 13px;
  }

table.forum-table,
.private-messages table {
  width: 100%;
}

  table.forum-table th, table.forum-table td,
  .private-messages th, .private-messages td {
    border: 1px solid #ddd;
    padding: 15px;
  }

.forum-search-box .basic {
  position: relative;
}

.forum-search-box .search-box-text {
  padding: 6px 15px 6px 15px;
}

.forum-search-box .search-box-button {
  position: absolute;
  right: 0.5%;
  /*top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  min-height: 38px;*/
}

.search-input .reversed {
  padding: 30px 15px 0;
}

.manufacturer-list-page .item-box {
  border: 1px solid #E0E1E6;
  border-radius: 3px;
  box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25) !important;
}

.overview .giftcard div,
.overview .giftcard div label {
  padding-bottom: 10px;
  display: block;
}

  .overview .giftcard div input,
  .overview .giftcard div .message {
    width: 100%;
  }

  .overview .giftcard div .required {
    position: absolute;
  }

/****************UI fix****************/

.mm-nav-item .sublist.first-level > .mm-nav-item .sublist .mm-nav-link {
  padding: 5px 10px 5px;
  text-transform: capitalize;
  color: #c66414;
  font-family: 'Lato';
}

.anywhere-slider-bg .owl-carousel .owl-item img {
  max-width: 100% !important;
  margin: 0;
}

.anywhere-slider-bg .anywhere-slider-container .slider-caption {
  padding: 20px 35px;
}

.category-description {
  margin-bottom: 15px;
}

.product-tab-items .owl-theme .owl-nav button.owl-prev:hover,
.product-tab-items .owl-theme .owl-nav button.owl-next:hover {
  background-color: #C66414;
}

.mm-nav-item .sublist.first-level > .mm-nav-item .sublist .mm-nav-link {
  padding: 5px 10px 5px !important;
}


/****************UI fix****************/


/***** HEADER *****/
.top-menu.notmobile .sublist {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  box-shadow: 1px 1px 10px #000;
}

.top-menu.notmobile li {
  position: relative;
}

.top-menu.notmobile > li a {
  padding: 10px 15px;
  display: block;
}

.top-menu.notmobile li:hover > .sublist {
  display: block;
}

.menu-toggle {
  font-size: 18px;
  font-weight: bold;
}

.top-menu.mobile {
  display: none;
}

  .top-menu.mobile .sublist {
    display: none;
  }

/***** Filter *****/
/***** hebatul *****/


.product-filter.price-range-filter,
.product-filter.product-manufacturer-filter,
.product-filter.product-spec-filter {
  padding: 2% 0;
  font-family: 'Fjalla One';
  font-size: 18px;
}

  .product-filter.product-spec-filter .group.product-spec-group li,
  .product-filter.product-manufacturer-filter .group.product-manufacturer-group li {
    font-family: 'Lato';
    font-size: 16px;
  }

  .product-filter.price-range-filter .filter-title,
  .product-filter.product-manufacturer-filter .filter-title,
  .product-filter.product-spec-filter .filter-title {
    padding: 2% 0;
    text-transform: uppercase;
  }

    .product-filter.price-range-filter .filter-title strong,
    .product-filter.product-manufacturer-filter .filter-title strong,
    .product-filter.product-spec-filter .filter-title strong,
    .product-filter.product-spec-filter .group.product-spec-group li strong {
      font-weight: normal;
    }

  .product-filter.price-range-filter .selected-price-range,
  .product-filter.product-manufacturer-filter .selected-price-range,
  .product-filter.product-spec-filter .selected-price-range {
    padding-bottom: 2%;
  }

div#price-range-slider {
  margin-left: 8px;
  margin-bottom: 9px;
}

.ui-slider .ui-slider-handle {
  width: 0.8em;
  height: 0.8em;
}

.ui-slider-horizontal {
  height: 0.5em;
}

  .ui-slider-horizontal .ui-slider-handle {
    top: -.25em;
  }

ul.group.product-spec-group,
ul.group.product-manufacturer-group {
  padding-bottom: 5px;
}

.ui-state-default, .ui-widget-content .ui-state-default {
  border-radius: 100%;
  background: inherit;
}


.block-product-filters input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}


.block-product-filters .group.product-spec-group.product-spec-color li.item label span {
  vertical-align: middle;
  margin-right: 3px;
  margin-left: -3px;
}

.attribute-square {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 3px;
}

.product-filter.product-spec-filter li.name {
  padding-bottom: 8px;
}

.block-product-filters li.item input[type="checkbox"]:not(:checked) ~ label,
.block-product-filters li.item input[type="checkbox"]:checked ~ label {
  position: relative;
  min-height: 23px;
  margin-right: 10px;
  margin-bottom: 0;
  padding-left: 2.3em;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}

  .block-product-filters li.item input[type="checkbox"]:not(:checked) ~ label:before,
  .block-product-filters li.item input[type="checkbox"]:checked ~ label:before {
    content: '';
    top: 0;
    margin: 0;
    border: 1px solid #A54F08;
    background: transparent;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0,1);
  }

  .block-product-filters li.item input[type="checkbox"]:not(:checked) ~ label:after,
  .block-product-filters li.item input[type="checkbox"]:checked ~ label:after {
    content: "\e925";
    top: 0;
    margin: 0;
    border: 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 0.8;
    color: #A54F08;
    transition: all .2s;
    font-family: 'icomoon' !important;
  }

  .block-product-filters li.item input[type="checkbox"]:not(:checked) ~ label:after {
    opacity: 0;
    transform: scale(0);
  }

.block-product-filters li.item input[type="checkbox"] ~ label:before,
.block-product-filters li.item input[type="checkbox"] ~ label:after {
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

li.mm-nav-item.dropdown-menu-list {
  z-index: 10000;
}

/*.header-menu,
.manufacturer-carousel .ocarousel-item:hover .manufacturer-name a,
.category-carousel .ocarousel-item a,
.account-page .d-flex.justify-content-center.align-items-center.buttons,
.login-page .d-flex.justify-content-center.align-items-center.buttons,
.registration-page .d-flex.justify-content-center.align-items-center.buttons,
.password-recovery-page .buttons,
.apply-vendor-page .d-flex.justify-content-center.align-items-center.buttons,
.contact-page .d-flex.justify-content-center.align-items-center.buttons,
.wishlist-page .cart th, .cart th,
.block-gradient.dark.block-account-navigation {
  position: relative;
}

  .header-menu::before,
  .manufacturer-carousel .ocarousel-item:hover .manufacturer-name a::before,
  .category-carousel .ocarousel-item a::before,
  .account-page .d-flex.justify-content-center.align-items-center.buttons::before,
  .registration-page .d-flex.justify-content-center.align-items-center.buttons::before,
  .password-recovery-page .buttons::before,
  .apply-vendor-page .d-flex.justify-content-center.align-items-center.buttons::before,
  .contact-page .d-flex.justify-content-center.align-items-center.buttons::before,
  .wishlist-page .cart th::before, .cart th::before,
  .login-page .d-flex.justify-content-center.align-items-center.buttons::before,
  .block-gradient.dark.block-account-navigation::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.35) 100%);
  }*/

.button-1.login-button,
.button-1.register-button {
  z-index: 1;
}

.forums-main-page .topic-block-title h2 {
  margin-top: 2%;
}


/****************UI fix****************/


/****************style-latif.css****************/


.page.order-details-page .page-title {
  border-bottom: none !important;
}


.html-order-details-page .order-details-page .page-body, .checkout-page {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 0 30px 10px;
  margin: 30px auto;
}

.html-order-details-page .data-table {
  border: solid 1px #dee2e6;
}

  .html-order-details-page .data-table thead tr {
    background: #A54F08;
    color: #fff;
  }

#wrap {
  z-index: 998 !important;
}

input.button-2.add-to-compare-list-button,
input.button-2.email-a-friend-button {
  border: 1px solid #A54F08;
  margin-bottom: 3.5%;
}

.current-code .remove-discount-button {
  background-color: transparent;
  width: 0;
  height: 0;
  border: none;
  outline: none;
  padding: 5px 0 5px 15px;
  font-size: 20px;
}

  .current-code .remove-discount-button i.icon-remove {
    cursor: pointer;
  }

.remove-discount-button .icon-remove:before {
  color: #E50000;
}

.rating-wrapper .rating-options {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


  .rating-wrapper .rating-options input {
    margin: 5%;
  }

.rating-wrapper .label.first,
.rating-wrapper .label.last {
  margin: 0 15%;
}


.page.product-reviews-page .inputs .required {
  top: 0;
  left: -8px;
}


.page.forums-main-page {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 2%;
  margin: 2%;
}

.opc .tab-section {
  padding-top: 200px;
  margin-top: -200px;
}

.page.email-a-friend-page {
  text-align: center;
}


  .page.email-a-friend-page input[type="email"],
  .page.email-a-friend-page textarea {
    width: 100%;
  }

.page.account-page.downloadable-products-page,
.page.account-page.back-in-stock-subscription-list-page,
.page.account-page.reward-points-page {
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0,0.20);
  border-radius: 3px;
  padding: 5%;
}

.block-gradient.dark .block-gradient-list.info {
  min-height: 252px;
}

.reward-points-history table tbody {
  text-align: center;
}


.page.registration-result-page .result,
.page.registration-result-page .pt-3.buttons,
.page.password-recovery-page .result {
  text-align: center;
}




.return-request-page .title {
  margin-bottom: 10px;
}


.button-2.btn-sm.return-items-button {
  color: #fff;
  border: 1px solid #fff;
}


.return-request-page .cart th {
  text-align: left;
}


/*****Currency and Language Selector Mobile View******/

.mm-nav-item.mobile-currency .d-none.d-lg-inline-flex.pr-2.currency-selector,
.mm-nav-item.mobile-language .d-none.d-lg-inline-flex.language-selector {
  display: inline-block !important;
}

li.mm-nav-item.mobile-currency {
  float: left;
  width: 40%;
}

li.mm-nav-item.mobile-language {
  float: right;
  width: 60%;
}

.mm-nav-item.mobile-language .d-none.d-lg-inline-flex.language-selector {
  width: 80%;
}


/*****Currency and Language Selector Mobile View******/
@media (max-width: 991px) {
  .dropdown-menu > li:hover > .submenu {
    z-index: 55;
  }
}
/****************UI fix****************/


button.button-1.re-order-button {
  margin-bottom: 10px;
}

.account-activation-page .button-1.acount-activation-button {
    margin:10px 0;
}

.account-activation-page .page-body .result {
  display: block;
  margin-bottom: 10px;
}

.account-activation-page .page-body{
  text-align:center;
}