* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --primary-color: #4ace34;
}

html {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a img {
  border: none;
}

a:active {
  outline: none;
}

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: 3px;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px #fff;
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
  display: none !important;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  color: #000;
  font-family: 'Gotham';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111;
  font-family: 'Gotham-Medium';
}

a {
  color: inherit;
  cursor: pointer;
}

  a img {
    opacity: 0.99;
  }

table {
  width: 100%;
  border-collapse: collapse;
}

input {
  font-family: "Gotham";
}

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    height: 36px;
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: middle;
  }

input,
textarea,
select,
button {
  font-size: 14px;
  color: #a7a7ac;
}

textarea {
  min-height: 150px;
}

select {
  min-width: 50px;
  padding: 5px 15px;
  border-radius: 3px;
  border: solid 1px #ddd;
  -webkit-appearance: none;
  background: url(../images/select-arrow-dark.svg);
  background-size: 10px;
  background-position: 95%;
  background-repeat: no-repeat;
}

.product-page-size select {
  background-position: 85%;
}

.product-selectors select {
  box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #ccc;
  color: #111;
}

input[type="checkbox"],
input[type="radio"] {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  height: 15px;
  width: 15px;
  color: transparent;
  transition: all 0.2s;
  font-size: 15px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}

.block.product-filters input[type="checkbox"],
.block.product-filters input[type="radio"] {
  opacity: 1;
}

input[type="checkbox"] {
  border-radius: 3px;
  background: #fff;
}

.section.pickup-in-store input[type="checkbox"] {
  border-radius: 3px;
  background: #fff;
  width: 20px;
  height: 20px;
}
.checkout-page.shipping-address-page .section.pickup-in-store input[type="checkbox"] {
    position: absolute;
}

.checkout-page.shipping-method-page .section.pickup-in-store input[type="checkbox"] {
  position: absolute;
}

  .section.pickup-in-store .custom-checkbox {
    top: 0;
  }

.section.pickup-in-store label {
  cursor: pointer;
}

input[type="checkbox"] ~ span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
}

input[type="checkbox"] ~ span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
}

.product-details-page input ~ .custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #eee;
  position: absolute;
  left: 0px;
}

.product-details-page input:checked ~ span:after {
  display: block;
}

.product-details-page input ~ span:after {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  display: none;
  left: 3px;
  top: 1px;
  color: var(--primary-color);
  font-size: 16px;
}

.search-page input[type="checkbox"] ~ span {
  background: #fff;
}

.account-page input[type="checkbox"] ~ span {
  background: #fff;
}

.shopping-cart-page input[type="checkbox"] ~ span,
.wishlist-page input[type="checkbox"] ~ span {
  left: 37%;
}

.back-in-stock-subscription-list-page .select-boxes input[type="checkbox"] ~ span {
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.custom-checkbox.term-pos {
  left: 31px !important;
}

.order-filters {
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
  padding-block-end: 20px;
}

.order-filters__row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-block-end: 10px;
  justify-content: flex-end;
}

.order-filters__label {
  line-height: 26px;
  margin-inline-end: 10px;
  min-width: 50px;
}

.order-filters__input {
  height: 36px;
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle;
  background-color: #fff;
}

input[type="checkbox"] ~ span:after {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  display: none;
  left: 3px;
  top: 1px;
  color: var(--primary-color);
  font-size: 16px;
}

.section.pickup-in-store input[type="checkbox"] ~ span:after {
  top: 2px;
  color: #fff;
  font-size: 15px;
}

.section.pickup-in-store input[type="checkbox"] ~ span {
  background: var(--primary-color);
  vertical-align: middle;
  position: relative;
}

input[type="checkbox"]:checked ~ span:after {
  display: block;
}

/* custom radio input */
.inputs .custom-radio-container {
  position: relative;
  margin-left: 25px;
}

  input[type="radio"].custom-radio {
    position: relative;
    top: 10px;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #ddd;
    border-radius: 50%;
  }

  input[type="radio"] ~ .custom-radio:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: none;
    background: #fff;
    position: absolute;
    left: 7px;
    top: 7px;
  }

  input[type="radio"]:checked ~ span:after {
    display: block;
  }

.custom-radio-container .custom-radio {
  position: absolute;
  top: 0px;
  left: -35px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
}

.registration-page-body .custom-radio-container .custom-radio {
  left: -28px;
}

.custom-radio-container:hover input ~ .custom-radio {
  background-color: #ccc;
}

.custom-radio-container input:checked ~ .custom-radio {
  background-color: var(--primary-color);
}

.custom-radio-container .custom-radio:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio-container input:checked ~ .custom-radio:after {
  display: block;
}

.custom-radio-container .custom-radio:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: all .15s ease-in-out;
}

input[type="button"],
input[type="submit"],
button,
.button-1,
.button-2 {
  cursor: pointer;
}

label,
label ~ * {
  vertical-align: middle;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media(min-width:1500px) {
  .section-container {
    max-width: 1400px;
  }
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* wishlist and compare button icon */
.button-2.add-to-compare-list-button::before,
.button-2.add-to-wishlist-button::before {
  font-size: 16px;
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.details .buttons:hover .button-2.add-to-compare-list-button::before,
.details .buttons:hover .button-2.add-to-wishlist-button::before {
  color: var(--primary-color);
}

.button-2.add-to-compare-list-button::before {
  content: "\e902";
}

.button-2.add-to-wishlist-button::before {
  content: "\e905";
}
/* dropdown */
.login-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
}

  .login-dropdown button {
    background: transparent;
    border: none;
    font-size: 22px;
  }

  .login-dropdown a {
    font-size: 14px;
    background-color: #fff;
    padding: 8px 15px;
    display: inline-block;
    color: #000;
    text-decoration: none;
  }

  .login-dropdown .login-dropdown-content {
    position: absolute;
    top: 31px;
    border: 1px solid #ccc;
    border-radius: 3px;
    right: 0;
    list-style: none;
    padding: 4px 0px;
    display: none;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .175);
  }

    .login-dropdown .login-dropdown-content.active {
      display: block;
    }

  .login-dropdown ul:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    position: absolute;
    top: -20px;
    right: 3px;
  }


  .login-dropdown ul li {
    display: block;
    padding: 6px 20px;
    white-space: nowrap;
    min-width: 100px;
    margin: 0;
  }

    .login-dropdown ul li:hover {
      background-color: #F5F5F5;
      cursor: pointer;
    }

    .login-dropdown ul li a {
      text-decoration: none;
      display: block;
      color: #000;
      font-size: 18px;
    }

  .login-dropdown .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
    font-size: 1px;
    padding: 0;
  }

.master-wrapper-content {
  position: relative;
}

.master-column-wrapper {
  position: relative;
  z-index: 0;
}

  .master-column-wrapper:after {
    content: "";
    display: block;
    clear: both;
  }

.center-1 .buttons {
  text-align: left;
}

.center-1 .page-body.checkout-data .buttons {
  text-align: center;
}

.center-2 {
  margin: 0 0 50px;
}

.side-2 {
  margin: 0 0 35px;
}

  .side-2:after {
    content: "";
    display: block;
    clear: both;
  }

.page {
  min-height: 200px;
  text-align: center;
}

.registration-page-body {
  background: #eee;
  border: solid 1px #ebebf4;
  padding: 35px;
  max-width: 860px;
  margin: 0 auto 35px;
}

  .registration-page-body .register-next-step-button {
    margin-right: 40px;
  }

.page-title {
  position: relative;
  padding: 25px 0;
  line-height: 45px;
  text-align: center;
  background: url(../images/title-bg.png) no-repeat;
  background-size: cover;
  margin-bottom: 25px;
}

  .page-title h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: normal;
  }

  .page:after,
  .page-title:after,
  .page-body:after {
    content: "";
    display: block;
    clear: both;
  }

.center-1 .title {
  text-align: center;
}

.center-1 .page-title {
  text-align: center;
}

.buttons {
  margin: 0 0 35px;
}

.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('../images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-block ul,
.topic-page ul,
.post-body ul {
  margin: 12px 0;
  padding: 0 0 0 36px;
  list-style: disc;
}

.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-block ol,
.topic-page ol,
.post-body ol {
  padding: 0 0 0 36px;
  list-style: decimal;
}

.category-description p,
.manufacturer-description p,
.full-description p,
.topic-block p,
.topic-page p,
.post-body p,
.news-body p {
  text-align: justify;
  margin-bottom: 12px;
}

.full-description p {
  font-family: "Gotham";
  font-size: 16px;
}

.flyout-cart {
  display: none;
}

/* fonts */
@font-face {
  font-family: 'Gotham';
  font-display: auto;
  src: url('../fonts/Gotham-Light.woff2') format('woff2'), url('../fonts/Gotham-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Medium';
  font-display: auto;
  src: url('../fonts/Gotham-Medium.woff2') format('woff2'), url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  font-display: auto;
  src: url('../fonts/icomoon.eot?tggnvy');
  src: url('../fonts/icomoon.eot?tggnvy#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?tggnvy') format('truetype'), url('../fonts/icomoon.woff?tggnvy') format('woff'), url('../fonts/icomoon.svg?tggnvy#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-compare-list:before {
  content: "\e902";
}

.icon-quick-view:before {
  content: "\e903";
}

.icon-search:before {
  content: "\e904";
}

.icon-heart:before {
  content: "\e905";
}

.icon-user:before {
  content: "\e906";
}

.icon-cart-1:before {
  content: "\e907";
}

.icon-cart-2:before {
  content: "\e908";
}

.icon-navbar:before {
  content: "\e909";
}

.icon-right-arrow:before {
  content: "\e90a";
}

.icon-arrow-right2:before {
  content: "\ea3c";
}

.icon-left-arrow2:before {
  content: "\e90b";
}

.icon-grid-view:before {
  content: "\e90c";
}

.icon-list-view:before {
  content: "\e90d";
}

.icon-right-arrow1:before {
  content: "\e90e";
}

.icon-left-arrow1:before {
  content: "\e90f";
}

.icon-plus:before {
  content: "\e901";
}

.icon-edit:before {
  content: "\e900";
}

.icon-facebook2:before {
  content: "\ea91";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-rss:before {
  content: "\ea9b";
}

.icon-youtube:before {
  content: "\ea9d";
}

/*********** GLOBAL FORMS ***********/

.fieldset,
.section {
  position: relative;
  margin: 0 0 35px;
}

  .fieldset .title,
  .section .title {
    margin: 0 0 15px;
    font-size: 20px;
    color: #000;
  }

.account-page .section .title {
  margin: 0;
  padding: 12px 20px;
  font-size: 18px;
}

.account-page .section .buttons {
  top: 12px;
  right: 20px;
}

.back-in-stock-subscription-list-page,
.reward-points-page,
.change-password-page,
.search-page {
  padding: 20px;
}

.fieldset .title {
  border-bottom: 1px solid #dee2e6 !important;
  padding-bottom: 15px;
}

  .fieldset .title strong,
  .section .title strong {
    font-weight: bold;
  }

.form-fields {
  position: relative;
}

.inputs {
  position: relative;
  margin: 0 0 15px;
  white-space: nowrap;
  font-size: 0;
}

.inputs .form-input-wrapper {
  display: inline-block;
  max-width: 100%;
}

.change-password-page .inputs .form-input-wrapper {
  width: calc(100% - 200px);
}

.change-password-page .inputs .form-input-wrapper input {
  width: 100%;
}

@media (max-width: 768px) {
  .change-password-page .inputs .form-input-wrapper {
    width: 100%;
  }
}

.registration-page .inputs {
  align-items: center;
}

  .registration-page .inputs label {
    padding: 0 10px;
    margin-bottom: 0;
  }

  .registration-page .inputs .newsletter {
    padding-left: 25px;
  }

.inputs:last-child {
  margin-bottom: 0;
}

.inputs:after {
  content: "";
  display: block;
  clear: both;
}

.inputs label {
  margin: 0 0 10px;
  font-size: 14px;
  color: #000;
}

.apply-vendor-page .inputs label {
  width: 136px;
}

.apply-vendor-page .section-container {
  padding: 35px 0;
}

.apply-vendor-page input[type="file"] {
  box-shadow: none !important;
  width: auto;
}

.inputs input,
.inputs select,
.inputs textarea {
  background-color: #fff;
  box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2;
  border-radius: 3px;
  width: calc(100% - 200px);
}

.forum-search-page .inputs input,
.forum-search-page .inputs select,
.forum-search-page .inputs textarea,
.search-page .inputs input,
.search-page .inputs select,
.search-page .inputs textarea {
  width: calc(100% - 134px);
}

.contact-page .inputs input,
.contact-page .inputs select,
.contact-page .inputs textarea {
  width: 100%;
}

.contact-page .inputs label {
  width: 136px;
}

.email-a-friend-page .inputs label {
  width: 160px;
}

.checkout-page {
  margin-bottom: 20px;
}

  .checkout-page .enter-address .inputs {
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: left;
  }

.email-a-friend-page .inputs input,
.email-a-friend-page .inputs textarea {
  width: 100%;
}

.email-a-friend-page .inputs {
  flex-wrap: wrap;
  text-align: left;
}

  .email-a-friend-page .inputs .field-validation-error {
    flex: 0 0 auto;
  }

.checkout-page .enter-address .inputs .required {
  position: absolute;
  top: 35%;
  right: 0px;
}

.email-a-friend-page .inputs .required {
  position: absolute;
  top: 50%;
  right: 0px;
}

.checkout-page .enter-address label {
  width: 150px;
}

.inputs input[type="checkbox"],
.inputs select[type="radio"] {
  width: 20px;
  transform: scaleX(3);
}

.inputs.custom-attributes {
  white-space: normal;
}

.inputs .option-list {
  display: inline-block;
  max-width: 95%;
  vertical-align: middle;
}

  .inputs .option-list li {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 8px 10px;
  }

  .inputs .option-list label {
    display: inline-block;
    width: auto !important;
    margin: 0 0 0 5px;
  }

.inputs.reversed {
  margin: 0 0 20px;
}

.required {
  margin: 0 -8px 0 3px;
  vertical-align: top;
  font-size: 20px;
  font-weight: normal;
  color: #e4434b;
}

.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error,
.password-error {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #e4434b;
  margin-top: 5px;
  margin-left: 10px;
}

.field-validation-valid,
.username-available-status {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #4cb17c;
}

.captcha-box {
  text-align: center;
  line-height: 0;
}

  .captcha-box > div {
    display: inline-block;
    max-width: 100%;
  }

  .captcha-box input {
    height: auto;
  }

/*custom radio button*/

.custom-radio {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


  .custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

/*********** GLOBAL TABLES ***********/



.table-wrapper {
  overflow-x: auto;
}

.cart th,
.data-table th,
.forum-table th {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ddd;
  background-color: #f6f6f6;
  padding: 10px;
  white-space: nowrap;
  font-weight: normal;
  background-clip: padding-box;
}

  .forum-table th.replies,
  .forum-table th.views,
  .forum-table th.votes,
  .forum-table th.latest-post,
  .forum-table th.topics,
  .forum-table th.posts,
  .forum-table td.replies,
  .forum-table td.views,
  .forum-table td.votes,
  .forum-table td.latest-post,
  .forum-table td.topics,
  .forum-table td.posts {
    display: none;
  }

.forum-table td.image {
  min-width: 0;
}

.cart td,
.data-table td,
.forum-table td {
  min-width: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent #ddd #ddd;
  background-color: #fff;
  padding: 20px;
  color: #000;
  background-clip: padding-box;
}

.forum-table td {
  min-width: 90px;
  padding: 10px;
}

.cart a,
.data-table a,
.forum-table a {
  font-weight: normal;
  color: var(--primary-color);
}

  .cart a:hover,
  .data-table a:hover,
  .forum-table a:hover {
    text-decoration: underline;
  }

.cart .product,
.data-table .product,
.data-table .message,
.data-table .info,
.data-table .name {
  min-width: 225px;
  text-align: left;
}

.forum-table .forum-details,
.forum-table .topic-details {
  text-align: left;
}

.cart .product a,
.data-table .product a,
.data-table .info a {
  font-weight: bold;
  color: #000;
}

  .cart .product a:hover,
  .data-table .product a:hover,
  .data-table .info a:hover {
    color: var(--primary-color);
    text-decoration: none;
  }

.cart .product .edit-item {
  margin: 10px 0 0;
}

  .cart .product .edit-item a {
    font-weight: normal;
    color: var(--primary-color);
  }

    .cart .product .edit-item a:hover {
      text-decoration: underline;
    }

.cart .remove-from-cart,
.cart .add-to-cart,
.data-table .select-boxes,
.data-table .order {
  text-align: center;
  position: relative;
}

  .cart .remove-from-cart .custom-checkbox,
  .cart .add-to-cart .custom-checkbox {
    background: #eee;
  }

.cart td.unit-price,
.data-table td.unit-price {
  white-space: nowrap;
}

.cart td.quantity input {
  width: 50px;
  text-align: center;
}

.cart td.quantity .product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.cart td.quantity .product-quantity .qty-input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 5px;
  margin: 0;
}

.cart td.quantity .product-quantity .quantity {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: relative;
  background-color: #f6f6f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.cart td.quantity .product-quantity .quantity:hover {
  background-color: #e6e6e6;
}

.cart td.quantity .product-quantity .quantity.up::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #333;
}

.cart td.quantity .product-quantity .quantity.down::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
}

.cart td.subtotal,
.data-table td.total {
  white-space: nowrap;
  color: #000;
}

  .cart td.subtotal .discount,
  .cart td.subtotal .discount-additional-info {
    font-style: italic;
    color: var(--primary-color);
  }

.data-table em a {
  font-weight: bold;
  color: #000;
}

.data-table div.download {
  margin: 10px 0 0;
}

/*********** NOTIFICATIONS & POPUPS  ***********/

.bar-notification-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  line-height: 16px;
  color: #fff;
  opacity: 0.95;
  z-index: 2000;
}

.bar-notification.success {
  background-color: #4bb07a;
}

.bar-notification.error {
  background-color: #e4444c;
}

.bar-notification.warning {
  background-color: #f39c12;
}

.bar-notification {
  position: relative;
  display: none;
  padding: 15px 25px 15px 10px;
}

  .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: 7px;
    background: #fff url('../images/close.png') center no-repeat;
    cursor: pointer;
  }

.popup-notification {
  border-radius: 5px;
  padding: 3px;
  margin: 5px 0;
}

  .popup-notification.success {
    border: 2px rgba(75, 176, 122, .5) solid;
  }

  .popup-notification.error {
    border: 2px rgba(228, 68, 76, .5) solid;
  }

  .popup-notification.warning {
    border: 2px rgba(243, 156, 18, .5) solid;
  }

.noscript {
  border-bottom: 1px solid #333;
  background-color: #ff9;
  padding: 30px 15px;
  text-align: center;
  line-height: 22px;
  color: #000;
}

.ajax-loading-block-window {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  background: url('../images/loading.gif') center no-repeat;
}

.please-wait {
  background: url('../images/ajax-loader-small.gif') no-repeat;
  padding-left: 20px;
  font-size: 14px;
}

.ui-dialog {
  max-width: 90%;
  border: 1px solid #ddd;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-color: #fff;
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
}

  .ui-dialog:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

.ui-dialog-titlebar {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  background-color: #eee;
  padding: 10px 15px;
  border-width: 0 0 1px;
  border-radius: 0;
  background-image: none;
  padding: 10px 15px !important;
  font-weight: normal;
  cursor: auto !important;
}

  .ui-dialog-titlebar > span {
    float: left;
    font-size: 18px;
    color: #000;
    margin: 0 !important;
  }

  .ui-dialog-titlebar button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    overflow: hidden;
    background: url('../images/close.png') center no-repeat;
    font-size: 0;
    top: 0 !important;
    right: 0 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0;
    background: url('../images/close.png') center no-repeat !important;
    padding: 0 !important;
  }

    .ui-dialog-titlebar button span {
      display: none !important;
    }

.ui-dialog-content {
  padding: 15px;
  line-height: 20px;
  background-color: #fff !important;
  padding: 15px 15px 20px 15px !important;
  color: #777;
}

  .ui-dialog-content .page {
    min-height: 0;
  }

  .ui-dialog-content .page-title {
    min-height: 0;
    margin: 0 0 15px;
    padding: 0px 10px 10px 10px;
    text-align: center;
  }

    .ui-dialog-content .page-title h1 {
      font-size: 24px;
      line-height: 30px;
    }

  .ui-dialog-content .back-in-stock-subscription-page {
    text-align: center;
  }

    .ui-dialog-content .back-in-stock-subscription-page .tooltip {
      margin-bottom: 10px;
    }

    .ui-dialog-content .back-in-stock-subscription-page .button-1 {
      border: none;
      background-color: var(--primary-color);
      padding: 10px 15px;
      font-size: 15px;
      color: #fff;
      text-transform: uppercase;
    }

      .ui-dialog-content .back-in-stock-subscription-page .button-1:hover {
        background-color: var(--primary-color);
      }

.eu-cookie-bar-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  width: 320px;
  height: 180px;
  margin: -90px 0 0 -160px;
  border: 1px solid #ccc;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

  .eu-cookie-bar-notification .text {
    margin-bottom: 20px;
    line-height: 20px;
  }

  .eu-cookie-bar-notification button {
    min-width: 60px;
    margin: 5px 0 10px;
    border: none;
    background-color: var(--primary-color);
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
  }

    .eu-cookie-bar-notification button:hover {
      background-color: var(--primary-color);
    }

  .eu-cookie-bar-notification a {
    display: block;
    color: var(--primary-color);
  }

    .eu-cookie-bar-notification a:hover {
      text-decoration: underline;
    }


/*********** HEADER ***********/
#global-header {
  position: fixed;
  display: block;
  width: 100%;
  top: 0;
  transition: top 0.5s;
  z-index: 1;
}

.header .section-row {
  justify-content: space-between;
}

.admin-header-links {
  background-color: #333;
  text-align: center;
  color: #eee;
}

  .admin-header-links * {
    display: inline-block;
    margin: 0 10px;
    line-height: 35px;
    font-size: 12px;
    font-weight: bold;
  }

  .admin-header-links .impersonate {
    display: inline-block;
  }

    .admin-header-links .impersonate a {
      background-color: #555;
      padding: 0 15px;
    }

      .admin-header-links .impersonate a:hover {
        background-color: #666;
      }

.header {
  padding: 20px 70px;
  background: #27272b;
  color: #fff;
}

.header-upper {
  position: relative;
  z-index: 1;
}

.header-selectors-wrapper {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

  .header-selectors-wrapper > div {
    display: block;
    width: 50%;
    margin: 10px auto;
  }

  .header-selectors-wrapper select {
    width: 100%;
  }

.language-list {
  max-width: 100%;
  font-size: 0;
}

  .language-list li {
    display: inline-block;
    margin: 0 1px;
    vertical-align: middle;
  }

  .language-list a {
    display: block;
    position: relative;
    width: 24px;
    height: 32px;
    line-height: 0;
  }

  .language-list img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

.header-links-wrapper {
  flex: 0 0 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-links {
  display: flex;
  justify-content: flex-end;
}

  .header-links ul {
    font-size: 0;
  }

  .header-links li {
    display: inline-block;
    margin: 0 10px;
  }


  .header-links span,
  .header-links a {
    display: inline-block;
    font-size: 22px;
    color: #a7a7ac;
  }

  .header-links a,
  .header-links span {
    text-transform: none;
  }

  .header-links li a {
    position: relative;
  }

  .header-links li span {
    position: absolute;
    left: 15px;
    bottom: -5px;
    font-size: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-links a:hover {
    color: var(--primary-color);
  }

#topcartlink a {
  background: transparent;
  font-size: 22px;
}

.header-lower {
  position: relative;
  z-index: 0;
  padding: 35px 0;
}

.header-logo {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}

  .header-logo a {
    display: inline-block;
    max-width: 100%;
    line-height: 0;
  }

    .header-logo a img {
      max-width: 100%;
      opacity: 1;
    }

.header .serach-box {
  flex: 0 0 60%;
}

.search-box {
  position: relative;
}

  .search-box form {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

    .search-box form:after {
      content: "";
      display: block;
      clear: both;
    }

  .search-box input.search-box-text {
    border-radius: 3px 0 0 3px;
    width: 100%;
  }

  .search-box .search-box-button {
    background-color: #27272b;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    border-radius: 0 3px 3px 0;
    border: 2px solid #fff;
    position: relative;
  }

    .search-box .search-box-button span {
      font: normal 14px Arial, Helvetica, sans-serif;
      margin-left: 4px;
    }


    .search-box .search-box-button:hover {
      background-color: #222;
    }

  .search-box .ui-autocomplete-loading {
    background: #fff url('../images/ajax-loader-small.gif') right center no-repeat;
  }

.ui-helper-hidden-accessible {
  display: none !important;
}

.ui-autocomplete {
  width: calc(100% - 30px) !important;
  border: 1px solid #ddd;
  border-top: none;
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
}

  .ui-autocomplete li {
    border-top: 1px solid #ddd;
  }

    .ui-autocomplete li:first-child {
      border-top: none;
    }

  .ui-autocomplete a {
    display: block;
    padding: 15px;
    font-size: 14px;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    padding: 15px !important;
    line-height: normal !important;
    color: #777 !important;
  }

    .ui-autocomplete a:hover,
    .ui-autocomplete a.ui-state-focus {
      background-color: #f6f6f6 !important;
    }

  .ui-autocomplete img {
    display: none;
    min-width: 20px;
    margin: 0 10px 0 0;
    vertical-align: middle;
  }

/* mini shoping cart */

.flyout-cart {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 100;
  width: 300px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

  .flyout-cart::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    position: absolute;
    top: -20px;
    right: 3px;
  }

  .flyout-cart.active {
    display: block;
  }

.mini-shopping-cart {
  padding: 12px;
  text-align: left;
  font-size: 12px;
  position: relative;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}


  .mini-shopping-cart .count {
    padding: 5px 0 15px;
    color: #444;
  }

    .mini-shopping-cart .count a {
      margin: 0 2px;
      font-weight: bold;
      color: #444;
    }

  .mini-shopping-cart .items {
    border-top: 1px solid #ddd;
    margin: 0 0 20px;
  }

  .mini-shopping-cart .item {
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    border-bottom: 1px solid #ddd;
  }

  .mini-shopping-cart .picture {
    width: 70px;
    padding-right: 15px;
    flex: 0 0 20%;
  }

    .mini-shopping-cart .picture a {
      display: block;
      position: relative;
      overflow: hidden;
    }

      .mini-shopping-cart .picture a:before {
        content: "";
        display: block;
        padding-top: 100%;
      }

    .mini-shopping-cart .picture img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      max-width: 100%;
    }

  .mini-shopping-cart .product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 80%;
  }

    .mini-shopping-cart .product > div:first-child {
      padding-left: 0;
      flex: 0 0 35%;
    }

    .mini-shopping-cart .product > div {
      padding: 0 7px;
    }

      .mini-shopping-cart .product > div:last-child {
        padding-right: 0;
        flex: 0 0 65%;
      }

    .mini-shopping-cart .product .qty-price {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

  .mini-shopping-cart .name {
    font-size: 14px;
  }

    .mini-shopping-cart .name a {
      color: #333;
    }

      .mini-shopping-cart .name a:hover {
        color: var(--primary-color);
      }

  .mini-shopping-cart .attributes {
    margin: 5px 0;
    color: #444;
  }

  .mini-shopping-cart .totals {
    margin: 0 0 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    color: #333;
  }

    .mini-shopping-cart .totals strong {
      font-size: 16px;
      color: #444;
    }

  .mini-shopping-cart .buttons {
    margin: 0 0 5px;
  }

  .mini-shopping-cart input[type="button"] {
    display: inline-block;
    border: none;
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
  }

    .mini-shopping-cart input[type="button"]:hover {
      background-color: #27272b;
    }

/* header menu */
.header-menu {
  background: #323237;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a7a7ac;
}

  .header-menu .top-menu.notmobile {
    flex: 0 0 70%;
    padding: 0 15px;
    margin: auto;
    text-align: center;
  }

  .header-menu .category-icon {
    margin: 0 6px;
  }

  .header-menu .language-selector,
  .header-menu .currency-selector {
    flex: 0 0 15%;
    padding: 0 15px;
  }

  .header-menu > ul > li > a,
  .header-menu > ul > li > span {
    font-size: 14px;
    text-transform: uppercase;
  }

  .header-menu .currency-selector {
    flex: 0 0 15%;
    text-align: right;
  }

    .header-menu .language-selector select,
    .header-menu .currency-selector select {
      border-color: transparent;
      color: #a7a7ac;
      padding: 3px 18px 3px 8px;
      min-width: 60px;
      max-width: 95px;
    }

  .header-menu select:focus,
  .header-menu select:active {
    border-color: transparent;
    color: #a7a7ac;
  }

/* Enhanced MainMenu Styles for Rosea Theme */

/* MainMenu Desktop Styles */
.header-menu .main-menu {
  flex: 0 0 70%;
  padding: 0 15px;
  margin: auto;
  text-align: center;
}

.header-menu .main-menu > li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.header-menu .main-menu > li:first-child {
  border-left: 0;
}

.header-menu .main-menu > li > a {
  cursor: pointer;
  padding: 15px 8px;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}

.header-menu .main-menu > li:hover {
  background: #27272b;
}

.header-menu .main-menu > li > a:hover {
  color: var(--primary-color);
}

/* MainMenu List View Styles */
.header-menu .sublist {
  text-align: left;
  background-color: #27272b;
  width: 200px;
  display: none;
  position: absolute;
  left: 0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Ensure grid view doesn't inherit sublist styles and list view is not affected */
.header-menu .main-menu > li .menu__grid-view a {
  color: inherit !important;
  display: flex !important;
  white-space: normal !important;
}

.header-menu .sublist li {
  position: relative;
}

/* Ensure proper spacing and alignment for horizontal mega-menu */
.header-menu .sublist li {
  white-space: nowrap;
}

.header-menu .sublist a {
  display: block;
  white-space: nowrap;
}

.header-menu .sublist li {
  position: relative;
}

.header-menu .sublist.first-level li:hover {
  background: var(--primary-color);
}

.header-menu .sublist.first-level li:hover > a {
  color: #fff;
}

.header-menu .sublist li a {
  padding: 10px 20px 10px 30px;
  font-size: 14px;
  display: block;
  position: relative;
}

@media (min-width: 992px) {
  .header-menu .main-menu li:hover > .sublist {
    z-index: 1;
    display: block;
  }

  .header-menu .sublist li:hover > .sublist {
    z-index: 2;
    display: block;
  }
}


.header-menu .sublist.first-level li:hover {
  background: var(--primary-color);
}

.header-menu .sublist.first-level li:hover > a {
  color: #fff;
}

.header-menu .sublist li a {
  padding: 10px 20px 10px 30px;
  font-size: 14px;
  display: block;
  position: relative;
}

.header-menu .sublist .sublist {
  top: 0;
  left: 100% !important;
}

/* Ensure nested sublists have proper z-index and visibility */
.header-menu .sublist .sublist .sublist {
  top: 0;
  left: 100% !important;
  z-index: 3;
}

/* MainMenu Grid View Styles - DefaultClean Design */
.header-menu {
  position: relative;
}

.header-menu .main-menu > li .menu__grid-view {
  z-index: 1000 !important;
  opacity: 0;
  visibility: hidden;
  background-color: #fff !important;
  border-radius: 2px;
  flex-wrap: wrap;
  gap: 20px;
  width: calc(100vw - 80px);
  max-width: 1200px;
  min-width: 800px;
  padding: 20px;
  font-size: 14px;
  transition: opacity 0.3s, transform 0.3s;
  display: flex !important;
  position: absolute !important;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin-left: 0;
}

.header-menu .main-menu > li:hover .menu__grid-view,
.header-menu .main-menu > li:focus-within .menu__grid-view {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0);
  display: flex !important;
}

.header-menu .main-menu > li .menu__grid-view,
.header-menu .main-menu > li .menu__grid-view * {
  box-sizing: border-box;
}

.header-menu .main-menu > li .menu__grid-view .menu__row-braker {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}

.header-menu .main-menu > li .menu__grid-view .menu__group {
  flex-direction: column;
  flex: 1 1 150px;
  min-width: 150px;
  justify-content: flex-start;
  height: fit-content;
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu .main-menu > li .menu__grid-view .menu__group-title {
  color: #2c3e50 !important;
  text-align: center;
  padding-block: 10px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.header-menu .main-menu > li .menu__grid-view .menu__image {
  object-fit: cover;
  border-radius: 3px;
  max-width: 100%;
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.header-menu .main-menu > li .menu__grid-view .menu__link {
  color: #444 !important;
  cursor: pointer;
  text-align: left;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  line-height: 20px;
  display: flex;
  position: relative;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  margin: 0;
}

.header-menu .main-menu > li .menu__grid-view .menu__image-link {
  flex-direction: column;
  align-items: center;
  display: flex;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin-bottom: 10px;
  color: inherit;
}

.header-menu .main-menu > li .menu__grid-view .menu__image-link:hover {
  text-decoration: none;
  color: inherit;
}

.header-menu .main-menu > li .menu__grid-view .menu__group .menu__link:before {
  content: "";
  background-color: #ddd;
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

  .header-menu .main-menu > li .menu__grid-view .menu__link:hover {
    color: var(--primary-color) !important;
    background-color: transparent;
  }

.header-menu .main-menu > li .menu__grid-view .menu__link--inactive {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

/* Mobile Menu Styles */
@media (max-width: 991.9px) {
  .header-menu .main-menu li:hover > .sublist:not(.show),
  .header-menu .main-menu li:hover .sublist:not(.show),
  .header-menu .sublist li:hover > .sublist:not(.show),
  .header-menu .sublist li:hover .sublist:not(.show),
  .header-menu li:hover > .sublist:not(.show),
  .header-menu li:hover .sublist:not(.show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
  }
  
  .sublist a {
    color: #323237;
  }
  .header-menu {
    position: relative;
    justify-content: center;
  }
  .menu-toggle {
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    flex: 0 0 40%;
    margin: 0;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
  }
  .menu-toggle .icon-navbar {
    font-size: 20px;
  }
  .header-menu .main-menu.notmobile {
    display: none;
  }
  .main-menu.mobile {
    opacity: 0;
    z-index: 9999;
    background: #000;
    width: 250px;
    transition: all 0.5s;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -280px;
    overflow: hidden auto;
    padding: 0;
    margin: 0;
  }
  
  .main-menu.mobile.active {
    opacity: 1;
    left: 0;
    display: block;
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  body.menu-open .menu-overlay {
    display: block;
    opacity: 1;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  body.menu-open .side-2,
  body.menu-open .master-column-wrapper > .side-2 {
    display: none;
  }
  
  .menu-toggle.active .icon-navbar:before {
    content: "\00d7";
    font-size: 35px;
  }
  .main-menu.mobile > li {
    background-color: #f6f6f6;
    margin: 0;
    position: relative;
    display: block !important;
    width: 100%;
  }
  .main-menu.mobile > li > a {
    color: #fff;
    background: #27272b;
    min-height: 55px;
    padding: 18px 60px 18px 18px;
    font-size: 15px;
    display: block;
    text-align: left !important;
  }
  .main-menu.mobile .sublist {
    background-color: #fff;
    padding: 5px 0;
    display: none;
    position: static !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    box-shadow: none !important;
    pointer-events: auto !important;
  }
  
  .main-menu.mobile li:hover > .sublist:not(.show),
  .main-menu.mobile li:hover .sublist:not(.show),
  .main-menu.mobile .sublist li:hover > .sublist:not(.show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  .main-menu.mobile .sublist.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  .main-menu.mobile li:hover > .sublist.show,
  .main-menu.mobile li:hover .sublist.show,
  .main-menu.mobile .sublist li:hover > .sublist.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .main-menu.mobile .sublist li {
    margin: 0;
    position: relative;
    display: block !important;
    width: 100%;
  }
  .main-menu.mobile .sublist li a {
    color: #323237;
    padding: 15px 60px 15px 18px;
    font-size: 15px;
    display: block;
    text-align: left !important;
  }
  .main-menu.mobile .sublist-toggle {
    color: #fff;
    text-transform: uppercase;
    background: url('../images/toggle-black.png') 50% no-repeat;
    width: 55px;
    height: 55px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
  }
  .main-menu.mobile .sublist .sublist-toggle {
    height: 49px;
  }
  .main-menu.mobile .sublist .sublist {
    position: static !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    background-color: #f0f0f0;
  }
  .main-menu.mobile .sublist .sublist li {
    background-color: #f6f6f6;
  }
  .main-menu.mobile .sublist .sublist {
    background-color: #f0f0f0;
  }
  .main-menu.mobile .sublist .sublist li {
    background-color: #f0f0f0;
  }
  .main-menu.mobile .sublist .sublist li a {
    padding-left: 36px;
  }
  .main-menu.mobile .sublist .sublist .sublist {
    background-color: #e8e8e8;
  }
  .main-menu.mobile .sublist .sublist .sublist li {
    background-color: #e8e8e8;
  }
  .main-menu.mobile .sublist .sublist .sublist li a {
    padding-left: 54px;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist {
    background-color: #dcdcdc;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist li {
    background-color: #dcdcdc;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist li a {
    padding-left: 72px;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist .sublist {
    background-color: #d0d0d0;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist .sublist li {
    background-color: #d0d0d0;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist .sublist li a {
    padding-left: 90px;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist .sublist .sublist li a {
    padding-left: 108px;
  }
  .main-menu.mobile .sublist .sublist .sublist .sublist .sublist .sublist .sublist li a {
    padding-left: 126px;
  }
}

@media (max-width: 575.9px) {
  .header-menu {
    padding: 0;
  }
  .header-menu .currency-selector,
  .header-menu .language-selector {
    display: none;
  }
  .menu-toggle {
    z-index: 99;
    flex: 0 0 100%;
    padding: 10px 15px;
    font-size: 18px;
    position: relative;
    top: 0;
    left: 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .header-menu {
    padding: 0 25px;
  }
  .header-menu .currency-selector,
  .header-menu .language-selector {
    display: none;
  }
  .menu-toggle {
    flex: 0 0 100%;
    padding: 10px 15px;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-menu {
    padding: 0 25px;
  }
  .header-menu .language-selector {
    flex: 0 0 15%;
  }
  .header-menu .currency-selector {
    flex: 0 0 15%;
  }
  .menu-toggle {
    flex: 0 0 70%;
    padding: 10px 15px;
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .sublist-toggle,
  .menu-toggle {
    display: none;
  }
  .header-menu > ul.mobile {
    display: none !important;
  }
}

/* Icon styles */
[class*=" icon-"] {
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: icomoon;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}



.fa-angle-down:before {
  content: "\f107";
}

/*********** FOOTER ***********/
.footer {
  background-color: #eee;
  font-size: 16px;
  text-transform: capitalize;
}

.footer-upper {
  background: url(../images/footer-bg-2.jpg) no-repeat center center scroll;
  background-size: cover;
  padding: 70px 0;
}

  .footer-upper .section-row {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Footer Navigation - Dynamic Menu Container */
  .footer-navigation {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 20px;
    justify-content: flex-start;
  }

  .footer-upper .footer-block {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 280px;
    padding: 0 15px;
  }

  /* Newsletter block styling */
  .footer-upper .footer-block.newsletter-block {
    flex: 0 0 310px;
    max-width: 310px;
    padding: 0 15px;
  }

.footer-block .title {
  font-family: 'Gotham';
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-block .list {
  display: none;
  margin: 0 0 20px;
  background-color: #fff;
  padding: 10px 15px;
}

  .footer-block .list a {
    display: block;
    padding: 5px 10px;
    line-height: 20px;
  }

    .footer-block .list a:hover {
      color: var(--primary-color);
    }

.footer-lower .section-row {
  justify-content: space-between;
  align-items: center;
}

  .footer-lower .section-row > div {
    padding: 5px 15px;
  }

.follow-us .title {
  margin: 0 0 10px;
  background: none;
  color: #333;
  cursor: auto;
}

.follow-us .social ul {
  display: flex;
  justify-content: flex-end;
}

.follow-us .social li {
  display: inline-block;
  margin: 0 5px;
  font-size: 18px;
  color: #919199;
}

  .follow-us .social li:hover {
    color: var(--primary-color);
  }

.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: flex;
  flex-wrap: wrap;
}

.footer .newsletter {
  padding: 15px 0;
}

.newsletter-email input[type="email"] {
  height: 36px;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2;
}

.newsletter-email .newsletter-label {
  margin-bottom: 8px;
}

.newsletter-email .newsletter-subscribe-button {
  height: 36px;
  padding: 5px;
  border: solid 1px #e3e3e3;
  box-shadow: 0 1px 3px #e5e7ed, 0 1px 2px #e5e7ed;
  border-radius: 0 3px 3px 0;
  background: #fff;
  width: 80px;
}

.newsletter-email .newsletter-subscribe-text {
  width: calc(100% - 80px);
}

.newsletter-subscribe-button:hover {
  background-color: #eee;
}

.newsletter-email .options {
  clear: both;
  padding: 10px 0 0;
}

.newsletter-validation,
.newsletter-result {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
}

.footer-lower {
  margin: auto;
  overflow: hidden;
  padding: 9px 0;
  font-size: 16px;
  background: #fff;
}

.footer-tax-shipping a {
  font-weight: bold;
  color: var(--primary-color);
}

  .footer-tax-shipping a:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }


.footer-powered-by a {
  font-weight: bold;
  color: var(--primary-color);
}

  .footer-powered-by a:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }

.powered-by {
  background: #fff;
  padding: 9px 0;
  text-align: center;
}

.powered-by .footer-powered-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.powered-by .footer-powered-by > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
}

.powered-by .footer-powered-by .nopstation-logo {
  vertical-align: middle;
  display: inline-block;
}

.powered-by .footer-powered-by .seo-text {
  font-size: 16px;
  color: #666;
}

.powered-by .footer-powered-by .seo-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.powered-by .footer-powered-by .seo-text a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.theme-selector select {
  width: 170px;
  margin-left: auto;
  display: block;
  margin-top: 15px;
  background-color: white;
}

.master-wrapper-content {
  margin: 124px auto 0;
}

/*********** SIDE COLUMN ***********/
.block {
  max-width: 100%;
  min-height: 50px;
  margin: auto;
  text-align: left;
}

  .block .title {
    position: relative;
    margin: 0 0 5px;
    border-bottom: 1px solid #333;
    padding: 12px 18px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
    font-family: "Gotham-Medium";
  }

    .block .title strong {
      font-weight: normal;
    }

  .block .listbox {
    display: none;
    border-bottom: 1px solid #333;
  }

  .block.block-category-navigation .listbox {
    display: block;
  }

  .block .listbox .list {
    padding: 20px;
  }

  .block .list li {
    padding: 7px 0 7px 15px;
  }

  .block .list a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #93959f;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }

    .block .list a:before {
      content: "";
      position: absolute;
      top: 4px;
      left: -15px;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-right: 4px solid transparent;
      border-left: 4px solid #93959f;
    }

  .block .list .active > a {
    color: #fff;
  }

  .block .list a:hover {
    color: var(--primary-color);
  }

  .block a.product-picture {
    display: none;
  }

    .block a.product-picture:before {
      display: none;
    }

  .block .sublist {
    margin: 15px 0 5px;
  }

    .block .sublist a {
      font-size: 14px;
    }

  .block .view-all a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--primary-color);
  }

    .block .view-all a:hover {
      text-decoration: underline;
    }

  .block .tags {
    padding: 25px 20px;
  }

    .block .tags ul {
      font-size: 0;
    }

    .block .tags li,
    .product-tags-all-page li {
      display: inline-block;
      position: relative;
      margin: 0 10px;
      overflow: hidden;
      font-size: 17px !important;
    }

      .block .tags li a,
      .product-tags-all-page li a {
        float: left;
        line-height: 30px;
        color: #93959f;
      }

        .block .tags li a:hover,
        .product-tags-all-page li a:hover {
          color: var(--primary-color);
        }

.poll strong {
  display: block;
  margin: 10px 0;
  background-color: #f6f6f6;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}

.poll-options,
.poll-results {
  margin: 10px 0 15px;
  overflow: hidden;
  font-size: 15px;
  color: #000;
}

  .poll-options li,
  .poll-results li {
    margin: 10px 0;
  }

    .poll-options li > input {
      margin: 0 5px 0 0;
      cursor: pointer;
    }

    .poll-options li > label {
      display: inline-block;
      font-size: 16px;
      cursor: pointer;
    }

.poll .buttons input {
  border: none;
  background-color: #aaa;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}

  .poll .buttons input:hover {
    background-color: #bbb;
  }

.poll-total-votes {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

.home-page-polls {
  text-align: center;
}

  .home-page-polls .title {
    border-bottom: 1px solid #ddd;
    color: #000;
    font-size: 30px;
    font-weight: normal;
    margin: 0 0 30px;
    padding: 0 0 15px;
  }

    .home-page-polls .title strong {
      font-weight: normal;
    }

  .home-page-polls li {
    display: inline-block;
    margin: 10px;
  }

.home-filter-container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 15px;
}

/********** CATEGORY PAGE **********/

.breadcrumb ul {
  font-size: 0;
}

.breadcrumb li {
  display: inline-block;
}

  .breadcrumb li * {
    display: inline-block;
    margin: 0 5px;
    font-size: 14px;
    line-height: 32px;
  }

.breadcrumb .current-item {
  color: var(--primary-color);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.category-description,
.manufacturer-description,
.vendor-description {
  margin: 0 0 25px;
  line-height: 22px;
}

.contact-vendor {
  margin: 0 0 30px;
}

  .contact-vendor .button-2 {
    border: none;
    background-color: var(--primary-color);
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }

    .contact-vendor .button-2:hover {
      background-color: var(--primary-color);
    }

.product-selectors:first-child {
  border-top: none;
}

.product-selectors:after {
  content: "";
  display: block;
  clear: both;
}

.product-selectors > div {
  display: inline-block;
  margin-left: 6px;
}

  .product-selectors > div:first-child {
    display: inline-block;
    margin-left: 0;
  }

.product-selectors span {
  vertical-align: middle;
  font-size: 16px;
}

.product-selectors .product-viewmode {
  display: none;
  font-size: 0;
  float: right;
}

.product-filters {
  display: table;
  width: 100%;
  margin: 0px 0 10px;
  padding: 0px 0 0 5px;
}

.listbox .product-filters {
  width: 100%;
  padding-right: 5px;
}

  .listbox .product-filters .price-range-filter {
    width: 100%;
  }

.price-range-filter .selected-price-range .to {
  float: right;
}

.product-filter {
  margin: 0 0 10px;
}

  .product-filter .filter-title {
    margin: 0px;
    padding: 10px;
    font-size: 17px;
    color: #fff;
  }

    .product-filter .filter-title strong {
      font-weight: normal;
    }

  .product-filter .filter-content {
    padding: 10px;
    color: #fff;
  }

    .product-filter .filter-content .selected-price-range {
      margin-bottom: 10px;
    }

  .product-filter .available-items:after {
    content: "";
    display: block;
    clear: both;
  }

.products-wrapper .no-result {
  margin-top: 30px;
}

.product-filter .group {
  margin: 0 0 10px;
}

  .product-filter .group li {
    font-size: 15px;
  }

    .product-filter .group li a,
    .product-filter .group li strong {
      display: inline-block;
      padding: 5px 0;
    }

      .product-filter .group li a:hover {
        color: var(--primary-color);
      }

    .product-filter .group li.item {
      display: inline-block;
      position: relative;
      margin: 0 15px 0 0;
      padding: 0 0 0 15px;
    }

    .product-filter .group li.color-item {
      padding: 0 0 0 15px;
      display: inline-block;
    }

      .product-filter .group li.color-item a {
        padding: 0;
      }

      .product-filter .group li.color-item:before {
        display: none;
      }

.filtered-items .title {
  margin: 0 0 5px;
  font-style: italic;
}

.filtered-items .item {
  color: var(--primary-color);
}

.remove-filter {
  margin: 15px 0;
}

  .remove-filter a {
    display: inline-block;
    background-color: #222;
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
  }

    .remove-filter a:hover {
      background-color: #222;
    }

.item-grid:after {
  content: "";
  display: block;
  clear: both;
}

.item-box {
  position: relative;
  width: 100%;
  float: left;
  margin: 0 0 35px;
  text-align: center;
  border: solid 1px #e5e7ed;
  padding: 15px;
  background: #ffffff;
}

  .item-box:hover {
    box-shadow: 0 0 20px #ddd;
  }

    .item-box:hover .buttons button span {
      color: var(--primary-color);
    }

  .item-box .picture {
    z-index: 1;
    overflow: hidden;
    background-color: #fff;
    margin: 0 0 20px;
    position: relative;
  }

.product-list .item-box .picture {
  margin: 0;
}

.item-box .picture a {
  display: block;
  position: relative;
}

  .item-box .picture a:before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .item-box .picture a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: translateZ(0) scale(1.0, 1.0);
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
  }

.item-box:hover .picture a img {
  opacity: 0.85;
}

.item-box .product-title {
  margin: 0 0 10px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  color: var(--primary-color);
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
}

  .item-box .product-title a {
    font-family: "Gotham";
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #28282a;
  }

    .item-box .product-title a:hover {
      color: var(--primary-color);
    }

.item-box .sku {
  margin: 0 0 15px;
}

.item-box .product-rating-box {
  display: inline-block;
  margin: 0 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 .description {
  display: none;
}

  .item-box .description a {
    display: block;
    overflow: hidden;
  }

.item-box .prices {
  margin: 0 0 10px;
  overflow: hidden;
}

.item-box .old-price {
  margin: 0 5px 0 0;
  font-size: 16px;
  color: #323237;
  text-decoration: line-through;
}

.item-box .actual-price {
  margin: 0 5px 0 0;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.item-box .tax-shipping-info a {
  color: var(--primary-color);
}

  .item-box .tax-shipping-info a:hover {
    text-decoration: underline;
  }

.item-box .buttons {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .item-box .buttons button {
    background: transparent;
    width: 40px;
    height: 36px;
    border: none;
  }

    .item-box .buttons button span {
      font-size: 16px;
      color: #28282a;
    }

.item-box input[type="button"] {
  display: inline-block;
  height: 36px;
  border: none;
  vertical-align: middle;
  background-color: #fff;
}

.item-box .buttons .add-to-compare-list-button,
.item-box .buttons .add-to-wishlist-button {
  opacity: 0;
  transition: all 0.3s;
}

.item-box:hover .buttons .add-to-compare-list-button,
.item-box:hover .buttons .add-to-wishlist-button {
  opacity: 1;
  color: var(--primary-color);
}

.item-box input[type="button"].product-box-add-to-cart-button {
  border-radius: 3px;
  transition: all 0.3s;
  font-size: 14px;
  text-transform: capitalize;
  padding: 5px 15px;
  color: #28282a;
  background: #fff;
  border: 1px solid #e5e7ed;
}

.item-box:hover input[type="button"].product-box-add-to-cart-button {
  background: var(--primary-color);
  border: solid 1px var(--primary-color);
  color: #fff;
}

.item-box .add-to-compare-list-button,
.item-box .add-to-wishlist-button {
  width: 40px;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
}

  .item-box .add-to-compare-list-button:hover,
  .item-box .add-to-wishlist-button:hover {
    color: var(--primary-color);
  }

.sub-category-grid {
  margin-bottom: 20px;
}

  .sub-category-grid .item-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .sub-category-grid .owl-nav {
    position: absolute;
    right: 30px;
    bottom: 0;
  }

  .home-page-category-grid .title,
  .sub-category-grid .title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

    .home-page-category-grid .title a,
    .sub-category-grid .title a {
      display: block;
      padding: 0 0 15px;
      font-size: 18px;
    }

  .home-page-category-grid .picture,
  .sub-category-grid .picture {
    margin: 0;
  }

    .home-page-category-grid .picture a:before,
    .sub-category-grid .picture a:before {
      padding-top: 65%;
    }

.product-grid,
.product-list {
  margin: 0 0 50px;
  padding: 20px 0;
}

.search-page .product-grid,
.search-page .product-list,
.recently-added-products-page .product-grid,
.recently-added-products-page .product-list,
.recently-viewed-products-page .product-grid,
.recently-viewed-products-page .product-list {
  padding: 0;
}

.product-grid.also-purchased-products-grid,
.product-grid.related-products-grid {
  margin: 0 0 50px;
  padding: 20px 0;
}

.product-grid .item-grid {
  display: flex;
  flex-wrap: wrap;
  /*margin-left: -15px;*/
  margin-right: -15px;
}

  .product-grid .item-grid .single-item {
    padding: 0 15px;
    width: 33.33%;
  }

.manufacturer-page .product-grid,
.manufacturer-page .product-list,
.category-page .product-grid,
.category-page .product-list {
  padding: 20px 0;
}

.product-grid .title {
  margin: 0 0 30px;
  font-size: 30px;
  font-weight: normal;
  color: #000;
}

  .product-grid .title strong {
    font-weight: normal;
  }

.manufacturer-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

  .manufacturer-grid .title a:hover {
    color: var(--primary-color);
  }

.vendor-grid .title {
  margin: 0 0 15px;
  text-align: center;
  font-size: 16px;
}

  .vendor-grid .title a:hover {
    color: var(--primary-color);
  }

.vendor-grid .picture {
  border: 1px solid #ddd;
}

.pager {
  margin: 0 0 20px;
}

  .pager ul {
    text-align: right;
    font-size: 0;
  }

  .pager li {
    display: inline-block;
    margin: 0 5px;
    vertical-align: top;
  }

    .pager li a,
    .pager li span {
      display: block;
      min-width: 35px;
      height: 35px;
      border: 1px solid #ddd;
      background-color: #eee;
      padding: 8px;
      text-align: center;
      font-size: 14px;
      cursor: pointer;
    }

    .pager li span {
      border-color: transparent;
      background-color: var(--primary-color);
      color: #fff;
    }

    .pager li.previous-page *,
    .pager li.next-page *,
    .pager li.first-page *,
    .pager li.last-page * {
      background-position: center;
      background-repeat: no-repeat;
      font-size: 0;
      color: #fff;
    }

    .pager li.previous-page * {
      background-image: url('../images/prev.png');
    }

    .pager li.next-page * {
      background-image: url('../images/next.png');
    }

    .pager li.first-page * {
      background-image: url('../images/first.png');
    }

    .pager li.last-page * {
      background-image: url('../images/last.png');
    }

    .pager li a:hover {
      border-color: transparent;
      background-color: #ddd;
    }


/********** PRODUCT PAGE **********/
.padding {
  padding: 35px 0;
}

.product-details-tab {
  margin-top: 40px;
  width: 100%;
}

.product-details-page .picture-gallery .offer-content {
  left: 15px;
}

.product-essential {
  padding: 0 0 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

  .product-essential > div {
    padding: 0 15px;
  }

.gallery {
  position: relative;
}

.product-essential .picture-gallery {
  position: relative;
  float: none;
  flex: 0 0 50%;
}

.picture-gallery .picture {
  width: 100%;
}

  .picture-gallery .picture .enlarge_contain img {
    border: 1px solid #eee;
  }

.gallery .picture-wrapper {
  margin: 0 0 10px;
}

.gallery .picture {
  position: relative;
  max-width: 100%;
  margin: 0 auto 10px;
  overflow: hidden;
}

  .gallery .picture:before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .gallery .picture img,
  .gallery .picture-thumbs img,
  .variant-picture img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
  }

.gallery .picture-thumbs {
  overflow: hidden;
  font-size: 0;
  text-align: left;
}

  .gallery .picture-thumbs .thumb-item {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 5px 10px;
    overflow: hidden;
    cursor: pointer;
  }

.overview {
  text-align: left;
  position: relative;
  margin: 0 0 50px;
  flex: 0 0 50%;
}

  .overview .discontinued-product {
    background: #f3f3f3;
    margin: 0 0 20px;
  }

    .overview .discontinued-product h4 {
      display: inline-block;
      font-size: 14px;
      padding: 17px 17px 17px 40px;
      background: url('../images/discontinued-product-icon.png') no-repeat 13px center;
      color: #de444c;
    }

  .overview .product-name {
    margin: 0 0 8px;
    padding: 0 0 10px;
  }

    .overview .product-name h1 {
      font-size: 20px;
      font-weight: normal;
    }

  .overview .short-description {
    margin: 0 0 15px;
    line-height: 22px;
    color: #666;
  }

.product-no-reviews,
.product-reviews-overview {
  margin: 0 0 15px;
  color: #000;
  display: flex;
}

  .product-no-reviews a {
    text-decoration: none;
  }

.product-review-box {
  display: inline-block;
  margin-right: 8px;
}

  .product-review-box .rating {
    width: 95px;
    height: 14px;
    background: url('../images/rating1.png') repeat-x;
    font-size:0;
  }

    .product-review-box .rating div {
      height: 14px;
      background: url('../images/rating2.png') repeat-x;
    }

.product-review-links a {
  text-decoration: none;
}

  .product-review-links a:last-child {
    text-decoration: none;
    color: #007bff;
  }

.sku-availability {
  display: flex;
}

.product-review-links a:hover {
  color: var(--primary-color);
}

.overview .value,
.variant-overview .value {
  color: #000;
}

  .overview .value a,
  .variant-overview .value a {
    color: var(--primary-color);
  }

    .overview .value a:hover,
    .variant-overview .value a:hover {
      text-decoration: underline;
    }

.overview-buttons {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  margin-left: -15px;
}

  .overview-buttons i {
    font-weight: 600;
  }

    .overview-buttons i.fa-exchange {
      font-weight: normal;
    }

  .overview-buttons div {
    padding-left: 15px;
    padding-left: 15px;
    width: 100%;
  }

  .overview-buttons .button-2 {
    width: 100%;
  }

.overview .button-2,
.variant-overview .button-2 {
  border: none;
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: .25rem;
  padding: 10px 15px;
  width: 100%;
  background: #ddd;
}

  .overview .button-2 span,
  .variant-overview .button-2 span {
    font-weight: bold;
  }

  .overview .button-2:hover,
  .variant-overview .button-2:hover {
    background-color: var(--primary-color);
    color: #fff;
  }

.overview .add-to-compare-list-button {
  background: #ddd;
}

.overview .download-sample-button,
.variant-overview .download-sample-button {
  border: 1px solid #eee;
}

.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button {
  background-color: #ddd;
}

.overview .manufacturers {
  margin: 0 0 20px;
}

  .overview .manufacturers span.label {
    font-weight: bold;
  }

.overview .delivery-date span.label {
  font-weight: bold;
}

.overview .availability,
.variant-overview .availability {
  margin: 0 12px 0 0;
  overflow: hidden;
  flex: 0 0 50%;
}

  .overview .availability .stock,
  .variant-overview .availability .stock {
    margin: 0 0 20px;
  }

    .overview .availability .stock .label,
    .variant-overview .availability .stock .label {
      font-weight: bold;
    }

  .overview .availability .back-in-stock-subscription,
  .variant-overview .availability .back-in-stock-subscription {
    display: inline-block;
  }

.overview .additional-details div,
.variant-overview .additional-details div {
  margin: 0 0 8px;
}

.overview .additional-details .label,
.variant-overview .additional-details .label {
  font-weight: bold;
}

.overview .delivery,
.variant-overview .delivery {
  overflow: hidden;
  margin-bottom: 15px;
}

.overview .free-shipping,
.variant-overview .free-shipping {
  display: inline-block;
  margin-top: 10px;
  background: url('../images/shipping.png') left center no-repeat;
  padding: 2px 0 2px 28px;
  font-weight: bold;
  color: #000;
}

  .overview .free-shipping.invisible,
  .variant-overview .free-shipping.invisible {
    display: none;
  }

.overview .delivery-date,
.variant-overview .delivery-date {
  margin: 10px 0;
}

.overview .min-qty-notification,
.variant-overview .min-qty-notification {
  margin: 10px 0;
  font-style: italic;
  color: #000;
}

.overview .download-sample,
.variant-overview .download-sample {
  display: inline-block;
  margin: 0 0 25px;
}

.overview .prices,
.variant-overview .prices {
  margin: 0 0 10px;
  overflow: hidden;
}

  .overview .prices > div,
  .variant-overview .prices > div {
    margin: 0 0 5px;
  }

    .overview .prices > div > span,
    .variant-overview .prices > div > span {
      vertical-align: middle;
    }

.overview .old-product-price,
.variant-overview .old-product-price,
.overview .non-discounted-price,
.variant-overview .non-discounted-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.overview .product-price,
.variant-overview .product-price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.overview .tax-shipping-info a,
.variant-overview .tax-shipping-info a {
  color: var(--primary-color);
}

  .overview .tax-shipping-info a:hover,
  .variant-overview .tax-shipping-info a:hover {
    text-decoration: underline;
  }

.customer-entered-price {
  margin: 0 0 20px;
  overflow: hidden;
}

  .customer-entered-price .price-input label {
    display: block;
    margin: 0 0 5px;
    font-weight: bold;
    color: #000;
  }

  .customer-entered-price .price-input input {
    width: 170px;
    text-align: center;
  }

  .customer-entered-price .price-range {
    margin: 5px 0 0;
    color: #777;
  }

.tier-prices {
  margin: 0 0 20px;
}

  .tier-prices .title {
    display: none;
  }

  .tier-prices table td {
    border: 1px solid #ddd;
    padding: 10px;
    color: #000;
  }

  .tier-prices .field-header {
    min-width: 80px;
  }

  .tier-prices .item-price {
    background-color: #f9f9f9;
    font-size: 16px;
    color: #e4434b;
  }

.overview .add-to-cart {
  margin: 0 0 20px;
}

.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
  display: flex;
  position: relative;
}

.overview .qty-label,
.variant-overview .qty-label {
  display: none !important;
}

.overview .qty-input,
.variant-overview .qty-input {
  flex: 0 0 49%;
  width: 45px;
  height: 43px;
  padding: 0 12px;
  text-align: center;
  font-size: 15px;
  color: #000;
  margin-right: 1%;
  border: 1px solid #ddd;
}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
  height: 43px;
  padding: 0 12px;
  font-size: 15px;
  color: #000;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
  border: none;
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  border-radius: .25rem;
  display: inline-block;
}

  .overview .add-to-cart-button:hover,
  .variant-overview .add-to-cart-button:hover {
    background-color: #27272b;
  }

.product-share-button {
  display: inline-block;
  overflow: hidden;
  margin: 10px 0;
}

.full-description {
  line-height: 24px;
  padding-top: 20px;
  font-family: "Gotham";
}

  .full-description .description-header {
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    line-height: 40px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: normal;
  }

.product-collateral {
  margin: 0 0 40px;
}

  .product-collateral .title {
    margin: 0 0 10px;
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    line-height: 40px;
    display: inline-block;
    font-family: 'Gotham-Medium';
  }

    .product-collateral .title strong {
      font-weight: normal;
    }

.product-variant-line {
  margin: 0 0 30px;
  border: 1px solid #eee;
  padding: 15px;
}

  .product-variant-line:after {
    content: "";
    display: block;
    clear: both;
  }

.variant-picture {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 15px;
  overflow: hidden;
}

.variant-overview {
  width: 100%;
}

  .variant-overview .variant-name {
    margin: 0 0 10px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
  }

  .variant-overview .variant-description {
    margin: 0 0 15px;
    line-height: 22px;
  }

  .variant-overview .add-to-wishlist {
    margin: 0 0 25px;
  }

  .variant-overview .add-to-wishlist-button {
    display: inline-block;
    width: auto;
  }

  .variant-overview .add-to-cart {
    margin: 0 0 10px;
  }

.product-specs-box {
  margin: 0 0 40px;
}

  .product-specs-box td {
    border: 1px solid #ddd;
    padding: 10px;
  }

.product-tags-list {
  font-size: 0;
  text-align: left;
  padding-top: 20px;
}

  .product-tags-list li {
    display: inline-block;
    font-size: 14px;
  }

    .product-tags-list li.separator {
      margin: 0 5px 0 3px;
    }

  .product-tags-list a {
    display: inline-block;
    line-height: 24px;
  }

    .product-tags-list a:hover {
      color: #000;
    }

.attributes {
  margin: 20px 0;
}

  .attributes dl {
    overflow: hidden;
    padding: 0 2px;
  }

  .attributes dt,
  .attribute-label {
    display: block;
    margin: 0 0 5px;
    white-space: nowrap;
    font-weight: bold;
    color: #000;
  }

  .attributes dd,
  .attribute-data {
    margin: 0 0 10px;
  }

  .attributes li {
    margin: 8px 0 12px;
  }

  .attributes select {
    width: 100%;
    min-width: 100px;
    max-width: 100%;
  }

  .attributes .option-list label {
    margin: 0 5px;
  }

  .attributes .datepicker {
    width: 280px;
    text-align: center;
    color: #000;
  }

  .attributes .qty-box input {
    width: 48px;
    height: 32px;
    text-align: center;
  }

.cart-wishlist {
  display: flex;
  justify-content: space-between;
  margin-left: -3.5px;
  margin-right: -3.5px;
}

  .cart-wishlist .add-to-cart {
    padding: 0 3.5px;
    flex: 0 0 67%;
  }

  .cart-wishlist .add-to-wishlist {
    flex: 0 0 33%;
    padding: 0 3.5px;
  }

    .cart-wishlist .add-to-wishlist .button-2 {
      width: 100%;
      max-height: 43px;
    }

.ui-datepicker {
  width: 280px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color: #777;
}

.ui-datepicker-header {
  position: relative;
  height: 32px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0;
  background-image: none;
  padding: 0 !important;
  font-weight: normal;
}

  .ui-datepicker-header a {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0;
    top: 0 !important;
    width: 32px !important;
    height: 32px !important;
    border: none !important;
  }

    .ui-datepicker-header a.ui-datepicker-prev {
      left: 0;
      background: url('../images/calendar-prev.png') center no-repeat;
    }

    .ui-datepicker-header a.ui-datepicker-next {
      right: 0;
      background: url('../images/calendar-next.png') center no-repeat;
    }

    .ui-datepicker-header a span {
      display: none !important;
    }

.ui-datepicker-title {
  position: relative;
  z-index: 0;
  line-height: 32px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 32px !important;
}

.ui-datepicker-calendar {
  margin: 0 !important;
  font-size: 14px !important;
}

  .ui-datepicker-calendar th {
    background-color: #eee;
  }

  .ui-datepicker-calendar th,
  .ui-datepicker-calendar td {
    width: 14.285%;
    border: 1px solid #ddd;
    padding: 0;
  }

    .ui-datepicker-calendar th span,
    .ui-datepicker-calendar td a {
      display: block;
      min-height: 32px;
      line-height: 32px;
      color: #000;
    }

    .ui-datepicker-calendar td a {
      border: none !important;
      background: none !important;
      padding: 0;
      text-align: center;
      color: #000 !important;
    }

  .ui-datepicker-calendar .ui-state-active {
    outline: 2px solid var(--primary-color);
    font-weight: bold;
    color: var(--primary-color);
    color: #ff5874 !important;
  }

.attribute-squares {
  display: inline-flex;
  align-items: flex-start;
}

  .attribute-squares li {
    display: inline-block;
    margin: 0 5px 5px;
    text-align: center;
  }

  .attribute-squares .attribute-square-container {
    display: block;
    position: relative;
    z-index: 0;
    padding: 1px;
  }

  .attribute-squares label {
    display: block;
    margin: 0 !important;
    overflow: hidden;
  }



  .attribute-squares .attribute-square {
    display: table !important;
    width: 20px !important;
    height: 20px !important;
    /*  border: 1px solid #000 !important;*/
    cursor: pointer;
    margin-right: 5px;
  }

  .attribute-squares .selected-value .attribute-square-container {
    background-color: var(--primary-color);
  }

  .attribute-squares li input {
    position: relative;
    z-index: -1;
    margin: -32px 0 0;
  }

.tooltip-container {
  position: absolute;
  width: 200px;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #eeeeee;
  text-align: center;
  visibility: hidden;
  border-radius: 5px;
}

  .tooltip-container:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-bottom: 7px solid #eeeeee;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
  }

  .tooltip-container:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-bottom: 6px solid #FFFFFF;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
  }

.attribute-squares li:hover .tooltip-container {
  visibility: visible;
  margin-left: -3px;
  margin-top: 5px;
  z-index: 999;
}

.attributes .attribute-squares .tooltip-container .not-available-text {
  font-size: 12px;
  color: #ff0000;
}

.attributes .attribute-squares.color-squares .tooltip-container .not-available-text {
  margin: 5px;
}

.attributes .attribute-squares.color-squares .tooltip-container {
  width: 120px;
  display: none;
}

.attributes .attribute-squares.color-squares li:hover .tooltip-container {
  margin-left: -42px;
}

.attributes .attribute-squares.color-squares .disabled .tooltip-container {
  display: block;
}

.attributes .attribute-squares.image-squares .tooltip-container .not-available-text {
  margin-bottom: 5px;
  display: none;
}

.attributes .attribute-squares.image-squares .disabled .tooltip-container .not-available-text {
  display: block;
}

.attributes .attribute-squares .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.attributes .attribute-squares .disabled .attribute-square {
  opacity: 0.25;
  cursor: default;
}

.tooltip-container .tooltip-header {
  background-color: #F6F6F6;
  height: 25px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding-left: 10px;
  padding-top: 5px;
  text-align: left;
  width: 198px;
  font-size: 15px;
  border-bottom: 1px #EEEEEE solid;
}

.tooltip-container .tooltip-body {
  margin: 5px;
}

  .tooltip-container .tooltip-body img {
    border: 0px #FFF;
    width: 190px;
  }

.giftcard {
  margin: 0 0 20px;
  overflow: hidden;
}

  .giftcard div {
    margin: 0 0 10px;
  }

  .giftcard label {
    display: block;
    margin: 0 auto 5px;
    font-weight: bold;
    color: #000;
  }

  .giftcard input,
  .giftcard textarea {
    width: 100%;
    max-width: 100%;
  }

  .giftcard textarea {
    height: 150px;
  }


/********** PRODUCT REVIEWS **********/



.product-reviews-page h1 a {
  color: var(--primary-color);
}

  .product-reviews-page h1 a:before,
  .product-reviews-page h1 a:after {
    content: "''";
  }

.product-reviews-page .title {
  margin: 0 0 20px;
  font-size: 20px;
  color: #000;
}

  .product-reviews-page .title strong {
    font-weight: normal;
  }

.write-review {
  margin: 0 0 60px;
}

  .write-review .fieldset {
    margin: 0 0 30px;
  }

.tooltip {
  position: initial;
  display: inline-block;
  color: #000;
}

  .tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background: #f0f0f0 no-repeat 100% 5%;
    border: #c0c0c0 1px dotted;
    text-align: Left;
    padding: 10px 10px 5px 5px;
    position: absolute;
    z-index: 1;
    left: 10%;
    opacity: 0;
    transition: opacity 0.3s;
  }

    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
    }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    cursor: help;
  }

.write-review .review-rating {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

  .write-review .review-rating label {
    display: inline-block;
    margin: 0 0 5px;
    font-size: 14px;
    color: #000;
  }

.product-reviews-page .custom-radio-container .custom-radio {
  background-color: #eee;
  position: relative;
}

.write-review .review-rating div {
  padding-left: 40px;
}

  .write-review .review-rating div.first {
    color: #e4444c;
  }

  .write-review .review-rating div.rating-options {
    padding-top: 2px;
    padding-left: 40px;
    display: inline-block;
    position: relative;
  }

    .write-review .review-rating div.rating-options input {
      vertical-align: baseline;
    }

    .write-review .review-rating div.rating-options .custom-radio-container {
      position: relative;
      display: inline-block;
      margin-right: 8px;
      margin-left: 0;
      vertical-align: middle;
      padding-left: 0;
    }

    .write-review .review-rating div.rating-options .custom-radio-container input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 20px;
      height: 20px;
      margin: 0;
      cursor: pointer;
      z-index: 2;
    }

    .write-review .review-rating div.rating-options .custom-radio-container .custom-radio {
      position: relative;
      top: 0;
      left: 0;
      display: inline-block;
      width: 20px;
      height: 20px;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 50%;
      cursor: pointer;
      margin-bottom: 0;
    }

    .write-review .review-rating div.rating-options .custom-radio-container:hover .custom-radio {
      background-color: #ccc;
      border-color: #999;
    }

    .write-review .review-rating div.rating-options .custom-radio-container input:checked ~ .custom-radio {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .write-review .review-rating div.rating-options .custom-radio-container .custom-radio:after {
      content: "";
      display: none;
      position: absolute;
      top: 6px;
      left: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #fff;
    }

    .write-review .review-rating div.rating-options .custom-radio-container input:checked ~ .custom-radio:after {
      display: block;
    }

  .write-review .review-rating div.last {
    color: #4cb17c;
  }

.write-review .captcha-box {
  margin: 15px 0 0;
}

.write-review .button-1 {
  border: none;
  background-color: var(--primary-color);
  padding: 10px 25px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .write-review .button-1:hover {
    background-color: var(--primary-color);
  }

.product-reviews-page .result,
.product-reviews-page .message-error {
  margin: 0 0 20px;
}

.product-review-list {
  overflow: hidden;
}

.product-review-item {
  margin: 0 0 40px;
  border: 1px solid #eee;
}

  .product-review-item .review-item-head {
    overflow: hidden;
    background-color: #f6f6f6;
    padding: 10px;
  }

  .product-review-item .review-title {
    line-height: 20px;
    font-size: 15px;
    color: #000;
  }

  .product-review-item .product-review-box {
    margin: 3px 0 0;
  }

  .product-review-item .review-content {
    padding: 20px 10px;
  }

  .product-review-item .review-text {
    margin: 0 0 15px;
    line-height: 22px;
    color: #000;
  }

  .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: var(--primary-color);
      cursor: pointer;
    }

.product-review-helpfulness .question {
  margin: 0 5px 0 0;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 0 0 10px;
}

/********** WISHLIST & COMPARE LIST **********/

.wishlist-page .page-title {
  margin: 0 0 -1px;
}

.wishlist-content {
  margin: 25px 0;
}

  .wishlist-content .message-error {
    margin: 20px 0;
  }

  .wishlist-content .table-wrapper {
    margin: 0 0 30px;
  }

  .wishlist-content .product-content {
    min-width: 300px;
    text-align: left;
  }

  .wishlist-content .tax-shipping-info {
    margin: 0 0 20px;
    text-align: center;
  }

    .wishlist-content .tax-shipping-info a {
      color: #4ab3f1;
    }

      .wishlist-content .tax-shipping-info a:hover {
        text-decoration: underline;
      }

  .wishlist-content .buttons {
    font-size: 0;
  }

  .wishlist-content .button-2 {
    display: block;
    width: 250px;
    margin: 0 auto 3px;
    border: none;
    padding: 10px 25px;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    color: #fff;
  }

  .wishlist-content .update-wishlist-button,
  .wishlist-content .wishlist-add-to-cart-button {
    background-color: var(--primary-color);
    text-transform: uppercase;
  }

    .wishlist-content .update-wishlist-button:hover,
    .wishlist-content .wishlist-add-to-cart-button:hover {
      background-color: var(--primary-color);
    }

  .wishlist-content .email-a-friend-wishlist-button {
    background-color: #323237;
  }

    .wishlist-content .email-a-friend-wishlist-button:hover {
      background-color: #222;
    }

.wishlist-page .button-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wishlist-page .custom-wishlist-button {
  border: none;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.wishlist-page .custom-wishlist-button.active {
  background-color: black !important;
}

  .wishlist-page .custom-wishlist-button:hover {
    opacity :0.9;
  }

.wishlist-page .custom-wishlist-button.add-new::before,
.wishlist-buttons-container .custom-wishlist-button.add-new::before,
.wishlist-buttons-container .wishlist-modal-button-add::before {
  content: "+";
  font-weight: 700;
  font-size: 16px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

.wishlist-page .delete-wishlist-button {
  background-color: #c0392b;
}

.wishlist-page .delete-wishlist-button:hover {
  background-color: #a93226;
}

@media (max-width: 768px) {
  .wishlist-page .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .wishlist-page .custom-wishlist-button {
    width: 100%;
    text-align: center;
  }
}

.wishlist-page .share-info {
  text-align: center;
  margin-bottom: 48px;
}

  .wishlist-page .share-info span {
    display: block;
    margin: 0 0 5px;
  }

  .wishlist-page .share-info a {
    font-weight: bold;
    color: #000;
  }

    .wishlist-page .share-info a:hover {
      color: var(--primary-color);
    }

.wishlist-page .no-data {
  margin: 25px 0 0;
  text-align: center;
}

#region Wishlist Modals
.wishlist-modal-content {
  padding: 10px 0;
}

.wishlist-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wishlist-modal-button {
  width: 100%;
  border: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.wishlist-modal-button-add,
.wishlist-modal-button-submit {
  background-color: var(--primary-color);
  color: #fff;
}

.wishlist-modal-button-add:hover,
.wishlist-modal-button-submit:hover {
  background-color: var(--primary-color);
  opacity: 0.9;
}

.wishlist-modal-button:not(.wishlist-modal-button-add):not(.wishlist-modal-button-submit) {
  background-color: #f5f5f5;
  color: #333;
}

.wishlist-modal-button:not(.wishlist-modal-button-add):not(.wishlist-modal-button-submit):hover {
  background-color: #e0e0e0;
}

.add-wishlist-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wishlist-name-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}

.wishlist-name-input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.ui-dialog-content .wishlist-modal-content {
  padding: 0;
}
#endregion

.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .clear-list {
    display: inline-block;
    margin: 0 0 20px;
    background-color: var(--primary-color);
    padding: 10px 15px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
  }

    .compare-products-page .clear-list:hover {
      background-color: var(--primary-color);
    }

  .compare-products-page .table-wrapper {
    margin: 0 0 30px;
    padding: 0 0 1px;
  }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: left;
  vertical-align: top;
  color: #000;
}

  .compare-products-table td:first-child {
    min-width: 0;
  }

  .compare-products-table td label {
    font-weight: normal;
    color: #777;
  }

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url('../images/remove.png') left center no-repeat;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #666;
}

  .compare-products-table .remove-button:hover {
    color: var(--primary-color);
  }

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 200px;
  height: 200px;
  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 .product-name td a:hover {
    color: var(--primary-color);
  }

.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;
}

/*********** TOPICS ***********/

.topic-block-title {
  min-height: 50px;
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px;
  display: none;
}

  .topic-block-title h2 {
    font-size: 30px;
    font-weight: normal;
  }

.topic-block-body {
  text-align: justify;
  line-height: 24px;
  font-size: 16px;
}

.topic-page .page-body {
  text-align: justify;
  line-height: 22px;
}

.topic-block a,
.topic-page a {
  text-decoration: underline;
}

.topic-block strong,
.topic-page strong {
  color: #000;
}

.popup-window .topic-page {
  padding: 15px;
}

.not-found-page p {
  margin: 30px 15px;
}

.topic-password {
  text-align: center;
}

.enter-password-title {
  margin: 0 0 20px;
  color: #000;
}

.enter-password-form {
  display: inline-block;
  overflow: hidden;
}

  .enter-password-form input[type="password"] {
    float: left;
    width: 200px;
    height: 40px;
    margin: 0 -1px 0 0;
  }

  .enter-password-form input[type="submit"] {
    float: left;
    width: auto;
    min-width: 86px;
    height: 40px;
    border: none;
    background-color: var(--primary-color);
    padding: 0 15px;
    color: #fff;
    text-transform: uppercase;
  }

    .enter-password-form input[type="submit"]:hover {
      background-color: var(--primary-color);
    }

/*********** CONTACT & EMAIL A FRIEND & APPLY FOR VENDOR ACCOUNT ***********/

.contact-page .page-title,
.email-a-friend-page .page-title,
.apply-vendor-page .page-title {
  margin: 0 0 -1px;
}

.contact-page .result,
.contact-page .message-error,
.email-a-friend-page .result,
.email-a-friend-page .message-error,
.apply-vendor-page .result,
.apply-vendor-page .message-error {
  margin: 20px 0;
}

.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .contact-page .button-1:hover,
  .email-a-friend-page .button-1:hover,
  .apply-vendor-page .button-1:hover {
    background-color: var(--primary-color);
  }

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .title {
  margin: 25px 0;
}

.contact-page .topic-block,
.email-a-friend-page .title,
.apply-vendor-page .title {
  margin: 25px 0;
}

  .email-a-friend-page .title h2 {
    font-weight: normal;
    color: var(--primary-color);
  }

.email-a-friend-page .page-body {
  margin-top: 20px
}

  .email-a-friend-page .page-body .result {
    text-align: center;
  }

.apply-vendor-page .terms-of-service {
  text-align: center;
}

  .apply-vendor-page .terms-of-service > * {
    display: inline-block;
    line-height: 32px;
  }

  .apply-vendor-page .terms-of-service span,
  .apply-vendor-page .terms-of-service a {
    color: var(--primary-color);
    cursor: pointer;
  }

/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

.gender {
  display: inline-block;
}

  .gender span {
    display: inline-block;
    margin: 0 5px;
  }

.date-of-birth .date-picker-wrapper {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 200px);
}

.date-of-birth select {
  width: 26.6%;
}

  .date-of-birth select + select {
    margin: 0 0 0 10px;
  }

.date-of-birth .select-wrapper + .select-wrapper {
  margin: 0 0 0 10px;
}

#check-availability-button {
  margin: 10px 0 0;
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

  #check-availability-button:hover {
    background-color: #222;
  }

.inputs.accept-consent {
  text-align: center;
}

  .inputs.accept-consent > * {
    display: inline-block;
    line-height: 32px;
  }

  .inputs.accept-consent span,
  .inputs.accept-consent a {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
  }

  .inputs.accept-consent label {
    width: auto;
    margin-left: 10px;
    margin-bottom: 0;
  }

.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.return-request-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.password-recovery-page .recovery-form,
.password-recovery-page .buttons {
  text-align: center;
  width: 50%;
  margin: auto;
}

  .password-recovery-page .recovery-form .inputs {
    justify-content: center;
  }

    .password-recovery-page .recovery-form .inputs input {
      width: 100%;
    }

.registration-page .button-1:hover,
.registration-result-page .button-1:hover,
.login-page .button-1:hover,
.password-recovery-page .button-1:hover,
.account-page .button-1:hover,
.return-request-page .button-1:hover {
  background-color: #ab2c41;
}

.return-request-page h1 a {
  color: var(--primary-color);
}

.return-request-page .return-request-file {
  font-size: 14px;
}

  .return-request-page .return-request-file .uploadedfileinput {
    display: inline-block;
  }

.registration-page .message-error,
.login-page .message-error,
.account-page .message-error {
  margin: 0 0 10px;
}

.registration-result-page .result {
  margin: 0 0 30px;
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: #4cb17c;
}

.customer-info-page {
  background: #eee;
  border: solid 1px #ebebf4;
  padding: 35px;
}

  .customer-info-page .email-to-revalidate,
  .customer-info-page .readonly-username,
  .customer-info-page .vat-status {
    margin: 0 5px;
    font-size: 14px;
  }

  .customer-info-page .vat-status {
    display: block;
  }

  .registration-page .vat-note,
  .customer-info-page .vat-note,
  .customer-info-page .email-to-revalidate-note {
    display: block;
    font-size: 14px;
    margin-top: 7px;
    white-space: normal;
  }

.register-page-body {
  background: #eee;
  border: solid 1px #ebebf4;
  padding: 35px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.login-page .customer-blocks {
  margin: 0 0 30px;
}

.login-page .inputs {
  display: flex;
  justify-content: space-between;
}

.login-page .returning-wrapper .inputs {
  display: block;
}

.login-page .inputs input {
  width: 100%;
}

  .login-page .inputs input[type="checkbox"],
  .login-page .inputs input[type="radio"] {
    width: auto;
  }

.inputs .login-password {
  position: relative;
}
.inputs .login-password input {
    width: 100%;
}
.inputs .login-password .password-eye {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
}
.login-page .title,
.register-block .title {
  margin: 0 0 15px;
  font-size: 20px;
  color: #000;
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}

  .login-page .title strong {
    font-weight: bold;
  }

.login-page .new-wrapper {
  margin: 0 0 50px;
}

  .login-page .new-wrapper .text {
    padding: 30px 0;
    line-height: 22px;
  }

  .login-page .new-wrapper .topic-block {
    margin: 0;
  }

  .login-page .new-wrapper .topic-block-body strong {
    color: #000;
  }

  .login-page .new-wrapper .button-1 {
    margin: 0 0 5px;
  }

.login-page .returning-wrapper {
  margin: 0;
}

  .login-page .returning-wrapper .form-fields {
    overflow: hidden;
    padding: 30px 15px 0;
  }

  .login-page .returning-wrapper .inputs.reversed {
    white-space: normal;
  }

  .login-page .returning-wrapper .inputs.reversed {
    display: inline-block;
    width: auto;
    font-size: 14px;
    color: #000;
    background: transparent;
  }

.login-page .remember-me {
  display: flex;
  justify-content: flex-end;
}

  .login-page .remember-me .custom-checkbox {
    left: 0;
    top: 0;
  }

  .login-page .remember-me label {
    padding-left: 25px;
  }

  .login-page .remember-me .forgot-password {
    display: flex;
    justify-content: flex-end;
    margin-left: 30px;
  }

.login-page .returning-wrapper .inputs.reversed a:hover {
  color: var(--primary-color);
}

.login-page .captcha-box {
  margin: -15px 0 20px;
}

.external-authentication {
  overflow: hidden;
  text-align: center;
}

  .external-authentication .title {
    margin: 0 0 15px;
    font-size: 20px;
    color: #000;
  }

  .external-authentication .buttons {
    margin: 0 0 30px;
    border-top: 1px solid #e6e6e6;
    padding: 30px;
  }

.external-auth-errors {
  color: #e4444c;
}

.external-auth-association {
  color: #000;
}

  .external-auth-association a {
    color: var(--primary-color);
  }

    .external-auth-association a:hover {
      text-decoration: underline;
    }

.password-recovery-page .result {
  margin: 0 0 5px;
  font-weight: bold;
  color: #000;
}

.password-recovery-page .tooltip {
  margin: 0 0 25px;
}

.add-more-external-records {
  text-align: center;
}

  .add-more-external-records a {
    color: var(--primary-color);
  }

    .add-more-external-records a:hover {
      text-decoration: underline;
    }

.forum-search-page,
.account-page,
.search-page {
  background: #eee;
  border: solid 1px #ebebf4;
}

  .account-page.my-product-reviews-list-page {
    background: #fff;
    border: 1px solid transparent;
  }

  .account-page .buttons {
    text-align: center;
  }

  .account-page .news-label {
    margin-left: 25px;
  }

  .account-page .description {
    margin: 0 0 25px;
    padding: 0 10px;
  }

  .account-page .table-wrapper {
    margin: 0 0 30px
  }

.gdpr-tools-page .result {
  margin: 20px 0;
  font-size: 13px;
  color: #e4434b;
}

.gdpr-tools-page .buttons {
  margin-top: 20px;
}

.address-list-page .info,
.order-list-page .info {
  margin: 0 0 10px;
  border: 1px solid #eee;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 26px;
  color: #000;
  border-radius: 3px;
}

  .address-list-page .info .name,
  .order-list-page .info .name {
    font-size: 16px;
    font-weight: bold;
  }

.address-list-page .button-2,
.order-list-page .button-2 {
  display: inline-block;
  margin: 0 0 0 10px;
  border: none;
  padding: 0 0 0 18px;
  font-size: 12px;
  color: #000;
}

.edit-address-button {
  background: url('../images/edit.png') left center no-repeat;
}

.delete-address-button,
.cancel-recurring-order-button {
  background: url('../images/remove.png') left center no-repeat;
}

.retry-recurring-order-button {
  background: url('../images/retry.png') left center no-repeat;
}

.return-items-button {
  background: url('../images/return.png') left center no-repeat;
}

.order-details-button {
  background: url('../images/details.png') left center no-repeat;
}

.address-list-page .button-2:hover,
.order-list-page .button-2:hover {
  color: var(--primary-color);
}

.address-list-page .add-button {
  margin: 0 0 20px;
  text-align: center;
}

.address-edit-page .page-title {
  margin: 0 0 -1px;
}

.address-edit-page .message-error {
  margin: 20px 0;
}

.address-edit-page .edit-address {
  margin: 0 0 30px;
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
}

.recurring-payments table td {
  white-space: nowrap;
}

  .recurring-payments table td:first-child {
    min-width: 120px;
    white-space: normal;
  }

.recurring-payments .button-2 {
  font-size: 14px;
}

.return-request-list-page .details {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 22px;
  color: #000;
}

.return-request-list-page label {
  margin: 0 5px 0 0;
}

.return-request-list-page a {
  color: var(--primary-color);
}

  .return-request-list-page a:hover {
    text-decoration: underline;
  }

.return-request-list-page .comments div {
  margin: 10px 0 0;
  font-size: 15px;
  font-style: italic;
  color: #000;
}

.downloadable-products-page table td {
  color: #000;
}

.reward-points-overview {
  margin: 0 0 25px;
}

.reward-points-history table td {
  color: #000;
}

  .reward-points-history table td:first-child {
    min-width: 120px;
  }

.change-password-page .page-title {
  margin: 0 0 -1px;
}

.change-password-page .result,
.change-password-page .message-error {
  margin: 20px 0;
}

.change-password-page .fieldset {
  margin: 0 0 30px;
}

.avatar-page .page-title {
  margin: 0;
}

.avatar-page .page-body {
  margin: 0 0 30px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 30px 25px;
}

.avatar-page .message-error {
  margin: 0 0 10px;
}

.avatar-page .image {
  margin: 0 0 10px;
}

  .avatar-page .image img {
    border: 1px solid #ccc;
  }

.avatar-page .button-1 {
  font-size: 14px;
}

.avatar-page .button-2 {
  border: none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

  .avatar-page .button-2:hover {
    background-color: #222;
  }

.avatar-page .info {
  color: #000;
}

.vendorinfo-page .button-2 {
  border: medium none;
  background-color: #888;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

  .vendorinfo-page .button-2:hover {
    background-color: #222;
  }

.vendorinfo-page .vendor-picture {
  width: 400px;
  margin: 0 auto;
}

  .vendorinfo-page .vendor-picture * {
    display: block;
    margin-top: 15px;
  }

.check-gift-card-balance-page .page-title {
  margin: 0 0 -1px;
}

.check-gift-card-balance-page .result,
.check-gift-card-balance-page .message-error {
  margin: 20px 0;
}

.check-gift-card-balance-page .fieldset {
  margin: 0 0 30px;
}

/********** SHOPPING CART **********/

.order-progress {
  margin: 0;
  background-color: #f6f6f6;
  padding: 15px 0;
  text-align: center;
}

  .order-progress ul {
    font-size: 0;
  }

  .order-progress li {
    display: inline-block;
    margin: 10px;
  }

  .order-progress a {
    display: block;
    min-width: 70px;
    font-size: 14px;
    color: #000;
  }

    .order-progress a:before {
      content: "";
      display: block;
      width: 40px;
      height: 40px;
      margin: 0 auto 15px;
      border: 1px solid #bbb;
      background: #fff url('../images/pointer.png') center no-repeat;
    }

  .order-progress li.active-step a {
    cursor: pointer;
  }

  .order-progress li.inactive-step a {
    opacity: 0.3;
    cursor: default;
  }

.shopping-cart-page .page-title {
  margin: 0 0 -1px;
  padding: 10px;
}

.shopping-cart-page .message-error {
  margin: 20px 0;
}

.shopping-cart-page td .message-error {
  margin: 10px 0 0;
  text-align: left;
}

.shopping-cart-page .checkout-attributes a {
  color: #4ab3f1;
}

  .shopping-cart-page .checkout-attributes a:hover {
    text-decoration: underline;
  }

.shopping-cart-page .tax-shipping-info {
  margin: 20px 0;
  text-align: center;
}

  .shopping-cart-page .tax-shipping-info a {
    color: #4ab3f1;
  }

    .shopping-cart-page .tax-shipping-info a:hover {
      text-decoration: underline;
    }

.shopping-cart-page .common-buttons {
  margin: 0 0 60px;
  background-color: #f6f6f6;
  padding: 20px;
  font-size: 0;
}

  .shopping-cart-page .common-buttons input {
    display: inline-block;
    min-width: 180px;
    margin: 5px;
    border: none;
    background-color: #323237;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
  }

    .shopping-cart-page .common-buttons input:hover {
      background-color: #222;
    }

    .shopping-cart-page .common-buttons input:first-child {
      background-color: var(--primary-color);
    }

    .shopping-cart-page .common-buttons input:first-child:hover {
      background-color: var(--primary-color);
    }

  .shopping-cart-page .common-buttons button {
    display: inline-block;
    min-width: 180px;
    margin: 5px;
    border: none;
    background-color: #323237;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
  }

    .shopping-cart-page .common-buttons button:hover {
      background-color: #222;
    }

    .shopping-cart-page .common-buttons button:first-child {
      background-color: var(--primary-color);
    }

      .shopping-cart-page .common-buttons button:first-child:hover {
        background-color: var(--primary-color);
      }

.checkout-attributes {
  margin: -30px 0 30px;
  color: #000;
}

  .checkout-attributes dt {
    margin: 0 0 5px;
    font-weight: bold;
  }

  .checkout-attributes dd {
    margin: 0 0 20px;
  }

  .checkout-attributes input[type="text"],
  .checkout-attributes select {
    min-width: 170px;
  }

  .checkout-attributes ul {
    font-size: 0;
  }

  .checkout-attributes li {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 8px 10px;
    font-size: 14px;
  }

  .checkout-attributes .attribute-squares li {
    border: none;
    padding: 0;
    line-height: 0;
  }

  .checkout-attributes li label {
    display: inline-block;
    margin: 0 0 0 5px;
  }

.selected-checkout-attributes {
  margin: 30px 0;
  color: #000;
}

  .selected-checkout-attributes br {
    content: "";
    display: block;
    margin: 3px;
  }

.cart-footer {
  margin: 0 0 50px;
  border-top: 1px solid #ddd;
}

  .cart-footer:after {
    content: "";
    display: block;
    clear: both;
  }

  .cart-footer .totals {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 50px;
    background-color: #eee;
    padding: 10px;
    color: #000;
  }

  .cart-footer .total-info {
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
    padding: 5px 30px 15px;
  }

.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: right;
}

  .cart-total td:first-child {
    text-align: left;
  }

.cart-total .giftcard-remaining {
  display: block;
  font-style: italic;
}

.cart-total .order-total {
  font-size: 20px;
  color: var(--primary-color);
}

  .cart-total .order-total strong {
    font-weight: normal;
  }

.cart-total .earn-reward-points {
  font-style: italic;
}

.min-amount-warning {
  margin: 0 0 20px;
  padding: 0 30px;
  color: #e4434b;
}

.terms-of-service {
  margin: 0 0 20px;
  padding: 0 30px;
  position: relative;
}

  .terms-of-service label {
    cursor: pointer;
    margin-left: 5px;
  }

  .terms-of-service a {
    margin: 0 0 0 3px;
    color: var(--primary-color);
  }

.cart-footer .checkout-buttons {
  padding: 0 10px;
}

.cart-footer .checkout-disabled {
  font-size: 20px;
  text-align: center;
  background: #ffa500;
  border: 1px solid #c3891e;
  color: #fff;
  padding: 15px 50px;
}

.cart-footer .checkout-button {
  display: inline-block;
  min-width: 160px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

  .cart-footer .checkout-button:hover {
    background-color: var(--primary-color);
  }

.cart-footer .addon-buttons {
  margin: 20px 0 0;
  padding: 0 10px;
}

.cart-collaterals {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 50px;
  padding: 25px 0 0;
}

  .cart-collaterals > div {
    max-width: 400px;
    margin: 0 0 50px;
  }

  .cart-collaterals .button-2 {
    display: inline-block;
    border: none;
    background-color: #323237;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
  }

    .cart-collaterals .button-2:hover {
      background-color: #222;
    }

  .cart-collaterals .title {
    margin: 0 0 5px;
    font-size: 18px;
    color: #000;
  }

    .cart-collaterals .title strong {
      font-weight: normal;
    }

  .cart-collaterals .hint {
    margin: 0 0 10px;
  }

  .cart-collaterals .deals > div {
    margin: 0 0 20px;
  }

  .cart-collaterals .coupon-code {
    overflow: hidden;
  }

    .cart-collaterals .coupon-code input[type="text"] {
      float: left;
      width: 60%;
      height: 36px;
      margin: 0 -1px 0 0;
    }

    .cart-collaterals .coupon-code input[type="submit"],
    .cart-collaterals .coupon-code button[type="submit"] {
      float: left;
      width: 40%;
      height: 36px;
      padding: 0;
      border-radius: 3px;
    }

  .cart-collaterals .message-failure {
    margin: 5px 0 0;
    font-size: 12px;
    color: #e4434b;
  }

  .cart-collaterals .message-success {
    margin: 5px 0 0;
    font-size: 12px;
    color: #4cb17c;
  }

  .cart-collaterals .current-code {
    margin: 5px 0 0;
    color: #4cb17c;
  }

.remove-discount-button,
.remove-gift-card-button {
  width: 16px;
  height: 16px;
  border: 1px solid #222;
  background: #fff url('../images/close.png') center no-repeat;
  cursor: pointer;
}

.cart-collaterals .shipping select {
  height: 36px;
}

.cart-collaterals .shipping-results {
  margin: 30px 0 0;
}

  .cart-collaterals .shipping-results li {
    margin: 20px 0;
  }

    .cart-collaterals .shipping-results li strong {
      display: block;
      margin: 0 0 5px;
      color: #000;
    }

.shopping-cart-page .no-data {
  margin: 25px 0 0;
}

/********** CHECKOUT **********/

.checkout-page .section {
  margin: 0 0 30px;
}

  .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;
}

.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;
  background-color: var(--primary-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .checkout-page .button-1:hover {
    background-color: var(--primary-color);
  }

.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: #000;
  }

  .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 {
  background-color: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  margin: 0 0 30px;
  padding: 30px 15px;
}

.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: #000;
  }

.checkout-page .pickup-in-store {
  text-align: center;
}

  .checkout-page .pickup-in-store .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #000;
  }

.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 {
  margin: 0 auto 30px;
  overflow: hidden;
  text-align: center;
  font-size: 0;
}

  .shipping-method .method-list li,
  .payment-method .method-list li {
    margin: 20px 0;
    font-size: 14px;
  }



    .shipping-method .method-list li label,
    .payment-method .method-list li label {
      font-size: 13px;
      font-weight: bold;
      color: #000;
    }

.shipping-method .method-description {
  margin: 5px 0 0;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #000;
}

.payment-method .payment-logo {
  display: inline-block;
  vertical-align: middle;
}

  .payment-method .payment-logo label {
    display: block;
    font-size: 0 !important;
  }

.payment-method .payment-details {
  min-width: 180px;
  display: inline-block;
  margin: 0 0 0 10px;
  text-align: left;
  vertical-align: middle;
}

.payment-info .info {
  padding: 30px 15px;
  color: #000;
}

  .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: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #000;
}

.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: #000;
}

  .order-completed .details div {
    margin: 5px 0;
  }

  .order-completed .details strong {
    font-weight: normal;
    text-transform: uppercase;
  }

  .order-completed .details a {
    color: var(--primary-color);
  }

    .order-completed .details a:hover {
      text-decoration: underline;
    }

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #f6f6f6;
}

.opc .allow .step-title {
  background-color: var(--primary-color);
  cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
  float: left;
  min-height: 40px;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
}

.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;
}

.opc .allow .step-title .number {
  background-color: var(--primary-color);
}

.opc .step {
  margin: 10px 0;
  padding: 30px 0;
  text-align: center;
}

.opc .section {
  margin: 0 0 30px;
}

  .opc .section > label {
    display: block;
    margin: 0 0 10px;
  }

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  margin-bottom: 0;
}

.opc .back-link {
  margin: 0 0 10px;
}

  .opc .back-link small {
    display: none;
  }

  .opc .back-link a {
    display: inline-block;
    margin: 0 0 0 -15px;
    background: url('../images/back-button.png') left center no-repeat;
    padding: 0 0 0 18px;
    color: #000;
  }

    .opc .back-link a:hover {
      color: var(--primary-color);
    }

.opc .buttons .please-wait {
  display: block;
  margin: 10px 0 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;
}

/****** ORDER DETAILS & SHIPPING DETAILS ******/

.order-details-page .page-title {
  border-bottom: none;
}

  .order-details-page .page-title h1 {
    margin: 0 0 30px;
    padding: 0 0 10px;
  }

  .order-details-page .page-title a {
    display: inline-block;
    min-width: 180px;
    margin: 5px 0;
    border: none;
    background-color: #323237;
    background-image: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
  }

    .order-details-page .page-title a:hover {
      background-color: #222;
    }

    .order-details-page .page-title a.print-order-button {
      background-color: var(--primary-color);
    }

      .order-details-page .page-title a.print-order-button:hover {
        background-color: var(--primary-color);
      }

.order-details-page .order-overview {
  margin: 0 0 50px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  color: #000;
}

  .order-details-page .order-overview .order-number {
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .order-details-page .order-overview .order-total strong {
    font-weight: normal;
    color: var(--primary-color);
  }

.order-details-page .repost .button-2 {
  display: inline-block;
  margin: 10px 0;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

  .order-details-page .repost .button-2:hover {
    background-color: var(--primary-color);
  }

.order-details-page .download a {
  font-weight: normal;
  color: var(--primary-color);
}

  .order-details-page .download a:hover {
    text-decoration: underline;
  }

.user-agreement-page .terms-of-agreement {
  margin: 0 0 20px;
  padding: 20px;
  text-align: center;
}

.user-agreement-page .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .user-agreement-page .button-1:hover {
    background-color: var(--primary-color);
  }

.order-details-page .tax-shipping-info {
  margin: 30px 0;
}

  .order-details-page .tax-shipping-info a {
    color: var(--primary-color);
  }

    .order-details-page .tax-shipping-info a:hover {
      text-decoration: underline;
    }

.order-details-page .actions {
  margin: 30px 0 0;
  font-size: 0;
}

  .order-details-page .actions input {
    display: inline-block;
    min-width: 165px;
    margin: 5px;
    border: none;
    background-color: #323237;
    background-image: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
  }

    .order-details-page .actions input:hover {
      background-color: #222;
    }

    .order-details-page .actions input:first-child {
      background-color: var(--primary-color);
    }

      .order-details-page .actions input:first-child:hover {
        background-color: var(--primary-color);
      }

.order-details-page .totals.section {
  width: 370px;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.order-details-page .total-info {
  background-color: #f9f9f9;
  padding: 15px 20px;
  color: #000;
}

/****** SEARCH & SITEMAP ******/

.forum-search-page .page-title,
.search-page .page-title {
  margin: 0 0 -1px;
}

.search-input .fieldset {
  margin: 0 0 30px;
}

.search-input .form-fields {
  padding: 0 0 10px;
}

.search-input input + label {
  display: inline;
  margin: 0 0 0 5px;
}

.advanced-search {
  margin: 30px 0 0;
}

  .advanced-search .price-range {
    display: inline-block;
  }

    .advanced-search .price-range input {
      width: 80px;
      margin: 3px;
    }

.search-input .buttons {
  text-align: center;
}

.search-input .button-1 {
  min-width: 140px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .search-input .button-1:hover {
    background-color: var(--primary-color);
  }

.search-input .form-fields .page-title {
  margin-bottom: 25px;
  padding: 25px 0;
  text-align: center;
  background: url(../images/title-bg.png) no-repeat;
  background-size: cover;
}

.search-input .form-fields .page-title h1 {
    --primary-color: #ff8a73;
    font-family: 'Gotham';
    outline: 0;
    text-decoration: none;
    box-sizing: border-box;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-size: 30px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 45px;
  }

.search-input .form-fields .advanced-search {
  margin: 30px 0 0;
  padding: 0;
}

  .search-input .form-fields .advanced-search .inputs {
    position: relative;
    margin: 0 0 20px;
    column-gap: 10px;
    align-items: center;
  }

    /* ensure YMM/homepage filter dropdowns start from same horizontal position */
    .search-input .form-fields .advanced-search .inputs label {
      display: inline-block;
      width: 134px;
      margin-right: 10px;
    }

  .search-input .form-fields .advanced-search .inputs:last-child {
    margin-bottom: 0;
  }

  .search-input .form-fields .advanced-search .inputs .filter-level-select {
    flex: 1;
    min-width: 200px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 35px 5px 15px;
    background-color: #fff;
    background-image: url(../images/select-arrow-dark.svg);
    background-size: 10px;
    background-position: 95% center;
    background-repeat: no-repeat;
    box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2;
    font-size: 14px;
    color: #111;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

    .search-input .form-fields .advanced-search .inputs .filter-level-select:focus {
      border-color: #ccc;
      outline: none;
      box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2, 0 0 0 2px rgba(74, 206, 52, 0.1);
    }

    .search-input .form-fields .advanced-search .inputs .filter-level-select:hover {
      border-color: #ccc;
    }

    .search-input .form-fields .advanced-search .inputs .filter-level-select:disabled {
      background-color: #f5f5f5;
      cursor: not-allowed;
      opacity: 0.6;
    }

  .search-input .form-fields .advanced-search .inputs .please-wait {
    display: inline-block;
    margin-left: 10px;
    padding-left: 20px;
    font-size: 14px;
    color: #666;
    background: url('../images/ajax-loader-small.gif') no-repeat left center;
    background-size: 16px 16px;
    vertical-align: middle;
  }

.search-input .form-fields .buttons {
  margin: 30px 0 0;
  text-align: center;
}

  .search-input .form-fields .buttons .search-button-flv {
    min-width: 140px;
    border: none;
    background-color: var(--primary-color);
    padding: 10px 30px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
  }

    .search-input .form-fields .buttons .search-button-flv:hover:not(:disabled) {
      background-color: #b80e2f;
      transform: translateY(-1px);
      box-shadow: 0 2px 4px rgba(211, 16, 57, 0.3);
    }

    .search-input .form-fields .buttons .search-button-flv:active:not(:disabled) {
      transform: translateY(0);
    }

    .search-input .form-fields .buttons .search-button-flv:disabled {
      background-color: #ccc;
      cursor: not-allowed;
      opacity: 0.6;
      transform: none;
    }

@media (max-width: 768px) {
  .search-input .form-fields .page-title {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

    .search-input .form-fields .page-title h1 {
      font-size: 22px;
      line-height: 32px;
    }

  .search-input .form-fields .advanced-search {
    margin: 20px 0 0;
  }

  .search-input .form-fields .advanced-search .inputs {
    /* keep same behavior as basic search inputs on mobile */
    margin-bottom: 20px;
  }

  .search-input .form-fields .buttons {
    margin: 25px 0 0;
  }

    .search-input .form-fields .buttons .search-button-flv {
      /*width: 50%;*/
      min-width: auto;
      padding: 12px 30px;
    }
}

@media (max-width: 480px) {
  .search-input .form-fields .page-title h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .search-input .form-fields .advanced-search .inputs {
    margin-bottom: 18px;
  }
}

.product-filter-level-values-box {
  margin: 40px 0;
  padding: 25px 0;
  border-top: 1px solid #eee;
}

  .product-filter-level-values-box .title {
    margin: 0 0 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    font-family: 'Gotham-Medium';
  }

  .product-filter-level-values-box .sub-title {
    margin: 0 0 20px;
    font-size: 14px;
    color: #666;
    line-height: 20px;
  }

  .product-filter-level-values-box .table-wrapper {
    overflow-x: auto;
    margin: 0;
  }

  .product-filter-level-values-box .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 1px 3px #eaecf2, 0 1px 2px #eaecf2;
    border-radius: 3px;
  }

    .product-filter-level-values-box .data-table thead {
      background-color: #f6f6f6;
    }

    .product-filter-level-values-box .data-table th {
      border: 1px solid #ddd;
      border-bottom: 2px solid var(--primary-color);
      padding: 12px 15px;
      text-align: left;
      font-weight: bold;
      font-size: 14px;
      color: #000;
      text-transform: uppercase;
      font-family: 'Gotham-Medium';
    }

      .product-filter-level-values-box .data-table th span {
        display: block;
      }

    .product-filter-level-values-box .data-table tbody tr {
      transition: background-color 0.2s ease;
    }

      .product-filter-level-values-box .data-table tbody tr.odd {
        background-color: #fff;
      }

      .product-filter-level-values-box .data-table tbody tr.even {
        background-color: #f9f9f9;
      }

      .product-filter-level-values-box .data-table tbody tr:hover {
        background-color: #f0f0f0;
      }

    .product-filter-level-values-box .data-table td {
      border: 1px solid #eee;
      padding: 12px 15px;
      font-size: 14px;
      color: #000;
      vertical-align: middle;
    }

      .product-filter-level-values-box .data-table td.filter-level-value {
        line-height: 20px;
      }

@media (max-width: 768px) {
  .product-filter-level-values-box {
    margin: 30px 0;
    padding: 20px 0;
  }

    .product-filter-level-values-box .title {
      font-size: 16px;
      line-height: 24px;
    }

    .product-filter-level-values-box .sub-title {
      font-size: 13px;
      margin-bottom: 15px;
    }

    .product-filter-level-values-box .data-table th,
    .product-filter-level-values-box .data-table td {
      padding: 10px 12px;
      font-size: 13px;
    }
}

@media (max-width: 480px) {
  .product-filter-level-values-box .title {
    font-size: 15px;
  }

  .product-filter-level-values-box .data-table th,
  .product-filter-level-values-box .data-table td {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.search-results {
  margin: 30px 0 0;
}

  .search-results .warning,
  .search-results .no-result {
    margin: 10px 0;
    color: #e4434b;
  }

.sitemap-page .description {
  margin: 0 0 30px;
  text-align: center;
}

.sitemap-page .entity {
  margin: 0 0 30px;
}

.sitemap-page .entity-title {
  margin: 0 0 15px;
  padding: 0 10px;
  text-align: center;
}

  .sitemap-page .entity-title h2 {
    font-size: 20px;
    font-weight: normal;
    color: #000;
  }

.sitemap-page .entity-body {
  border-top: 1px solid #e6e6e6;
  background-color: #f9f9f9;
  padding: 30px 15px;
  text-align: center;
}

.sitemap-page .entity ul {
  font-size: 0;
}

.sitemap-page .entity li {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  padding: 0 12px;
  line-height: 50px;
  font-size: 14px;
}

  .sitemap-page .entity li:before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #ddd;
  }

.sitemap-page .entity a {
  color: #000;
}

  .sitemap-page .entity a:hover {
    color: var(--primary-color);
  }

  .sitemap-page .entity a:empty {
    display: none;
  }

/****** BLOG & NEWS ******/
.news-icon {
  background: url(../images/news-icon.jpg) no-repeat center;
  width: 55px;
  height: 40px;
}

.block-blog-archive .number {
  display: block;
  color: #fff;
  cursor: auto;
}

.block-blog-archive .sublist {
  margin: 5px 0 5px 15px;
}

.block-blog-archive li.month {
  padding: 3px 0 3px 15px;
}

.blog-page .page-title,
.news-list-page .page-title {
  margin: 0;
}

.blog-page .post,
.news-items .news-item {
  margin: 0 0 30px;
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 3px;
}

  .blog-page .post:after {
    content: "";
    display: block;
    clear: both;
  }

.news-list-homepage .news-head {
  display: flex;
}

.news-list-homepage .head-info {
  margin-left: 15px;
}

.news-list-homepage .news-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  text-align: left;
}

.news-list-homepage .single-news {
  padding-left: 15px;
  padding-right: 15px;
  width: 33.33%;
}

.news-list-homepage .news-items .news-item {
  padding: 15px;
}

.post-title,
.news-title {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}

  .post-title:hover,
  .news-title:hover {
    color: var(--primary-color);
  }

.post-date,
.news-date {
  font-size: 12px;
  display: block;
  line-height: 18px;
  color: #000;
}

.order-details-page .print-order-button,
.order-details-page .pdf-invoice-button,
.order-details-page .cancel-order-button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: var(--primary-color);
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
}

.order-details-page .cancel-order-button {
  background-color: #c0392b;
}

.post-body,
.news-body {
  font-size: 15px;
  padding: 15px 0;
  line-height: 22px;
}

.blog-page .tags,
.blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

  .blog-page .tags label,
  .blogpost-page .tags label {
    display: inline-block;
    margin: 0 3px 3px 0;
    font-weight: bold;
    color: #000;
  }

  .blog-page .tags ul,
  .blogpost-page .tags ul {
    display: inline-block;
    margin: 0 0 3px 3px;
    font-size: 0;
  }

  .blog-page .tags li,
  .blogpost-page .tags li {
    display: inline-block;
    font-size: 14px;
  }

    .blog-page .tags li.separator,
    .blogpost-page .tags li.separator {
      margin: 0 8px 0 0;
    }

  .blog-page .tags a,
  .blogpost-page .tags a {
    display: block;
    color: var(--primary-color);
  }

    .blog-page .tags a:hover,
    .blogpost-page .tags a:hover {
      text-decoration: underline;
    }

.blog-posts .buttons,
.news-items .buttons {
  margin: 0;
}

  .blog-posts .buttons .read-comments {
    display: block;
    margin: 0 0 15px;
    font-weight: bold;
    color: #000;
  }

    .blog-posts .buttons .read-comments:hover {
      color: var(--primary-color);
    }

  .blog-posts .buttons .read-more,
  .news-items .buttons .read-more {
    display: inline-block;
    border: none;
    font-size: 16px;
    color: var(--primary-color);
    background: #fff;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: bold;
  }

    .blog-posts .buttons .read-more:hover,
    .news-items .buttons .read-more:hover {
      text-decoration: none;
    }

.new-comment {
  margin: 50px 0 60px;
}

  .new-comment .notifications {
    margin: 0 0 10px;
  }

  .new-comment .result {
    color: #690;
  }

  .new-comment .form-fields {
    margin: 0 0 20px;
  }

  .new-comment .button-1 {
    border: none;
    background-color: var(--primary-color);
    padding: 10px 30px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
  }

    .new-comment .button-1:hover {
      background-color: var(--primary-color);
    }

.comment-list {
  margin: 0 0 100px;
}

  .comment-list .title {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 20px;
    color: #000;
  }

    .comment-list .title strong {
      font-weight: normal;
    }

  .comment-list .comment {
    margin: 0 0 40px;
    border: 1px solid #ddd;
  }

    .comment-list .comment:after {
      content: "";
      display: block;
      clear: both;
    }

.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: bold;
    color: #000;
  }

  .comment-info a.username:hover {
    color: var(--primary-color);
  }

  .comment-info .avatar {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    overflow: hidden;
  }

    .comment-info .avatar img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      max-width: 100%;
      max-height: 100%;
      margin: auto;
      border: solid 2px #CEDBE1 !important;
    }

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: bold;
}

  .comment-time span {
    color: #000;
  }

.comment-title {
  margin: 0 0 15px;
  font-size: 16px;
  color: #000;
}

.comment-body {
  line-height: 22px;
}

.news-list-homepage {
  background: url(../images/news-bg.png);
  padding: 35px 70px;
}

  .news-list-homepage .title {
    padding: 0 0 30px;
    font-size: 30px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
  }

    .news-list-homepage .title strong {
      font-weight: normal;
    }

  .news-list-homepage .view-all {
    text-align: center;
  }

    .news-list-homepage .view-all a {
      color: #000;
      text-decoration: underline;
      font-size: 15px;
    }

      .news-list-homepage .view-all a:hover {
        color: var(--primary-color);
      }

/*** FORUM & PROFILE ***/

.forums-main-page .topic-block {
  margin: 0 0 35px;
  text-align: center;
}

  .forums-main-page .topic-block p {
    text-align: center;
  }

.forums-main-page .pager {
  display: none;
}

.forum-breadcrumb {
  margin: 0 0 40px;
}

.forums-header {
  margin: 0 0 50px;
  overflow: hidden;
}

  .forums-header:after {
    content: "";
    display: block;
    clear: both;
  }

  .forums-header .current-time {
    margin: 0 0 15px;
    color: #000;
  }

.forum-search-box .basic {
  overflow: hidden;
  margin: 0 0 10px;
}

.forum-search-box .advanced a {
  line-height: 22px;
  color: #000;
  text-decoration: underline;
}

  .forum-search-box .advanced a:hover {
    color: var(--primary-color);
  }

.forum-search-page .page-title {
  margin: 0 0 -1px;
}

.forum-search-page .search-error,
.forum-search-page .no-result {
  margin: 0 0 15px;
  text-align: center;
  color: #e4434b;
}

/* forum group */

.forums-table-section {
  margin: 0 0 60px;
}

  .forums-table-section + .pager {
    margin: -30px 0 30px;
  }

.forums-table-section-title {
  margin: 0 0 15px;
  padding: 0 10px;
}

  .forums-table-section-title a,
  .forums-table-section-title strong {
    font-size: 22px;
    font-weight: normal;
    color: #000;
  }

    .forums-table-section-title a:hover {
      color: var(--primary-color);
    }

.forums-table-section .image div {
  width: 38px;
  height: 32px;
  margin: auto;
  background: url('../images/topic-type1.png') center no-repeat;
}

  .forums-table-section .image div.sticky {
    background: url('../images/topic-type2.png') center no-repeat;
  }

  .forums-table-section .image div.announcement {
    background: url('../images/topic-type3.png') center no-repeat;
  }

.forums-table-section .forum-title,
.forums-table-section .topic-title {
  margin: 5px 0;
}

  .forums-table-section .forum-title a,
  .forums-table-section .topic-title a {
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

    .forums-table-section .forum-title a:hover,
    .forums-table-section .topic-title a:hover {
      color: var(--primary-color);
      text-decoration: none;
    }

  .forums-table-section .topic-title span {
    display: block;
    color: #777;
  }

.forums-table-section .forum-description,
.forums-table-section .topic-starter {
  margin: 5px 0;
}

.forums-table-section .latest-post {
  white-space: nowrap;
}

  .forums-table-section .latest-post div {
    margin: 5px 0;
  }

  .forums-table-section .latest-post label {
    color: #777;
  }

.forums-table-section .view-all {
  margin: 30px 0 0;
  padding: 0 10px;
}

  .forums-table-section .view-all a {
    background-color: var(--primary-color);
    padding: 10px 15px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
  }

    .forums-table-section .view-all a:hover {
      background-color: var(--primary-color);
    }

/* forum-page, topic page */

.forum-page .forum-info {
  margin: 0 0 30px;
}

.forum-page .forum-name,
.forum-topic-page .topic-name {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 10px 10px;
}

  .forum-page .forum-name h1,
  .forum-topic-page .topic-name h1 {
    font-size: 30px;
    font-weight: normal;
  }

.forum-actions,
.topic-actions {
  margin: 0 0 30px;
  font-size: 0;
}

  .forum-actions .actions a,
  .topic-actions .actions a {
    display: inline-block;
    margin: 1px;
    padding: 10px 10px 10px 33px;
    font-size: 14px;
  }

  .forum-actions .actions .new-topic {
    background: #eee url('../images/new.png') left center no-repeat;
  }

  .forum-actions .actions .watch-forum,
  .topic-actions .actions .watch-forum {
    background: #eee url('../images/watch.png') left center no-repeat;
  }

  .forum-actions .actions a:hover,
  .topic-actions .actions a:hover {
    background-color: #e6e6e6;
  }

  .forum-actions .pager.upper,
  .topic-actions .pager.upper {
    display: none;
    margin: 0;
  }

  .topic-actions .reply-topic-button {
    background: #eee url('../images/reply.png') left center no-repeat;
  }

  .topic-actions .watch-topic-button {
    background: #eee url('../images/watch.png') left center no-repeat;
  }

  .topic-actions .move-topic-button {
    background: #eee url('../images/move.png') left center no-repeat;
  }

  .topic-actions .edit-topic-button {
    background: #eee url('../images/edit_.png') left center no-repeat;
  }

  .topic-actions .delete-topic-button {
    background: #eee url('../images/remove_.png') left center no-repeat;
  }

  .topic-actions.lower .actions {
    display: none;
  }

.active-discussions-page .forums-table-section-title {
  margin: 0 0 25px;
  border-bottom: 1px solid #ddd;
  padding: 0 10px 10px;
}

  .active-discussions-page .forums-table-section-title strong {
    font-size: 30px;
    font-weight: normal;
  }

.active-discussions-page .forums-table-section-body {
  margin: 0 0 20px;
}

/* topic post */

.topic-post {
  margin: 0 0 30px;
  border-top: 1px solid #ddd;
}

  .topic-post:last-child {
    border-bottom: 1px solid #ddd;
  }

  .topic-post:after {
    content: "";
    display: block;
    clear: both;
  }

  .topic-post .post-info {
    margin: 30px 0;
  }

  .topic-post .user-info {
    width: 150px;
    margin: 0 auto 15px
  }

  .topic-post .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: bold;
    color: #000;
  }

  .topic-post a.username:hover {
    color: var(--primary-color);
  }

  .topic-post .avatar,
  .profile-info-box .avatar {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    overflow: hidden;
  }

    .topic-post .avatar img,
    .profile-info-box .avatar img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      max-width: 100%;
      max-height: 100%;
      margin: auto;
    }

    .topic-post .avatar img {
      border: solid 2px #CEDBE1 !important;
    }

  .topic-post .user-stats {
    margin: 0 0 15px;
  }

    .topic-post .user-stats li {
      display: inline-block;
      margin: 0 10px;
    }

    .topic-post .user-stats span,
    .profile-info-box .profile-stats span {
      margin: 0 0 0 3px;
      font-weight: bold;
      color: #000;
    }

  .topic-post .pm-button,
  .profile-info-box .pm-button {
    display: inline-block;
    border: none;
    background-color: #888;
    padding: 10px 20px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
  }

    .topic-post .pm-button:hover,
    .profile-info-box .pm-button:hover {
      background-color: #222;
    }

  .topic-post .post-time {
    margin: 0 0 15px;
    background-color: #f6f6f6;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: bold;
  }

    .topic-post .post-time span {
      color: #000;
    }

  .topic-post .post-actions {
    margin: 0 0 15px;
    font-size: 0;
  }

    .topic-post .post-actions > div {
      display: inline-block;
    }

    .topic-post .post-actions a {
      display: inline-block;
      margin: 1px 5px;
      font-size: 14px;
    }

    .topic-post .post-actions .edit-post-button,
    .topic-post .post-actions .delete-post-button {
      padding: 10px 10px 10px 33px;
    }

    .topic-post .post-actions .edit-post-button {
      background: url('../images/edit_.png') left center no-repeat;
    }

    .topic-post .post-actions .delete-post-button {
      background: url('../images/remove_.png') left center no-repeat;
    }

      .topic-post .post-actions .edit-post-button:hover,
      .topic-post .post-actions .delete-post-button:hover {
        color: var(--primary-color);
      }

    .topic-post .post-actions .post-link-button {
      padding: 10px;
      font-weight: bold;
      color: var(--primary-color);
    }

      .topic-post .post-actions .post-link-button:hover {
        text-decoration: underline;
      }

    .topic-post .post-actions .quote-post-button {
      background-color: #888;
      padding: 10px 20px;
      color: #fff;
    }

      .topic-post .post-actions .quote-post-button:hover {
        background-color: #222;
        color: #fff;
      }

  .topic-post .post-text {
    padding: 0 10px 20px;
    line-height: 22px;
    color: #000;
    margin-bottom: 0;
  }

  .topic-post .post-vote {
    text-align: center;
    display: table;
    margin: 0 auto 20px;
  }

  .topic-post .user-posted-image,
  .latest-posts .user-posted-image {
    max-width: 100%;
    height: auto;
  }

  .topic-post .quote,
  .latest-posts .quote {
    margin: 10px 0;
    border: 1px dashed #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    color: #777;
  }

  .topic-post .signature {
    border-top: 1px solid #ddd;
    padding: 20px;
    font-size: 13px;
    font-style: italic;
    clear: both;
  }

  .topic-post .post-vote span.vote {
    cursor: pointer;
    display: block;
    width: 40px;
    height: 24px;
  }

  .topic-post .post-vote span.up {
    background: url('../images/vote-up.png') no-repeat 50% 50%;
  }

  .topic-post .post-vote span.vote.up.selected {
    background: url('../images/vote-up-selected.png') no-repeat 50% 50%;
  }

  .topic-post .post-vote span.down {
    background: url('../images/vote-down.png') no-repeat 50% 50%;
  }

  .topic-post .post-vote span.vote.down.selected {
    background: url('../images/vote-down-selected.png') no-repeat 50% 50%;
  }

  .topic-post .vote-count-post {
    display: block;
    font-size: 160%;
  }

/* forum edit & send message */

.forum-edit-page .page-title,
.move-topic-page .page-title,
.private-message-send-page .page-title {
  margin: 0 0 -1px;
}

.move-topic-page label {
  white-space: normal;
}

.forum-edit-page .message-error,
.private-message-send-page .message-error {
  margin: 20px 0;
}

.forum-edit-page .inputs strong {
  display: inline-block;
  max-width: 400px;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  white-space: normal;
}

.forum-edit-page .inputs .topic-subject {
  font-size: 17px;
}

.forum-edit-page .inputs.reversed {
  margin: 0;
}

  .forum-edit-page .inputs.reversed label {
    width: auto;
    margin: 5px;
    font-size: 14px;
    white-space: normal;
  }

.forum-edit-page .bb-code-editor-wrapper,
.private-message-send-page .bb-code-editor-wrapper {
  max-width: 400px;
  margin: 20px auto;
  background-color: #ddd;
  padding: 10px;
}

.forum-edit-page .toolbar .button,
.private-message-send-page .toolbar .button {
  margin: 0 2px 0 0;
  border: #cec6b5 1px solid;
  padding: 2px;
}

  .forum-edit-page .toolbar .button:hover,
  .private-message-send-page .toolbar .button:hover {
    border: #333 1px solid;
  }

.forum-edit-page textarea,
.private-message-send-page textarea {
  display: block;
  margin: auto;
}

.forum-edit-page .buttons input,
.move-topic-page .buttons input,
.private-messages .buttons input {
  min-width: 140px;
  border: none;
  background-color: #999;
  padding: 10px 30px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

  .forum-edit-page .buttons input:hover,
  .move-topic-page .buttons input:hover,
  .private-messages .buttons input:hover {
    background-color: #888;
  }

.forum-edit-page .buttons .button-1,
.move-topic-page .buttons .button-1,
.private-messages .buttons .button-1 {
  background-color: var(--primary-color);
}

  .forum-edit-page .buttons .button-1:hover,
  .move-topic-page .buttons .button-1:hover,
  .private-messages .buttons .button-1:hover {
    background-color: var(--primary-color);
  }

.private-message-send-page a {
  font-size: 14px;
  color: var(--primary-color);
}

.private-message-send-page span {
  font-size: 14px;
}

/* jQuery tabs */

.ui-tabs {
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  color: #777;
}

.ui-widget.ui-widget-content.ui-tabs {
  border: none;
}

.ui-tabs-nav {
  margin: 0 0 30px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  font-size: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  padding: 0 !important;
  line-height: normal;
  font-weight: normal;
  color: #000;
}

  .ui-tabs-nav li {
    margin: 0 0 -1px;
    float: none !important;
    margin: 0 0 -1px !important;
    border: none !important;
    border-radius: 0;
    background: none !important;
    padding: 0 !important;
  }

    .ui-tabs-nav li a {
      display: block;
      text-align: center;
      font-size: 18px;
      float: none !important;
      padding: 12px 24px !important;
    }

    .ui-tabs-nav li.ui-state-active a {
      background-color: #fff;
      border-bottom: 3px solid var(--primary-color);
      color: var(--primary-color);
      border: none;
      border-bottom: 3px solid var(--primary-color);
    }

.ui-tabs-panel {
  padding: 0 !important;
}

/* inbox & view message */

.private-messages-page .table-wrapper,
.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-messages-page th.select {
  text-align: center;
}

.private-messages-page td.from,
.private-messages-page td.to,
.private-messages-page td.subject {
  min-width: 150px;
}

.private-messages-page td.date {
  white-space: nowrap;
}

.private-messages-page td.subject a {
  color: #000;
}

  .private-messages-page td.subject a.pm-unread {
    color: var(--primary-color);
  }

.private-messages-page .pager {
  margin: 0 0 30px;
}

.private-messages-page .buttons,
.private-message-view-page .buttons {
  font-size: 0;
}

  .private-messages-page .buttons .button-1,
  .private-messages-page .buttons .button-2,
  .private-message-view-page .buttons .button-1,
  .private-message-view-page .buttons .button-2 {
    display: block;
    width: 250px;
    margin: 0 auto 3px;
    font-size: 15px;
  }

.private-message-view-page .view-message {
  margin: 0 0 30px;
}

.private-message-view-page .message-head {
  margin: 0 0 20px;
  line-height: 22px;
}

  .private-message-view-page .message-head span {
    font-weight: bold;
    color: #000;
  }

.private-message-view-page .message-body {
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
  padding: 30px 20px;
  line-height: 22px;
  text-align: justify;
}

.private-message-view-page .back-pm-button {
  text-transform: capitalize !important;
}

/* profile page  */

.profile-info-box {
  overflow: hidden;
  line-height: normal;
  font-size: 14px;
  color: #777;
}

  .profile-info-box .user-details {
    margin: 0 0 30px;
  }

  .profile-info-box .avatar {
    margin: 0 auto 15px;
  }

  .profile-info-box .title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #000;
  }

  .profile-info-box .stats {
    margin: 0 0 15px;
  }

.latest-posts {
  line-height: normal;
  font-size: 14px;
  color: #777;
}

  .latest-posts .topic {
    margin: 0 0 35px;
  }

  .latest-posts .topic-title {
    margin: 0 0 20px;
    border-top: 1px solid #ddd;
    background: #f6f6f6;
    padding: 10px;
    font-size: 16px;
  }

    .latest-posts .topic-title a {
      font-weight: bold;
      color: #000;
    }

      .latest-posts .topic-title a:hover {
        color: var(--primary-color);
      }

  .latest-posts .topic-body {
    margin: 0 0 15px;
    line-height: 22px;
  }

  .latest-posts .topic-data {
    color: #000;
  }

/* BB codes */

pre {
  white-space: pre-wrap;
  white-space: normal;
  word-wrap: break-word;
}

.csharpcode {
  margin: 10px 0;
  border: 1px dashed #ccc;
  background-color: #fff;
  padding: 10px;
  color: #000;
}

  .csharpcode .rem {
    color: green;
  }

  .csharpcode .kwrd {
    color: #00f;
  }

  .csharpcode .str {
    color: #006080;
  }

  .csharpcode .op {
    color: #00c;
  }

  .csharpcode .preproc {
    color: #c63;
  }

  .csharpcode .asp {
    background-color: #ff0;
  }

  .csharpcode .html {
    color: maroon;
  }

  .csharpcode .attr {
    color: red;
  }

  .csharpcode .alt {
    width: 100%;
    margin: 0;
    background-color: #f6f6f6;
  }

  .csharpcode .lnum {
    color: #666;
  }

/* accordian css */
.block {
  background: #212529;
}

  .block .title.list-open ~ .listbox {
    display: block;
  }

  .block .title::after {
    content: '+';
    text-align: center;
    width: 15px;
    right: 18px;
    top: 30%;
    position: absolute;
    font-size: 20px;
    font-weight: bold;
  }

  .block .list-open.title::after {
    transform: rotateX(83deg);
  }

  .block .title::after {
    transform: none;
  }

/* advantage topic */
.advantage-block {
  background: url(../images/footer-bg.jpg)no-repeat center center / cover;
  color: #fff;
}

  .advantage-block .section-row {
    padding: 70px 0;
  }

  .advantage-block .single-advantage {
    width: 33.33%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

    .advantage-block .single-advantage .advantage-img {
      margin-right: 8px;
    }

    .advantage-block .single-advantage p {
      margin-bottom: 0;
      word-break: break-all;
    }

      .advantage-block .single-advantage p:first-child {
        text-transform: uppercase;
        font-weight: bold;
      }

/* product slider */
.product-carousel {
  padding-left: 70px;
  padding-right: 70px;
}

.carousel-container {
  padding: 35px 70px;
}


.product-carousel .title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.latest-product {
  padding-top: 35px;
  padding-bottom: 35px;
}

/* category middle */
.category-middle {
  padding: 20px 70px;
}

  .category-middle .item-grid {
    display: grid;
    grid-template-areas: 'item1 item2 item4'
      'item1 item3 item4';
    margin-left: -15px;
    margin-right: -15px;
  }

  .category-middle .category-item {
    padding: 15px;
  }

    .category-middle .category-item:nth-child(1) {
      grid-area: item1;
      height: 400px;
    }

    .category-middle .category-item:nth-child(2) {
      grid-area: item2;
      height: 200px;
    }

      .category-middle .category-item:nth-child(2) * {
        height: 100%;
      }

    .category-middle .category-item:nth-child(3) {
      grid-area: item3;
      height: 200px;
    }

      .category-middle .category-item:nth-child(3) * {
        height: 100%;
      }

    .category-middle .category-item:nth-child(4) {
      grid-area: item4;
      height: 400px;
    }

    .category-middle .category-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


.home-category-slider .home-category-right .category-add-text::after {
  font-family: 'icomoon';
  content: "\e90a";
  font-size: 10px;
  position: relative;
  left: 3px;
}

/* home slider area */
.home-slider-area {
  padding: 30px 70px;
}

  .home-slider-area .home-top-slider {
    padding: 0 15px;
  }

.home-category-slider {
  flex: 0 0 50%;
  max-width: 50%;
}

  /* category slider */
 

.home-category-slider {
  padding-left: 15px;
  padding-right: 15px;
}

  .home-category-slider .OCarousel-item {
    overflow: hidden;
  }

  .home-category-slider .home-category-right .owl-nav {
    position: absolute;
    text-transform: uppercase;
    bottom: -40px;
    right: 17px;
    height: auto;
  }

  .home-category-slider .home-category-right .category-name {
    background: rgba(0, 0, 0, 0.7);
    margin: auto;
    position: absolute;
    width: 100%;
    bottom: 50px;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 5;
    transition: all 0.3s;
  }

  .home-category-slider .OCarousel-item:hover .category-name {
    background: var(--primary-color); /* fallback */
    background: color-mix(in srgb, var(--primary-color) 80%, transparent);
  }

  .home-category-slider .OCarousel-item img {
    transition: all 0.4s
  }

  .home-category-slider .OCarousel-item:hover img {
    transform: scale(1.1);
  }

  .home-category-slider .home-category-right .category-name {
    height: auto;
  }

.scrollup {
  position: fixed;
  width: 35px;
  height: 35px;
  bottom: 10px;
  right: 20px;
  z-index: 100;
  background: #333;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
/* Preloader */
body {
  overflow: hidden;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/status.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}
/* home-slider-top-left */
.home-slider-top-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.checkout-page input[type="radio"] {
  opacity: 1;
  top: 0px;
  background: transparent;
  box-shadow: none;
}

.block.filter > .title {
  display: none;
}

.block.filter > .listbox {
  display: block;
}

.filter-content .product-spec-group {
}

.product-filters .product-filter {
  display: block;
}

.color-item input {
  opacity: 1;
}

span.custom-checkbox.ship-same-address-ckbx {
  background: #efefef;
  border: none;
  position: relative;
  right: 20px;
  top: 5px;
}

.ship-same-address-ckbx:after {
  left: 1px;
}

.page-body.checkout-data {
  margin: 0 10%;
}

.order-summary-content .common-buttons a {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: #323237;
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  border-radius: 3px;
}

  .order-summary-content .common-buttons a:hover {
    background-color: #000;
  }

/*** ESTIMATE SHIPPING POPUP COMMON ***/


.estimate-shipping-popup {
  position: relative;
  background: #FFF;
  padding: 25px 10px;
  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 {
  margin-left: 0px;
}

.estimate-shipping-row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

  .estimate-shipping-row.shipping-option {
    cursor: pointer;
  }

    .estimate-shipping-row.shipping-option.active {
      font-weight: 700;
    }

.estimate-shipping-row-item {
  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;
    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 {
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  margin-top: 20px;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
}

.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: var(--primary-color);
    color: #99a1a7;
    border: 1px solid #adb8c0;
    border-color: var(--primary-color);
  }

.apply-shipping-button {
  border: none;
  padding: 8px 25px;
  background-color: var(--primary-color);
  color: #fff;
}

.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;
}

.shipping-options .shipping-options-header .estimate-shipping-row{
    margin-left: 16px;
}

  .shipping-options .shipping-options-header .estimate-shipping-row .estimated-delivery {
    padding-left: 16px;
  }




/*** SHOPPING CART ESTIMATE SHIPPING ***/
.shopping-cart-page .common-buttons .estimate-shipping-button {
  display: inline-block;
  min-width: 180px;
  margin: 5px;
  border: none;
  background-color: #323237;
  padding: 10px 20px;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

  .shopping-cart-page .common-buttons .estimate-shipping-button:hover,
  .shopping-cart-page .common-buttons .estimate-shipping-button:focus {
    background-color: #000;
  }


/*** PRODUCT ESTIMATE SHIPPING ***/


.product-estimate-shipping {
  margin-bottom: 20px;
}

  .product-estimate-shipping .shipping-date {
    margin-top: 3px;
  }

  .product-estimate-shipping .shipping-title {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
    justify-content: center;
  }

    .product-estimate-shipping .shipping-title .shipping-price {
      margin-left: 5px;
      vertical-align: middle;
    }

    .product-estimate-shipping .shipping-title .shipping-loading {
      margin-left: 5px;
      vertical-align: middle;
      background: url(../images/ajax-loader-small.gif) no-repeat;
      width: 16px;
      height: 16px;
      display: inline-block;
    }

  .product-estimate-shipping .open-estimate-shipping-popup .arrow-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0 0 3px 6px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
  }
@media (max-width: 575px) {
  .ocarousel.carousel-category .owl-carousel .owl-nav button.owl-prev,
  .ocarousel.carousel-category .owl-carousel .owl-nav button.owl-next {
    height: auto;
    top:15px;
  }
}


@media (max-width: 768px) {
  .product-selectors {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .product-selectors > div {
    margin-left: 0;
  }
  
  .product-selectors > div:first-child {
    display: inline-block;
  }

  .payment-method .method-list li {
    min-height: 50px;
    border: 1px solid #dbdbdb;
    padding: 5px;
    text-align: left;
  }
}

.home-category-slider * {
  height: 100%;
}

.inputs.newsletter-container {
    flex-direction: row;
}

.center-1 .registration-result-page .buttons {
  text-align: center;
}

.register-continue-button {
    display: inline-block;
}

.forums-header .search-box .search-box-button {
  height: 40px;
  margin-top: 10px;
}

.forum-search-page .page-body {
    padding: 20px;
}

.forum-search-page .page-body .inputs {
    white-space: normal;
}
.forum-edit-page .form-fields {
    margin-top: 20px;
}
.forum-edit-page .inputs label {
  font-size: 16px;
  font-weight: bold;
  margin-right: 15px;
}

.bbcode {
    flex-direction: column;
}

.submit-post-button,
.cancel-post-button,
.submit-topic-button,
.cancel-topic-button {
  padding: 5px 10px;
  color: black;
  font-weight: bold;
}

.custom-checkbox-forum {
  border: 1px solid #d6d6d6;
}

.apply-vendor-page,
.active-discussions-page,
.forum-topic-page,
.forum-group-page,
.forum-page,
.forums-main-page,
.forum-edit-page .page-body,
.forum-search-page .page-body {
  max-width: 95%;
  margin: auto;
}

.store-closed-page .page-body {
    text-align: center;
}

.page-body {
    min-height: 50vh;
}

.product-essential .attributes {
    position: relative;
    z-index: 10000;
}

.giftcard-required {
    position: relative;
}

  .giftcard-required .required {
      position: absolute;
      right: 0px;
      top: 5px;
      margin: 0;
  }

  .cross-sells .item-box {
      width: calc(50% - 10px);
      margin: 5px;
  }

.forum-edit-page .notify-email {
  flex-direction: row;
}

.forum-edit-page .inputs.reversed.notify-email label {
  margin: 0px;
  margin-left: 10px;
}

/**Loader Starts**/

.loader {
  position: relative;
  min-height: 300px;
}

  .loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }

    .lds-ellipsis div:nth-child(1) {
      left: 8px;
      animation: lds-ellipsis1 0.6s infinite;
    }

    .lds-ellipsis div:nth-child(2) {
      left: 8px;
      animation: lds-ellipsis2 0.6s infinite;
    }

    .lds-ellipsis div:nth-child(3) {
      left: 32px;
      animation: lds-ellipsis2 0.6s infinite;
    }

    .lds-ellipsis div:nth-child(4) {
      left: 56px;
      animation: lds-ellipsis3 0.6s infinite;
    }

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

.login-page .password-eye {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url('../images/eye-closed.png');
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  cursor: pointer;
  opacity: .75
}

.login-page .password-eye-open {
  background-image: url('../images/eye.png');
}

/**Loader Ends**/

.newsletter-block img {
    max-width: 100%;
}

/* Footer Responsive Styles */
@media (max-width: 575.9px) {
  .newsletter-email input[type="email"] {
    width: 148px;
  }
  .search-input .form-fields .advanced-search .inputs{
      align-items : flex-start !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .footer-upper {
    padding: 40px 0;
  }

  .footer-upper .footer-block,
  .footer-upper .footer-block.newsletter-block {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .footer-upper .newsletter {
    padding: 15px;
  }

  .footer-upper .newsletter-subscribe-button {
    margin-top: 8px;
  }

  .newsletter-email .newsletter-subscribe-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .footer-block .list {
    background: transparent;
    padding: 0;
  }

  .footer-block .list li {
    padding: 5px 0;
  }

  .footer-block .list a {
    padding: 0;
    display: inline;
  }
}

@media (min-width: 992px) {
  .footer-upper:after {
    content: "";
    clear: both;
    display: block;
  }

  .footer-block .list {
    margin: 0;
  }

  .newsletter-email .newsletter-subscribe-button {
    padding: 0 5px;
  }

  .newsletter-validation .field-validation-valid {
    text-align: left;
  }

  .footer-block .list {
    background: transparent;
    padding: 0;
    display: block !important;
  }

  .footer-block .list.newsletter {
    background: #fff;
    margin-top: 15px;
    padding: 15px;
  }

  /* Desktop footer menu titles should be black */
  .footer-block .title {
    color: #000;
    font-size: 16px;
    margin: 0;
    padding: 0;
    outline: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Gotham';
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  /* Dynamic footer navigation styles for desktop */
  .footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-navigation .footer-block {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 280px;
  }

  /* Footer menu toggle styles for modern menu system */
  .footer-menu__toggle {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    cursor: auto;
    background: transparent;
    margin-bottom: 15px;
    padding: 0;
  }

  .footer-menu__list {
    background-color: transparent;
  }

  .footer-menu__item {
    color: #000;
    font-family: 'Gotham';
    font-size: 16px;
    text-transform: capitalize;
    list-style: none;
    margin: 0;
    outline: 0;
    text-decoration: none;
    box-sizing: border-box;
    padding: 5px 0;
    display: block;
  }

  .footer-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 20px;
    color: inherit;
    cursor: pointer;
    text-align: left;
    position: relative;
  }

  .footer-menu__link:hover {
    color: var(--primary-color);
  }
}

@media (min-width: 1200px) {
  .footer-block {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .footer-block .list {
    background: #fff;
    padding: 15px;
  }

  .footer-upper {
    padding: 30px 0;
  }

  .footer-upper .footer-block,
  .footer-upper .footer-block.newsletter-block {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-navigation {
    width: 100%;
    display: block;
  }

  .footer-upper .footer-block .title {
    color: #fff;
    cursor: pointer;
    text-transform: capitalize;
    background: #212529;
    margin: 0 0 1px;
    padding: 10px 15px;
    font-size: 18px;
    position: relative;
  }

  .footer-upper .footer-block .title:after {
    content: "+";
    text-align: center;
    width: 15px;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    top: 29%;
    right: 10px;
  }

  .footer-menu__list {
    overflow: hidden;
    background-color: #fff;
  }

  .footer-menu__item {
    color: #000;
    font-family: 'Gotham';
    font-size: 16px;
    text-transform: capitalize;
    list-style: none;
    margin: 0;
    outline: 0;
    text-decoration: none;
    box-sizing: border-box;
    padding: 2px 0;
    display: block;
    line-height: 20px;
    text-align: left;
  }

  .footer-menu__item:last-child {
    padding-block-end: 20px;
  }

  .footer-menu__toggle {
    display: block;
    width: 100%;
    background: #212529 url('../images/toggle-white.png') right center no-repeat;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    text-transform: capitalize;
    margin: 0 0 1px;
  }

  .footer-menu--active {
    grid-template-rows: min-content 1fr;
  }

  .footer-upper .newsletter {
    background: transparent;
    padding: 0;
  }

  .footer-upper .newsletter-email {
    padding: 0 15px;
  }
}
.request-list-page .button-2:hover,
.request-list-page .button-2:focus {
  color: #ff8a71 !important;
}

.opc-select-address-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10px 5px;
}

.checkout-page .opc-select-address-container .button-1 {
  min-width: 100px;
  padding: 5px 20px
}

.forgot-password a:hover {
  color: var(--primary-color);
}
.change-password-recovery-link {
  color: var(--primary-color);
  font-size: 14px;
  text-align: right;
  padding: 10px;
}

.change-password-recovery-link a {
  color: var(--primary-color);
  text-decoration: none;
}

.change-password-recovery-link a:hover {
    text-decoration: underline;
 }
.product-details-page .product-reviews .title {
  margin-bottom: 15px;
}
.product-details-page .inputs {
  align-items: center;
  column-gap: 10px;
}
.compare-products-page {
  position: relative;
}
.recently-added-products-page .product-selectors{
    margin-bottom:10px;
}

/*Home Page Poll*/
.home-page-polls {
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

  .home-page-polls .title {
    border-bottom: 1px solid #ddd;
    color: var(--dark-gray-color);
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 30px;
    padding: 0 0 15px;
    font-family: 'Gotham' !important;
    text-transform : uppercase;
  }

    .home-page-polls .title strong {
      font-weight: normal;
    }

  .home-page-polls li {
    display: inline-block;
    margin: 10px;
  }
  .home-page-polls input[type="radio"] {
    appearance: none;
    -webkit-appearance: none; 
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    opacity: 1;
  }

    
    .home-page-polls input[type="radio"]:checked {
      border-color: var(--primary-color);
    }

 
      .home-page-polls input[type="radio"]:checked::before {
        content: "";
        width: 10px;
        height: 10px;
        background: var(--primary-color);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
      }

    @media all and (min-width: 769px) {
      .home-page-polls li {
         min-width: 100px;
  }
}
.vote-poll-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  text-transform: uppercase;

  padding: 12px 30px;
  border: 0;
  border-radius: 3px;

  
}
.poll .buttons{
    text-align : center !important;
}


  .vote-poll-button:hover {
    background-color : gray;
    transform: translateY(-1px);
  }


  .vote-poll-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }


.home-page-polls .please-wait {
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  color: #a7a7ac;
  background: url('../Themes/Rosea/Content/images/ajax-loader-small.gif') no-repeat left center;
  padding-left: 25px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

/*Home Page Poll End*/

@media(max-width: 575.9px){
  .request-page .fieldset .inputs .review-text {
    width: 94%;
  }
}

.request-page .fieldset .inputs label {
  margin : 30px 0 10px !important;
}

